diff --git a/tree_sitter_v/grammar.cjs b/tree_sitter_v/grammar.cjs index efe65f51..a7a72098 100644 --- a/tree_sitter_v/grammar.cjs +++ b/tree_sitter_v/grammar.cjs @@ -18,7 +18,7 @@ const PREC = { or: 1, resolve: 1, composite_literal: -1, - strictly_expression_list: -3, + strictly_expression_list: -2, }; const multiplicative_operators = ["*", "/", "%", "<<", ">>", ">>>", "&", "&^"]; @@ -578,7 +578,17 @@ module.exports = grammar({ prec.dynamic(2, seq(token.immediate("["), comma_sep1($.plain_type), "]")), argument_list: ($) => - seq("(", repeat(seq($.argument, optional(list_separator))), ")"), + seq( + "(", + choice( + repeat(seq($.argument, optional(list_separator))), + $.short_lambda, + ), + ")", + ), + + short_lambda: ($) => + seq("|", comma_sep($.reference_expression), "|", $._expression_without_blocks), argument: ($) => choice( @@ -627,14 +637,14 @@ module.exports = grammar({ ), short_element_list: ($) => - repeat1(seq($.element, optional(list_separator))), - - element: ($) => $._expression, + repeat1(seq(alias($._expression, $.element), optional(list_separator))), keyed_element: ($) => - seq(field("key", $.field_name), ":", field("value", $._expression)), - - field_name: ($) => $.reference_expression, + seq( + field("key", alias($.reference_expression, $.field_name)), + ":", + field("value", $._expression), + ), function_literal: ($) => prec.right( @@ -1505,14 +1515,23 @@ module.exports = grammar({ }, }); +/** + * @param {RuleOrLiteral} rule + */ function comp_time(rule) { return seq("$", rule); } +/** + * @param {RuleOrLiteral} rules + */ function comma_sep1(rules) { return seq(rules, repeat(seq(",", rules))); } +/** + * @param {RuleOrLiteral} rule + */ function comma_sep(rule) { return optional(comma_sep1(rule)); } diff --git a/tree_sitter_v/node_types.v b/tree_sitter_v/node_types.v index 180cff2d..13a94df6 100644 --- a/tree_sitter_v/node_types.v +++ b/tree_sitter_v/node_types.v @@ -45,7 +45,6 @@ pub enum NodeType { continue_statement dec_expression defer_statement - element element_list else_branch embedded_definition @@ -141,6 +140,7 @@ pub enum NodeType { send_statement shared_type short_element_list + short_lambda signature simple_statement slice_expression @@ -355,7 +355,6 @@ const node_type_name_to_enum = { 'continue_statement': NodeType.continue_statement 'dec_expression': NodeType.dec_expression 'defer_statement': NodeType.defer_statement - 'element': NodeType.element 'element_list': NodeType.element_list 'else_branch': NodeType.else_branch 'embedded_definition': NodeType.embedded_definition @@ -451,6 +450,7 @@ const node_type_name_to_enum = { 'send_statement': NodeType.send_statement 'shared_type': NodeType.shared_type 'short_element_list': NodeType.short_element_list + 'short_lambda': NodeType.short_lambda 'signature': NodeType.signature 'simple_statement': NodeType.simple_statement 'slice_expression': NodeType.slice_expression diff --git a/tree_sitter_v/queries/helix.highlights.scm b/tree_sitter_v/queries/helix.highlights.scm index ec66e11d..3eeca4fe 100644 --- a/tree_sitter_v/queries/helix.highlights.scm +++ b/tree_sitter_v/queries/helix.highlights.scm @@ -48,8 +48,10 @@ (interface_method_definition name: (identifier) @function.method) +(short_lambda + (reference_expression) @parameter) (call_expression - name: (selector_expression + name: (selector_expression field: (reference_expression) @function.method)) (call_expression diff --git a/tree_sitter_v/queries/highlights.scm b/tree_sitter_v/queries/highlights.scm index 0403d767..f2cb8030 100644 --- a/tree_sitter_v/queries/highlights.scm +++ b/tree_sitter_v/queries/highlights.scm @@ -16,8 +16,10 @@ receiver: (receiver) name: (identifier) @method) +(short_lambda + (reference_expression) @parameter) (call_expression - name: (selector_expression + name: (selector_expression field: (reference_expression) @method)) (type_reference_expression) @type diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json index 9cd1b06b..09ba8108 100644 --- a/tree_sitter_v/src/grammar.json +++ b/tree_sitter_v/src/grammar.json @@ -2321,7 +2321,7 @@ }, "strictly_expression_list": { "type": "PREC", - "value": -3, + "value": -2, "content": { "type": "SEQ", "members": [ @@ -2677,17 +2677,17 @@ "value": "(" }, { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - }, - { - "type": "CHOICE", + "type": "CHOICE", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", "members": [ + { + "type": "SYMBOL", + "name": "argument" + }, { "type": "CHOICE", "members": [ @@ -2698,38 +2698,47 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "\n" + }, + { + "type": "STRING", + "value": "\r" + }, + { + "type": "STRING", + "value": "\r\n" + } + ] }, { "type": "STRING", - "value": "\r\n" + "value": ";" } ] }, { "type": "STRING", - "value": ";" + "value": "," } ] }, { - "type": "STRING", - "value": "," + "type": "BLANK" } ] - }, - { - "type": "BLANK" } ] } - ] - } + }, + { + "type": "SYMBOL", + "name": "short_lambda" + } + ] }, { "type": "STRING", @@ -2737,6 +2746,56 @@ } ] }, + "short_lambda": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "|" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "reference_expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "reference_expression" + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "|" + }, + { + "type": "SYMBOL", + "name": "_expression_without_blocks" + } + ] + }, "argument": { "type": "CHOICE", "members": [ @@ -2942,8 +3001,13 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "element" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_expression" + }, + "named": true, + "value": "element" }, { "type": "CHOICE", @@ -2991,10 +3055,6 @@ ] } }, - "element": { - "type": "SYMBOL", - "name": "_expression" - }, "keyed_element": { "type": "SEQ", "members": [ @@ -3002,8 +3062,13 @@ "type": "FIELD", "name": "key", "content": { - "type": "SYMBOL", - "name": "field_name" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "reference_expression" + }, + "named": true, + "value": "field_name" } }, { @@ -3020,10 +3085,6 @@ } ] }, - "field_name": { - "type": "SYMBOL", - "name": "reference_expression" - }, "function_literal": { "type": "PREC_RIGHT", "value": 0, diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json index 2344a235..bab1d7bc 100644 --- a/tree_sitter_v/src/node-types.json +++ b/tree_sitter_v/src/node-types.json @@ -376,6 +376,10 @@ { "type": "argument", "named": true + }, + { + "type": "short_lambda", + "named": true } ] } @@ -1066,21 +1070,6 @@ ] } }, - { - "type": "element", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, { "type": "element_list", "named": true, @@ -1291,7 +1280,7 @@ "required": true, "types": [ { - "type": "reference_expression", + "type": "identifier", "named": true } ] @@ -3409,6 +3398,125 @@ ] } }, + { + "type": "short_lambda", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "array_creation", + "named": true + }, + { + "type": "as_type_cast_expression", + "named": true + }, + { + "type": "binary_expression", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "dec_expression", + "named": true + }, + { + "type": "enum_fetch", + "named": true + }, + { + "type": "fixed_array_creation", + "named": true + }, + { + "type": "function_literal", + "named": true + }, + { + "type": "go_expression", + "named": true + }, + { + "type": "in_expression", + "named": true + }, + { + "type": "inc_expression", + "named": true + }, + { + "type": "index_expression", + "named": true + }, + { + "type": "is_expression", + "named": true + }, + { + "type": "literal", + "named": true + }, + { + "type": "not_in_expression", + "named": true + }, + { + "type": "not_is_expression", + "named": true + }, + { + "type": "option_propagation_expression", + "named": true + }, + { + "type": "or_block_expression", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "pseudo_compile_time_identifier", + "named": true + }, + { + "type": "receive_expression", + "named": true + }, + { + "type": "reference_expression", + "named": true + }, + { + "type": "result_propagation_expression", + "named": true + }, + { + "type": "selector_expression", + "named": true + }, + { + "type": "slice_expression", + "named": true + }, + { + "type": "spawn_expression", + "named": true + }, + { + "type": "unary_expression", + "named": true + } + ] + } + }, { "type": "signature", "named": true, diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c index 7bbe80e2..4057694d 100644 --- a/tree_sitter_v/src/parser.c +++ b/tree_sitter_v/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 4695 -#define LARGE_STATE_COUNT 1620 +#define STATE_COUNT 4717 +#define LARGE_STATE_COUNT 1623 #define SYMBOL_COUNT 352 -#define ALIAS_COUNT 1 +#define ALIAS_COUNT 3 #define TOKEN_COUNT 138 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 46 #define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 149 +#define PRODUCTION_ID_COUNT 151 enum ts_symbol_identifiers { sym_identifier = 1, @@ -219,143 +219,143 @@ enum ts_symbol_identifiers { 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_short_lambda = 196, + sym_argument = 197, + sym_special_argument_list = 198, + sym_type_initializer = 199, + sym_type_initializer_body = 200, + sym_element_list = 201, + sym_short_element_list = 202, sym_keyed_element = 203, - sym_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_visibility_modifiers = 254, - sym_mutability_modifiers = 255, - sym_mutable_identifier = 256, - sym_mutable_expression = 257, - sym_identifier_list = 258, - sym_expression_list = 259, - sym_expression_without_blocks_list = 260, - sym_plain_type = 261, - sym__plain_type_without_special = 262, - sym_anon_struct_type = 263, - sym_multi_return_type = 264, - sym_result_type = 265, - sym_option_type = 266, - sym_qualified_type = 267, - sym_fixed_array_type = 268, - sym_array_type = 269, - sym_pointer_type = 270, - sym_wrong_pointer_type = 271, - sym_map_type = 272, - sym_channel_type = 273, - sym_shared_type = 274, - sym_thread_type = 275, - sym_atomic_type = 276, - sym_generic_type = 277, - sym_function_type = 278, - sym__statement_list = 279, - sym__statement = 280, - sym_simple_statement = 281, - sym_assert_statement = 282, - sym_append_statement = 283, - sym_send_statement = 284, - sym_var_declaration = 285, - sym_var_definition_list = 286, - sym_var_definition = 287, - sym_assignment_statement = 288, - sym_block = 289, - sym_defer_statement = 290, - sym_label_reference = 291, - sym_goto_statement = 292, - sym_break_statement = 293, - sym_continue_statement = 294, - sym_return_statement = 295, - sym_label_definition = 296, - sym_labeled_statement = 297, - sym_empty_labeled_statement = 298, - sym_compile_time_for_statement = 299, - sym_for_statement = 300, - sym_range_clause = 301, - sym_for_clause = 302, - sym__definite_range = 303, - sym_range = 304, - sym_hash_statement = 305, - sym_asm_statement = 306, - sym__content_block = 307, - sym_attributes = 308, - sym_attribute = 309, - sym_attribute_expression = 310, - sym_if_attribute = 311, - sym__plain_attribute = 312, - sym_literal_attribute = 313, - sym_value_attribute = 314, - sym_key_value_attribute = 315, - sym___rcbr = 316, - aux_sym_source_file_repeat1 = 317, - aux_sym_import_list_repeat1 = 318, - aux_sym_import_path_repeat1 = 319, - aux_sym_selective_import_list_repeat1 = 320, - aux_sym_const_declaration_repeat1 = 321, - aux_sym_global_var_declaration_repeat1 = 322, - aux_sym__type_union_list_repeat1 = 323, - aux_sym_parameter_list_repeat1 = 324, - aux_sym_type_parameter_list_repeat1 = 325, - aux_sym_generic_parameters_repeat1 = 326, - aux_sym__struct_body_repeat1 = 327, - aux_sym__enum_body_repeat1 = 328, - aux_sym__interface_body_repeat1 = 329, - aux_sym_strictly_expression_list_repeat1 = 330, - aux_sym_type_parameters_repeat1 = 331, - aux_sym_argument_list_repeat1 = 332, + sym_function_literal = 204, + sym_capture_list = 205, + sym_capture = 206, + sym_reference_expression = 207, + sym_type_reference_expression = 208, + sym_unary_expression = 209, + sym_receive_expression = 210, + sym_binary_expression = 211, + sym_as_type_cast_expression = 212, + sym_compile_time_selector_expression = 213, + sym_or_block = 214, + sym__max_group = 215, + sym_literal = 216, + sym_spread_expression = 217, + sym_map_init_expression = 218, + sym_map_keyed_element = 219, + sym_array_creation = 220, + sym_fixed_array_creation = 221, + sym_selector_expression = 222, + sym_index_expression = 223, + sym_slice_expression = 224, + sym_if_expression = 225, + sym_else_branch = 226, + sym_compile_time_if_expression = 227, + sym_is_expression = 228, + sym_not_is_expression = 229, + sym_in_expression = 230, + sym_not_in_expression = 231, + sym_enum_fetch = 232, + sym_match_expression = 233, + sym_match_arms = 234, + sym_match_arm = 235, + sym_match_expression_list = 236, + sym_match_arm_type = 237, + sym_match_else_arm_clause = 238, + sym_select_expression = 239, + sym_select_arm = 240, + sym_select_arm_statement = 241, + sym__select_arm_assignment_statement = 242, + sym_select_var_declaration = 243, + sym_select_else_arn_clause = 244, + sym_lock_expression = 245, + sym_unsafe_expression = 246, + sym_sql_expression = 247, + sym_c_string_literal = 248, + sym_raw_string_literal = 249, + sym_interpreted_string_literal = 250, + sym_string_interpolation = 251, + sym_format_specifier = 252, + sym_visibility_modifiers = 253, + sym_mutability_modifiers = 254, + sym_mutable_identifier = 255, + sym_mutable_expression = 256, + sym_identifier_list = 257, + sym_expression_list = 258, + sym_expression_without_blocks_list = 259, + sym_plain_type = 260, + sym__plain_type_without_special = 261, + sym_anon_struct_type = 262, + sym_multi_return_type = 263, + sym_result_type = 264, + sym_option_type = 265, + sym_qualified_type = 266, + sym_fixed_array_type = 267, + sym_array_type = 268, + sym_pointer_type = 269, + sym_wrong_pointer_type = 270, + sym_map_type = 271, + sym_channel_type = 272, + sym_shared_type = 273, + sym_thread_type = 274, + sym_atomic_type = 275, + sym_generic_type = 276, + sym_function_type = 277, + sym__statement_list = 278, + sym__statement = 279, + sym_simple_statement = 280, + sym_assert_statement = 281, + sym_append_statement = 282, + sym_send_statement = 283, + sym_var_declaration = 284, + sym_var_definition_list = 285, + sym_var_definition = 286, + sym_assignment_statement = 287, + sym_block = 288, + sym_defer_statement = 289, + sym_label_reference = 290, + sym_goto_statement = 291, + sym_break_statement = 292, + sym_continue_statement = 293, + sym_return_statement = 294, + sym_label_definition = 295, + sym_labeled_statement = 296, + sym_empty_labeled_statement = 297, + sym_compile_time_for_statement = 298, + sym_for_statement = 299, + sym_range_clause = 300, + sym_for_clause = 301, + sym__definite_range = 302, + sym_range = 303, + sym_hash_statement = 304, + sym_asm_statement = 305, + sym__content_block = 306, + sym_attributes = 307, + sym_attribute = 308, + sym_attribute_expression = 309, + sym_if_attribute = 310, + sym__plain_attribute = 311, + sym_literal_attribute = 312, + sym_value_attribute = 313, + sym_key_value_attribute = 314, + sym___rcbr = 315, + aux_sym_source_file_repeat1 = 316, + aux_sym_import_list_repeat1 = 317, + aux_sym_import_path_repeat1 = 318, + aux_sym_selective_import_list_repeat1 = 319, + aux_sym_const_declaration_repeat1 = 320, + aux_sym_global_var_declaration_repeat1 = 321, + aux_sym__type_union_list_repeat1 = 322, + aux_sym_parameter_list_repeat1 = 323, + aux_sym_type_parameter_list_repeat1 = 324, + aux_sym_generic_parameters_repeat1 = 325, + aux_sym__struct_body_repeat1 = 326, + aux_sym__enum_body_repeat1 = 327, + aux_sym__interface_body_repeat1 = 328, + aux_sym_strictly_expression_list_repeat1 = 329, + aux_sym_type_parameters_repeat1 = 330, + aux_sym_argument_list_repeat1 = 331, + aux_sym_short_lambda_repeat1 = 332, aux_sym_element_list_repeat1 = 333, aux_sym_short_element_list_repeat1 = 334, aux_sym_capture_list_repeat1 = 335, @@ -375,7 +375,9 @@ enum ts_symbol_identifiers { aux_sym_var_definition_list_repeat1 = 349, aux_sym_attributes_repeat1 = 350, aux_sym_attribute_repeat1 = 351, - alias_sym_interpolation_expression = 352, + alias_sym_element = 352, + alias_sym_field_name = 353, + alias_sym_interpolation_expression = 354, }; static const char * const ts_symbol_names[] = { @@ -575,15 +577,14 @@ static const char * const ts_symbol_names[] = { [sym_call_expression] = "call_expression", [sym_type_parameters] = "type_parameters", [sym_argument_list] = "argument_list", + [sym_short_lambda] = "short_lambda", [sym_argument] = "argument", [sym_special_argument_list] = "special_argument_list", [sym_type_initializer] = "type_initializer", [sym_type_initializer_body] = "type_initializer_body", [sym_element_list] = "element_list", [sym_short_element_list] = "short_element_list", - [sym_element] = "element", [sym_keyed_element] = "keyed_element", - [sym_field_name] = "field_name", [sym_function_literal] = "function_literal", [sym_capture_list] = "capture_list", [sym_capture] = "capture", @@ -712,6 +713,7 @@ static const char * const ts_symbol_names[] = { [aux_sym_strictly_expression_list_repeat1] = "strictly_expression_list_repeat1", [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_short_lambda_repeat1] = "short_lambda_repeat1", [aux_sym_element_list_repeat1] = "element_list_repeat1", [aux_sym_short_element_list_repeat1] = "short_element_list_repeat1", [aux_sym_capture_list_repeat1] = "capture_list_repeat1", @@ -731,6 +733,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_var_definition_list_repeat1] = "var_definition_list_repeat1", [aux_sym_attributes_repeat1] = "attributes_repeat1", [aux_sym_attribute_repeat1] = "attribute_repeat1", + [alias_sym_element] = "element", + [alias_sym_field_name] = "field_name", [alias_sym_interpolation_expression] = "interpolation_expression", }; @@ -931,15 +935,14 @@ static const TSSymbol ts_symbol_map[] = { [sym_call_expression] = sym_call_expression, [sym_type_parameters] = sym_type_parameters, [sym_argument_list] = sym_argument_list, + [sym_short_lambda] = sym_short_lambda, [sym_argument] = sym_argument, [sym_special_argument_list] = sym_special_argument_list, [sym_type_initializer] = sym_type_initializer, [sym_type_initializer_body] = sym_type_initializer_body, [sym_element_list] = sym_element_list, [sym_short_element_list] = sym_short_element_list, - [sym_element] = sym_element, [sym_keyed_element] = sym_keyed_element, - [sym_field_name] = sym_field_name, [sym_function_literal] = sym_function_literal, [sym_capture_list] = sym_capture_list, [sym_capture] = sym_capture, @@ -1068,6 +1071,7 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_strictly_expression_list_repeat1] = aux_sym_strictly_expression_list_repeat1, [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_short_lambda_repeat1] = aux_sym_short_lambda_repeat1, [aux_sym_element_list_repeat1] = aux_sym_element_list_repeat1, [aux_sym_short_element_list_repeat1] = aux_sym_short_element_list_repeat1, [aux_sym_capture_list_repeat1] = aux_sym_capture_list_repeat1, @@ -1087,6 +1091,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_var_definition_list_repeat1] = aux_sym_var_definition_list_repeat1, [aux_sym_attributes_repeat1] = aux_sym_attributes_repeat1, [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, + [alias_sym_element] = alias_sym_element, + [alias_sym_field_name] = alias_sym_field_name, [alias_sym_interpolation_expression] = alias_sym_interpolation_expression, }; @@ -1877,6 +1883,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_short_lambda] = { + .visible = true, + .named = true, + }, [sym_argument] = { .visible = true, .named = true, @@ -1901,18 +1911,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_element] = { - .visible = true, - .named = true, - }, [sym_keyed_element] = { .visible = true, .named = true, }, - [sym_field_name] = { - .visible = true, - .named = true, - }, [sym_function_literal] = { .visible = true, .named = true, @@ -2426,6 +2428,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_short_lambda_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_element_list_repeat1] = { .visible = false, .named = false, @@ -2502,6 +2508,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [alias_sym_element] = { + .visible = true, + .named = true, + }, + [alias_sym_field_name] = { + .visible = true, + .named = true, + }, [alias_sym_interpolation_expression] = { .visible = true, .named = true, @@ -2625,134 +2639,135 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [15] = {.index = 19, .length = 2}, [16] = {.index = 21, .length = 2}, [17] = {.index = 23, .length = 4}, - [18] = {.index = 27, .length = 1}, - [19] = {.index = 28, .length = 1}, - [20] = {.index = 29, .length = 2}, - [21] = {.index = 31, .length = 2}, - [22] = {.index = 33, .length = 2}, - [23] = {.index = 35, .length = 2}, - [24] = {.index = 37, .length = 1}, - [26] = {.index = 38, .length = 2}, - [27] = {.index = 40, .length = 3}, - [28] = {.index = 43, .length = 1}, - [29] = {.index = 44, .length = 2}, - [30] = {.index = 46, .length = 2}, - [31] = {.index = 48, .length = 1}, - [32] = {.index = 49, .length = 3}, - [33] = {.index = 52, .length = 2}, - [34] = {.index = 54, .length = 2}, - [35] = {.index = 56, .length = 1}, - [36] = {.index = 57, .length = 2}, - [37] = {.index = 59, .length = 2}, - [38] = {.index = 61, .length = 1}, - [39] = {.index = 62, .length = 2}, - [40] = {.index = 64, .length = 2}, - [41] = {.index = 66, .length = 2}, - [42] = {.index = 68, .length = 1}, - [43] = {.index = 69, .length = 3}, - [44] = {.index = 72, .length = 3}, - [45] = {.index = 75, .length = 3}, - [46] = {.index = 78, .length = 3}, - [47] = {.index = 81, .length = 3}, - [48] = {.index = 84, .length = 1}, - [49] = {.index = 85, .length = 1}, - [50] = {.index = 86, .length = 2}, - [52] = {.index = 88, .length = 2}, - [53] = {.index = 90, .length = 1}, - [54] = {.index = 91, .length = 3}, - [55] = {.index = 94, .length = 1}, - [56] = {.index = 95, .length = 3}, - [57] = {.index = 98, .length = 1}, - [58] = {.index = 99, .length = 2}, - [59] = {.index = 101, .length = 5}, - [60] = {.index = 106, .length = 1}, - [61] = {.index = 107, .length = 1}, - [62] = {.index = 108, .length = 2}, - [63] = {.index = 110, .length = 2}, - [64] = {.index = 112, .length = 2}, - [65] = {.index = 114, .length = 1}, - [66] = {.index = 115, .length = 2}, - [67] = {.index = 117, .length = 1}, - [68] = {.index = 118, .length = 3}, - [69] = {.index = 121, .length = 1}, - [70] = {.index = 122, .length = 1}, - [71] = {.index = 123, .length = 3}, - [72] = {.index = 126, .length = 2}, - [73] = {.index = 128, .length = 3}, - [74] = {.index = 131, .length = 3}, - [75] = {.index = 134, .length = 2}, - [76] = {.index = 136, .length = 2}, - [77] = {.index = 138, .length = 3}, - [78] = {.index = 141, .length = 3}, - [79] = {.index = 144, .length = 4}, - [80] = {.index = 148, .length = 4}, - [81] = {.index = 152, .length = 4}, - [82] = {.index = 156, .length = 4}, - [83] = {.index = 160, .length = 3}, - [84] = {.index = 163, .length = 2}, - [85] = {.index = 165, .length = 2}, - [86] = {.index = 167, .length = 1}, - [87] = {.index = 168, .length = 3}, - [88] = {.index = 171, .length = 2}, - [89] = {.index = 173, .length = 2}, - [90] = {.index = 175, .length = 2}, - [91] = {.index = 177, .length = 2}, - [93] = {.index = 179, .length = 3}, - [94] = {.index = 182, .length = 2}, - [95] = {.index = 184, .length = 3}, - [96] = {.index = 187, .length = 3}, - [97] = {.index = 190, .length = 3}, - [98] = {.index = 193, .length = 2}, - [99] = {.index = 195, .length = 4}, - [100] = {.index = 199, .length = 4}, - [101] = {.index = 203, .length = 4}, - [102] = {.index = 207, .length = 3}, - [103] = {.index = 210, .length = 3}, - [104] = {.index = 213, .length = 2}, - [105] = {.index = 215, .length = 4}, - [106] = {.index = 219, .length = 3}, - [107] = {.index = 222, .length = 4}, - [108] = {.index = 226, .length = 4}, - [109] = {.index = 230, .length = 5}, - [110] = {.index = 235, .length = 3}, - [111] = {.index = 238, .length = 3}, - [112] = {.index = 241, .length = 3}, - [113] = {.index = 244, .length = 4}, - [114] = {.index = 248, .length = 3}, - [115] = {.index = 251, .length = 3}, - [116] = {.index = 254, .length = 3}, - [117] = {.index = 257, .length = 3}, - [118] = {.index = 260, .length = 4}, - [119] = {.index = 264, .length = 4}, - [120] = {.index = 268, .length = 4}, - [121] = {.index = 272, .length = 4}, - [122] = {.index = 276, .length = 5}, - [123] = {.index = 281, .length = 5}, - [124] = {.index = 286, .length = 5}, - [125] = {.index = 291, .length = 4}, - [126] = {.index = 295, .length = 4}, - [127] = {.index = 299, .length = 4}, - [128] = {.index = 303, .length = 3}, - [129] = {.index = 306, .length = 5}, - [130] = {.index = 311, .length = 4}, - [131] = {.index = 315, .length = 3}, - [132] = {.index = 318, .length = 4}, - [133] = {.index = 322, .length = 4}, - [134] = {.index = 326, .length = 4}, - [135] = {.index = 330, .length = 5}, - [136] = {.index = 335, .length = 5}, - [137] = {.index = 340, .length = 5}, - [138] = {.index = 345, .length = 6}, - [139] = {.index = 351, .length = 4}, - [140] = {.index = 355, .length = 5}, - [141] = {.index = 360, .length = 5}, - [142] = {.index = 365, .length = 5}, - [143] = {.index = 370, .length = 5}, - [144] = {.index = 375, .length = 6}, - [145] = {.index = 381, .length = 5}, - [146] = {.index = 386, .length = 5}, - [147] = {.index = 391, .length = 6}, - [148] = {.index = 397, .length = 6}, + [19] = {.index = 27, .length = 1}, + [20] = {.index = 28, .length = 1}, + [21] = {.index = 29, .length = 2}, + [22] = {.index = 31, .length = 2}, + [23] = {.index = 33, .length = 2}, + [24] = {.index = 35, .length = 2}, + [25] = {.index = 37, .length = 1}, + [27] = {.index = 38, .length = 2}, + [28] = {.index = 40, .length = 3}, + [29] = {.index = 43, .length = 1}, + [30] = {.index = 44, .length = 2}, + [31] = {.index = 46, .length = 2}, + [32] = {.index = 48, .length = 1}, + [33] = {.index = 49, .length = 3}, + [34] = {.index = 52, .length = 2}, + [35] = {.index = 54, .length = 2}, + [36] = {.index = 56, .length = 1}, + [37] = {.index = 57, .length = 2}, + [38] = {.index = 59, .length = 2}, + [39] = {.index = 61, .length = 1}, + [40] = {.index = 62, .length = 2}, + [41] = {.index = 64, .length = 2}, + [42] = {.index = 66, .length = 2}, + [43] = {.index = 68, .length = 1}, + [44] = {.index = 69, .length = 3}, + [45] = {.index = 72, .length = 3}, + [46] = {.index = 75, .length = 3}, + [47] = {.index = 78, .length = 3}, + [48] = {.index = 81, .length = 3}, + [49] = {.index = 84, .length = 1}, + [50] = {.index = 85, .length = 1}, + [51] = {.index = 86, .length = 2}, + [53] = {.index = 88, .length = 2}, + [54] = {.index = 90, .length = 1}, + [55] = {.index = 91, .length = 3}, + [56] = {.index = 94, .length = 1}, + [57] = {.index = 95, .length = 3}, + [58] = {.index = 98, .length = 1}, + [59] = {.index = 99, .length = 2}, + [60] = {.index = 101, .length = 5}, + [61] = {.index = 106, .length = 1}, + [62] = {.index = 107, .length = 1}, + [63] = {.index = 108, .length = 2}, + [64] = {.index = 110, .length = 2}, + [65] = {.index = 112, .length = 2}, + [66] = {.index = 114, .length = 1}, + [67] = {.index = 115, .length = 2}, + [68] = {.index = 117, .length = 1}, + [69] = {.index = 118, .length = 3}, + [70] = {.index = 121, .length = 1}, + [71] = {.index = 122, .length = 1}, + [72] = {.index = 123, .length = 3}, + [73] = {.index = 126, .length = 2}, + [74] = {.index = 128, .length = 3}, + [75] = {.index = 131, .length = 3}, + [76] = {.index = 134, .length = 2}, + [77] = {.index = 136, .length = 2}, + [78] = {.index = 138, .length = 3}, + [79] = {.index = 141, .length = 3}, + [80] = {.index = 144, .length = 4}, + [81] = {.index = 148, .length = 4}, + [82] = {.index = 152, .length = 4}, + [83] = {.index = 156, .length = 4}, + [84] = {.index = 160, .length = 3}, + [85] = {.index = 57, .length = 2}, + [86] = {.index = 163, .length = 2}, + [87] = {.index = 165, .length = 2}, + [88] = {.index = 167, .length = 1}, + [89] = {.index = 168, .length = 3}, + [90] = {.index = 171, .length = 2}, + [91] = {.index = 173, .length = 2}, + [92] = {.index = 175, .length = 2}, + [93] = {.index = 177, .length = 2}, + [95] = {.index = 179, .length = 3}, + [96] = {.index = 182, .length = 2}, + [97] = {.index = 184, .length = 3}, + [98] = {.index = 187, .length = 3}, + [99] = {.index = 190, .length = 3}, + [100] = {.index = 193, .length = 2}, + [101] = {.index = 195, .length = 4}, + [102] = {.index = 199, .length = 4}, + [103] = {.index = 203, .length = 4}, + [104] = {.index = 207, .length = 3}, + [105] = {.index = 210, .length = 3}, + [106] = {.index = 213, .length = 2}, + [107] = {.index = 215, .length = 4}, + [108] = {.index = 219, .length = 3}, + [109] = {.index = 222, .length = 4}, + [110] = {.index = 226, .length = 4}, + [111] = {.index = 230, .length = 5}, + [112] = {.index = 235, .length = 3}, + [113] = {.index = 238, .length = 3}, + [114] = {.index = 241, .length = 3}, + [115] = {.index = 244, .length = 4}, + [116] = {.index = 248, .length = 3}, + [117] = {.index = 251, .length = 3}, + [118] = {.index = 254, .length = 3}, + [119] = {.index = 257, .length = 3}, + [120] = {.index = 260, .length = 4}, + [121] = {.index = 264, .length = 4}, + [122] = {.index = 268, .length = 4}, + [123] = {.index = 272, .length = 4}, + [124] = {.index = 276, .length = 5}, + [125] = {.index = 281, .length = 5}, + [126] = {.index = 286, .length = 5}, + [127] = {.index = 291, .length = 4}, + [128] = {.index = 295, .length = 4}, + [129] = {.index = 299, .length = 4}, + [130] = {.index = 303, .length = 3}, + [131] = {.index = 306, .length = 5}, + [132] = {.index = 311, .length = 4}, + [133] = {.index = 315, .length = 3}, + [134] = {.index = 318, .length = 4}, + [135] = {.index = 322, .length = 4}, + [136] = {.index = 326, .length = 4}, + [137] = {.index = 330, .length = 5}, + [138] = {.index = 335, .length = 5}, + [139] = {.index = 340, .length = 5}, + [140] = {.index = 345, .length = 6}, + [141] = {.index = 351, .length = 4}, + [142] = {.index = 355, .length = 5}, + [143] = {.index = 360, .length = 5}, + [144] = {.index = 365, .length = 5}, + [145] = {.index = 370, .length = 5}, + [146] = {.index = 375, .length = 6}, + [147] = {.index = 381, .length = 5}, + [148] = {.index = 386, .length = 5}, + [149] = {.index = 391, .length = 6}, + [150] = {.index = 397, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3310,27 +3325,37 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [5] = { [0] = sym_reference_expression, }, - [25] = { + [18] = { + [0] = alias_sym_element, + }, + [26] = { [0] = alias_sym_interpolation_expression, }, - [51] = { + [52] = { [1] = sym_plain_type, }, - [75] = { + [76] = { [2] = sym_plain_type, }, - [92] = { + [85] = { + [0] = alias_sym_field_name, + }, + [94] = { [1] = alias_sym_interpolation_expression, }, - [106] = { + [108] = { [3] = sym_plain_type, }, }; static const uint16_t ts_non_terminal_alias_map[] = { - sym__expression, 2, + sym__expression, 3, sym__expression, + alias_sym_element, alias_sym_interpolation_expression, + sym_reference_expression, 2, + sym_reference_expression, + alias_sym_field_name, sym__plain_type_without_special, 2, sym__plain_type_without_special, sym_plain_type, @@ -3403,7 +3428,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [62] = 62, [63] = 63, [64] = 64, - [65] = 64, + [65] = 63, [66] = 66, [67] = 67, [68] = 68, @@ -3450,1411 +3475,1411 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [109] = 108, [110] = 110, [111] = 111, - [112] = 111, - [113] = 110, - [114] = 114, - [115] = 111, + [112] = 110, + [113] = 111, + [114] = 110, + [115] = 115, [116] = 111, - [117] = 110, - [118] = 114, - [119] = 111, + [117] = 115, + [118] = 110, + [119] = 110, [120] = 111, - [121] = 111, - [122] = 114, - [123] = 114, - [124] = 114, - [125] = 111, - [126] = 110, - [127] = 110, - [128] = 110, + [121] = 115, + [122] = 110, + [123] = 110, + [124] = 110, + [125] = 115, + [126] = 115, + [127] = 115, + [128] = 111, [129] = 111, - [130] = 114, - [131] = 110, + [130] = 111, + [131] = 115, [132] = 110, - [133] = 114, - [134] = 110, - [135] = 111, - [136] = 114, + [133] = 110, + [134] = 111, + [135] = 115, + [136] = 110, [137] = 111, [138] = 111, - [139] = 110, - [140] = 111, - [141] = 114, - [142] = 114, - [143] = 110, - [144] = 110, - [145] = 110, - [146] = 114, - [147] = 114, - [148] = 114, + [139] = 115, + [140] = 115, + [141] = 115, + [142] = 110, + [143] = 111, + [144] = 115, + [145] = 111, + [146] = 110, + [147] = 111, + [148] = 115, [149] = 149, - [150] = 149, - [151] = 149, - [152] = 149, - [153] = 149, - [154] = 149, - [155] = 149, - [156] = 156, - [157] = 149, - [158] = 149, - [159] = 149, - [160] = 149, - [161] = 149, - [162] = 149, - [163] = 163, - [164] = 163, - [165] = 163, - [166] = 163, - [167] = 163, - [168] = 163, - [169] = 163, - [170] = 163, - [171] = 163, - [172] = 163, - [173] = 163, - [174] = 163, - [175] = 163, + [150] = 150, + [151] = 151, + [152] = 151, + [153] = 150, + [154] = 151, + [155] = 151, + [156] = 150, + [157] = 151, + [158] = 150, + [159] = 151, + [160] = 151, + [161] = 151, + [162] = 150, + [163] = 150, + [164] = 151, + [165] = 150, + [166] = 150, + [167] = 151, + [168] = 150, + [169] = 150, + [170] = 150, + [171] = 151, + [172] = 151, + [173] = 150, + [174] = 151, + [175] = 175, [176] = 176, - [177] = 176, - [178] = 178, - [179] = 179, - [180] = 178, - [181] = 178, - [182] = 176, - [183] = 176, - [184] = 178, - [185] = 176, - [186] = 176, - [187] = 176, - [188] = 188, - [189] = 189, - [190] = 176, - [191] = 176, - [192] = 178, - [193] = 178, - [194] = 176, - [195] = 178, - [196] = 196, - [197] = 178, - [198] = 198, - [199] = 178, - [200] = 178, - [201] = 176, - [202] = 178, - [203] = 178, - [204] = 176, - [205] = 71, - [206] = 206, - [207] = 207, - [208] = 208, + [177] = 177, + [178] = 177, + [179] = 177, + [180] = 180, + [181] = 181, + [182] = 177, + [183] = 177, + [184] = 177, + [185] = 177, + [186] = 177, + [187] = 177, + [188] = 177, + [189] = 177, + [190] = 177, + [191] = 177, + [192] = 192, + [193] = 192, + [194] = 192, + [195] = 192, + [196] = 192, + [197] = 197, + [198] = 192, + [199] = 192, + [200] = 192, + [201] = 192, + [202] = 192, + [203] = 192, + [204] = 192, + [205] = 68, + [206] = 70, + [207] = 66, + [208] = 71, [209] = 209, - [210] = 68, - [211] = 70, - [212] = 66, + [210] = 210, + [211] = 69, + [212] = 212, [213] = 67, - [214] = 69, + [214] = 214, [215] = 215, [216] = 216, [217] = 217, [218] = 218, - [219] = 219, + [219] = 218, [220] = 220, - [221] = 219, + [221] = 220, [222] = 222, - [223] = 219, + [223] = 218, [224] = 218, - [225] = 219, - [226] = 217, - [227] = 219, - [228] = 220, + [225] = 220, + [226] = 222, + [227] = 222, + [228] = 222, [229] = 222, - [230] = 219, - [231] = 220, - [232] = 232, - [233] = 233, - [234] = 234, - [235] = 219, - [236] = 219, - [237] = 219, - [238] = 219, - [239] = 217, - [240] = 219, - [241] = 219, - [242] = 218, - [243] = 217, + [230] = 217, + [231] = 218, + [232] = 220, + [233] = 220, + [234] = 220, + [235] = 235, + [236] = 236, + [237] = 222, + [238] = 218, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 242, + [243] = 243, [244] = 218, [245] = 220, - [246] = 219, - [247] = 247, - [248] = 218, - [249] = 249, - [250] = 219, - [251] = 218, - [252] = 217, - [253] = 220, - [254] = 217, - [255] = 217, - [256] = 256, - [257] = 219, - [258] = 217, + [246] = 239, + [247] = 222, + [248] = 248, + [249] = 222, + [250] = 222, + [251] = 222, + [252] = 222, + [253] = 218, + [254] = 222, + [255] = 222, + [256] = 222, + [257] = 220, + [258] = 243, [259] = 218, - [260] = 219, - [261] = 219, - [262] = 220, - [263] = 263, - [264] = 219, - [265] = 265, - [266] = 217, - [267] = 218, - [268] = 220, - [269] = 269, - [270] = 270, - [271] = 219, - [272] = 232, + [260] = 220, + [261] = 218, + [262] = 222, + [263] = 220, + [264] = 222, + [265] = 222, + [266] = 222, + [267] = 243, + [268] = 222, + [269] = 243, + [270] = 243, + [271] = 243, + [272] = 218, [273] = 220, - [274] = 247, - [275] = 220, - [276] = 219, - [277] = 219, - [278] = 217, - [279] = 219, - [280] = 280, - [281] = 218, - [282] = 220, - [283] = 217, + [274] = 243, + [275] = 222, + [276] = 218, + [277] = 220, + [278] = 222, + [279] = 243, + [280] = 243, + [281] = 243, + [282] = 282, + [283] = 243, [284] = 284, - [285] = 285, - [286] = 220, - [287] = 218, - [288] = 288, - [289] = 219, - [290] = 217, + [285] = 243, + [286] = 222, + [287] = 243, + [288] = 284, + [289] = 289, + [290] = 290, [291] = 218, - [292] = 292, - [293] = 220, - [294] = 217, + [292] = 220, + [293] = 222, + [294] = 294, [295] = 295, - [296] = 220, + [296] = 296, [297] = 297, [298] = 298, - [299] = 218, - [300] = 218, + [299] = 299, + [300] = 300, [301] = 301, [302] = 302, - [303] = 303, + [303] = 300, [304] = 304, - [305] = 301, + [305] = 305, [306] = 306, - [307] = 307, - [308] = 307, - [309] = 304, - [310] = 310, - [311] = 307, - [312] = 312, - [313] = 307, - [314] = 307, - [315] = 315, - [316] = 304, + [307] = 302, + [308] = 301, + [309] = 306, + [310] = 306, + [311] = 299, + [312] = 301, + [313] = 302, + [314] = 306, + [315] = 301, + [316] = 306, [317] = 301, - [318] = 306, - [319] = 307, - [320] = 307, - [321] = 315, - [322] = 306, - [323] = 301, - [324] = 307, - [325] = 307, - [326] = 315, - [327] = 301, - [328] = 306, + [318] = 318, + [319] = 302, + [320] = 320, + [321] = 306, + [322] = 302, + [323] = 306, + [324] = 301, + [325] = 302, + [326] = 306, + [327] = 327, + [328] = 301, [329] = 304, - [330] = 307, - [331] = 307, - [332] = 307, - [333] = 304, - [334] = 307, + [330] = 300, + [331] = 306, + [332] = 302, + [333] = 306, + [334] = 301, [335] = 306, [336] = 301, - [337] = 306, - [338] = 312, - [339] = 310, + [337] = 302, + [338] = 302, + [339] = 306, [340] = 301, - [341] = 306, - [342] = 342, - [343] = 301, - [344] = 315, - [345] = 307, - [346] = 307, - [347] = 315, - [348] = 312, - [349] = 310, - [350] = 304, - [351] = 315, - [352] = 307, + [341] = 299, + [342] = 302, + [343] = 320, + [344] = 344, + [345] = 302, + [346] = 306, + [347] = 299, + [348] = 320, + [349] = 304, + [350] = 300, + [351] = 306, + [352] = 299, [353] = 306, [354] = 301, - [355] = 315, - [356] = 307, - [357] = 304, - [358] = 301, - [359] = 306, - [360] = 307, - [361] = 304, - [362] = 307, - [363] = 304, - [364] = 315, - [365] = 307, + [355] = 320, + [356] = 320, + [357] = 306, + [358] = 358, + [359] = 302, + [360] = 320, + [361] = 344, + [362] = 302, + [363] = 306, + [364] = 299, + [365] = 299, [366] = 306, - [367] = 302, - [368] = 304, - [369] = 307, - [370] = 304, + [367] = 320, + [368] = 299, + [369] = 320, + [370] = 306, [371] = 304, - [372] = 304, - [373] = 301, - [374] = 304, - [375] = 315, - [376] = 301, - [377] = 306, - [378] = 304, - [379] = 315, - [380] = 307, - [381] = 315, - [382] = 307, - [383] = 312, + [372] = 302, + [373] = 320, + [374] = 299, + [375] = 306, + [376] = 320, + [377] = 301, + [378] = 299, + [379] = 379, + [380] = 306, + [381] = 320, + [382] = 302, + [383] = 299, [384] = 306, - [385] = 385, - [386] = 386, - [387] = 315, + [385] = 320, + [386] = 299, + [387] = 306, [388] = 388, - [389] = 310, + [389] = 389, [390] = 390, [391] = 391, - [392] = 391, - [393] = 391, + [392] = 390, + [393] = 393, [394] = 394, [395] = 395, [396] = 396, - [397] = 396, + [397] = 391, [398] = 398, - [399] = 396, - [400] = 396, - [401] = 302, - [402] = 402, - [403] = 396, - [404] = 391, + [399] = 399, + [400] = 391, + [401] = 398, + [402] = 391, + [403] = 390, + [404] = 404, [405] = 391, [406] = 391, - [407] = 396, - [408] = 398, - [409] = 396, - [410] = 391, + [407] = 407, + [408] = 395, + [409] = 395, + [410] = 396, [411] = 391, - [412] = 412, - [413] = 396, - [414] = 414, - [415] = 396, - [416] = 402, - [417] = 391, - [418] = 402, - [419] = 396, - [420] = 402, - [421] = 391, - [422] = 391, - [423] = 391, - [424] = 424, - [425] = 425, - [426] = 391, - [427] = 427, + [412] = 399, + [413] = 391, + [414] = 391, + [415] = 415, + [416] = 416, + [417] = 390, + [418] = 391, + [419] = 419, + [420] = 391, + [421] = 395, + [422] = 344, + [423] = 423, + [424] = 391, + [425] = 391, + [426] = 390, + [427] = 391, [428] = 428, - [429] = 402, - [430] = 398, - [431] = 398, + [429] = 391, + [430] = 430, + [431] = 399, [432] = 432, [433] = 391, - [434] = 402, - [435] = 396, - [436] = 436, - [437] = 396, - [438] = 436, - [439] = 439, - [440] = 440, - [441] = 412, - [442] = 396, - [443] = 443, - [444] = 391, - [445] = 391, + [434] = 390, + [435] = 399, + [436] = 399, + [437] = 399, + [438] = 399, + [439] = 399, + [440] = 399, + [441] = 441, + [442] = 399, + [443] = 399, + [444] = 399, + [445] = 399, [446] = 446, [447] = 447, [448] = 448, - [449] = 448, + [449] = 449, [450] = 450, - [451] = 450, + [451] = 451, [452] = 452, - [453] = 452, + [453] = 453, [454] = 454, [455] = 455, [456] = 456, [457] = 457, [458] = 458, - [459] = 447, + [459] = 459, [460] = 460, [461] = 461, - [462] = 462, + [462] = 455, [463] = 463, - [464] = 454, + [464] = 464, [465] = 465, [466] = 466, - [467] = 446, + [467] = 467, [468] = 468, - [469] = 448, - [470] = 456, - [471] = 458, - [472] = 450, - [473] = 452, + [469] = 469, + [470] = 470, + [471] = 464, + [472] = 472, + [473] = 473, [474] = 474, [475] = 475, - [476] = 476, - [477] = 477, - [478] = 478, - [479] = 479, - [480] = 480, - [481] = 447, - [482] = 454, - [483] = 456, - [484] = 484, - [485] = 485, - [486] = 458, - [487] = 447, - [488] = 488, - [489] = 447, + [476] = 475, + [477] = 475, + [478] = 475, + [479] = 463, + [480] = 475, + [481] = 475, + [482] = 475, + [483] = 475, + [484] = 469, + [485] = 461, + [486] = 486, + [487] = 487, + [488] = 475, + [489] = 455, [490] = 490, - [491] = 458, - [492] = 492, - [493] = 493, - [494] = 302, - [495] = 446, - [496] = 496, - [497] = 497, - [498] = 446, - [499] = 493, - [500] = 302, - [501] = 446, - [502] = 456, - [503] = 503, - [504] = 497, - [505] = 505, - [506] = 493, - [507] = 302, - [508] = 446, - [509] = 509, - [510] = 493, - [511] = 454, - [512] = 512, - [513] = 463, - [514] = 497, - [515] = 480, - [516] = 493, - [517] = 452, - [518] = 505, - [519] = 450, - [520] = 503, - [521] = 302, - [522] = 446, - [523] = 497, - [524] = 446, - [525] = 448, - [526] = 302, + [491] = 464, + [492] = 475, + [493] = 474, + [494] = 457, + [495] = 475, + [496] = 457, + [497] = 490, + [498] = 487, + [499] = 487, + [500] = 455, + [501] = 344, + [502] = 490, + [503] = 461, + [504] = 464, + [505] = 474, + [506] = 487, + [507] = 461, + [508] = 455, + [509] = 464, + [510] = 490, + [511] = 344, + [512] = 469, + [513] = 474, + [514] = 344, + [515] = 490, + [516] = 487, + [517] = 461, + [518] = 461, + [519] = 519, + [520] = 474, + [521] = 455, + [522] = 464, + [523] = 464, + [524] = 474, + [525] = 519, + [526] = 344, [527] = 527, [528] = 528, - [529] = 529, - [530] = 503, - [531] = 505, - [532] = 493, - [533] = 480, - [534] = 493, - [535] = 505, - [536] = 503, - [537] = 480, - [538] = 446, - [539] = 497, - [540] = 497, - [541] = 503, - [542] = 505, - [543] = 480, - [544] = 544, - [545] = 480, - [546] = 493, - [547] = 505, - [548] = 503, - [549] = 302, - [550] = 446, - [551] = 497, - [552] = 552, - [553] = 553, - [554] = 554, - [555] = 446, + [529] = 461, + [530] = 455, + [531] = 490, + [532] = 487, + [533] = 457, + [534] = 461, + [535] = 455, + [536] = 464, + [537] = 457, + [538] = 474, + [539] = 528, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 446, + [545] = 545, + [546] = 528, + [547] = 519, + [548] = 469, + [549] = 541, + [550] = 543, + [551] = 446, + [552] = 344, + [553] = 541, + [554] = 490, + [555] = 545, [556] = 556, [557] = 557, - [558] = 302, - [559] = 448, - [560] = 493, - [561] = 479, - [562] = 478, - [563] = 450, - [564] = 564, + [558] = 528, + [559] = 519, + [560] = 469, + [561] = 541, + [562] = 543, + [563] = 446, + [564] = 545, [565] = 565, - [566] = 452, - [567] = 463, + [566] = 566, + [567] = 545, [568] = 568, - [569] = 454, - [570] = 462, - [571] = 456, - [572] = 479, - [573] = 480, - [574] = 493, - [575] = 458, - [576] = 447, - [577] = 505, - [578] = 448, - [579] = 503, - [580] = 302, - [581] = 446, - [582] = 450, - [583] = 452, - [584] = 497, - [585] = 478, - [586] = 447, - [587] = 454, - [588] = 463, + [569] = 487, + [570] = 528, + [571] = 519, + [572] = 469, + [573] = 541, + [574] = 543, + [575] = 446, + [576] = 469, + [577] = 545, + [578] = 519, + [579] = 528, + [580] = 519, + [581] = 541, + [582] = 528, + [583] = 545, + [584] = 469, + [585] = 543, + [586] = 446, + [587] = 446, + [588] = 447, [589] = 589, - [590] = 456, - [591] = 591, - [592] = 458, - [593] = 463, - [594] = 462, - [595] = 595, + [590] = 545, + [591] = 543, + [592] = 528, + [593] = 519, + [594] = 469, + [595] = 487, [596] = 596, - [597] = 479, - [598] = 458, - [599] = 478, + [597] = 490, + [598] = 344, + [599] = 474, [600] = 600, [601] = 601, - [602] = 447, - [603] = 463, + [602] = 602, + [603] = 464, [604] = 604, - [605] = 462, - [606] = 479, - [607] = 478, - [608] = 456, - [609] = 480, - [610] = 493, - [611] = 505, - [612] = 503, - [613] = 462, - [614] = 302, - [615] = 446, - [616] = 497, - [617] = 617, - [618] = 479, - [619] = 454, + [605] = 455, + [606] = 461, + [607] = 607, + [608] = 457, + [609] = 541, + [610] = 543, + [611] = 446, + [612] = 545, + [613] = 528, + [614] = 519, + [615] = 469, + [616] = 545, + [617] = 607, + [618] = 446, + [619] = 568, [620] = 620, - [621] = 452, - [622] = 450, + [621] = 541, + [622] = 543, [623] = 623, - [624] = 478, - [625] = 448, - [626] = 626, - [627] = 463, + [624] = 541, + [625] = 543, + [626] = 541, + [627] = 541, [628] = 628, - [629] = 629, - [630] = 462, + [629] = 541, + [630] = 446, [631] = 631, - [632] = 479, - [633] = 479, - [634] = 634, - [635] = 635, - [636] = 478, - [637] = 637, - [638] = 638, - [639] = 639, - [640] = 529, - [641] = 463, - [642] = 462, - [643] = 479, - [644] = 528, - [645] = 645, - [646] = 478, - [647] = 647, - [648] = 462, - [649] = 647, + [632] = 543, + [633] = 543, + [634] = 541, + [635] = 543, + [636] = 446, + [637] = 545, + [638] = 344, + [639] = 528, + [640] = 519, + [641] = 469, + [642] = 642, + [643] = 446, + [644] = 487, + [645] = 490, + [646] = 487, + [647] = 490, + [648] = 648, + [649] = 461, [650] = 650, - [651] = 651, - [652] = 463, - [653] = 480, + [651] = 344, + [652] = 652, + [653] = 653, [654] = 654, - [655] = 462, - [656] = 493, - [657] = 505, - [658] = 503, - [659] = 659, - [660] = 302, - [661] = 446, - [662] = 497, - [663] = 479, - [664] = 478, - [665] = 665, - [666] = 666, - [667] = 667, + [655] = 487, + [656] = 656, + [657] = 474, + [658] = 658, + [659] = 490, + [660] = 660, + [661] = 661, + [662] = 541, + [663] = 344, + [664] = 543, + [665] = 446, + [666] = 545, + [667] = 528, [668] = 668, - [669] = 463, - [670] = 670, - [671] = 462, - [672] = 497, - [673] = 479, - [674] = 446, - [675] = 529, - [676] = 528, + [669] = 519, + [670] = 469, + [671] = 458, + [672] = 672, + [673] = 474, + [674] = 674, + [675] = 675, + [676] = 676, [677] = 677, [678] = 678, - [679] = 302, - [680] = 478, - [681] = 503, - [682] = 682, - [683] = 683, - [684] = 505, - [685] = 448, - [686] = 450, - [687] = 463, - [688] = 493, - [689] = 452, - [690] = 480, - [691] = 454, - [692] = 647, - [693] = 480, - [694] = 493, - [695] = 505, - [696] = 503, - [697] = 302, - [698] = 446, - [699] = 497, - [700] = 700, - [701] = 701, - [702] = 702, + [679] = 679, + [680] = 680, + [681] = 464, + [682] = 475, + [683] = 455, + [684] = 457, + [685] = 464, + [686] = 686, + [687] = 455, + [688] = 344, + [689] = 474, + [690] = 545, + [691] = 464, + [692] = 541, + [693] = 455, + [694] = 543, + [695] = 461, + [696] = 696, + [697] = 461, + [698] = 542, + [699] = 699, + [700] = 699, + [701] = 648, + [702] = 447, [703] = 703, - [704] = 704, - [705] = 705, - [706] = 456, - [707] = 458, - [708] = 447, - [709] = 709, - [710] = 647, - [711] = 462, - [712] = 479, - [713] = 448, - [714] = 478, - [715] = 715, + [704] = 446, + [705] = 457, + [706] = 706, + [707] = 545, + [708] = 703, + [709] = 699, + [710] = 463, + [711] = 711, + [712] = 455, + [713] = 648, + [714] = 447, + [715] = 449, [716] = 716, - [717] = 463, + [717] = 717, [718] = 718, - [719] = 480, - [720] = 493, - [721] = 505, - [722] = 503, - [723] = 302, - [724] = 446, - [725] = 497, - [726] = 462, - [727] = 478, - [728] = 490, - [729] = 302, - [730] = 503, - [731] = 505, - [732] = 493, - [733] = 480, - [734] = 734, - [735] = 735, - [736] = 736, - [737] = 478, - [738] = 738, - [739] = 739, - [740] = 452, + [719] = 528, + [720] = 699, + [721] = 519, + [722] = 469, + [723] = 463, + [724] = 648, + [725] = 447, + [726] = 726, + [727] = 727, + [728] = 699, + [729] = 463, + [730] = 648, + [731] = 699, + [732] = 732, + [733] = 487, + [734] = 699, + [735] = 463, + [736] = 464, + [737] = 648, + [738] = 519, + [739] = 461, + [740] = 474, [741] = 741, - [742] = 742, + [742] = 447, [743] = 743, - [744] = 744, - [745] = 450, - [746] = 647, + [744] = 490, + [745] = 344, + [746] = 746, [747] = 747, - [748] = 490, - [749] = 490, + [748] = 474, + [749] = 749, [750] = 750, - [751] = 480, - [752] = 493, - [753] = 452, - [754] = 505, - [755] = 503, - [756] = 756, - [757] = 757, - [758] = 302, + [751] = 464, + [752] = 474, + [753] = 699, + [754] = 754, + [755] = 541, + [756] = 463, + [757] = 455, + [758] = 758, [759] = 759, - [760] = 760, + [760] = 648, [761] = 761, - [762] = 762, - [763] = 446, - [764] = 764, - [765] = 765, - [766] = 497, - [767] = 647, - [768] = 768, + [762] = 461, + [763] = 675, + [764] = 642, + [765] = 447, + [766] = 766, + [767] = 457, + [768] = 543, [769] = 769, - [770] = 761, - [771] = 701, - [772] = 447, - [773] = 458, - [774] = 456, - [775] = 775, - [776] = 776, - [777] = 454, - [778] = 452, - [779] = 450, - [780] = 448, - [781] = 647, - [782] = 647, - [783] = 709, - [784] = 647, - [785] = 629, - [786] = 623, - [787] = 490, - [788] = 591, - [789] = 480, - [790] = 448, - [791] = 450, - [792] = 493, - [793] = 505, - [794] = 503, - [795] = 302, - [796] = 452, - [797] = 454, - [798] = 647, - [799] = 446, - [800] = 490, - [801] = 456, - [802] = 458, - [803] = 447, - [804] = 485, - [805] = 497, - [806] = 647, - [807] = 568, - [808] = 808, + [770] = 457, + [771] = 457, + [772] = 699, + [773] = 446, + [774] = 463, + [775] = 648, + [776] = 447, + [777] = 777, + [778] = 778, + [779] = 487, + [780] = 717, + [781] = 490, + [782] = 344, + [783] = 699, + [784] = 543, + [785] = 463, + [786] = 648, + [787] = 447, + [788] = 474, + [789] = 461, + [790] = 455, + [791] = 464, + [792] = 792, + [793] = 464, + [794] = 474, + [795] = 344, + [796] = 545, + [797] = 469, + [798] = 490, + [799] = 487, + [800] = 528, + [801] = 699, + [802] = 519, + [803] = 528, + [804] = 519, + [805] = 469, + [806] = 528, + [807] = 545, + [808] = 469, [809] = 809, [810] = 810, - [811] = 811, - [812] = 617, - [813] = 490, - [814] = 493, - [815] = 454, - [816] = 447, - [817] = 447, - [818] = 818, - [819] = 458, - [820] = 458, - [821] = 456, - [822] = 456, - [823] = 454, - [824] = 454, - [825] = 452, - [826] = 450, - [827] = 448, - [828] = 456, - [829] = 452, - [830] = 450, - [831] = 448, - [832] = 832, - [833] = 490, - [834] = 447, - [835] = 480, - [836] = 493, - [837] = 302, - [838] = 458, - [839] = 456, - [840] = 454, - [841] = 505, - [842] = 503, - [843] = 302, - [844] = 446, + [811] = 463, + [812] = 812, + [813] = 813, + [814] = 519, + [815] = 648, + [816] = 528, + [817] = 545, + [818] = 446, + [819] = 447, + [820] = 455, + [821] = 469, + [822] = 461, + [823] = 543, + [824] = 824, + [825] = 519, + [826] = 699, + [827] = 528, + [828] = 828, + [829] = 541, + [830] = 463, + [831] = 344, + [832] = 648, + [833] = 447, + [834] = 834, + [835] = 446, + [836] = 836, + [837] = 543, + [838] = 457, + [839] = 545, + [840] = 840, + [841] = 490, + [842] = 699, + [843] = 446, + [844] = 541, [845] = 845, - [846] = 846, - [847] = 497, - [848] = 848, - [849] = 452, - [850] = 447, - [851] = 458, - [852] = 456, + [846] = 487, + [847] = 490, + [848] = 463, + [849] = 455, + [850] = 344, + [851] = 851, + [852] = 852, [853] = 853, - [854] = 454, - [855] = 454, - [856] = 450, - [857] = 448, - [858] = 447, + [854] = 678, + [855] = 490, + [856] = 461, + [857] = 464, + [858] = 474, [859] = 859, - [860] = 446, - [861] = 458, - [862] = 450, - [863] = 456, - [864] = 439, - [865] = 448, - [866] = 458, - [867] = 867, - [868] = 503, - [869] = 869, - [870] = 647, - [871] = 447, - [872] = 447, - [873] = 452, - [874] = 458, - [875] = 456, - [876] = 454, - [877] = 450, - [878] = 452, - [879] = 505, - [880] = 450, - [881] = 448, - [882] = 497, - [883] = 448, - [884] = 447, - [885] = 490, - [886] = 458, - [887] = 480, - [888] = 493, - [889] = 505, - [890] = 890, - [891] = 503, - [892] = 505, - [893] = 493, - [894] = 480, - [895] = 448, - [896] = 450, - [897] = 503, - [898] = 452, - [899] = 454, - [900] = 456, - [901] = 302, - [902] = 446, - [903] = 497, - [904] = 458, - [905] = 447, - [906] = 490, - [907] = 907, - [908] = 908, - [909] = 456, - [910] = 503, - [911] = 454, - [912] = 497, - [913] = 448, - [914] = 450, - [915] = 452, - [916] = 450, - [917] = 452, - [918] = 448, - [919] = 447, - [920] = 458, - [921] = 647, - [922] = 454, - [923] = 490, - [924] = 456, - [925] = 480, - [926] = 493, - [927] = 505, - [928] = 490, - [929] = 503, - [930] = 701, - [931] = 454, - [932] = 302, - [933] = 452, - [934] = 456, - [935] = 458, - [936] = 455, - [937] = 446, - [938] = 447, - [939] = 497, - [940] = 450, - [941] = 448, - [942] = 490, - [943] = 480, - [944] = 944, - [945] = 493, - [946] = 505, - [947] = 480, - [948] = 448, - [949] = 450, - [950] = 452, - [951] = 497, - [952] = 446, - [953] = 490, - [954] = 454, - [955] = 700, - [956] = 456, - [957] = 458, - [958] = 302, - [959] = 959, - [960] = 497, - [961] = 446, - [962] = 302, - [963] = 503, - [964] = 964, - [965] = 480, - [966] = 493, - [967] = 505, - [968] = 968, - [969] = 71, - [970] = 69, - [971] = 67, - [972] = 68, + [860] = 487, + [861] = 861, + [862] = 461, + [863] = 455, + [864] = 464, + [865] = 865, + [866] = 474, + [867] = 677, + [868] = 868, + [869] = 344, + [870] = 543, + [871] = 490, + [872] = 872, + [873] = 487, + [874] = 474, + [875] = 464, + [876] = 394, + [877] = 877, + [878] = 878, + [879] = 879, + [880] = 455, + [881] = 541, + [882] = 461, + [883] = 883, + [884] = 487, + [885] = 344, + [886] = 528, + [887] = 461, + [888] = 490, + [889] = 344, + [890] = 490, + [891] = 487, + [892] = 519, + [893] = 893, + [894] = 455, + [895] = 464, + [896] = 474, + [897] = 344, + [898] = 490, + [899] = 487, + [900] = 449, + [901] = 469, + [902] = 487, + [903] = 461, + [904] = 474, + [905] = 905, + [906] = 469, + [907] = 490, + [908] = 475, + [909] = 519, + [910] = 344, + [911] = 528, + [912] = 455, + [913] = 457, + [914] = 914, + [915] = 915, + [916] = 545, + [917] = 747, + [918] = 543, + [919] = 474, + [920] = 920, + [921] = 541, + [922] = 922, + [923] = 677, + [924] = 446, + [925] = 678, + [926] = 464, + [927] = 927, + [928] = 455, + [929] = 461, + [930] = 487, + [931] = 931, + [932] = 545, + [933] = 933, + [934] = 934, + [935] = 541, + [936] = 446, + [937] = 447, + [938] = 545, + [939] = 457, + [940] = 648, + [941] = 941, + [942] = 543, + [943] = 943, + [944] = 455, + [945] = 945, + [946] = 946, + [947] = 941, + [948] = 344, + [949] = 490, + [950] = 490, + [951] = 446, + [952] = 545, + [953] = 528, + [954] = 344, + [955] = 519, + [956] = 469, + [957] = 469, + [958] = 519, + [959] = 528, + [960] = 541, + [961] = 455, + [962] = 543, + [963] = 446, + [964] = 545, + [965] = 464, + [966] = 490, + [967] = 455, + [968] = 528, + [969] = 519, + [970] = 469, + [971] = 971, + [972] = 71, [973] = 70, - [974] = 974, - [975] = 269, - [976] = 295, - [977] = 265, - [978] = 256, - [979] = 284, - [980] = 270, - [981] = 288, - [982] = 982, - [983] = 280, - [984] = 292, - [985] = 985, + [974] = 68, + [975] = 67, + [976] = 69, + [977] = 977, + [978] = 294, + [979] = 296, + [980] = 297, + [981] = 289, + [982] = 236, + [983] = 242, + [984] = 984, + [985] = 241, [986] = 298, - [987] = 234, - [988] = 233, - [989] = 298, - [990] = 990, + [987] = 282, + [988] = 295, + [989] = 235, + [990] = 240, [991] = 991, - [992] = 386, - [993] = 993, - [994] = 385, - [995] = 233, - [996] = 292, - [997] = 288, - [998] = 270, - [999] = 265, - [1000] = 234, - [1001] = 1001, - [1002] = 295, - [1003] = 436, - [1004] = 68, - [1005] = 414, + [992] = 389, + [993] = 289, + [994] = 379, + [995] = 240, + [996] = 996, + [997] = 235, + [998] = 998, + [999] = 999, + [1000] = 295, + [1001] = 297, + [1002] = 1002, + [1003] = 298, + [1004] = 241, + [1005] = 294, [1006] = 432, - [1007] = 412, - [1008] = 395, - [1009] = 69, + [1007] = 398, + [1008] = 396, + [1009] = 68, [1010] = 70, - [1011] = 67, - [1012] = 412, + [1011] = 398, + [1012] = 396, [1013] = 71, - [1014] = 436, - [1015] = 439, - [1016] = 461, - [1017] = 775, - [1018] = 457, - [1019] = 776, - [1020] = 944, - [1021] = 845, - [1022] = 846, - [1023] = 853, - [1024] = 488, - [1025] = 666, - [1026] = 668, - [1027] = 468, - [1028] = 492, - [1029] = 654, - [1030] = 659, - [1031] = 677, - [1032] = 512, - [1033] = 637, - [1034] = 859, - [1035] = 869, - [1036] = 678, - [1037] = 634, - [1038] = 739, - [1039] = 867, - [1040] = 455, - [1041] = 595, - [1042] = 626, - [1043] = 635, - [1044] = 455, - [1045] = 667, - [1046] = 756, - [1047] = 682, - [1048] = 848, - [1049] = 466, - [1050] = 832, - [1051] = 757, - [1052] = 811, - [1053] = 527, - [1054] = 528, - [1055] = 529, - [1056] = 683, - [1057] = 638, - [1058] = 810, - [1059] = 651, - [1060] = 702, - [1061] = 703, - [1062] = 809, - [1063] = 528, - [1064] = 808, - [1065] = 704, - [1066] = 959, - [1067] = 908, - [1068] = 705, - [1069] = 529, - [1070] = 764, - [1071] = 715, - [1072] = 716, - [1073] = 718, - [1074] = 760, - [1075] = 762, - [1076] = 554, - [1077] = 768, - [1078] = 769, - [1079] = 544, - [1080] = 631, - [1081] = 628, - [1082] = 765, - [1083] = 818, - [1084] = 620, - [1085] = 645, - [1086] = 474, - [1087] = 759, - [1088] = 750, - [1089] = 509, - [1090] = 475, - [1091] = 747, - [1092] = 476, - [1093] = 743, - [1094] = 964, - [1095] = 604, - [1096] = 509, - [1097] = 477, - [1098] = 742, - [1099] = 484, - [1100] = 556, - [1101] = 907, - [1102] = 890, - [1103] = 557, - [1104] = 650, - [1105] = 564, - [1106] = 565, - [1107] = 738, - [1108] = 736, - [1109] = 734, - [1110] = 465, - [1111] = 735, - [1112] = 589, - [1113] = 596, - [1114] = 460, - [1115] = 665, - [1116] = 600, - [1117] = 553, - [1118] = 439, - [1119] = 552, - [1120] = 601, - [1121] = 670, - [1122] = 69, - [1123] = 67, - [1124] = 68, - [1125] = 70, - [1126] = 69, - [1127] = 67, - [1128] = 1128, - [1129] = 71, - [1130] = 68, - [1131] = 234, - [1132] = 295, - [1133] = 298, - [1134] = 233, - [1135] = 288, - [1136] = 284, - [1137] = 256, - [1138] = 269, - [1139] = 265, - [1140] = 270, - [1141] = 70, - [1142] = 292, - [1143] = 1143, - [1144] = 71, - [1145] = 280, - [1146] = 68, + [1014] = 404, + [1015] = 393, + [1016] = 67, + [1017] = 69, + [1018] = 678, + [1019] = 865, + [1020] = 718, + [1021] = 679, + [1022] = 661, + [1023] = 706, + [1024] = 758, + [1025] = 920, + [1026] = 459, + [1027] = 450, + [1028] = 448, + [1029] = 656, + [1030] = 946, + [1031] = 922, + [1032] = 716, + [1033] = 933, + [1034] = 540, + [1035] = 460, + [1036] = 453, + [1037] = 678, + [1038] = 726, + [1039] = 877, + [1040] = 456, + [1041] = 677, + [1042] = 931, + [1043] = 473, + [1044] = 915, + [1045] = 893, + [1046] = 914, + [1047] = 943, + [1048] = 872, + [1049] = 836, + [1050] = 834, + [1051] = 851, + [1052] = 623, + [1053] = 602, + [1054] = 927, + [1055] = 668, + [1056] = 749, + [1057] = 934, + [1058] = 674, + [1059] = 653, + [1060] = 654, + [1061] = 660, + [1062] = 672, + [1063] = 676, + [1064] = 945, + [1065] = 905, + [1066] = 658, + [1067] = 652, + [1068] = 686, + [1069] = 769, + [1070] = 824, + [1071] = 883, + [1072] = 451, + [1073] = 452, + [1074] = 631, + [1075] = 628, + [1076] = 711, + [1077] = 677, + [1078] = 454, + [1079] = 732, + [1080] = 853, + [1081] = 620, + [1082] = 809, + [1083] = 810, + [1084] = 812, + [1085] = 828, + [1086] = 813, + [1087] = 470, + [1088] = 394, + [1089] = 472, + [1090] = 840, + [1091] = 861, + [1092] = 465, + [1093] = 754, + [1094] = 750, + [1095] = 941, + [1096] = 878, + [1097] = 879, + [1098] = 696, + [1099] = 466, + [1100] = 467, + [1101] = 941, + [1102] = 394, + [1103] = 680, + [1104] = 468, + [1105] = 859, + [1106] = 604, + [1107] = 852, + [1108] = 486, + [1109] = 778, + [1110] = 527, + [1111] = 777, + [1112] = 556, + [1113] = 557, + [1114] = 565, + [1115] = 668, + [1116] = 566, + [1117] = 589, + [1118] = 759, + [1119] = 596, + [1120] = 761, + [1121] = 766, + [1122] = 741, + [1123] = 600, + [1124] = 601, + [1125] = 71, + [1126] = 70, + [1127] = 68, + [1128] = 69, + [1129] = 68, + [1130] = 70, + [1131] = 1131, + [1132] = 67, + [1133] = 71, + [1134] = 289, + [1135] = 297, + [1136] = 240, + [1137] = 69, + [1138] = 296, + [1139] = 298, + [1140] = 241, + [1141] = 236, + [1142] = 294, + [1143] = 235, + [1144] = 242, + [1145] = 295, + [1146] = 71, [1147] = 1147, - [1148] = 69, - [1149] = 385, - [1150] = 67, - [1151] = 386, - [1152] = 1152, - [1153] = 436, - [1154] = 414, - [1155] = 395, - [1156] = 1156, - [1157] = 455, - [1158] = 432, - [1159] = 412, - [1160] = 1160, - [1161] = 436, - [1162] = 412, - [1163] = 750, - [1164] = 70, - [1165] = 716, - [1166] = 964, - [1167] = 867, - [1168] = 474, - [1169] = 715, - [1170] = 475, - [1171] = 476, - [1172] = 477, - [1173] = 553, - [1174] = 552, - [1175] = 869, - [1176] = 907, - [1177] = 890, - [1178] = 484, - [1179] = 670, - [1180] = 1180, - [1181] = 734, - [1182] = 1180, - [1183] = 705, - [1184] = 959, - [1185] = 704, - [1186] = 703, - [1187] = 702, - [1188] = 556, - [1189] = 557, - [1190] = 564, - [1191] = 565, - [1192] = 665, - [1193] = 832, - [1194] = 589, - [1195] = 650, - [1196] = 596, - [1197] = 683, - [1198] = 600, - [1199] = 601, - [1200] = 71, - [1201] = 809, - [1202] = 466, - [1203] = 604, - [1204] = 620, - [1205] = 628, - [1206] = 645, - [1207] = 651, - [1208] = 654, - [1209] = 544, - [1210] = 659, - [1211] = 682, - [1212] = 677, - [1213] = 678, - [1214] = 638, - [1215] = 1215, - [1216] = 554, - [1217] = 667, - [1218] = 465, - [1219] = 739, - [1220] = 756, - [1221] = 461, - [1222] = 811, - [1223] = 762, - [1224] = 455, - [1225] = 460, - [1226] = 635, - [1227] = 944, - [1228] = 810, - [1229] = 70, - [1230] = 818, - [1231] = 626, - [1232] = 768, - [1233] = 808, - [1234] = 457, - [1235] = 488, - [1236] = 492, - [1237] = 848, - [1238] = 757, - [1239] = 759, - [1240] = 512, - [1241] = 735, - [1242] = 468, - [1243] = 736, - [1244] = 68, - [1245] = 764, + [1148] = 68, + [1149] = 1149, + [1150] = 389, + [1151] = 70, + [1152] = 282, + [1153] = 379, + [1154] = 1154, + [1155] = 67, + [1156] = 941, + [1157] = 393, + [1158] = 398, + [1159] = 396, + [1160] = 396, + [1161] = 432, + [1162] = 404, + [1163] = 398, + [1164] = 1164, + [1165] = 1165, + [1166] = 943, + [1167] = 660, + [1168] = 877, + [1169] = 872, + [1170] = 879, + [1171] = 68, + [1172] = 834, + [1173] = 941, + [1174] = 394, + [1175] = 467, + [1176] = 824, + [1177] = 749, + [1178] = 934, + [1179] = 466, + [1180] = 674, + [1181] = 809, + [1182] = 465, + [1183] = 810, + [1184] = 812, + [1185] = 813, + [1186] = 945, + [1187] = 905, + [1188] = 658, + [1189] = 556, + [1190] = 67, + [1191] = 883, + [1192] = 454, + [1193] = 678, + [1194] = 452, + [1195] = 840, + [1196] = 451, + [1197] = 769, + [1198] = 927, + [1199] = 677, + [1200] = 668, + [1201] = 861, + [1202] = 828, + [1203] = 878, + [1204] = 686, + [1205] = 754, + [1206] = 602, + [1207] = 750, + [1208] = 696, + [1209] = 623, + [1210] = 1210, + [1211] = 557, + [1212] = 468, + [1213] = 853, + [1214] = 893, + [1215] = 631, + [1216] = 527, + [1217] = 718, + [1218] = 920, + [1219] = 565, + [1220] = 566, + [1221] = 836, + [1222] = 726, + [1223] = 711, + [1224] = 933, + [1225] = 473, + [1226] = 653, + [1227] = 69, + [1228] = 654, + [1229] = 716, + [1230] = 460, + [1231] = 472, + [1232] = 69, + [1233] = 1210, + [1234] = 589, + [1235] = 470, + [1236] = 450, + [1237] = 67, + [1238] = 486, + [1239] = 706, + [1240] = 68, + [1241] = 915, + [1242] = 70, + [1243] = 946, + [1244] = 459, + [1245] = 448, [1246] = 71, - [1247] = 775, - [1248] = 738, - [1249] = 742, - [1250] = 743, - [1251] = 765, - [1252] = 529, - [1253] = 69, - [1254] = 776, - [1255] = 67, - [1256] = 634, - [1257] = 527, - [1258] = 637, - [1259] = 70, - [1260] = 666, - [1261] = 668, - [1262] = 747, - [1263] = 718, - [1264] = 845, - [1265] = 846, - [1266] = 853, - [1267] = 528, - [1268] = 509, - [1269] = 769, - [1270] = 631, - [1271] = 439, - [1272] = 908, - [1273] = 760, - [1274] = 859, - [1275] = 67, - [1276] = 69, - [1277] = 595, - [1278] = 68, - [1279] = 256, - [1280] = 269, - [1281] = 529, - [1282] = 528, - [1283] = 71, - [1284] = 284, - [1285] = 1285, - [1286] = 1285, - [1287] = 386, - [1288] = 385, - [1289] = 265, - [1290] = 234, - [1291] = 298, - [1292] = 295, - [1293] = 292, - [1294] = 1294, - [1295] = 288, - [1296] = 234, - [1297] = 233, - [1298] = 395, - [1299] = 734, - [1300] = 270, - [1301] = 412, - [1302] = 288, - [1303] = 436, - [1304] = 455, - [1305] = 414, - [1306] = 718, - [1307] = 716, - [1308] = 715, - [1309] = 436, - [1310] = 292, + [1247] = 69, + [1248] = 71, + [1249] = 865, + [1250] = 859, + [1251] = 852, + [1252] = 732, + [1253] = 851, + [1254] = 1254, + [1255] = 931, + [1256] = 778, + [1257] = 777, + [1258] = 766, + [1259] = 761, + [1260] = 759, + [1261] = 758, + [1262] = 741, + [1263] = 540, + [1264] = 672, + [1265] = 70, + [1266] = 453, + [1267] = 680, + [1268] = 679, + [1269] = 661, + [1270] = 922, + [1271] = 656, + [1272] = 652, + [1273] = 456, + [1274] = 628, + [1275] = 596, + [1276] = 676, + [1277] = 914, + [1278] = 620, + [1279] = 604, + [1280] = 600, + [1281] = 601, + [1282] = 296, + [1283] = 67, + [1284] = 677, + [1285] = 678, + [1286] = 242, + [1287] = 236, + [1288] = 379, + [1289] = 389, + [1290] = 1290, + [1291] = 1290, + [1292] = 297, + [1293] = 297, + [1294] = 240, + [1295] = 696, + [1296] = 398, + [1297] = 235, + [1298] = 396, + [1299] = 432, + [1300] = 298, + [1301] = 241, + [1302] = 294, + [1303] = 289, + [1304] = 295, + [1305] = 927, + [1306] = 602, + [1307] = 404, + [1308] = 941, + [1309] = 623, + [1310] = 393, [1311] = 295, - [1312] = 298, - [1313] = 457, - [1314] = 460, - [1315] = 412, - [1316] = 461, - [1317] = 233, - [1318] = 265, - [1319] = 432, - [1320] = 270, - [1321] = 465, - [1322] = 765, - [1323] = 890, - [1324] = 907, - [1325] = 869, - [1326] = 705, - [1327] = 704, - [1328] = 703, - [1329] = 702, - [1330] = 1330, - [1331] = 867, - [1332] = 769, - [1333] = 768, - [1334] = 683, - [1335] = 682, - [1336] = 634, - [1337] = 762, - [1338] = 667, - [1339] = 637, - [1340] = 848, - [1341] = 635, - [1342] = 832, - [1343] = 626, - [1344] = 964, - [1345] = 811, - [1346] = 595, - [1347] = 810, - [1348] = 809, - [1349] = 808, - [1350] = 455, - [1351] = 908, - [1352] = 666, - [1353] = 668, - [1354] = 528, - [1355] = 554, - [1356] = 529, - [1357] = 959, - [1358] = 512, - [1359] = 818, - [1360] = 750, - [1361] = 747, - [1362] = 743, - [1363] = 492, - [1364] = 944, - [1365] = 488, - [1366] = 742, - [1367] = 738, - [1368] = 736, - [1369] = 735, - [1370] = 553, - [1371] = 466, - [1372] = 468, - [1373] = 552, - [1374] = 670, - [1375] = 650, - [1376] = 645, - [1377] = 1377, - [1378] = 474, - [1379] = 475, - [1380] = 476, - [1381] = 665, - [1382] = 544, - [1383] = 477, - [1384] = 638, - [1385] = 527, - [1386] = 484, - [1387] = 760, - [1388] = 859, - [1389] = 853, - [1390] = 556, - [1391] = 557, - [1392] = 564, - [1393] = 565, - [1394] = 846, - [1395] = 589, - [1396] = 845, - [1397] = 596, - [1398] = 776, - [1399] = 600, - [1400] = 601, - [1401] = 775, - [1402] = 604, - [1403] = 620, - [1404] = 628, - [1405] = 631, - [1406] = 764, - [1407] = 651, - [1408] = 654, - [1409] = 759, - [1410] = 659, - [1411] = 757, - [1412] = 756, - [1413] = 677, - [1414] = 678, - [1415] = 739, - [1416] = 1416, - [1417] = 439, - [1418] = 509, - [1419] = 70, + [1312] = 1312, + [1313] = 298, + [1314] = 241, + [1315] = 294, + [1316] = 396, + [1317] = 235, + [1318] = 240, + [1319] = 398, + [1320] = 289, + [1321] = 674, + [1322] = 934, + [1323] = 749, + [1324] = 840, + [1325] = 810, + [1326] = 654, + [1327] = 527, + [1328] = 1328, + [1329] = 883, + [1330] = 711, + [1331] = 660, + [1332] = 672, + [1333] = 472, + [1334] = 658, + [1335] = 905, + [1336] = 945, + [1337] = 470, + [1338] = 686, + [1339] = 450, + [1340] = 834, + [1341] = 836, + [1342] = 872, + [1343] = 877, + [1344] = 448, + [1345] = 750, + [1346] = 676, + [1347] = 865, + [1348] = 933, + [1349] = 946, + [1350] = 1350, + [1351] = 920, + [1352] = 879, + [1353] = 878, + [1354] = 718, + [1355] = 859, + [1356] = 706, + [1357] = 941, + [1358] = 852, + [1359] = 540, + [1360] = 678, + [1361] = 677, + [1362] = 851, + [1363] = 732, + [1364] = 778, + [1365] = 777, + [1366] = 766, + [1367] = 861, + [1368] = 761, + [1369] = 653, + [1370] = 726, + [1371] = 759, + [1372] = 824, + [1373] = 758, + [1374] = 893, + [1375] = 813, + [1376] = 943, + [1377] = 812, + [1378] = 741, + [1379] = 680, + [1380] = 828, + [1381] = 451, + [1382] = 452, + [1383] = 454, + [1384] = 769, + [1385] = 716, + [1386] = 931, + [1387] = 679, + [1388] = 853, + [1389] = 465, + [1390] = 466, + [1391] = 467, + [1392] = 661, + [1393] = 656, + [1394] = 468, + [1395] = 809, + [1396] = 453, + [1397] = 486, + [1398] = 922, + [1399] = 456, + [1400] = 459, + [1401] = 556, + [1402] = 557, + [1403] = 565, + [1404] = 566, + [1405] = 460, + [1406] = 589, + [1407] = 473, + [1408] = 596, + [1409] = 915, + [1410] = 600, + [1411] = 601, + [1412] = 754, + [1413] = 604, + [1414] = 620, + [1415] = 628, + [1416] = 631, + [1417] = 914, + [1418] = 652, + [1419] = 1419, [1420] = 1420, - [1421] = 69, - [1422] = 67, - [1423] = 509, - [1424] = 71, - [1425] = 1425, - [1426] = 68, - [1427] = 439, - [1428] = 1428, - [1429] = 68, - [1430] = 69, - [1431] = 414, - [1432] = 67, + [1421] = 394, + [1422] = 69, + [1423] = 668, + [1424] = 1424, + [1425] = 68, + [1426] = 70, + [1427] = 71, + [1428] = 67, + [1429] = 1429, + [1430] = 394, + [1431] = 668, + [1432] = 68, [1433] = 70, - [1434] = 1434, - [1435] = 1435, + [1434] = 71, + [1435] = 404, [1436] = 1436, [1437] = 1437, - [1438] = 553, - [1439] = 552, + [1438] = 1438, + [1439] = 941, [1440] = 1440, - [1441] = 455, - [1442] = 70, + [1441] = 1441, + [1442] = 69, [1443] = 1443, [1444] = 1444, - [1445] = 638, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 808, + [1445] = 915, + [1446] = 914, + [1447] = 69, + [1448] = 660, + [1449] = 878, [1450] = 1450, - [1451] = 645, - [1452] = 1452, + [1451] = 1451, + [1452] = 459, [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 650, - [1457] = 665, - [1458] = 67, - [1459] = 1459, - [1460] = 1460, - [1461] = 666, - [1462] = 668, - [1463] = 527, - [1464] = 670, + [1454] = 460, + [1455] = 922, + [1456] = 456, + [1457] = 1457, + [1458] = 470, + [1459] = 67, + [1460] = 71, + [1461] = 472, + [1462] = 70, + [1463] = 473, + [1464] = 68, [1465] = 1465, [1466] = 1466, - [1467] = 71, - [1468] = 809, + [1467] = 1467, + [1468] = 1468, [1469] = 1469, [1470] = 1470, - [1471] = 69, - [1472] = 68, - [1473] = 1473, + [1471] = 1471, + [1472] = 1472, + [1473] = 453, [1474] = 1474, - [1475] = 1475, - [1476] = 544, - [1477] = 637, - [1478] = 634, + [1475] = 450, + [1476] = 1476, + [1477] = 1477, + [1478] = 1478, [1479] = 1479, [1480] = 1480, [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 813, [1485] = 1485, [1486] = 1486, - [1487] = 869, + [1487] = 879, [1488] = 1488, - [1489] = 1489, - [1490] = 867, - [1491] = 735, - [1492] = 736, - [1493] = 738, - [1494] = 742, - [1495] = 743, - [1496] = 848, - [1497] = 747, - [1498] = 750, - [1499] = 760, - [1500] = 765, - [1501] = 832, - [1502] = 554, - [1503] = 1503, - [1504] = 1504, - [1505] = 811, + [1489] = 448, + [1490] = 1490, + [1491] = 1491, + [1492] = 840, + [1493] = 861, + [1494] = 653, + [1495] = 654, + [1496] = 1496, + [1497] = 672, + [1498] = 1498, + [1499] = 676, + [1500] = 686, + [1501] = 711, + [1502] = 716, + [1503] = 732, + [1504] = 809, + [1505] = 853, [1506] = 810, - [1507] = 1507, - [1508] = 1508, + [1507] = 931, + [1508] = 812, [1509] = 1509, [1510] = 1510, [1511] = 1511, - [1512] = 1512, - [1513] = 71, + [1512] = 396, + [1513] = 1513, [1514] = 1514, [1515] = 1515, - [1516] = 70, + [1516] = 1516, [1517] = 1517, [1518] = 1518, [1519] = 1519, @@ -4864,7 +4889,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1523] = 1523, [1524] = 1524, [1525] = 1525, - [1526] = 1526, + [1526] = 69, [1527] = 1527, [1528] = 1528, [1529] = 1529, @@ -4879,10 +4904,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1538] = 1538, [1539] = 1539, [1540] = 1540, - [1541] = 436, - [1542] = 631, + [1541] = 631, + [1542] = 1542, [1543] = 1543, - [1544] = 412, + [1544] = 1544, [1545] = 1545, [1546] = 1546, [1547] = 1547, @@ -4907,12 +4932,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1566] = 1566, [1567] = 1567, [1568] = 1568, - [1569] = 1569, + [1569] = 67, [1570] = 1570, [1571] = 1571, [1572] = 1572, [1573] = 1573, - [1574] = 1574, + [1574] = 398, [1575] = 1575, [1576] = 1576, [1577] = 1577, @@ -4941,1870 +4966,1870 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1600] = 1600, [1601] = 1601, [1602] = 1602, - [1603] = 71, - [1604] = 67, - [1605] = 69, - [1606] = 68, - [1607] = 70, - [1608] = 1608, - [1609] = 71, - [1610] = 1610, - [1611] = 71, + [1603] = 1603, + [1604] = 1604, + [1605] = 1605, + [1606] = 67, + [1607] = 68, + [1608] = 69, + [1609] = 70, + [1610] = 71, + [1611] = 1611, [1612] = 1612, - [1613] = 1613, + [1613] = 67, [1614] = 1614, - [1615] = 637, - [1616] = 668, - [1617] = 666, - [1618] = 634, - [1619] = 760, - [1620] = 668, - [1621] = 666, - [1622] = 637, - [1623] = 634, - [1624] = 760, - [1625] = 1625, - [1626] = 637, - [1627] = 760, - [1628] = 634, - [1629] = 634, - [1630] = 666, - [1631] = 668, - [1632] = 760, - [1633] = 668, - [1634] = 666, - [1635] = 637, - [1636] = 284, - [1637] = 265, - [1638] = 295, - [1639] = 298, - [1640] = 269, - [1641] = 270, - [1642] = 285, - [1643] = 288, - [1644] = 292, - [1645] = 215, - [1646] = 233, - [1647] = 234, - [1648] = 256, - [1649] = 216, - [1650] = 412, - [1651] = 436, - [1652] = 386, - [1653] = 385, - [1654] = 743, - [1655] = 288, - [1656] = 233, - [1657] = 234, - [1658] = 256, - [1659] = 292, - [1660] = 295, - [1661] = 298, - [1662] = 280, - [1663] = 394, - [1664] = 509, - [1665] = 395, - [1666] = 1666, - [1667] = 432, - [1668] = 269, - [1669] = 270, - [1670] = 265, - [1671] = 414, - [1672] = 455, - [1673] = 284, - [1674] = 750, - [1675] = 742, - [1676] = 747, - [1677] = 867, - [1678] = 1678, - [1679] = 832, - [1680] = 765, - [1681] = 869, - [1682] = 808, - [1683] = 809, - [1684] = 810, - [1685] = 811, - [1686] = 848, - [1687] = 439, - [1688] = 638, - [1689] = 645, - [1690] = 650, - [1691] = 665, - [1692] = 670, - [1693] = 394, - [1694] = 735, - [1695] = 736, - [1696] = 1666, - [1697] = 738, - [1698] = 768, - [1699] = 552, - [1700] = 565, - [1701] = 589, - [1702] = 596, - [1703] = 600, - [1704] = 601, - [1705] = 604, - [1706] = 620, - [1707] = 628, - [1708] = 436, - [1709] = 386, - [1710] = 439, - [1711] = 631, - [1712] = 718, - [1713] = 544, - [1714] = 651, - [1715] = 527, - [1716] = 654, - [1717] = 659, - [1718] = 529, - [1719] = 528, - [1720] = 677, - [1721] = 678, - [1722] = 734, - [1723] = 890, - [1724] = 907, - [1725] = 908, - [1726] = 964, - [1727] = 439, - [1728] = 818, - [1729] = 769, - [1730] = 564, - [1731] = 762, - [1732] = 716, - [1733] = 715, - [1734] = 529, - [1735] = 528, - [1736] = 705, - [1737] = 704, - [1738] = 703, - [1739] = 702, - [1740] = 683, - [1741] = 682, - [1742] = 667, - [1743] = 412, - [1744] = 756, - [1745] = 635, - [1746] = 626, - [1747] = 757, - [1748] = 595, - [1749] = 512, - [1750] = 759, - [1751] = 764, - [1752] = 739, - [1753] = 455, - [1754] = 775, - [1755] = 959, - [1756] = 776, - [1757] = 553, - [1758] = 492, - [1759] = 488, - [1760] = 457, - [1761] = 460, - [1762] = 461, - [1763] = 465, - [1764] = 466, - [1765] = 554, - [1766] = 468, - [1767] = 944, - [1768] = 474, - [1769] = 475, - [1770] = 476, - [1771] = 845, - [1772] = 859, - [1773] = 853, - [1774] = 477, - [1775] = 484, - [1776] = 385, - [1777] = 556, - [1778] = 557, - [1779] = 846, - [1780] = 1780, - [1781] = 256, - [1782] = 265, - [1783] = 265, - [1784] = 269, - [1785] = 270, - [1786] = 288, - [1787] = 284, - [1788] = 233, - [1789] = 216, - [1790] = 234, - [1791] = 256, - [1792] = 432, - [1793] = 439, - [1794] = 292, - [1795] = 395, - [1796] = 295, - [1797] = 298, - [1798] = 269, - [1799] = 414, - [1800] = 509, - [1801] = 234, - [1802] = 233, - [1803] = 216, - [1804] = 284, - [1805] = 455, + [1615] = 1615, + [1616] = 67, + [1617] = 1617, + [1618] = 716, + [1619] = 470, + [1620] = 472, + [1621] = 448, + [1622] = 450, + [1623] = 450, + [1624] = 448, + [1625] = 470, + [1626] = 716, + [1627] = 472, + [1628] = 472, + [1629] = 448, + [1630] = 716, + [1631] = 448, + [1632] = 450, + [1633] = 470, + [1634] = 450, + [1635] = 716, + [1636] = 470, + [1637] = 1637, + [1638] = 472, + [1639] = 215, + [1640] = 242, + [1641] = 241, + [1642] = 289, + [1643] = 248, + [1644] = 297, + [1645] = 296, + [1646] = 295, + [1647] = 298, + [1648] = 236, + [1649] = 240, + [1650] = 235, + [1651] = 294, + [1652] = 396, + [1653] = 379, + [1654] = 389, + [1655] = 398, + [1656] = 216, + [1657] = 242, + [1658] = 295, + [1659] = 809, + [1660] = 810, + [1661] = 812, + [1662] = 813, + [1663] = 289, + [1664] = 1664, + [1665] = 840, + [1666] = 297, + [1667] = 711, + [1668] = 1664, + [1669] = 282, + [1670] = 296, + [1671] = 453, + [1672] = 654, + [1673] = 653, + [1674] = 298, + [1675] = 460, + [1676] = 459, + [1677] = 1677, + [1678] = 941, + [1679] = 432, + [1680] = 407, + [1681] = 861, + [1682] = 473, + [1683] = 294, + [1684] = 394, + [1685] = 235, + [1686] = 878, + [1687] = 879, + [1688] = 404, + [1689] = 732, + [1690] = 241, + [1691] = 240, + [1692] = 236, + [1693] = 407, + [1694] = 660, + [1695] = 672, + [1696] = 393, + [1697] = 668, + [1698] = 676, + [1699] = 686, + [1700] = 456, + [1701] = 628, + [1702] = 865, + [1703] = 893, + [1704] = 943, + [1705] = 623, + [1706] = 602, + [1707] = 706, + [1708] = 927, + [1709] = 451, + [1710] = 853, + [1711] = 394, + [1712] = 452, + [1713] = 454, + [1714] = 465, + [1715] = 466, + [1716] = 467, + [1717] = 468, + [1718] = 836, + [1719] = 726, + [1720] = 556, + [1721] = 557, + [1722] = 565, + [1723] = 566, + [1724] = 589, + [1725] = 486, + [1726] = 600, + [1727] = 601, + [1728] = 604, + [1729] = 620, + [1730] = 631, + [1731] = 652, + [1732] = 656, + [1733] = 661, + [1734] = 677, + [1735] = 678, + [1736] = 679, + [1737] = 379, + [1738] = 680, + [1739] = 828, + [1740] = 389, + [1741] = 741, + [1742] = 758, + [1743] = 658, + [1744] = 759, + [1745] = 761, + [1746] = 766, + [1747] = 777, + [1748] = 718, + [1749] = 778, + [1750] = 540, + [1751] = 920, + [1752] = 946, + [1753] = 933, + [1754] = 877, + [1755] = 851, + [1756] = 852, + [1757] = 859, + [1758] = 394, + [1759] = 824, + [1760] = 596, + [1761] = 905, + [1762] = 945, + [1763] = 914, + [1764] = 915, + [1765] = 872, + [1766] = 922, + [1767] = 931, + [1768] = 398, + [1769] = 396, + [1770] = 941, + [1771] = 883, + [1772] = 769, + [1773] = 674, + [1774] = 754, + [1775] = 527, + [1776] = 750, + [1777] = 834, + [1778] = 696, + [1779] = 677, + [1780] = 934, + [1781] = 749, + [1782] = 678, + [1783] = 240, + [1784] = 236, + [1785] = 235, + [1786] = 216, + [1787] = 296, + [1788] = 216, + [1789] = 242, + [1790] = 236, + [1791] = 432, + [1792] = 240, + [1793] = 235, + [1794] = 941, + [1795] = 242, + [1796] = 668, + [1797] = 404, + [1798] = 1798, + [1799] = 295, + [1800] = 296, + [1801] = 394, + [1802] = 297, + [1803] = 289, + [1804] = 294, + [1805] = 241, [1806] = 298, - [1807] = 295, - [1808] = 292, - [1809] = 288, - [1810] = 270, - [1811] = 810, - [1812] = 959, - [1813] = 667, - [1814] = 682, - [1815] = 683, - [1816] = 604, - [1817] = 631, - [1818] = 620, - [1819] = 635, - [1820] = 702, - [1821] = 628, - [1822] = 703, - [1823] = 704, - [1824] = 385, - [1825] = 705, - [1826] = 412, - [1827] = 234, - [1828] = 715, - [1829] = 716, - [1830] = 718, - [1831] = 762, - [1832] = 768, - [1833] = 298, - [1834] = 295, - [1835] = 769, - [1836] = 818, - [1837] = 386, - [1838] = 385, - [1839] = 233, - [1840] = 651, - [1841] = 964, - [1842] = 600, - [1843] = 907, - [1844] = 292, - [1845] = 890, - [1846] = 734, - [1847] = 1847, - [1848] = 288, - [1849] = 270, - [1850] = 265, - [1851] = 527, - [1852] = 638, - [1853] = 544, - [1854] = 645, - [1855] = 944, - [1856] = 626, - [1857] = 760, - [1858] = 595, - [1859] = 650, - [1860] = 859, - [1861] = 853, - [1862] = 846, - [1863] = 845, - [1864] = 776, - [1865] = 775, - [1866] = 764, - [1867] = 759, - [1868] = 665, - [1869] = 512, - [1870] = 757, - [1871] = 756, - [1872] = 739, - [1873] = 670, - [1874] = 552, - [1875] = 553, - [1876] = 436, - [1877] = 455, - [1878] = 596, - [1879] = 601, - [1880] = 492, - [1881] = 634, - [1882] = 488, - [1883] = 457, + [1807] = 241, + [1808] = 298, + [1809] = 393, + [1810] = 295, + [1811] = 294, + [1812] = 297, + [1813] = 289, + [1814] = 943, + [1815] = 922, + [1816] = 389, + [1817] = 454, + [1818] = 452, + [1819] = 451, + [1820] = 927, + [1821] = 602, + [1822] = 623, + [1823] = 396, + [1824] = 893, + [1825] = 631, + [1826] = 465, + [1827] = 466, + [1828] = 467, + [1829] = 726, + [1830] = 398, + [1831] = 468, + [1832] = 540, + [1833] = 716, + [1834] = 282, + [1835] = 706, + [1836] = 282, + [1837] = 527, + [1838] = 718, + [1839] = 941, + [1840] = 920, + [1841] = 946, + [1842] = 933, + [1843] = 877, + [1844] = 872, + [1845] = 836, + [1846] = 678, + [1847] = 677, + [1848] = 834, + [1849] = 749, + [1850] = 934, + [1851] = 674, + [1852] = 945, + [1853] = 905, + [1854] = 658, + [1855] = 486, + [1856] = 472, + [1857] = 883, + [1858] = 828, + [1859] = 396, + [1860] = 754, + [1861] = 750, + [1862] = 470, + [1863] = 865, + [1864] = 696, + [1865] = 678, + [1866] = 556, + [1867] = 677, + [1868] = 931, + [1869] = 557, + [1870] = 389, + [1871] = 379, + [1872] = 859, + [1873] = 565, + [1874] = 566, + [1875] = 589, + [1876] = 596, + [1877] = 600, + [1878] = 601, + [1879] = 604, + [1880] = 453, + [1881] = 379, + [1882] = 456, + [1883] = 459, [1884] = 460, - [1885] = 461, - [1886] = 637, - [1887] = 735, - [1888] = 678, - [1889] = 677, - [1890] = 736, - [1891] = 465, - [1892] = 738, - [1893] = 742, - [1894] = 743, - [1895] = 747, - [1896] = 750, - [1897] = 765, - [1898] = 528, - [1899] = 466, - [1900] = 529, - [1901] = 468, - [1902] = 386, - [1903] = 554, - [1904] = 280, - [1905] = 280, - [1906] = 654, - [1907] = 808, - [1908] = 809, - [1909] = 811, - [1910] = 589, - [1911] = 474, - [1912] = 475, - [1913] = 529, - [1914] = 832, - [1915] = 476, - [1916] = 848, - [1917] = 477, - [1918] = 484, - [1919] = 668, - [1920] = 867, - [1921] = 869, - [1922] = 412, - [1923] = 659, - [1924] = 436, - [1925] = 908, - [1926] = 666, - [1927] = 556, - [1928] = 557, - [1929] = 564, - [1930] = 565, - [1931] = 528, - [1932] = 414, - [1933] = 280, - [1934] = 432, - [1935] = 985, - [1936] = 395, - [1937] = 280, - [1938] = 1938, + [1885] = 620, + [1886] = 473, + [1887] = 915, + [1888] = 914, + [1889] = 628, + [1890] = 824, + [1891] = 1891, + [1892] = 653, + [1893] = 654, + [1894] = 240, + [1895] = 852, + [1896] = 660, + [1897] = 235, + [1898] = 652, + [1899] = 298, + [1900] = 672, + [1901] = 676, + [1902] = 686, + [1903] = 711, + [1904] = 656, + [1905] = 732, + [1906] = 853, + [1907] = 661, + [1908] = 679, + [1909] = 809, + [1910] = 680, + [1911] = 450, + [1912] = 810, + [1913] = 812, + [1914] = 448, + [1915] = 741, + [1916] = 758, + [1917] = 813, + [1918] = 759, + [1919] = 761, + [1920] = 766, + [1921] = 241, + [1922] = 777, + [1923] = 778, + [1924] = 851, + [1925] = 840, + [1926] = 861, + [1927] = 295, + [1928] = 878, + [1929] = 297, + [1930] = 879, + [1931] = 398, + [1932] = 289, + [1933] = 769, + [1934] = 294, + [1935] = 404, + [1936] = 984, + [1937] = 282, + [1938] = 282, [1939] = 432, - [1940] = 395, - [1941] = 1941, - [1942] = 414, + [1940] = 393, + [1941] = 282, + [1942] = 393, [1943] = 1943, - [1944] = 280, - [1945] = 484, - [1946] = 750, - [1947] = 604, - [1948] = 528, - [1949] = 620, - [1950] = 645, - [1951] = 665, - [1952] = 544, - [1953] = 964, - [1954] = 678, - [1955] = 677, - [1956] = 628, - [1957] = 509, - [1958] = 665, - [1959] = 832, - [1960] = 509, - [1961] = 677, - [1962] = 678, - [1963] = 907, - [1964] = 492, - [1965] = 650, - [1966] = 890, - [1967] = 638, - [1968] = 734, - [1969] = 756, - [1970] = 670, - [1971] = 659, - [1972] = 959, - [1973] = 907, - [1974] = 890, - [1975] = 869, - [1976] = 867, - [1977] = 654, - [1978] = 651, - [1979] = 631, - [1980] = 552, - [1981] = 628, - [1982] = 620, - [1983] = 604, - [1984] = 565, - [1985] = 867, - [1986] = 439, - [1987] = 488, - [1988] = 1988, - [1989] = 739, - [1990] = 757, - [1991] = 553, - [1992] = 601, - [1993] = 529, - [1994] = 528, - [1995] = 756, - [1996] = 600, - [1997] = 529, - [1998] = 735, - [1999] = 596, - [2000] = 818, - [2001] = 759, - [2002] = 589, - [2003] = 757, - [2004] = 736, - [2005] = 565, - [2006] = 595, - [2007] = 564, - [2008] = 764, - [2009] = 557, - [2010] = 738, - [2011] = 775, - [2012] = 742, - [2013] = 734, - [2014] = 601, - [2015] = 600, - [2016] = 759, - [2017] = 769, - [2018] = 768, - [2019] = 762, - [2020] = 631, - [2021] = 645, - [2022] = 455, - [2023] = 764, - [2024] = 964, - [2025] = 775, - [2026] = 776, - [2027] = 743, - [2028] = 556, - [2029] = 718, - [2030] = 552, - [2031] = 908, - [2032] = 564, - [2033] = 716, - [2034] = 529, - [2035] = 845, - [2036] = 484, - [2037] = 818, - [2038] = 544, - [2039] = 846, - [2040] = 715, - [2041] = 853, - [2042] = 477, - [2043] = 476, - [2044] = 475, - [2045] = 859, - [2046] = 474, - [2047] = 528, - [2048] = 2048, - [2049] = 718, - [2050] = 716, - [2051] = 715, - [2052] = 846, - [2053] = 626, - [2054] = 705, - [2055] = 705, - [2056] = 704, - [2057] = 703, - [2058] = 702, - [2059] = 512, - [2060] = 527, - [2061] = 776, - [2062] = 553, - [2063] = 683, - [2064] = 682, - [2065] = 848, - [2066] = 468, - [2067] = 466, - [2068] = 465, - [2069] = 704, - [2070] = 735, - [2071] = 626, - [2072] = 703, - [2073] = 461, - [2074] = 595, - [2075] = 439, - [2076] = 736, - [2077] = 738, - [2078] = 702, - [2079] = 742, - [2080] = 743, - [2081] = 455, - [2082] = 765, - [2083] = 455, - [2084] = 455, - [2085] = 512, - [2086] = 747, - [2087] = 750, - [2088] = 455, - [2089] = 509, - [2090] = 2090, - [2091] = 765, - [2092] = 460, - [2093] = 457, - [2094] = 457, - [2095] = 460, - [2096] = 461, - [2097] = 465, - [2098] = 466, - [2099] = 468, - [2100] = 944, - [2101] = 670, - [2102] = 488, - [2103] = 635, - [2104] = 554, - [2105] = 474, - [2106] = 475, - [2107] = 476, - [2108] = 808, - [2109] = 809, - [2110] = 477, - [2111] = 667, - [2112] = 908, - [2113] = 635, - [2114] = 638, - [2115] = 810, - [2116] = 747, - [2117] = 556, - [2118] = 557, - [2119] = 683, - [2120] = 848, - [2121] = 554, - [2122] = 589, - [2123] = 650, - [2124] = 596, - [2125] = 808, - [2126] = 809, - [2127] = 810, - [2128] = 811, - [2129] = 944, - [2130] = 682, - [2131] = 651, - [2132] = 654, - [2133] = 762, - [2134] = 659, - [2135] = 529, - [2136] = 528, - [2137] = 959, - [2138] = 811, - [2139] = 853, - [2140] = 739, - [2141] = 439, - [2142] = 845, - [2143] = 859, - [2144] = 768, - [2145] = 869, - [2146] = 769, - [2147] = 832, - [2148] = 527, - [2149] = 492, - [2150] = 667, - [2151] = 668, - [2152] = 760, - [2153] = 634, - [2154] = 637, - [2155] = 666, - [2156] = 2156, - [2157] = 284, - [2158] = 269, - [2159] = 256, - [2160] = 385, - [2161] = 2161, - [2162] = 386, + [1944] = 1944, + [1945] = 1945, + [1946] = 404, + [1947] = 432, + [1948] = 628, + [1949] = 557, + [1950] = 653, + [1951] = 879, + [1952] = 565, + [1953] = 754, + [1954] = 750, + [1955] = 566, + [1956] = 654, + [1957] = 668, + [1958] = 589, + [1959] = 660, + [1960] = 672, + [1961] = 596, + [1962] = 676, + [1963] = 600, + [1964] = 686, + [1965] = 711, + [1966] = 914, + [1967] = 732, + [1968] = 601, + [1969] = 527, + [1970] = 853, + [1971] = 604, + [1972] = 769, + [1973] = 620, + [1974] = 915, + [1975] = 628, + [1976] = 809, + [1977] = 810, + [1978] = 631, + [1979] = 652, + [1980] = 656, + [1981] = 812, + [1982] = 661, + [1983] = 813, + [1984] = 840, + [1985] = 861, + [1986] = 679, + [1987] = 680, + [1988] = 394, + [1989] = 741, + [1990] = 758, + [1991] = 941, + [1992] = 759, + [1993] = 761, + [1994] = 766, + [1995] = 777, + [1996] = 778, + [1997] = 452, + [1998] = 824, + [1999] = 851, + [2000] = 852, + [2001] = 859, + [2002] = 865, + [2003] = 861, + [2004] = 677, + [2005] = 678, + [2006] = 878, + [2007] = 486, + [2008] = 468, + [2009] = 467, + [2010] = 466, + [2011] = 465, + [2012] = 941, + [2013] = 840, + [2014] = 658, + [2015] = 905, + [2016] = 394, + [2017] = 879, + [2018] = 473, + [2019] = 824, + [2020] = 945, + [2021] = 813, + [2022] = 834, + [2023] = 451, + [2024] = 696, + [2025] = 927, + [2026] = 602, + [2027] = 679, + [2028] = 859, + [2029] = 852, + [2030] = 623, + [2031] = 943, + [2032] = 812, + [2033] = 893, + [2034] = 810, + [2035] = 828, + [2036] = 931, + [2037] = 556, + [2038] = 778, + [2039] = 460, + [2040] = 696, + [2041] = 777, + [2042] = 809, + [2043] = 766, + [2044] = 454, + [2045] = 459, + [2046] = 631, + [2047] = 456, + [2048] = 883, + [2049] = 761, + [2050] = 759, + [2051] = 758, + [2052] = 750, + [2053] = 754, + [2054] = 922, + [2055] = 453, + [2056] = 828, + [2057] = 453, + [2058] = 931, + [2059] = 680, + [2060] = 674, + [2061] = 934, + [2062] = 749, + [2063] = 883, + [2064] = 726, + [2065] = 941, + [2066] = 834, + [2067] = 836, + [2068] = 872, + [2069] = 877, + [2070] = 853, + [2071] = 920, + [2072] = 668, + [2073] = 922, + [2074] = 933, + [2075] = 946, + [2076] = 941, + [2077] = 456, + [2078] = 941, + [2079] = 878, + [2080] = 620, + [2081] = 604, + [2082] = 706, + [2083] = 718, + [2084] = 394, + [2085] = 540, + [2086] = 678, + [2087] = 658, + [2088] = 905, + [2089] = 945, + [2090] = 674, + [2091] = 934, + [2092] = 749, + [2093] = 677, + [2094] = 836, + [2095] = 2095, + [2096] = 726, + [2097] = 601, + [2098] = 600, + [2099] = 459, + [2100] = 668, + [2101] = 460, + [2102] = 527, + [2103] = 566, + [2104] = 732, + [2105] = 623, + [2106] = 602, + [2107] = 927, + [2108] = 451, + [2109] = 452, + [2110] = 454, + [2111] = 711, + [2112] = 872, + [2113] = 686, + [2114] = 676, + [2115] = 672, + [2116] = 465, + [2117] = 466, + [2118] = 467, + [2119] = 660, + [2120] = 540, + [2121] = 468, + [2122] = 877, + [2123] = 933, + [2124] = 565, + [2125] = 946, + [2126] = 769, + [2127] = 2127, + [2128] = 556, + [2129] = 557, + [2130] = 473, + [2131] = 486, + [2132] = 920, + [2133] = 589, + [2134] = 654, + [2135] = 596, + [2136] = 915, + [2137] = 914, + [2138] = 706, + [2139] = 865, + [2140] = 653, + [2141] = 851, + [2142] = 893, + [2143] = 677, + [2144] = 652, + [2145] = 656, + [2146] = 678, + [2147] = 661, + [2148] = 677, + [2149] = 678, + [2150] = 943, + [2151] = 741, + [2152] = 718, + [2153] = 470, + [2154] = 716, + [2155] = 448, + [2156] = 450, + [2157] = 472, + [2158] = 296, + [2159] = 236, + [2160] = 2160, + [2161] = 242, + [2162] = 389, [2163] = 2163, - [2164] = 2164, - [2165] = 412, - [2166] = 2166, - [2167] = 414, + [2164] = 379, + [2165] = 2165, + [2166] = 398, + [2167] = 2167, [2168] = 2168, - [2169] = 436, + [2169] = 396, [2170] = 2170, - [2171] = 436, + [2171] = 393, [2172] = 2172, - [2173] = 412, - [2174] = 395, - [2175] = 432, - [2176] = 455, - [2177] = 436, - [2178] = 412, + [2173] = 2173, + [2174] = 396, + [2175] = 398, + [2176] = 404, + [2177] = 396, + [2178] = 398, [2179] = 2179, - [2180] = 703, - [2181] = 757, - [2182] = 768, - [2183] = 288, - [2184] = 292, - [2185] = 769, - [2186] = 295, - [2187] = 716, - [2188] = 718, - [2189] = 811, - [2190] = 810, - [2191] = 809, - [2192] = 808, - [2193] = 715, - [2194] = 762, - [2195] = 869, - [2196] = 867, - [2197] = 818, - [2198] = 455, - [2199] = 964, - [2200] = 705, - [2201] = 704, - [2202] = 2202, - [2203] = 848, - [2204] = 234, - [2205] = 2205, - [2206] = 528, - [2207] = 529, - [2208] = 832, - [2209] = 554, - [2210] = 702, - [2211] = 683, - [2212] = 634, - [2213] = 637, - [2214] = 666, - [2215] = 668, - [2216] = 765, - [2217] = 908, - [2218] = 760, - [2219] = 750, - [2220] = 747, - [2221] = 743, - [2222] = 742, - [2223] = 738, - [2224] = 907, - [2225] = 736, - [2226] = 890, - [2227] = 735, - [2228] = 298, - [2229] = 2229, - [2230] = 682, - [2231] = 2231, - [2232] = 631, - [2233] = 667, - [2234] = 734, - [2235] = 635, - [2236] = 944, - [2237] = 626, - [2238] = 595, - [2239] = 270, - [2240] = 527, - [2241] = 265, - [2242] = 2242, - [2243] = 859, - [2244] = 853, - [2245] = 846, - [2246] = 845, - [2247] = 776, - [2248] = 775, - [2249] = 764, - [2250] = 759, - [2251] = 233, - [2252] = 756, - [2253] = 739, - [2254] = 678, - [2255] = 553, - [2256] = 552, - [2257] = 677, - [2258] = 670, - [2259] = 659, - [2260] = 959, - [2261] = 654, - [2262] = 651, - [2263] = 628, - [2264] = 620, - [2265] = 665, - [2266] = 604, - [2267] = 650, - [2268] = 601, - [2269] = 600, - [2270] = 596, - [2271] = 589, - [2272] = 565, - [2273] = 564, - [2274] = 557, - [2275] = 556, - [2276] = 645, - [2277] = 484, - [2278] = 477, - [2279] = 544, - [2280] = 476, - [2281] = 475, - [2282] = 474, - [2283] = 468, - [2284] = 466, - [2285] = 638, - [2286] = 465, - [2287] = 461, - [2288] = 460, - [2289] = 457, - [2290] = 488, - [2291] = 492, - [2292] = 512, - [2293] = 1147, - [2294] = 1152, - [2295] = 234, - [2296] = 265, - [2297] = 270, - [2298] = 288, - [2299] = 292, - [2300] = 295, - [2301] = 298, - [2302] = 2302, - [2303] = 2303, - [2304] = 233, - [2305] = 412, - [2306] = 436, - [2307] = 256, - [2308] = 284, - [2309] = 509, - [2310] = 439, - [2311] = 269, - [2312] = 385, - [2313] = 386, - [2314] = 2314, - [2315] = 432, - [2316] = 395, - [2317] = 269, - [2318] = 974, - [2319] = 439, - [2320] = 256, - [2321] = 509, - [2322] = 284, - [2323] = 414, - [2324] = 650, - [2325] = 765, - [2326] = 846, - [2327] = 853, - [2328] = 859, - [2329] = 670, - [2330] = 552, - [2331] = 553, - [2332] = 280, - [2333] = 776, - [2334] = 775, - [2335] = 764, - [2336] = 436, - [2337] = 985, - [2338] = 759, - [2339] = 757, - [2340] = 756, - [2341] = 739, - [2342] = 678, - [2343] = 677, - [2344] = 528, - [2345] = 529, - [2346] = 869, - [2347] = 659, - [2348] = 654, - [2349] = 735, - [2350] = 736, - [2351] = 651, - [2352] = 631, - [2353] = 738, - [2354] = 628, - [2355] = 620, - [2356] = 604, - [2357] = 455, - [2358] = 601, - [2359] = 742, - [2360] = 743, - [2361] = 600, - [2362] = 682, - [2363] = 596, - [2364] = 747, - [2365] = 298, - [2366] = 295, - [2367] = 589, - [2368] = 750, - [2369] = 565, - [2370] = 564, - [2371] = 292, - [2372] = 234, - [2373] = 557, - [2374] = 288, - [2375] = 270, - [2376] = 556, - [2377] = 265, - [2378] = 484, - [2379] = 233, - [2380] = 2380, - [2381] = 982, - [2382] = 665, - [2383] = 845, - [2384] = 477, - [2385] = 476, - [2386] = 944, - [2387] = 2380, - [2388] = 475, - [2389] = 474, - [2390] = 468, - [2391] = 466, - [2392] = 465, - [2393] = 461, - [2394] = 959, - [2395] = 460, - [2396] = 298, - [2397] = 457, - [2398] = 2380, - [2399] = 2380, - [2400] = 488, - [2401] = 492, - [2402] = 385, - [2403] = 386, - [2404] = 645, - [2405] = 554, - [2406] = 2380, - [2407] = 412, - [2408] = 512, - [2409] = 295, - [2410] = 2380, - [2411] = 544, - [2412] = 2380, - [2413] = 595, - [2414] = 626, - [2415] = 635, - [2416] = 667, - [2417] = 638, - [2418] = 2380, - [2419] = 292, - [2420] = 2380, - [2421] = 769, - [2422] = 734, - [2423] = 683, - [2424] = 702, - [2425] = 703, - [2426] = 808, - [2427] = 890, - [2428] = 809, - [2429] = 704, - [2430] = 288, - [2431] = 810, - [2432] = 907, - [2433] = 908, - [2434] = 867, - [2435] = 964, - [2436] = 2380, - [2437] = 811, - [2438] = 705, - [2439] = 715, - [2440] = 234, - [2441] = 233, - [2442] = 2380, - [2443] = 527, - [2444] = 716, + [2180] = 432, + [2181] = 941, + [2182] = 467, + [2183] = 602, + [2184] = 878, + [2185] = 761, + [2186] = 759, + [2187] = 758, + [2188] = 741, + [2189] = 861, + [2190] = 680, + [2191] = 679, + [2192] = 661, + [2193] = 828, + [2194] = 840, + [2195] = 656, + [2196] = 652, + [2197] = 677, + [2198] = 678, + [2199] = 628, + [2200] = 620, + [2201] = 472, + [2202] = 813, + [2203] = 812, + [2204] = 810, + [2205] = 809, + [2206] = 604, + [2207] = 601, + [2208] = 600, + [2209] = 596, + [2210] = 716, + [2211] = 883, + [2212] = 769, + [2213] = 754, + [2214] = 589, + [2215] = 566, + [2216] = 750, + [2217] = 565, + [2218] = 631, + [2219] = 658, + [2220] = 853, + [2221] = 557, + [2222] = 453, + [2223] = 556, + [2224] = 696, + [2225] = 905, + [2226] = 941, + [2227] = 732, + [2228] = 450, + [2229] = 486, + [2230] = 711, + [2231] = 686, + [2232] = 676, + [2233] = 672, + [2234] = 660, + [2235] = 468, + [2236] = 654, + [2237] = 945, + [2238] = 653, + [2239] = 931, + [2240] = 466, + [2241] = 865, + [2242] = 465, + [2243] = 240, + [2244] = 766, + [2245] = 454, + [2246] = 452, + [2247] = 2247, + [2248] = 451, + [2249] = 927, + [2250] = 2250, + [2251] = 777, + [2252] = 778, + [2253] = 674, + [2254] = 879, + [2255] = 623, + [2256] = 824, + [2257] = 943, + [2258] = 2258, + [2259] = 893, + [2260] = 934, + [2261] = 749, + [2262] = 470, + [2263] = 726, + [2264] = 2264, + [2265] = 540, + [2266] = 914, + [2267] = 915, + [2268] = 235, + [2269] = 473, + [2270] = 851, + [2271] = 298, + [2272] = 706, + [2273] = 527, + [2274] = 289, + [2275] = 718, + [2276] = 460, + [2277] = 852, + [2278] = 459, + [2279] = 241, + [2280] = 920, + [2281] = 946, + [2282] = 933, + [2283] = 294, + [2284] = 834, + [2285] = 448, + [2286] = 859, + [2287] = 456, + [2288] = 877, + [2289] = 872, + [2290] = 922, + [2291] = 2291, + [2292] = 295, + [2293] = 836, + [2294] = 297, + [2295] = 297, + [2296] = 2296, + [2297] = 294, + [2298] = 2298, + [2299] = 241, + [2300] = 298, + [2301] = 295, + [2302] = 296, + [2303] = 1147, + [2304] = 1149, + [2305] = 289, + [2306] = 668, + [2307] = 242, + [2308] = 235, + [2309] = 236, + [2310] = 240, + [2311] = 398, + [2312] = 396, + [2313] = 394, + [2314] = 379, + [2315] = 389, + [2316] = 2316, + [2317] = 668, + [2318] = 394, + [2319] = 977, + [2320] = 393, + [2321] = 236, + [2322] = 242, + [2323] = 404, + [2324] = 432, + [2325] = 296, + [2326] = 931, + [2327] = 600, + [2328] = 696, + [2329] = 601, + [2330] = 754, + [2331] = 750, + [2332] = 289, + [2333] = 240, + [2334] = 596, + [2335] = 769, + [2336] = 473, + [2337] = 235, + [2338] = 604, + [2339] = 915, + [2340] = 828, + [2341] = 589, + [2342] = 566, + [2343] = 686, + [2344] = 914, + [2345] = 711, + [2346] = 861, + [2347] = 620, + [2348] = 2348, + [2349] = 557, + [2350] = 556, + [2351] = 628, + [2352] = 235, + [2353] = 631, + [2354] = 460, + [2355] = 486, + [2356] = 824, + [2357] = 459, + [2358] = 298, + [2359] = 241, + [2360] = 240, + [2361] = 652, + [2362] = 294, + [2363] = 726, + [2364] = 656, + [2365] = 297, + [2366] = 661, + [2367] = 295, + [2368] = 2348, + [2369] = 456, + [2370] = 732, + [2371] = 922, + [2372] = 2348, + [2373] = 676, + [2374] = 677, + [2375] = 672, + [2376] = 678, + [2377] = 2348, + [2378] = 679, + [2379] = 680, + [2380] = 741, + [2381] = 758, + [2382] = 759, + [2383] = 761, + [2384] = 660, + [2385] = 453, + [2386] = 389, + [2387] = 379, + [2388] = 766, + [2389] = 527, + [2390] = 777, + [2391] = 2348, + [2392] = 778, + [2393] = 654, + [2394] = 2348, + [2395] = 653, + [2396] = 295, + [2397] = 883, + [2398] = 2348, + [2399] = 2348, + [2400] = 297, + [2401] = 851, + [2402] = 852, + [2403] = 289, + [2404] = 294, + [2405] = 2348, + [2406] = 879, + [2407] = 859, + [2408] = 840, + [2409] = 468, + [2410] = 865, + [2411] = 565, + [2412] = 298, + [2413] = 878, + [2414] = 467, + [2415] = 466, + [2416] = 465, + [2417] = 2348, + [2418] = 398, + [2419] = 984, + [2420] = 658, + [2421] = 991, + [2422] = 905, + [2423] = 945, + [2424] = 674, + [2425] = 934, + [2426] = 454, + [2427] = 241, + [2428] = 749, + [2429] = 396, + [2430] = 2348, + [2431] = 452, + [2432] = 834, + [2433] = 836, + [2434] = 451, + [2435] = 872, + [2436] = 877, + [2437] = 927, + [2438] = 813, + [2439] = 933, + [2440] = 946, + [2441] = 602, + [2442] = 920, + [2443] = 623, + [2444] = 943, [2445] = 718, - [2446] = 270, - [2447] = 265, - [2448] = 848, - [2449] = 762, - [2450] = 2380, - [2451] = 768, - [2452] = 818, - [2453] = 2380, - [2454] = 832, - [2455] = 395, - [2456] = 298, - [2457] = 295, - [2458] = 292, - [2459] = 288, - [2460] = 256, - [2461] = 270, - [2462] = 265, - [2463] = 968, - [2464] = 432, - [2465] = 455, - [2466] = 509, - [2467] = 234, - [2468] = 233, - [2469] = 439, - [2470] = 439, - [2471] = 990, - [2472] = 284, - [2473] = 67, - [2474] = 509, - [2475] = 69, - [2476] = 993, - [2477] = 288, - [2478] = 270, - [2479] = 455, - [2480] = 1001, - [2481] = 233, - [2482] = 234, - [2483] = 68, - [2484] = 265, - [2485] = 414, - [2486] = 455, - [2487] = 991, - [2488] = 298, - [2489] = 269, - [2490] = 295, - [2491] = 292, - [2492] = 488, - [2493] = 412, - [2494] = 705, - [2495] = 715, - [2496] = 716, - [2497] = 718, - [2498] = 808, - [2499] = 809, - [2500] = 810, - [2501] = 811, - [2502] = 762, - [2503] = 298, - [2504] = 626, - [2505] = 678, - [2506] = 765, - [2507] = 768, - [2508] = 769, - [2509] = 677, - [2510] = 595, - [2511] = 638, - [2512] = 818, - [2513] = 659, - [2514] = 832, - [2515] = 544, - [2516] = 654, - [2517] = 750, - [2518] = 651, - [2519] = 974, - [2520] = 848, - [2521] = 645, - [2522] = 964, - [2523] = 233, - [2524] = 234, - [2525] = 867, - [2526] = 974, - [2527] = 907, - [2528] = 747, - [2529] = 743, - [2530] = 890, - [2531] = 667, - [2532] = 528, - [2533] = 529, - [2534] = 554, - [2535] = 742, - [2536] = 734, - [2537] = 682, - [2538] = 738, - [2539] = 683, - [2540] = 270, - [2541] = 702, - [2542] = 631, - [2543] = 736, - [2544] = 295, - [2545] = 628, - [2546] = 869, - [2547] = 620, - [2548] = 385, - [2549] = 2549, - [2550] = 233, - [2551] = 512, - [2552] = 386, - [2553] = 234, - [2554] = 233, - [2555] = 492, - [2556] = 604, - [2557] = 985, - [2558] = 288, - [2559] = 292, - [2560] = 635, - [2561] = 466, - [2562] = 509, - [2563] = 601, - [2564] = 457, - [2565] = 460, - [2566] = 461, - [2567] = 455, - [2568] = 265, - [2569] = 270, - [2570] = 234, - [2571] = 465, - [2572] = 908, - [2573] = 735, - [2574] = 600, - [2575] = 528, - [2576] = 298, - [2577] = 529, + [2446] = 853, + [2447] = 893, + [2448] = 706, + [2449] = 540, + [2450] = 941, + [2451] = 282, + [2452] = 2348, + [2453] = 2348, + [2454] = 812, + [2455] = 810, + [2456] = 809, + [2457] = 941, + [2458] = 941, + [2459] = 996, + [2460] = 998, + [2461] = 1002, + [2462] = 242, + [2463] = 999, + [2464] = 297, + [2465] = 295, + [2466] = 941, + [2467] = 295, + [2468] = 297, + [2469] = 289, + [2470] = 294, + [2471] = 241, + [2472] = 235, + [2473] = 240, + [2474] = 294, + [2475] = 971, + [2476] = 241, + [2477] = 71, + [2478] = 235, + [2479] = 240, + [2480] = 298, + [2481] = 70, + [2482] = 68, + [2483] = 236, + [2484] = 298, + [2485] = 668, + [2486] = 394, + [2487] = 393, + [2488] = 289, + [2489] = 404, + [2490] = 394, + [2491] = 432, + [2492] = 668, + [2493] = 296, + [2494] = 851, + [2495] = 726, + [2496] = 828, + [2497] = 473, + [2498] = 556, + [2499] = 557, + [2500] = 941, + [2501] = 565, + [2502] = 566, + [2503] = 678, + [2504] = 677, + [2505] = 460, + [2506] = 589, + [2507] = 459, + [2508] = 668, + [2509] = 861, + [2510] = 977, + [2511] = 840, + [2512] = 596, + [2513] = 672, + [2514] = 883, + [2515] = 396, + [2516] = 601, + [2517] = 398, + [2518] = 604, + [2519] = 620, + [2520] = 628, + [2521] = 456, + [2522] = 652, + [2523] = 600, + [2524] = 922, + [2525] = 661, + [2526] = 679, + [2527] = 658, + [2528] = 680, + [2529] = 453, + [2530] = 905, + [2531] = 741, + [2532] = 758, + [2533] = 759, + [2534] = 945, + [2535] = 813, + [2536] = 761, + [2537] = 812, + [2538] = 810, + [2539] = 766, + [2540] = 777, + [2541] = 778, + [2542] = 931, + [2543] = 852, + [2544] = 809, + [2545] = 674, + [2546] = 934, + [2547] = 859, + [2548] = 943, + [2549] = 893, + [2550] = 865, + [2551] = 298, + [2552] = 623, + [2553] = 241, + [2554] = 294, + [2555] = 289, + [2556] = 297, + [2557] = 295, + [2558] = 749, + [2559] = 486, + [2560] = 915, + [2561] = 914, + [2562] = 468, + [2563] = 834, + [2564] = 653, + [2565] = 836, + [2566] = 298, + [2567] = 872, + [2568] = 654, + [2569] = 235, + [2570] = 240, + [2571] = 660, + [2572] = 878, + [2573] = 241, + [2574] = 879, + [2575] = 294, + [2576] = 289, + [2577] = 297, [2578] = 295, - [2579] = 288, - [2580] = 704, - [2581] = 292, - [2582] = 436, - [2583] = 944, - [2584] = 288, - [2585] = 292, - [2586] = 270, - [2587] = 959, - [2588] = 468, - [2589] = 859, - [2590] = 853, - [2591] = 846, - [2592] = 845, - [2593] = 474, - [2594] = 475, - [2595] = 527, - [2596] = 476, - [2597] = 439, - [2598] = 477, - [2599] = 553, - [2600] = 703, - [2601] = 776, - [2602] = 552, - [2603] = 265, - [2604] = 484, - [2605] = 775, - [2606] = 764, - [2607] = 265, - [2608] = 670, - [2609] = 596, - [2610] = 650, - [2611] = 556, - [2612] = 759, - [2613] = 757, - [2614] = 557, - [2615] = 564, - [2616] = 295, - [2617] = 565, - [2618] = 665, - [2619] = 589, - [2620] = 739, - [2621] = 756, - [2622] = 298, - [2623] = 2623, - [2624] = 2624, - [2625] = 2623, - [2626] = 2624, - [2627] = 280, - [2628] = 280, - [2629] = 2623, - [2630] = 509, - [2631] = 439, - [2632] = 455, - [2633] = 528, - [2634] = 529, - [2635] = 2623, - [2636] = 2624, - [2637] = 2623, - [2638] = 2638, - [2639] = 2639, - [2640] = 2624, - [2641] = 2623, - [2642] = 395, - [2643] = 414, - [2644] = 2644, - [2645] = 2645, - [2646] = 2623, - [2647] = 985, - [2648] = 2624, - [2649] = 2624, - [2650] = 2623, - [2651] = 2623, - [2652] = 2624, - [2653] = 2653, - [2654] = 2624, - [2655] = 2623, - [2656] = 280, + [2579] = 769, + [2580] = 676, + [2581] = 2581, + [2582] = 656, + [2583] = 754, + [2584] = 467, + [2585] = 298, + [2586] = 466, + [2587] = 241, + [2588] = 294, + [2589] = 289, + [2590] = 750, + [2591] = 297, + [2592] = 295, + [2593] = 877, + [2594] = 240, + [2595] = 933, + [2596] = 946, + [2597] = 853, + [2598] = 394, + [2599] = 631, + [2600] = 235, + [2601] = 240, + [2602] = 920, + [2603] = 977, + [2604] = 465, + [2605] = 454, + [2606] = 984, + [2607] = 718, + [2608] = 452, + [2609] = 527, + [2610] = 706, + [2611] = 732, + [2612] = 451, + [2613] = 696, + [2614] = 678, + [2615] = 927, + [2616] = 824, + [2617] = 677, + [2618] = 540, + [2619] = 711, + [2620] = 389, + [2621] = 379, + [2622] = 686, + [2623] = 602, + [2624] = 235, + [2625] = 2625, + [2626] = 2625, + [2627] = 2625, + [2628] = 984, + [2629] = 2629, + [2630] = 2629, + [2631] = 2631, + [2632] = 2632, + [2633] = 2629, + [2634] = 2625, + [2635] = 2635, + [2636] = 2629, + [2637] = 2625, + [2638] = 2625, + [2639] = 678, + [2640] = 2625, + [2641] = 2641, + [2642] = 2625, + [2643] = 282, + [2644] = 2625, + [2645] = 282, + [2646] = 282, + [2647] = 941, + [2648] = 2648, + [2649] = 2629, + [2650] = 2629, + [2651] = 2629, + [2652] = 404, + [2653] = 393, + [2654] = 394, + [2655] = 2629, + [2656] = 2629, [2657] = 432, - [2658] = 2624, - [2659] = 2623, - [2660] = 2624, - [2661] = 2624, - [2662] = 2623, - [2663] = 2624, - [2664] = 2623, - [2665] = 764, - [2666] = 2666, - [2667] = 604, - [2668] = 620, - [2669] = 628, - [2670] = 2670, - [2671] = 2671, - [2672] = 2666, - [2673] = 2670, - [2674] = 234, - [2675] = 677, - [2676] = 678, + [2658] = 677, + [2659] = 2629, + [2660] = 2629, + [2661] = 668, + [2662] = 2625, + [2663] = 2625, + [2664] = 2625, + [2665] = 2629, + [2666] = 2629, + [2667] = 2667, + [2668] = 945, + [2669] = 2669, + [2670] = 2669, + [2671] = 298, + [2672] = 389, + [2673] = 741, + [2674] = 241, + [2675] = 2675, + [2676] = 486, [2677] = 2677, - [2678] = 564, + [2678] = 2675, [2679] = 565, - [2680] = 756, - [2681] = 757, - [2682] = 759, - [2683] = 484, - [2684] = 775, - [2685] = 776, - [2686] = 2670, - [2687] = 846, - [2688] = 853, - [2689] = 600, - [2690] = 2690, - [2691] = 474, - [2692] = 2670, - [2693] = 601, - [2694] = 869, - [2695] = 867, - [2696] = 959, - [2697] = 2697, - [2698] = 2671, - [2699] = 488, - [2700] = 848, - [2701] = 2670, - [2702] = 280, - [2703] = 2666, - [2704] = 2666, - [2705] = 832, - [2706] = 2666, - [2707] = 265, - [2708] = 811, - [2709] = 810, - [2710] = 809, - [2711] = 808, - [2712] = 554, - [2713] = 270, - [2714] = 492, - [2715] = 765, - [2716] = 2653, - [2717] = 750, - [2718] = 747, - [2719] = 743, - [2720] = 742, - [2721] = 738, - [2722] = 288, - [2723] = 736, - [2724] = 509, - [2725] = 735, - [2726] = 2690, - [2727] = 2670, - [2728] = 2728, - [2729] = 292, - [2730] = 553, - [2731] = 552, - [2732] = 670, - [2733] = 457, - [2734] = 2666, - [2735] = 665, - [2736] = 650, - [2737] = 631, - [2738] = 645, - [2739] = 544, - [2740] = 439, - [2741] = 944, - [2742] = 638, - [2743] = 2690, - [2744] = 2744, - [2745] = 527, - [2746] = 635, - [2747] = 439, - [2748] = 295, - [2749] = 298, - [2750] = 2670, - [2751] = 2666, - [2752] = 667, - [2753] = 234, - [2754] = 2690, - [2755] = 734, - [2756] = 2756, - [2757] = 439, - [2758] = 908, - [2759] = 964, - [2760] = 460, - [2761] = 818, - [2762] = 762, - [2763] = 768, - [2764] = 436, - [2765] = 769, - [2766] = 233, - [2767] = 718, - [2768] = 475, - [2769] = 2671, - [2770] = 461, - [2771] = 2671, - [2772] = 2690, - [2773] = 512, - [2774] = 716, - [2775] = 2671, - [2776] = 715, - [2777] = 2666, - [2778] = 907, - [2779] = 890, - [2780] = 705, - [2781] = 412, - [2782] = 595, - [2783] = 476, - [2784] = 859, - [2785] = 704, - [2786] = 2670, - [2787] = 845, - [2788] = 703, - [2789] = 2671, - [2790] = 702, - [2791] = 298, - [2792] = 2666, - [2793] = 455, - [2794] = 509, - [2795] = 2795, - [2796] = 2670, - [2797] = 295, - [2798] = 2798, - [2799] = 2690, - [2800] = 2690, - [2801] = 739, - [2802] = 2802, - [2803] = 439, - [2804] = 233, - [2805] = 2671, - [2806] = 292, - [2807] = 288, - [2808] = 1001, - [2809] = 683, - [2810] = 455, - [2811] = 455, - [2812] = 2690, - [2813] = 270, - [2814] = 682, - [2815] = 265, - [2816] = 659, - [2817] = 2690, - [2818] = 2818, - [2819] = 2690, - [2820] = 654, - [2821] = 651, - [2822] = 2666, - [2823] = 2670, - [2824] = 2666, - [2825] = 477, - [2826] = 2671, - [2827] = 626, - [2828] = 2671, - [2829] = 2666, - [2830] = 2690, - [2831] = 2671, - [2832] = 385, - [2833] = 2670, - [2834] = 596, - [2835] = 2671, - [2836] = 589, - [2837] = 386, - [2838] = 509, - [2839] = 2671, - [2840] = 2690, - [2841] = 2666, - [2842] = 468, - [2843] = 2670, - [2844] = 2671, - [2845] = 466, - [2846] = 509, - [2847] = 2847, - [2848] = 557, - [2849] = 2666, - [2850] = 556, - [2851] = 465, - [2852] = 2852, - [2853] = 395, - [2854] = 2852, - [2855] = 2852, - [2856] = 2856, - [2857] = 2852, - [2858] = 2852, - [2859] = 2852, - [2860] = 2852, - [2861] = 528, - [2862] = 2862, - [2863] = 2852, - [2864] = 2852, - [2865] = 2865, - [2866] = 529, - [2867] = 2852, - [2868] = 2852, - [2869] = 2852, - [2870] = 2852, - [2871] = 2856, - [2872] = 432, - [2873] = 2873, - [2874] = 1416, + [2680] = 566, + [2681] = 294, + [2682] = 600, + [2683] = 601, + [2684] = 604, + [2685] = 620, + [2686] = 628, + [2687] = 2687, + [2688] = 289, + [2689] = 2669, + [2690] = 996, + [2691] = 2691, + [2692] = 679, + [2693] = 680, + [2694] = 2675, + [2695] = 2677, + [2696] = 758, + [2697] = 759, + [2698] = 761, + [2699] = 766, + [2700] = 777, + [2701] = 778, + [2702] = 2669, + [2703] = 852, + [2704] = 859, + [2705] = 2675, + [2706] = 2706, + [2707] = 879, + [2708] = 878, + [2709] = 824, + [2710] = 661, + [2711] = 656, + [2712] = 861, + [2713] = 2713, + [2714] = 652, + [2715] = 297, + [2716] = 2677, + [2717] = 840, + [2718] = 2675, + [2719] = 295, + [2720] = 813, + [2721] = 812, + [2722] = 810, + [2723] = 809, + [2724] = 853, + [2725] = 2691, + [2726] = 2677, + [2727] = 732, + [2728] = 711, + [2729] = 686, + [2730] = 676, + [2731] = 672, + [2732] = 660, + [2733] = 2675, + [2734] = 654, + [2735] = 2675, + [2736] = 653, + [2737] = 379, + [2738] = 596, + [2739] = 2669, + [2740] = 851, + [2741] = 914, + [2742] = 915, + [2743] = 473, + [2744] = 589, + [2745] = 893, + [2746] = 460, + [2747] = 459, + [2748] = 631, + [2749] = 456, + [2750] = 922, + [2751] = 557, + [2752] = 2691, + [2753] = 453, + [2754] = 556, + [2755] = 2755, + [2756] = 931, + [2757] = 668, + [2758] = 394, + [2759] = 468, + [2760] = 943, + [2761] = 2677, + [2762] = 467, + [2763] = 905, + [2764] = 2677, + [2765] = 466, + [2766] = 465, + [2767] = 2691, + [2768] = 394, + [2769] = 235, + [2770] = 454, + [2771] = 452, + [2772] = 451, + [2773] = 2773, + [2774] = 2774, + [2775] = 927, + [2776] = 602, + [2777] = 623, + [2778] = 396, + [2779] = 668, + [2780] = 295, + [2781] = 297, + [2782] = 2691, + [2783] = 2675, + [2784] = 726, + [2785] = 2677, + [2786] = 289, + [2787] = 294, + [2788] = 658, + [2789] = 2669, + [2790] = 241, + [2791] = 2675, + [2792] = 540, + [2793] = 298, + [2794] = 2677, + [2795] = 706, + [2796] = 235, + [2797] = 240, + [2798] = 2675, + [2799] = 2648, + [2800] = 398, + [2801] = 946, + [2802] = 933, + [2803] = 941, + [2804] = 668, + [2805] = 877, + [2806] = 872, + [2807] = 836, + [2808] = 834, + [2809] = 2677, + [2810] = 394, + [2811] = 2691, + [2812] = 2812, + [2813] = 865, + [2814] = 749, + [2815] = 934, + [2816] = 754, + [2817] = 941, + [2818] = 941, + [2819] = 2691, + [2820] = 674, + [2821] = 2691, + [2822] = 240, + [2823] = 2823, + [2824] = 2669, + [2825] = 668, + [2826] = 750, + [2827] = 2691, + [2828] = 2669, + [2829] = 527, + [2830] = 2675, + [2831] = 2675, + [2832] = 718, + [2833] = 883, + [2834] = 2691, + [2835] = 2677, + [2836] = 2675, + [2837] = 2677, + [2838] = 2677, + [2839] = 2669, + [2840] = 2669, + [2841] = 2841, + [2842] = 2691, + [2843] = 920, + [2844] = 394, + [2845] = 828, + [2846] = 696, + [2847] = 282, + [2848] = 2669, + [2849] = 769, + [2850] = 2669, + [2851] = 2691, + [2852] = 2691, + [2853] = 2675, + [2854] = 2854, + [2855] = 2855, + [2856] = 2854, + [2857] = 2857, + [2858] = 2858, + [2859] = 2854, + [2860] = 1420, + [2861] = 2861, + [2862] = 2854, + [2863] = 1945, + [2864] = 677, + [2865] = 2861, + [2866] = 2854, + [2867] = 2861, + [2868] = 2854, + [2869] = 2869, + [2870] = 393, + [2871] = 2854, + [2872] = 2854, + [2873] = 2854, + [2874] = 2854, [2875] = 2875, - [2876] = 2876, - [2877] = 2856, - [2878] = 1938, - [2879] = 757, - [2880] = 764, - [2881] = 600, - [2882] = 2882, - [2883] = 69, - [2884] = 2884, - [2885] = 488, - [2886] = 775, - [2887] = 631, - [2888] = 2882, - [2889] = 2882, - [2890] = 756, - [2891] = 492, - [2892] = 2156, - [2893] = 67, - [2894] = 604, - [2895] = 890, - [2896] = 2882, - [2897] = 565, - [2898] = 2882, - [2899] = 907, - [2900] = 667, - [2901] = 678, - [2902] = 769, - [2903] = 2882, - [2904] = 768, - [2905] = 2882, - [2906] = 2882, - [2907] = 762, - [2908] = 2882, - [2909] = 564, - [2910] = 2882, - [2911] = 68, - [2912] = 67, - [2913] = 635, - [2914] = 2882, - [2915] = 944, - [2916] = 2882, - [2917] = 601, - [2918] = 677, - [2919] = 759, - [2920] = 853, - [2921] = 68, - [2922] = 846, - [2923] = 69, - [2924] = 628, - [2925] = 620, - [2926] = 484, - [2927] = 776, - [2928] = 2882, - [2929] = 1428, - [2930] = 2930, - [2931] = 2931, - [2932] = 2930, - [2933] = 1425, - [2934] = 2931, - [2935] = 1420, - [2936] = 2930, - [2937] = 1428, - [2938] = 2930, - [2939] = 2931, - [2940] = 1425, - [2941] = 1428, - [2942] = 1425, - [2943] = 1428, - [2944] = 1420, - [2945] = 1428, - [2946] = 2930, - [2947] = 1428, - [2948] = 1425, - [2949] = 1420, - [2950] = 1425, - [2951] = 1420, - [2952] = 1420, - [2953] = 1425, - [2954] = 1428, - [2955] = 1428, - [2956] = 1428, - [2957] = 1428, - [2958] = 2931, - [2959] = 2930, - [2960] = 1425, - [2961] = 1420, - [2962] = 2931, - [2963] = 2931, - [2964] = 2931, - [2965] = 1428, - [2966] = 1428, - [2967] = 2931, - [2968] = 2930, - [2969] = 1425, - [2970] = 2931, - [2971] = 2930, - [2972] = 1420, - [2973] = 1420, - [2974] = 1425, - [2975] = 1425, - [2976] = 1420, - [2977] = 1420, - [2978] = 1428, - [2979] = 1420, - [2980] = 1425, - [2981] = 1420, - [2982] = 1425, - [2983] = 1425, - [2984] = 1420, - [2985] = 1425, - [2986] = 2931, - [2987] = 1420, - [2988] = 1425, - [2989] = 1428, - [2990] = 2930, - [2991] = 1428, - [2992] = 2930, - [2993] = 2931, - [2994] = 2930, - [2995] = 1420, - [2996] = 2931, - [2997] = 1420, - [2998] = 1425, - [2999] = 1428, - [3000] = 2930, - [3001] = 3001, - [3002] = 3001, - [3003] = 3003, - [3004] = 3004, - [3005] = 3004, - [3006] = 3006, + [2876] = 432, + [2877] = 2854, + [2878] = 2861, + [2879] = 678, + [2880] = 2854, + [2881] = 2854, + [2882] = 604, + [2883] = 718, + [2884] = 777, + [2885] = 766, + [2886] = 761, + [2887] = 486, + [2888] = 758, + [2889] = 680, + [2890] = 679, + [2891] = 628, + [2892] = 620, + [2893] = 2893, + [2894] = 2893, + [2895] = 601, + [2896] = 2893, + [2897] = 600, + [2898] = 566, + [2899] = 778, + [2900] = 565, + [2901] = 943, + [2902] = 852, + [2903] = 71, + [2904] = 893, + [2905] = 2905, + [2906] = 527, + [2907] = 2893, + [2908] = 920, + [2909] = 859, + [2910] = 2893, + [2911] = 759, + [2912] = 945, + [2913] = 905, + [2914] = 2893, + [2915] = 631, + [2916] = 2893, + [2917] = 68, + [2918] = 2893, + [2919] = 658, + [2920] = 70, + [2921] = 754, + [2922] = 2893, + [2923] = 750, + [2924] = 71, + [2925] = 2893, + [2926] = 2893, + [2927] = 2893, + [2928] = 2160, + [2929] = 2893, + [2930] = 70, + [2931] = 68, + [2932] = 2932, + [2933] = 1419, + [2934] = 2934, + [2935] = 1429, + [2936] = 1429, + [2937] = 1419, + [2938] = 1424, + [2939] = 1424, + [2940] = 1419, + [2941] = 1419, + [2942] = 1424, + [2943] = 1419, + [2944] = 1429, + [2945] = 1419, + [2946] = 1424, + [2947] = 2934, + [2948] = 2932, + [2949] = 1429, + [2950] = 2932, + [2951] = 2934, + [2952] = 2934, + [2953] = 1424, + [2954] = 1419, + [2955] = 1424, + [2956] = 1429, + [2957] = 1419, + [2958] = 2932, + [2959] = 2932, + [2960] = 2934, + [2961] = 2932, + [2962] = 2932, + [2963] = 2932, + [2964] = 2934, + [2965] = 2934, + [2966] = 2934, + [2967] = 1419, + [2968] = 1424, + [2969] = 2932, + [2970] = 1419, + [2971] = 1424, + [2972] = 2934, + [2973] = 2932, + [2974] = 1429, + [2975] = 1424, + [2976] = 2976, + [2977] = 1429, + [2978] = 1429, + [2979] = 1429, + [2980] = 1424, + [2981] = 1429, + [2982] = 2934, + [2983] = 1429, + [2984] = 1424, + [2985] = 1419, + [2986] = 1419, + [2987] = 1424, + [2988] = 1429, + [2989] = 1429, + [2990] = 1419, + [2991] = 1424, + [2992] = 1429, + [2993] = 2993, + [2994] = 2994, + [2995] = 1419, + [2996] = 1419, + [2997] = 1424, + [2998] = 1429, + [2999] = 2934, + [3000] = 2932, + [3001] = 2932, + [3002] = 2934, + [3003] = 1429, + [3004] = 1424, + [3005] = 1419, + [3006] = 1424, [3007] = 3007, - [3008] = 1612, - [3009] = 3004, - [3010] = 3006, - [3011] = 3004, - [3012] = 3004, - [3013] = 3006, - [3014] = 3004, - [3015] = 3006, - [3016] = 3006, - [3017] = 3004, - [3018] = 3006, - [3019] = 3006, - [3020] = 3006, - [3021] = 3004, - [3022] = 3022, - [3023] = 3006, + [3008] = 3007, + [3009] = 3009, + [3010] = 3010, + [3011] = 3011, + [3012] = 3010, + [3013] = 3010, + [3014] = 3009, + [3015] = 3015, + [3016] = 3016, + [3017] = 3017, + [3018] = 3010, + [3019] = 3019, + [3020] = 3009, + [3021] = 3009, + [3022] = 3009, + [3023] = 3009, [3024] = 3024, - [3025] = 3004, - [3026] = 3004, - [3027] = 3006, - [3028] = 3028, - [3029] = 3029, - [3030] = 3006, - [3031] = 3004, - [3032] = 3004, - [3033] = 3006, - [3034] = 3034, - [3035] = 3035, - [3036] = 3036, - [3037] = 3004, - [3038] = 3004, - [3039] = 3006, - [3040] = 3006, + [3025] = 3010, + [3026] = 3009, + [3027] = 1611, + [3028] = 3009, + [3029] = 3010, + [3030] = 3010, + [3031] = 3010, + [3032] = 3010, + [3033] = 3010, + [3034] = 3009, + [3035] = 3009, + [3036] = 3010, + [3037] = 3010, + [3038] = 3009, + [3039] = 3039, + [3040] = 3009, [3041] = 3041, - [3042] = 3042, - [3043] = 3043, - [3044] = 3044, - [3045] = 3041, - [3046] = 3046, + [3042] = 3009, + [3043] = 3010, + [3044] = 3010, + [3045] = 3045, + [3046] = 3009, [3047] = 3047, [3048] = 3048, [3049] = 3049, - [3050] = 3046, - [3051] = 3051, + [3050] = 3050, + [3051] = 3048, [3052] = 3052, - [3053] = 3053, - [3054] = 3041, - [3055] = 3053, - [3056] = 3056, - [3057] = 3057, - [3058] = 3043, - [3059] = 3056, - [3060] = 3051, - [3061] = 3061, - [3062] = 3061, - [3063] = 3063, + [3053] = 3052, + [3054] = 3054, + [3055] = 3055, + [3056] = 3047, + [3057] = 3049, + [3058] = 3058, + [3059] = 3059, + [3060] = 3052, + [3061] = 3050, + [3062] = 3062, + [3063] = 3048, [3064] = 3064, - [3065] = 3046, - [3066] = 3046, - [3067] = 3043, - [3068] = 3068, - [3069] = 3042, - [3070] = 3064, - [3071] = 3068, - [3072] = 3042, - [3073] = 3047, - [3074] = 3049, - [3075] = 3063, - [3076] = 3046, - [3077] = 3063, - [3078] = 3043, - [3079] = 3041, - [3080] = 3064, - [3081] = 3081, - [3082] = 3043, - [3083] = 3047, - [3084] = 3049, - [3085] = 3064, - [3086] = 3048, - [3087] = 3048, - [3088] = 3053, - [3089] = 3064, - [3090] = 3053, - [3091] = 3041, - [3092] = 3046, - [3093] = 3043, - [3094] = 3041, - [3095] = 3061, - [3096] = 3046, - [3097] = 3051, - [3098] = 3056, - [3099] = 3063, - [3100] = 3047, - [3101] = 3052, - [3102] = 3057, - [3103] = 3061, - [3104] = 3052, - [3105] = 3056, + [3065] = 3049, + [3066] = 3066, + [3067] = 3067, + [3068] = 3052, + [3069] = 3069, + [3070] = 3058, + [3071] = 3062, + [3072] = 3072, + [3073] = 3064, + [3074] = 3074, + [3075] = 3050, + [3076] = 3059, + [3077] = 3072, + [3078] = 3054, + [3079] = 3058, + [3080] = 3059, + [3081] = 3058, + [3082] = 3048, + [3083] = 3064, + [3084] = 3074, + [3085] = 3055, + [3086] = 3066, + [3087] = 3066, + [3088] = 3047, + [3089] = 3066, + [3090] = 3052, + [3091] = 3091, + [3092] = 3054, + [3093] = 3091, + [3094] = 3067, + [3095] = 3047, + [3096] = 3049, + [3097] = 3074, + [3098] = 3059, + [3099] = 3062, + [3100] = 3055, + [3101] = 3072, + [3102] = 3047, + [3103] = 3074, + [3104] = 3049, + [3105] = 3050, [3106] = 3048, - [3107] = 3053, - [3108] = 3048, - [3109] = 3049, + [3107] = 3107, + [3108] = 3064, + [3109] = 3109, [3110] = 3064, - [3111] = 3053, - [3112] = 3064, - [3113] = 3057, - [3114] = 3046, - [3115] = 3041, - [3116] = 3048, - [3117] = 3056, - [3118] = 3061, - [3119] = 3061, - [3120] = 3063, - [3121] = 3053, - [3122] = 3043, - [3123] = 3064, - [3124] = 3051, - [3125] = 3053, - [3126] = 3126, - [3127] = 3053, - [3128] = 3041, - [3129] = 3057, - [3130] = 3068, - [3131] = 3041, - [3132] = 3052, - [3133] = 3051, - [3134] = 3056, - [3135] = 3049, - [3136] = 3053, - [3137] = 3047, - [3138] = 3063, - [3139] = 3042, - [3140] = 3064, - [3141] = 3046, - [3142] = 3053, - [3143] = 3048, - [3144] = 3041, - [3145] = 3043, - [3146] = 3057, - [3147] = 3057, - [3148] = 3052, - [3149] = 3149, - [3150] = 3063, - [3151] = 3061, - [3152] = 3056, - [3153] = 3051, - [3154] = 3052, - [3155] = 3053, - [3156] = 3051, - [3157] = 3049, - [3158] = 3068, - [3159] = 3068, - [3160] = 3048, - [3161] = 3041, - [3162] = 3047, - [3163] = 3042, - [3164] = 3056, - [3165] = 3042, - [3166] = 3042, - [3167] = 3061, - [3168] = 3063, - [3169] = 3047, - [3170] = 3053, - [3171] = 3049, + [3111] = 3062, + [3112] = 3112, + [3113] = 3047, + [3114] = 3072, + [3115] = 3050, + [3116] = 3055, + [3117] = 3048, + [3118] = 3050, + [3119] = 3058, + [3120] = 3048, + [3121] = 3072, + [3122] = 3062, + [3123] = 3059, + [3124] = 3074, + [3125] = 3064, + [3126] = 3069, + [3127] = 3067, + [3128] = 3048, + [3129] = 3049, + [3130] = 3130, + [3131] = 3054, + [3132] = 3049, + [3133] = 3047, + [3134] = 3066, + [3135] = 3055, + [3136] = 3054, + [3137] = 3054, + [3138] = 3074, + [3139] = 3052, + [3140] = 3052, + [3141] = 3066, + [3142] = 3052, + [3143] = 3074, + [3144] = 3054, + [3145] = 3054, + [3146] = 3066, + [3147] = 3064, + [3148] = 3064, + [3149] = 3058, + [3150] = 3049, + [3151] = 3055, + [3152] = 3055, + [3153] = 3064, + [3154] = 3074, + [3155] = 3049, + [3156] = 3058, + [3157] = 3059, + [3158] = 3047, + [3159] = 3048, + [3160] = 3160, + [3161] = 3050, + [3162] = 3067, + [3163] = 3049, + [3164] = 3074, + [3165] = 3047, + [3166] = 3066, + [3167] = 3072, + [3168] = 3055, + [3169] = 3059, + [3170] = 3062, + [3171] = 3064, [3172] = 3048, - [3173] = 3042, - [3174] = 3047, - [3175] = 3149, - [3176] = 3042, - [3177] = 3052, - [3178] = 3057, - [3179] = 3043, - [3180] = 3046, - [3181] = 3064, - [3182] = 3057, + [3173] = 3050, + [3174] = 3059, + [3175] = 3050, + [3176] = 3067, + [3177] = 3067, + [3178] = 3047, + [3179] = 3179, + [3180] = 3062, + [3181] = 3072, + [3182] = 3069, [3183] = 3048, - [3184] = 3052, - [3185] = 3041, - [3186] = 3049, - [3187] = 3051, - [3188] = 3068, - [3189] = 3064, - [3190] = 3049, - [3191] = 3047, - [3192] = 3053, - [3193] = 3042, - [3194] = 3064, - [3195] = 3046, - [3196] = 3043, - [3197] = 3053, - [3198] = 3041, - [3199] = 3051, - [3200] = 3041, - [3201] = 3049, - [3202] = 3051, - [3203] = 3051, - [3204] = 3052, - [3205] = 3057, - [3206] = 3053, - [3207] = 3064, - [3208] = 3048, - [3209] = 3046, - [3210] = 3041, - [3211] = 3051, - [3212] = 3212, - [3213] = 3043, - [3214] = 3052, - [3215] = 3063, - [3216] = 3052, - [3217] = 3061, - [3218] = 3057, - [3219] = 3057, - [3220] = 3053, - [3221] = 3041, - [3222] = 3049, - [3223] = 3057, - [3224] = 3052, - [3225] = 3056, - [3226] = 3051, - [3227] = 3068, - [3228] = 3043, - [3229] = 3047, - [3230] = 3046, - [3231] = 3049, + [3184] = 3074, + [3185] = 3059, + [3186] = 3054, + [3187] = 3066, + [3188] = 3052, + [3189] = 3069, + [3190] = 3052, + [3191] = 3066, + [3192] = 3052, + [3193] = 3055, + [3194] = 3059, + [3195] = 3050, + [3196] = 3054, + [3197] = 3054, + [3198] = 3066, + [3199] = 3052, + [3200] = 3066, + [3201] = 3064, + [3202] = 3064, + [3203] = 3059, + [3204] = 3058, + [3205] = 3074, + [3206] = 3054, + [3207] = 3050, + [3208] = 3074, + [3209] = 3048, + [3210] = 3049, + [3211] = 3047, + [3212] = 3074, + [3213] = 3059, + [3214] = 3069, + [3215] = 3055, + [3216] = 3050, + [3217] = 3055, + [3218] = 3050, + [3219] = 3054, + [3220] = 3049, + [3221] = 3069, + [3222] = 3052, + [3223] = 3066, + [3224] = 3064, + [3225] = 3069, + [3226] = 3064, + [3227] = 3072, + [3228] = 3062, + [3229] = 3067, + [3230] = 3069, + [3231] = 3067, [3232] = 3048, - [3233] = 3043, - [3234] = 3056, - [3235] = 3057, - [3236] = 3047, - [3237] = 3042, - [3238] = 3061, - [3239] = 3068, - [3240] = 3052, - [3241] = 3068, - [3242] = 3068, - [3243] = 3063, - [3244] = 3064, - [3245] = 3068, - [3246] = 3064, - [3247] = 3048, - [3248] = 3053, - [3249] = 3052, - [3250] = 3052, - [3251] = 3068, - [3252] = 3042, - [3253] = 3041, - [3254] = 3046, - [3255] = 3051, - [3256] = 3043, - [3257] = 3257, - [3258] = 3057, - [3259] = 3053, - [3260] = 3049, - [3261] = 3048, - [3262] = 3042, - [3263] = 3041, - [3264] = 3042, + [3233] = 3067, + [3234] = 3055, + [3235] = 3059, + [3236] = 3074, + [3237] = 3072, + [3238] = 3050, + [3239] = 3050, + [3240] = 3074, + [3241] = 3047, + [3242] = 3048, + [3243] = 3064, + [3244] = 3059, + [3245] = 3058, + [3246] = 3049, + [3247] = 3091, + [3248] = 3049, + [3249] = 3047, + [3250] = 3058, + [3251] = 3048, + [3252] = 3050, + [3253] = 3052, + [3254] = 3059, + [3255] = 3059, + [3256] = 3074, + [3257] = 3054, + [3258] = 3055, + [3259] = 3054, + [3260] = 3047, + [3261] = 3074, + [3262] = 3058, + [3263] = 3059, + [3264] = 3047, [3265] = 3265, - [3266] = 3047, - [3267] = 3041, - [3268] = 3056, - [3269] = 3053, - [3270] = 3049, - [3271] = 3061, - [3272] = 3063, - [3273] = 3049, - [3274] = 3068, - [3275] = 3047, - [3276] = 3057, - [3277] = 3052, - [3278] = 3053, - [3279] = 3056, - [3280] = 3061, - [3281] = 3041, - [3282] = 3051, - [3283] = 3063, - [3284] = 3064, - [3285] = 3042, - [3286] = 3043, - [3287] = 3047, - [3288] = 3288, - [3289] = 3057, - [3290] = 3068, - [3291] = 3068, - [3292] = 3047, - [3293] = 3046, - [3294] = 3068, - [3295] = 3149, - [3296] = 3051, - [3297] = 3046, - [3298] = 3041, - [3299] = 3053, - [3300] = 3041, - [3301] = 3042, - [3302] = 3043, - [3303] = 3049, - [3304] = 3047, - [3305] = 3053, - [3306] = 3041, - [3307] = 3307, - [3308] = 3308, - [3309] = 3308, - [3310] = 3310, - [3311] = 3311, - [3312] = 3308, - [3313] = 3308, - [3314] = 3308, + [3266] = 3055, + [3267] = 3066, + [3268] = 3052, + [3269] = 3069, + [3270] = 3069, + [3271] = 3067, + [3272] = 3062, + [3273] = 3074, + [3274] = 3074, + [3275] = 3059, + [3276] = 3066, + [3277] = 3058, + [3278] = 3049, + [3279] = 3062, + [3280] = 3072, + [3281] = 3055, + [3282] = 3055, + [3283] = 3067, + [3284] = 3284, + [3285] = 3072, + [3286] = 3062, + [3287] = 3072, + [3288] = 3062, + [3289] = 3058, + [3290] = 3054, + [3291] = 3059, + [3292] = 3074, + [3293] = 3047, + [3294] = 3067, + [3295] = 3052, + [3296] = 3069, + [3297] = 3069, + [3298] = 3066, + [3299] = 3059, + [3300] = 3059, + [3301] = 3074, + [3302] = 3069, + [3303] = 3058, + [3304] = 3064, + [3305] = 3049, + [3306] = 3048, + [3307] = 3074, + [3308] = 3059, + [3309] = 3069, + [3310] = 3069, + [3311] = 3059, + [3312] = 3069, + [3313] = 3074, + [3314] = 3314, [3315] = 3315, - [3316] = 3308, - [3317] = 3308, - [3318] = 3308, - [3319] = 3308, - [3320] = 3308, - [3321] = 3308, - [3322] = 3308, - [3323] = 3323, - [3324] = 3324, - [3325] = 634, - [3326] = 760, - [3327] = 637, - [3328] = 668, - [3329] = 666, - [3330] = 1128, - [3331] = 3331, - [3332] = 637, - [3333] = 760, - [3334] = 3334, - [3335] = 3335, - [3336] = 634, + [3316] = 3314, + [3317] = 3317, + [3318] = 3314, + [3319] = 3314, + [3320] = 3314, + [3321] = 3321, + [3322] = 3314, + [3323] = 3314, + [3324] = 3314, + [3325] = 3314, + [3326] = 3314, + [3327] = 3314, + [3328] = 3314, + [3329] = 3329, + [3330] = 3330, + [3331] = 716, + [3332] = 450, + [3333] = 470, + [3334] = 448, + [3335] = 472, + [3336] = 1131, [3337] = 3337, - [3338] = 668, - [3339] = 666, - [3340] = 1128, - [3341] = 1128, - [3342] = 2168, - [3343] = 3343, - [3344] = 3344, - [3345] = 1455, - [3346] = 3346, - [3347] = 2242, + [3338] = 3338, + [3339] = 3339, + [3340] = 472, + [3341] = 716, + [3342] = 470, + [3343] = 450, + [3344] = 448, + [3345] = 3345, + [3346] = 1131, + [3347] = 3347, [3348] = 3348, - [3349] = 1437, - [3350] = 3346, - [3351] = 3351, - [3352] = 3346, - [3353] = 1443, - [3354] = 3346, - [3355] = 3355, - [3356] = 3356, - [3357] = 2303, - [3358] = 3358, - [3359] = 3359, - [3360] = 2302, - [3361] = 3361, - [3362] = 3362, + [3349] = 1450, + [3350] = 1131, + [3351] = 2167, + [3352] = 2264, + [3353] = 3353, + [3354] = 3354, + [3355] = 3353, + [3356] = 3353, + [3357] = 3357, + [3358] = 3353, + [3359] = 1441, + [3360] = 1438, + [3361] = 2296, + [3362] = 2298, [3363] = 3363, - [3364] = 3362, - [3365] = 3362, - [3366] = 3363, - [3367] = 3362, - [3368] = 3368, - [3369] = 3362, - [3370] = 3363, - [3371] = 3371, + [3364] = 3364, + [3365] = 3365, + [3366] = 3366, + [3367] = 3367, + [3368] = 3367, + [3369] = 3367, + [3370] = 3370, + [3371] = 3367, [3372] = 3372, - [3373] = 3373, - [3374] = 3363, - [3375] = 3362, - [3376] = 3362, - [3377] = 3363, - [3378] = 3378, - [3379] = 3363, - [3380] = 3371, - [3381] = 3362, - [3382] = 3363, - [3383] = 3383, - [3384] = 3371, - [3385] = 553, - [3386] = 414, - [3387] = 3363, - [3388] = 3362, - [3389] = 3389, - [3390] = 552, - [3391] = 3363, - [3392] = 3362, - [3393] = 3393, - [3394] = 3394, - [3395] = 3362, - [3396] = 455, - [3397] = 3363, + [3373] = 3372, + [3374] = 3367, + [3375] = 915, + [3376] = 3367, + [3377] = 3372, + [3378] = 3367, + [3379] = 3379, + [3380] = 404, + [3381] = 3379, + [3382] = 3382, + [3383] = 3367, + [3384] = 914, + [3385] = 3385, + [3386] = 3372, + [3387] = 3372, + [3388] = 3388, + [3389] = 3367, + [3390] = 941, + [3391] = 3391, + [3392] = 3372, + [3393] = 3367, + [3394] = 3372, + [3395] = 3395, + [3396] = 3367, + [3397] = 3397, [3398] = 3398, - [3399] = 3363, - [3400] = 3362, - [3401] = 3362, - [3402] = 3362, - [3403] = 3363, - [3404] = 3363, - [3405] = 3371, - [3406] = 3363, - [3407] = 544, - [3408] = 554, - [3409] = 527, - [3410] = 3410, - [3411] = 3411, - [3412] = 3412, + [3399] = 3372, + [3400] = 3379, + [3401] = 3372, + [3402] = 3379, + [3403] = 3372, + [3404] = 3367, + [3405] = 3372, + [3406] = 3406, + [3407] = 3367, + [3408] = 3408, + [3409] = 3367, + [3410] = 3372, + [3411] = 3372, + [3412] = 3372, [3413] = 3413, - [3414] = 3414, - [3415] = 810, - [3416] = 645, + [3414] = 853, + [3415] = 931, + [3416] = 922, [3417] = 3417, - [3418] = 736, - [3419] = 869, - [3420] = 867, - [3421] = 848, - [3422] = 3422, - [3423] = 832, - [3424] = 811, - [3425] = 742, - [3426] = 809, - [3427] = 3427, - [3428] = 808, - [3429] = 765, - [3430] = 3430, - [3431] = 750, - [3432] = 638, - [3433] = 665, - [3434] = 735, - [3435] = 650, - [3436] = 670, - [3437] = 747, - [3438] = 743, - [3439] = 738, - [3440] = 3440, - [3441] = 3441, + [3418] = 3418, + [3419] = 3419, + [3420] = 3420, + [3421] = 861, + [3422] = 660, + [3423] = 711, + [3424] = 809, + [3425] = 453, + [3426] = 3426, + [3427] = 732, + [3428] = 3428, + [3429] = 456, + [3430] = 653, + [3431] = 810, + [3432] = 686, + [3433] = 460, + [3434] = 813, + [3435] = 840, + [3436] = 3436, + [3437] = 879, + [3438] = 473, + [3439] = 654, + [3440] = 676, + [3441] = 459, [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, + [3443] = 672, + [3444] = 878, + [3445] = 812, [3446] = 3446, - [3447] = 3445, + [3447] = 3447, [3448] = 3448, - [3449] = 3445, - [3450] = 3445, - [3451] = 3445, - [3452] = 3445, - [3453] = 3445, - [3454] = 3445, - [3455] = 3445, - [3456] = 3445, - [3457] = 3457, - [3458] = 3445, - [3459] = 959, - [3460] = 3445, - [3461] = 3461, - [3462] = 3462, + [3449] = 3449, + [3450] = 824, + [3451] = 3451, + [3452] = 3449, + [3453] = 3449, + [3454] = 3454, + [3455] = 3449, + [3456] = 3456, + [3457] = 3449, + [3458] = 3458, + [3459] = 3449, + [3460] = 3449, + [3461] = 3449, + [3462] = 3449, [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 3466, + [3464] = 3449, + [3465] = 3449, + [3466] = 3449, [3467] = 3467, [3468] = 3468, [3469] = 3469, @@ -6822,159 +6847,159 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3481] = 3481, [3482] = 3482, [3483] = 3483, - [3484] = 3481, + [3484] = 3484, [3485] = 3485, [3486] = 3486, [3487] = 3487, - [3488] = 3481, - [3489] = 3489, + [3488] = 3484, + [3489] = 3484, [3490] = 3490, - [3491] = 3481, - [3492] = 3481, + [3491] = 3484, + [3492] = 3492, [3493] = 3493, - [3494] = 3481, + [3494] = 3494, [3495] = 3495, - [3496] = 3496, + [3496] = 3484, [3497] = 3497, - [3498] = 3481, + [3498] = 3498, [3499] = 3499, [3500] = 3500, [3501] = 3501, [3502] = 3502, - [3503] = 3481, - [3504] = 3481, - [3505] = 3505, + [3503] = 3503, + [3504] = 3484, + [3505] = 3484, [3506] = 3506, - [3507] = 3481, - [3508] = 3481, - [3509] = 3509, - [3510] = 3481, - [3511] = 3511, + [3507] = 3484, + [3508] = 3508, + [3509] = 3484, + [3510] = 3510, + [3511] = 3484, [3512] = 3512, - [3513] = 3513, + [3513] = 3484, [3514] = 3514, - [3515] = 3512, - [3516] = 3516, - [3517] = 3517, - [3518] = 3511, + [3515] = 3515, + [3516] = 3484, + [3517] = 1436, + [3518] = 1441, [3519] = 3519, - [3520] = 3513, - [3521] = 3519, + [3520] = 3520, + [3521] = 3521, [3522] = 3519, - [3523] = 3513, - [3524] = 3513, - [3525] = 1436, - [3526] = 3512, - [3527] = 3516, - [3528] = 3512, - [3529] = 3516, - [3530] = 3516, - [3531] = 3511, - [3532] = 3511, - [3533] = 3533, - [3534] = 3534, + [3523] = 3523, + [3524] = 3524, + [3525] = 3525, + [3526] = 3519, + [3527] = 3521, + [3528] = 3528, + [3529] = 3529, + [3530] = 3530, + [3531] = 3524, + [3532] = 3521, + [3533] = 3520, + [3534] = 3530, [3535] = 3535, - [3536] = 3511, - [3537] = 3517, - [3538] = 3514, + [3536] = 3521, + [3537] = 3520, + [3538] = 941, [3539] = 3539, - [3540] = 3517, - [3541] = 3514, - [3542] = 3539, - [3543] = 414, - [3544] = 1443, - [3545] = 3511, - [3546] = 3517, - [3547] = 3514, - [3548] = 3539, - [3549] = 3516, - [3550] = 3539, - [3551] = 3514, - [3552] = 3512, - [3553] = 3517, - [3554] = 3513, - [3555] = 3539, - [3556] = 3519, - [3557] = 3539, - [3558] = 3514, - [3559] = 3519, - [3560] = 3513, - [3561] = 3512, - [3562] = 3516, - [3563] = 3517, - [3564] = 3511, - [3565] = 3539, - [3566] = 3519, - [3567] = 3513, - [3568] = 3512, - [3569] = 3516, - [3570] = 3514, - [3571] = 3517, - [3572] = 3511, - [3573] = 3511, - [3574] = 3517, - [3575] = 3514, - [3576] = 3539, - [3577] = 3539, - [3578] = 3578, - [3579] = 3514, - [3580] = 3517, - [3581] = 3519, - [3582] = 3513, - [3583] = 3512, - [3584] = 3516, - [3585] = 455, - [3586] = 1437, - [3587] = 1452, - [3588] = 1453, - [3589] = 1434, - [3590] = 3516, - [3591] = 3512, - [3592] = 3513, - [3593] = 3519, - [3594] = 3512, - [3595] = 3511, - [3596] = 3517, - [3597] = 3516, - [3598] = 3519, - [3599] = 3513, - [3600] = 3600, - [3601] = 3519, - [3602] = 3514, - [3603] = 3539, - [3604] = 3519, - [3605] = 3605, - [3606] = 3513, - [3607] = 3512, - [3608] = 3516, - [3609] = 3539, + [3540] = 3524, + [3541] = 3530, + [3542] = 3524, + [3543] = 3535, + [3544] = 3530, + [3545] = 3519, + [3546] = 3530, + [3547] = 3528, + [3548] = 3529, + [3549] = 3529, + [3550] = 3524, + [3551] = 3519, + [3552] = 3530, + [3553] = 3524, + [3554] = 3529, + [3555] = 3535, + [3556] = 3520, + [3557] = 3521, + [3558] = 3519, + [3559] = 3528, + [3560] = 3528, + [3561] = 3519, + [3562] = 3521, + [3563] = 3520, + [3564] = 3535, + [3565] = 3529, + [3566] = 3528, + [3567] = 3528, + [3568] = 3520, + [3569] = 3535, + [3570] = 1468, + [3571] = 1467, + [3572] = 3520, + [3573] = 3535, + [3574] = 3574, + [3575] = 3521, + [3576] = 3519, + [3577] = 3519, + [3578] = 3521, + [3579] = 3530, + [3580] = 3520, + [3581] = 3535, + [3582] = 3529, + [3583] = 3528, + [3584] = 3528, + [3585] = 3529, + [3586] = 3524, + [3587] = 3530, + [3588] = 3524, + [3589] = 3589, + [3590] = 3529, + [3591] = 3535, + [3592] = 3529, + [3593] = 3593, + [3594] = 3535, + [3595] = 3524, + [3596] = 3520, + [3597] = 3529, + [3598] = 3521, + [3599] = 3528, + [3600] = 3524, + [3601] = 3524, + [3602] = 1438, + [3603] = 3530, + [3604] = 3521, + [3605] = 404, + [3606] = 3530, + [3607] = 3529, + [3608] = 3530, + [3609] = 3524, [3610] = 3519, - [3611] = 3513, - [3612] = 3514, - [3613] = 3517, - [3614] = 3512, - [3615] = 3516, - [3616] = 3511, - [3617] = 3539, - [3618] = 3514, - [3619] = 3517, - [3620] = 3620, - [3621] = 3511, - [3622] = 3622, - [3623] = 3623, - [3624] = 3624, - [3625] = 3625, - [3626] = 1455, + [3611] = 3529, + [3612] = 3535, + [3613] = 3528, + [3614] = 3520, + [3615] = 3521, + [3616] = 3616, + [3617] = 3528, + [3618] = 3519, + [3619] = 3619, + [3620] = 3528, + [3621] = 3519, + [3622] = 1444, + [3623] = 3521, + [3624] = 3520, + [3625] = 3520, + [3626] = 3535, [3627] = 3627, - [3628] = 3628, - [3629] = 3629, + [3628] = 3535, + [3629] = 3530, [3630] = 3630, [3631] = 3631, [3632] = 3632, [3633] = 3633, [3634] = 3634, - [3635] = 3635, - [3636] = 3628, + [3635] = 824, + [3636] = 3636, [3637] = 3637, [3638] = 3638, [3639] = 3639, @@ -6988,1051 +7013,1073 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3647] = 3647, [3648] = 3648, [3649] = 3649, - [3650] = 3630, - [3651] = 3651, + [3650] = 3639, + [3651] = 1450, [3652] = 3652, [3653] = 3653, [3654] = 3654, [3655] = 3655, - [3656] = 1567, + [3656] = 3656, [3657] = 3657, - [3658] = 3658, + [3658] = 3656, [3659] = 3659, [3660] = 3660, - [3661] = 3658, + [3661] = 3661, [3662] = 3662, [3663] = 3663, [3664] = 3664, [3665] = 3665, - [3666] = 3662, + [3666] = 3666, [3667] = 3667, - [3668] = 3659, + [3668] = 3668, [3669] = 3669, - [3670] = 3670, - [3671] = 3671, - [3672] = 3662, + [3670] = 3663, + [3671] = 3664, + [3672] = 3672, [3673] = 3673, - [3674] = 3659, - [3675] = 3662, + [3674] = 3674, + [3675] = 3669, [3676] = 3676, - [3677] = 3658, + [3677] = 3663, [3678] = 3678, [3679] = 3679, - [3680] = 3680, - [3681] = 3662, + [3680] = 3672, + [3681] = 3681, [3682] = 3682, [3683] = 3683, [3684] = 3684, - [3685] = 3660, + [3685] = 3664, [3686] = 3686, [3687] = 3687, [3688] = 3688, - [3689] = 3689, - [3690] = 3688, + [3689] = 3672, + [3690] = 3669, [3691] = 3691, - [3692] = 3664, - [3693] = 3665, + [3692] = 3663, + [3693] = 3693, [3694] = 3694, - [3695] = 3662, - [3696] = 3664, - [3697] = 3665, + [3695] = 3663, + [3696] = 3669, + [3697] = 3672, [3698] = 3698, - [3699] = 3658, - [3700] = 1545, + [3699] = 3673, + [3700] = 3664, [3701] = 3701, - [3702] = 1521, - [3703] = 3659, - [3704] = 3662, + [3702] = 3673, + [3703] = 3693, + [3704] = 3668, [3705] = 3705, [3706] = 3706, - [3707] = 3707, - [3708] = 3658, - [3709] = 3709, + [3707] = 3664, + [3708] = 3708, + [3709] = 3693, [3710] = 3710, - [3711] = 3659, - [3712] = 3665, - [3713] = 3664, + [3711] = 3664, + [3712] = 3712, + [3713] = 1585, [3714] = 3714, [3715] = 3715, - [3716] = 3716, - [3717] = 3658, - [3718] = 3688, - [3719] = 3662, - [3720] = 3688, - [3721] = 3721, - [3722] = 3660, - [3723] = 3664, - [3724] = 3660, - [3725] = 1511, - [3726] = 3660, - [3727] = 3727, - [3728] = 3688, - [3729] = 3658, - [3730] = 3665, - [3731] = 3665, - [3732] = 3664, - [3733] = 3733, - [3734] = 3734, - [3735] = 3735, - [3736] = 3659, - [3737] = 3737, - [3738] = 3738, - [3739] = 3659, - [3740] = 3660, - [3741] = 1566, - [3742] = 1565, - [3743] = 3743, - [3744] = 3744, - [3745] = 1547, - [3746] = 3688, - [3747] = 1562, - [3748] = 1561, - [3749] = 3660, - [3750] = 1560, - [3751] = 3662, - [3752] = 3658, - [3753] = 1559, - [3754] = 3754, - [3755] = 3755, - [3756] = 3658, - [3757] = 3660, - [3758] = 3665, - [3759] = 3759, - [3760] = 1546, + [3716] = 1590, + [3717] = 3717, + [3718] = 3718, + [3719] = 3664, + [3720] = 3720, + [3721] = 3664, + [3722] = 3669, + [3723] = 3668, + [3724] = 3663, + [3725] = 3673, + [3726] = 3672, + [3727] = 3672, + [3728] = 3728, + [3729] = 3729, + [3730] = 3669, + [3731] = 3663, + [3732] = 3663, + [3733] = 1521, + [3734] = 1522, + [3735] = 3669, + [3736] = 3673, + [3737] = 3673, + [3738] = 3672, + [3739] = 1523, + [3740] = 3740, + [3741] = 3669, + [3742] = 3673, + [3743] = 1524, + [3744] = 3693, + [3745] = 3663, + [3746] = 3746, + [3747] = 3747, + [3748] = 3672, + [3749] = 3668, + [3750] = 1572, + [3751] = 3693, + [3752] = 3663, + [3753] = 3669, + [3754] = 1516, + [3755] = 3746, + [3756] = 3756, + [3757] = 3664, + [3758] = 3663, + [3759] = 3669, + [3760] = 3664, [3761] = 3761, - [3762] = 3762, - [3763] = 3664, - [3764] = 3662, - [3765] = 3765, + [3762] = 1514, + [3763] = 1513, + [3764] = 3693, + [3765] = 3673, [3766] = 3766, - [3767] = 3662, - [3768] = 1512, - [3769] = 3660, - [3770] = 3770, - [3771] = 3688, - [3772] = 3772, - [3773] = 3658, - [3774] = 3774, - [3775] = 3665, - [3776] = 3776, - [3777] = 3659, - [3778] = 3664, - [3779] = 3664, - [3780] = 3665, - [3781] = 3664, - [3782] = 3688, - [3783] = 3664, - [3784] = 3665, - [3785] = 3665, + [3767] = 3668, + [3768] = 1517, + [3769] = 3673, + [3770] = 3756, + [3771] = 3664, + [3772] = 3693, + [3773] = 3761, + [3774] = 3664, + [3775] = 3775, + [3776] = 1563, + [3777] = 3766, + [3778] = 1537, + [3779] = 3672, + [3780] = 3780, + [3781] = 1536, + [3782] = 3664, + [3783] = 3783, + [3784] = 3784, + [3785] = 3785, [3786] = 3786, - [3787] = 3787, - [3788] = 1538, - [3789] = 3659, - [3790] = 3662, - [3791] = 1536, - [3792] = 3662, - [3793] = 3662, - [3794] = 3794, - [3795] = 3795, - [3796] = 3659, - [3797] = 3797, - [3798] = 3774, - [3799] = 3658, - [3800] = 3800, - [3801] = 3665, - [3802] = 3688, - [3803] = 3705, - [3804] = 3804, - [3805] = 3659, - [3806] = 3662, - [3807] = 3686, - [3808] = 3660, - [3809] = 3665, - [3810] = 3664, - [3811] = 3662, - [3812] = 1531, - [3813] = 3694, - [3814] = 1509, - [3815] = 3664, - [3816] = 3688, - [3817] = 3658, - [3818] = 3660, - [3819] = 3688, + [3787] = 3668, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, + [3791] = 3791, + [3792] = 3672, + [3793] = 3793, + [3794] = 3664, + [3795] = 3693, + [3796] = 3796, + [3797] = 3673, + [3798] = 3798, + [3799] = 3799, + [3800] = 3672, + [3801] = 1540, + [3802] = 1543, + [3803] = 1568, + [3804] = 3668, + [3805] = 3664, + [3806] = 3669, + [3807] = 3807, + [3808] = 3668, + [3809] = 3663, + [3810] = 3669, + [3811] = 3672, + [3812] = 3812, + [3813] = 3673, + [3814] = 3693, + [3815] = 3693, + [3816] = 3668, + [3817] = 3693, + [3818] = 3818, + [3819] = 3819, [3820] = 3820, - [3821] = 1510, - [3822] = 3659, - [3823] = 3660, - [3824] = 3688, - [3825] = 3688, - [3826] = 3826, - [3827] = 3827, - [3828] = 3828, - [3829] = 3826, - [3830] = 3830, - [3831] = 3831, - [3832] = 3832, - [3833] = 1436, + [3821] = 3664, + [3822] = 3822, + [3823] = 3668, + [3824] = 3824, + [3825] = 3673, + [3826] = 3668, + [3827] = 3668, + [3828] = 3672, + [3829] = 3693, + [3830] = 3669, + [3831] = 3663, + [3832] = 1520, + [3833] = 3833, [3834] = 3834, - [3835] = 3835, - [3836] = 3828, + [3835] = 3834, + [3836] = 3836, [3837] = 3837, [3838] = 3838, [3839] = 3839, - [3840] = 3840, - [3841] = 3827, - [3842] = 3834, + [3840] = 3833, + [3841] = 3841, + [3842] = 3842, [3843] = 3843, [3844] = 3844, - [3845] = 1443, + [3845] = 3845, [3846] = 3846, - [3847] = 3839, - [3848] = 3840, - [3849] = 3828, - [3850] = 3832, - [3851] = 3834, - [3852] = 3839, - [3853] = 3840, - [3854] = 3840, - [3855] = 3839, - [3856] = 1437, - [3857] = 3826, - [3858] = 3830, - [3859] = 3859, - [3860] = 2168, - [3861] = 3834, - [3862] = 3862, - [3863] = 3835, - [3864] = 3838, - [3865] = 3846, - [3866] = 3844, - [3867] = 3827, - [3868] = 3843, - [3869] = 3830, - [3870] = 3832, - [3871] = 3844, - [3872] = 959, + [3847] = 3847, + [3848] = 3848, + [3849] = 3841, + [3850] = 3841, + [3851] = 3851, + [3852] = 3852, + [3853] = 3853, + [3854] = 3854, + [3855] = 3854, + [3856] = 3842, + [3857] = 3843, + [3858] = 3845, + [3859] = 3848, + [3860] = 3852, + [3861] = 3851, + [3862] = 3845, + [3863] = 3839, + [3864] = 3864, + [3865] = 3854, + [3866] = 3838, + [3867] = 3836, + [3868] = 3852, + [3869] = 1441, + [3870] = 3836, + [3871] = 3871, + [3872] = 3838, [3873] = 3843, - [3874] = 3846, - [3875] = 3828, - [3876] = 3832, - [3877] = 3877, - [3878] = 3878, - [3879] = 1436, - [3880] = 3835, - [3881] = 3838, - [3882] = 3827, + [3874] = 3842, + [3875] = 3839, + [3876] = 3841, + [3877] = 3848, + [3878] = 3851, + [3879] = 3879, + [3880] = 3854, + [3881] = 3852, + [3882] = 3833, [3883] = 3834, - [3884] = 3839, - [3885] = 3840, - [3886] = 3886, - [3887] = 3887, - [3888] = 3888, - [3889] = 3826, - [3890] = 3830, - [3891] = 3891, - [3892] = 3826, - [3893] = 3830, - [3894] = 3835, - [3895] = 3838, - [3896] = 3826, - [3897] = 3827, - [3898] = 3898, - [3899] = 3843, - [3900] = 3843, - [3901] = 3901, - [3902] = 3832, - [3903] = 3846, - [3904] = 3844, - [3905] = 3844, - [3906] = 3846, - [3907] = 3907, - [3908] = 3828, - [3909] = 3832, - [3910] = 3910, - [3911] = 3911, - [3912] = 3834, - [3913] = 3839, - [3914] = 3828, - [3915] = 3840, - [3916] = 3827, + [3884] = 1438, + [3885] = 3848, + [3886] = 3851, + [3887] = 1436, + [3888] = 3834, + [3889] = 3834, + [3890] = 3833, + [3891] = 3843, + [3892] = 3842, + [3893] = 3893, + [3894] = 3841, + [3895] = 3833, + [3896] = 1441, + [3897] = 3897, + [3898] = 3836, + [3899] = 3845, + [3900] = 3833, + [3901] = 3841, + [3902] = 3842, + [3903] = 3843, + [3904] = 3834, + [3905] = 3905, + [3906] = 3906, + [3907] = 3839, + [3908] = 3908, + [3909] = 3838, + [3910] = 3834, + [3911] = 3833, + [3912] = 1438, + [3913] = 3913, + [3914] = 3914, + [3915] = 3851, + [3916] = 3852, [3917] = 3917, - [3918] = 3832, - [3919] = 3826, - [3920] = 3830, - [3921] = 3838, - [3922] = 3835, + [3918] = 3918, + [3919] = 3851, + [3920] = 3852, + [3921] = 3848, + [3922] = 3842, [3923] = 3923, - [3924] = 3830, - [3925] = 3835, + [3924] = 3841, + [3925] = 3843, [3926] = 3926, - [3927] = 3838, - [3928] = 3928, - [3929] = 3929, - [3930] = 3827, - [3931] = 3835, - [3932] = 3834, - [3933] = 3827, - [3934] = 3843, - [3935] = 3838, - [3936] = 3827, - [3937] = 3839, - [3938] = 3840, - [3939] = 3844, - [3940] = 3846, - [3941] = 3941, + [3927] = 3839, + [3928] = 3838, + [3929] = 3854, + [3930] = 3842, + [3931] = 3843, + [3932] = 2167, + [3933] = 3933, + [3934] = 3851, + [3935] = 3852, + [3936] = 3836, + [3937] = 3854, + [3938] = 3938, + [3939] = 3939, + [3940] = 3357, + [3941] = 3848, [3942] = 3942, - [3943] = 3840, - [3944] = 3839, - [3945] = 3633, - [3946] = 3631, - [3947] = 3830, - [3948] = 3826, - [3949] = 3828, - [3950] = 1434, - [3951] = 3625, - [3952] = 3952, - [3953] = 3627, - [3954] = 3832, - [3955] = 3834, - [3956] = 3839, - [3957] = 3840, - [3958] = 3958, - [3959] = 3826, - [3960] = 3830, - [3961] = 1443, - [3962] = 3348, - [3963] = 3835, - [3964] = 3838, - [3965] = 3827, - [3966] = 3826, - [3967] = 3830, - [3968] = 3828, - [3969] = 3832, - [3970] = 3843, - [3971] = 3844, - [3972] = 3846, - [3973] = 3973, + [3943] = 3943, + [3944] = 3836, + [3945] = 3839, + [3946] = 3354, + [3947] = 3845, + [3948] = 3838, + [3949] = 3836, + [3950] = 3836, + [3951] = 3838, + [3952] = 3839, + [3953] = 1444, + [3954] = 3854, + [3955] = 3836, + [3956] = 3956, + [3957] = 3957, + [3958] = 3845, + [3959] = 3852, + [3960] = 3851, + [3961] = 3961, + [3962] = 3838, + [3963] = 3848, + [3964] = 3839, + [3965] = 3848, + [3966] = 3854, + [3967] = 3644, + [3968] = 3634, + [3969] = 3969, + [3970] = 3970, + [3971] = 3971, + [3972] = 3845, + [3973] = 3661, [3974] = 3974, - [3975] = 3828, - [3976] = 3351, + [3975] = 3654, + [3976] = 3845, [3977] = 3977, - [3978] = 3835, - [3979] = 3838, - [3980] = 3827, - [3981] = 3832, - [3982] = 3982, - [3983] = 3983, + [3978] = 1438, + [3979] = 3979, + [3980] = 3843, + [3981] = 3842, + [3982] = 3841, + [3983] = 3836, [3984] = 3984, - [3985] = 3985, - [3986] = 3834, - [3987] = 3839, - [3988] = 3840, - [3989] = 3989, - [3990] = 3990, - [3991] = 3839, - [3992] = 3840, - [3993] = 3993, - [3994] = 1437, - [3995] = 3846, - [3996] = 3832, - [3997] = 3843, - [3998] = 3834, - [3999] = 1443, - [4000] = 1436, - [4001] = 3844, - [4002] = 3834, - [4003] = 3844, - [4004] = 3846, - [4005] = 3826, - [4006] = 3832, - [4007] = 3843, - [4008] = 3830, - [4009] = 4009, - [4010] = 3835, - [4011] = 3838, - [4012] = 3828, - [4013] = 1434, - [4014] = 3827, - [4015] = 3843, - [4016] = 4016, - [4017] = 4017, - [4018] = 1437, - [4019] = 3843, - [4020] = 3844, - [4021] = 3828, - [4022] = 3846, - [4023] = 4023, - [4024] = 3828, - [4025] = 3832, - [4026] = 4026, - [4027] = 4027, - [4028] = 3834, - [4029] = 4029, - [4030] = 3846, - [4031] = 4031, - [4032] = 3844, - [4033] = 3835, - [4034] = 3834, - [4035] = 3839, - [4036] = 3840, - [4037] = 3843, + [3985] = 3854, + [3986] = 3986, + [3987] = 3987, + [3988] = 3834, + [3989] = 3833, + [3990] = 3845, + [3991] = 3833, + [3992] = 3838, + [3993] = 3834, + [3994] = 3838, + [3995] = 3839, + [3996] = 3839, + [3997] = 3852, + [3998] = 3851, + [3999] = 3845, + [4000] = 3841, + [4001] = 3842, + [4002] = 3843, + [4003] = 3843, + [4004] = 3848, + [4005] = 4005, + [4006] = 3843, + [4007] = 3845, + [4008] = 4008, + [4009] = 3842, + [4010] = 3843, + [4011] = 3851, + [4012] = 3841, + [4013] = 3852, + [4014] = 3854, + [4015] = 3842, + [4016] = 3841, + [4017] = 1441, + [4018] = 3845, + [4019] = 4019, + [4020] = 3848, + [4021] = 4021, + [4022] = 3854, + [4023] = 3834, + [4024] = 3833, + [4025] = 4025, + [4026] = 3839, + [4027] = 3838, + [4028] = 3845, + [4029] = 3841, + [4030] = 3842, + [4031] = 3836, + [4032] = 3843, + [4033] = 4033, + [4034] = 4034, + [4035] = 3836, + [4036] = 3833, + [4037] = 3834, [4038] = 4038, - [4039] = 3844, - [4040] = 3838, + [4039] = 3838, + [4040] = 3839, [4041] = 4041, - [4042] = 3846, - [4043] = 3828, - [4044] = 3832, - [4045] = 3846, - [4046] = 3844, - [4047] = 3843, - [4048] = 3827, - [4049] = 3838, - [4050] = 3835, - [4051] = 3838, - [4052] = 3827, - [4053] = 3835, - [4054] = 3826, - [4055] = 3830, - [4056] = 4056, - [4057] = 4057, - [4058] = 3828, - [4059] = 3835, - [4060] = 4060, - [4061] = 3844, - [4062] = 3846, - [4063] = 3843, - [4064] = 3838, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, - [4068] = 4065, - [4069] = 4069, - [4070] = 4070, + [4042] = 4042, + [4043] = 3852, + [4044] = 3848, + [4045] = 3851, + [4046] = 3851, + [4047] = 3852, + [4048] = 3854, + [4049] = 4049, + [4050] = 3836, + [4051] = 3854, + [4052] = 4052, + [4053] = 4053, + [4054] = 3838, + [4055] = 3839, + [4056] = 3845, + [4057] = 3843, + [4058] = 3836, + [4059] = 3842, + [4060] = 3841, + [4061] = 1436, + [4062] = 3838, + [4063] = 3839, + [4064] = 3848, + [4065] = 3848, + [4066] = 1444, + [4067] = 3848, + [4068] = 1436, + [4069] = 3833, + [4070] = 3834, [4071] = 4071, [4072] = 4072, - [4073] = 4073, - [4074] = 4073, - [4075] = 4075, + [4073] = 3841, + [4074] = 3842, + [4075] = 3644, [4076] = 4076, - [4077] = 4066, + [4077] = 4077, [4078] = 4078, - [4079] = 4079, + [4079] = 1514, [4080] = 4080, [4081] = 4081, - [4082] = 4075, - [4083] = 4066, + [4082] = 4082, + [4083] = 4083, [4084] = 4084, - [4085] = 4072, - [4086] = 4086, - [4087] = 4071, - [4088] = 4079, + [4085] = 4083, + [4086] = 4081, + [4087] = 4077, + [4088] = 4080, [4089] = 4089, [4090] = 4090, - [4091] = 4079, + [4091] = 4076, [4092] = 4092, - [4093] = 4079, + [4093] = 4090, [4094] = 4094, - [4095] = 4095, - [4096] = 4086, - [4097] = 4066, - [4098] = 4065, - [4099] = 4067, - [4100] = 4079, + [4095] = 4077, + [4096] = 4090, + [4097] = 4097, + [4098] = 4090, + [4099] = 3654, + [4100] = 4100, [4101] = 4078, - [4102] = 4079, - [4103] = 4076, - [4104] = 4075, - [4105] = 1512, - [4106] = 4079, - [4107] = 4107, - [4108] = 3627, - [4109] = 4079, - [4110] = 4066, + [4102] = 4100, + [4103] = 1513, + [4104] = 4090, + [4105] = 4090, + [4106] = 4106, + [4107] = 4090, + [4108] = 4090, + [4109] = 4090, + [4110] = 4110, [4111] = 4111, - [4112] = 4112, - [4113] = 1511, - [4114] = 3625, - [4115] = 4115, - [4116] = 4067, - [4117] = 4092, - [4118] = 3631, + [4112] = 4090, + [4113] = 4110, + [4114] = 4090, + [4115] = 4092, + [4116] = 4116, + [4117] = 4078, + [4118] = 4094, [4119] = 4119, - [4120] = 4120, - [4121] = 4079, - [4122] = 3633, - [4123] = 4107, - [4124] = 4124, - [4125] = 4069, - [4126] = 4079, - [4127] = 4127, + [4120] = 4083, + [4121] = 4081, + [4122] = 4094, + [4123] = 4119, + [4124] = 4078, + [4125] = 4097, + [4126] = 4100, + [4127] = 4076, [4128] = 4089, - [4129] = 4079, - [4130] = 4130, - [4131] = 4092, - [4132] = 4132, - [4133] = 4133, - [4134] = 4078, - [4135] = 4069, - [4136] = 4136, - [4137] = 3633, - [4138] = 3631, - [4139] = 4081, - [4140] = 4089, - [4141] = 4086, + [4129] = 4076, + [4130] = 4089, + [4131] = 4131, + [4132] = 4083, + [4133] = 4084, + [4134] = 4082, + [4135] = 3644, + [4136] = 4081, + [4137] = 4077, + [4138] = 3634, + [4139] = 2264, + [4140] = 4140, + [4141] = 4080, [4142] = 4092, - [4143] = 4143, + [4143] = 1585, [4144] = 4144, - [4145] = 4145, - [4146] = 4089, - [4147] = 4078, - [4148] = 4073, - [4149] = 4073, - [4150] = 4081, - [4151] = 4086, - [4152] = 4078, - [4153] = 4065, - [4154] = 3625, - [4155] = 4079, - [4156] = 4089, - [4157] = 4089, - [4158] = 3627, - [4159] = 3633, - [4160] = 3631, - [4161] = 4092, - [4162] = 3625, - [4163] = 4081, - [4164] = 3627, - [4165] = 4107, - [4166] = 4067, - [4167] = 4065, - [4168] = 4107, - [4169] = 4067, - [4170] = 4067, - [4171] = 4073, - [4172] = 4071, - [4173] = 4072, - [4174] = 4066, - [4175] = 4066, - [4176] = 4176, - [4177] = 4065, - [4178] = 4072, - [4179] = 4179, - [4180] = 4180, - [4181] = 4107, - [4182] = 4069, - [4183] = 4107, - [4184] = 4107, - [4185] = 4075, - [4186] = 4076, - [4187] = 4081, - [4188] = 4073, - [4189] = 4189, - [4190] = 4092, - [4191] = 4066, - [4192] = 4076, - [4193] = 4072, - [4194] = 4071, - [4195] = 4075, - [4196] = 4069, - [4197] = 4086, - [4198] = 3633, - [4199] = 4086, - [4200] = 4078, - [4201] = 4065, - [4202] = 4067, - [4203] = 4086, - [4204] = 3631, - [4205] = 4072, - [4206] = 4081, - [4207] = 4066, - [4208] = 3627, - [4209] = 4081, - [4210] = 4092, - [4211] = 3625, - [4212] = 4073, - [4213] = 4092, - [4214] = 4107, - [4215] = 4073, - [4216] = 3625, - [4217] = 3631, + [4145] = 4092, + [4146] = 3661, + [4147] = 4100, + [4148] = 4094, + [4149] = 4149, + [4150] = 4119, + [4151] = 4094, + [4152] = 3661, + [4153] = 3654, + [4154] = 4154, + [4155] = 4155, + [4156] = 4080, + [4157] = 4077, + [4158] = 4110, + [4159] = 4081, + [4160] = 4082, + [4161] = 4080, + [4162] = 4162, + [4163] = 4083, + [4164] = 4164, + [4165] = 4165, + [4166] = 4166, + [4167] = 4089, + [4168] = 4076, + [4169] = 4169, + [4170] = 4170, + [4171] = 4171, + [4172] = 4097, + [4173] = 4097, + [4174] = 4092, + [4175] = 4110, + [4176] = 4110, + [4177] = 4076, + [4178] = 4089, + [4179] = 4083, + [4180] = 4084, + [4181] = 4094, + [4182] = 4082, + [4183] = 4183, + [4184] = 4081, + [4185] = 4077, + [4186] = 4186, + [4187] = 4080, + [4188] = 3654, + [4189] = 3661, + [4190] = 4190, + [4191] = 4191, + [4192] = 4092, + [4193] = 3634, + [4194] = 3644, + [4195] = 4195, + [4196] = 4196, + [4197] = 4090, + [4198] = 3634, + [4199] = 4119, + [4200] = 4200, + [4201] = 4201, + [4202] = 4100, + [4203] = 4078, + [4204] = 4119, + [4205] = 4084, + [4206] = 4206, + [4207] = 4207, + [4208] = 4208, + [4209] = 3644, + [4210] = 4100, + [4211] = 3644, + [4212] = 4110, + [4213] = 3634, + [4214] = 4092, + [4215] = 4084, + [4216] = 3661, + [4217] = 3654, [4218] = 4218, - [4219] = 3633, - [4220] = 4078, - [4221] = 3627, - [4222] = 4222, - [4223] = 4223, - [4224] = 4111, - [4225] = 3627, - [4226] = 4076, - [4227] = 4115, + [4219] = 4110, + [4220] = 4220, + [4221] = 4080, + [4222] = 4097, + [4223] = 4077, + [4224] = 4081, + [4225] = 4106, + [4226] = 4082, + [4227] = 4076, [4228] = 4089, - [4229] = 4229, - [4230] = 4107, - [4231] = 4231, - [4232] = 4086, - [4233] = 4069, - [4234] = 4078, - [4235] = 4086, - [4236] = 4089, + [4229] = 4083, + [4230] = 4084, + [4231] = 4084, + [4232] = 4082, + [4233] = 4083, + [4234] = 4081, + [4235] = 4089, + [4236] = 4077, [4237] = 4237, [4238] = 4238, - [4239] = 4067, + [4239] = 4080, [4240] = 4240, - [4241] = 4078, - [4242] = 4073, - [4243] = 4075, - [4244] = 4065, - [4245] = 4075, - [4246] = 4076, - [4247] = 4247, - [4248] = 4079, - [4249] = 4089, - [4250] = 4250, - [4251] = 4133, - [4252] = 4252, - [4253] = 3633, - [4254] = 4070, - [4255] = 4255, - [4256] = 4066, - [4257] = 4257, - [4258] = 3631, - [4259] = 4080, - [4260] = 4092, - [4261] = 3625, - [4262] = 4081, - [4263] = 4072, - [4264] = 4264, - [4265] = 4265, - [4266] = 3627, - [4267] = 4069, - [4268] = 4268, - [4269] = 4269, - [4270] = 4069, - [4271] = 4271, - [4272] = 4107, - [4273] = 4067, - [4274] = 4071, - [4275] = 4275, - [4276] = 4065, - [4277] = 4277, - [4278] = 3625, - [4279] = 4092, - [4280] = 3633, - [4281] = 4069, - [4282] = 4071, - [4283] = 4072, - [4284] = 4075, - [4285] = 4076, - [4286] = 4286, - [4287] = 4066, - [4288] = 3631, - [4289] = 4092, - [4290] = 4069, - [4291] = 4071, - [4292] = 4076, - [4293] = 3625, - [4294] = 3627, - [4295] = 4071, - [4296] = 4075, - [4297] = 4066, - [4298] = 4072, - [4299] = 4071, - [4300] = 4072, - [4301] = 4069, - [4302] = 4065, + [4241] = 3654, + [4242] = 3661, + [4243] = 4092, + [4244] = 3634, + [4245] = 3644, + [4246] = 4097, + [4247] = 4100, + [4248] = 4078, + [4249] = 4119, + [4250] = 4094, + [4251] = 4090, + [4252] = 4078, + [4253] = 4253, + [4254] = 4254, + [4255] = 4110, + [4256] = 4256, + [4257] = 4119, + [4258] = 4110, + [4259] = 4259, + [4260] = 4078, + [4261] = 4261, + [4262] = 4097, + [4263] = 4094, + [4264] = 4097, + [4265] = 4076, + [4266] = 4089, + [4267] = 4083, + [4268] = 4076, + [4269] = 4119, + [4270] = 4270, + [4271] = 4082, + [4272] = 4089, + [4273] = 4078, + [4274] = 4081, + [4275] = 4100, + [4276] = 4276, + [4277] = 4083, + [4278] = 4077, + [4279] = 4080, + [4280] = 3654, + [4281] = 4082, + [4282] = 3661, + [4283] = 4092, + [4284] = 3634, + [4285] = 4084, + [4286] = 3644, + [4287] = 4287, + [4288] = 4288, + [4289] = 3644, + [4290] = 4290, + [4291] = 3634, + [4292] = 4292, + [4293] = 4092, + [4294] = 4294, + [4295] = 4100, + [4296] = 4296, + [4297] = 4297, + [4298] = 4078, + [4299] = 4084, + [4300] = 4119, + [4301] = 4082, + [4302] = 4094, [4303] = 4303, - [4304] = 4304, - [4305] = 4066, - [4306] = 4132, - [4307] = 4065, - [4308] = 3631, - [4309] = 4067, - [4310] = 4081, - [4311] = 4078, - [4312] = 4107, - [4313] = 3627, - [4314] = 4081, - [4315] = 4075, - [4316] = 3625, - [4317] = 4092, - [4318] = 4071, - [4319] = 4073, + [4304] = 3661, + [4305] = 3654, + [4306] = 4306, + [4307] = 4110, + [4308] = 4082, + [4309] = 4080, + [4310] = 4077, + [4311] = 4081, + [4312] = 4312, + [4313] = 4082, + [4314] = 4314, + [4315] = 4084, + [4316] = 4316, + [4317] = 4317, + [4318] = 4083, + [4319] = 4083, [4320] = 4320, - [4321] = 4321, - [4322] = 4086, - [4323] = 3631, - [4324] = 3633, - [4325] = 4081, - [4326] = 1521, - [4327] = 4075, - [4328] = 4076, - [4329] = 4089, - [4330] = 4067, - [4331] = 4076, - [4332] = 4067, - [4333] = 4333, - [4334] = 4078, - [4335] = 4086, - [4336] = 4073, - [4337] = 4337, - [4338] = 3633, - [4339] = 4107, - [4340] = 4340, - [4341] = 4341, + [4321] = 4097, + [4322] = 4322, + [4323] = 4089, + [4324] = 4324, + [4325] = 4076, + [4326] = 4076, + [4327] = 4089, + [4328] = 4083, + [4329] = 4329, + [4330] = 4330, + [4331] = 4084, + [4332] = 4097, + [4333] = 3644, + [4334] = 4081, + [4335] = 4077, + [4336] = 3654, + [4337] = 4195, + [4338] = 4080, + [4339] = 3654, + [4340] = 4191, + [4341] = 4170, [4342] = 4342, - [4343] = 4089, - [4344] = 4344, - [4345] = 4065, - [4346] = 4346, - [4347] = 4347, - [4348] = 4348, - [4349] = 4092, - [4350] = 3633, - [4351] = 3631, - [4352] = 4078, - [4353] = 4353, - [4354] = 4092, - [4355] = 3625, - [4356] = 4081, - [4357] = 3627, - [4358] = 4107, - [4359] = 4089, - [4360] = 4089, - [4361] = 4067, - [4362] = 4065, - [4363] = 4073, - [4364] = 4071, - [4365] = 4072, - [4366] = 4071, - [4367] = 4072, - [4368] = 4066, - [4369] = 4369, - [4370] = 4370, - [4371] = 2242, - [4372] = 4086, - [4373] = 4373, - [4374] = 4374, - [4375] = 4069, - [4376] = 4078, - [4377] = 4076, - [4378] = 4075, - [4379] = 4076, + [4343] = 3661, + [4344] = 4081, + [4345] = 4092, + [4346] = 3634, + [4347] = 4094, + [4348] = 4110, + [4349] = 4100, + [4350] = 4094, + [4351] = 4078, + [4352] = 4077, + [4353] = 4119, + [4354] = 4119, + [4355] = 4078, + [4356] = 4303, + [4357] = 4306, + [4358] = 4094, + [4359] = 4097, + [4360] = 4080, + [4361] = 3661, + [4362] = 4092, + [4363] = 4119, + [4364] = 4364, + [4365] = 3634, + [4366] = 4366, + [4367] = 4078, + [4368] = 3644, + [4369] = 4110, + [4370] = 4100, + [4371] = 4371, + [4372] = 4372, + [4373] = 4092, + [4374] = 3634, + [4375] = 4092, + [4376] = 4376, + [4377] = 3661, + [4378] = 3654, + [4379] = 4080, [4380] = 4380, [4381] = 4381, - [4382] = 4382, - [4383] = 2302, - [4384] = 4380, - [4385] = 4381, - [4386] = 4386, - [4387] = 4387, - [4388] = 4388, - [4389] = 4389, - [4390] = 4390, - [4391] = 4386, - [4392] = 4381, + [4382] = 4100, + [4383] = 4077, + [4384] = 4081, + [4385] = 4082, + [4386] = 4084, + [4387] = 4083, + [4388] = 4100, + [4389] = 4097, + [4390] = 4089, + [4391] = 4076, + [4392] = 4392, [4393] = 4393, - [4394] = 4380, + [4394] = 4394, [4395] = 4395, [4396] = 4396, [4397] = 4397, [4398] = 4398, [4399] = 4399, [4400] = 4400, - [4401] = 4399, - [4402] = 4398, + [4401] = 4401, + [4402] = 4402, [4403] = 4403, [4404] = 4404, - [4405] = 4380, - [4406] = 4381, - [4407] = 4386, - [4408] = 4408, - [4409] = 4395, - [4410] = 4400, - [4411] = 4400, + [4405] = 4405, + [4406] = 4400, + [4407] = 4399, + [4408] = 4398, + [4409] = 4403, + [4410] = 4410, + [4411] = 4411, [4412] = 4412, - [4413] = 4386, - [4414] = 4381, - [4415] = 4380, + [4413] = 4413, + [4414] = 4414, + [4415] = 4415, [4416] = 4416, - [4417] = 4416, - [4418] = 4398, + [4417] = 4417, + [4418] = 4418, [4419] = 4419, - [4420] = 4420, - [4421] = 4404, - [4422] = 4400, - [4423] = 4398, - [4424] = 4424, - [4425] = 4403, - [4426] = 4380, - [4427] = 4381, - [4428] = 4386, - [4429] = 4386, - [4430] = 4430, - [4431] = 4381, - [4432] = 4399, + [4420] = 4413, + [4421] = 4421, + [4422] = 4422, + [4423] = 4423, + [4424] = 4403, + [4425] = 4425, + [4426] = 4398, + [4427] = 4400, + [4428] = 4399, + [4429] = 4398, + [4430] = 4399, + [4431] = 4431, + [4432] = 4400, [4433] = 4433, - [4434] = 4434, - [4435] = 4416, - [4436] = 4380, - [4437] = 4398, - [4438] = 4438, + [4434] = 4392, + [4435] = 4410, + [4436] = 4403, + [4437] = 4437, + [4438] = 4392, [4439] = 4439, - [4440] = 4404, - [4441] = 4403, - [4442] = 4399, - [4443] = 4443, - [4444] = 4398, - [4445] = 2303, + [4440] = 4440, + [4441] = 4433, + [4442] = 4425, + [4443] = 4423, + [4444] = 4413, + [4445] = 4403, [4446] = 4446, - [4447] = 4380, - [4448] = 4381, - [4449] = 4386, - [4450] = 4397, + [4447] = 4421, + [4448] = 4400, + [4449] = 4399, + [4450] = 4398, [4451] = 4451, - [4452] = 4452, - [4453] = 4397, - [4454] = 4396, - [4455] = 4455, - [4456] = 4396, - [4457] = 4452, - [4458] = 4390, - [4459] = 4459, - [4460] = 4382, - [4461] = 4389, - [4462] = 4395, + [4452] = 4419, + [4453] = 4398, + [4454] = 4418, + [4455] = 4401, + [4456] = 4399, + [4457] = 4416, + [4458] = 4414, + [4459] = 4400, + [4460] = 4403, + [4461] = 4416, + [4462] = 4462, [4463] = 4463, - [4464] = 4388, - [4465] = 4398, - [4466] = 4466, + [4464] = 4396, + [4465] = 4465, + [4466] = 4403, [4467] = 4395, - [4468] = 4380, - [4469] = 4381, - [4470] = 4386, - [4471] = 4471, - [4472] = 4382, - [4473] = 4452, - [4474] = 4474, - [4475] = 4386, - [4476] = 4381, - [4477] = 4390, - [4478] = 4380, - [4479] = 4389, - [4480] = 4403, - [4481] = 4481, - [4482] = 4398, - [4483] = 4452, - [4484] = 4382, - [4485] = 4404, - [4486] = 4398, - [4487] = 4388, - [4488] = 4416, - [4489] = 4380, - [4490] = 4490, - [4491] = 4386, - [4492] = 4388, - [4493] = 4395, + [4468] = 4395, + [4469] = 4400, + [4470] = 4399, + [4471] = 4398, + [4472] = 4437, + [4473] = 4396, + [4474] = 4410, + [4475] = 4414, + [4476] = 4416, + [4477] = 4418, + [4478] = 4398, + [4479] = 4399, + [4480] = 4401, + [4481] = 4400, + [4482] = 4419, + [4483] = 4421, + [4484] = 4403, + [4485] = 4413, + [4486] = 4423, + [4487] = 4403, + [4488] = 4425, + [4489] = 4433, + [4490] = 4400, + [4491] = 4399, + [4492] = 4398, + [4493] = 4392, [4494] = 4494, [4495] = 4495, [4496] = 4496, - [4497] = 4389, - [4498] = 4404, - [4499] = 4390, - [4500] = 4396, - [4501] = 4397, - [4502] = 4403, - [4503] = 4398, - [4504] = 4399, - [4505] = 4380, - [4506] = 4381, - [4507] = 4452, - [4508] = 4382, - [4509] = 4403, - [4510] = 4404, - [4511] = 4398, - [4512] = 4386, - [4513] = 4513, - [4514] = 4388, + [4497] = 4497, + [4498] = 4498, + [4499] = 4413, + [4500] = 4500, + [4501] = 4413, + [4502] = 4502, + [4503] = 4503, + [4504] = 4504, + [4505] = 4401, + [4506] = 4506, + [4507] = 4401, + [4508] = 4403, + [4509] = 4395, + [4510] = 4510, + [4511] = 4400, + [4512] = 4399, + [4513] = 4398, + [4514] = 4396, [4515] = 4515, - [4516] = 4400, - [4517] = 4517, - [4518] = 4388, - [4519] = 4519, - [4520] = 4400, - [4521] = 4521, - [4522] = 4389, - [4523] = 4382, - [4524] = 4452, - [4525] = 4395, - [4526] = 4526, - [4527] = 4416, + [4516] = 4423, + [4517] = 4395, + [4518] = 4396, + [4519] = 4410, + [4520] = 4410, + [4521] = 4392, + [4522] = 4414, + [4523] = 4416, + [4524] = 4433, + [4525] = 4403, + [4526] = 4425, + [4527] = 4400, [4528] = 4399, - [4529] = 4529, - [4530] = 4386, - [4531] = 4531, - [4532] = 4532, - [4533] = 4452, - [4534] = 4381, - [4535] = 4382, - [4536] = 4386, - [4537] = 4398, - [4538] = 4396, - [4539] = 4389, - [4540] = 4540, - [4541] = 4400, - [4542] = 4542, - [4543] = 4529, - [4544] = 4389, - [4545] = 4466, - [4546] = 4390, - [4547] = 4547, - [4548] = 4396, - [4549] = 4390, - [4550] = 4550, - [4551] = 4398, - [4552] = 4386, - [4553] = 4381, - [4554] = 4380, - [4555] = 4397, - [4556] = 4416, - [4557] = 4398, - [4558] = 4404, - [4559] = 4403, - [4560] = 4399, - [4561] = 4397, - [4562] = 4416, - [4563] = 4390, - [4564] = 4564, - [4565] = 4396, - [4566] = 4566, - [4567] = 4567, - [4568] = 4397, - [4569] = 4569, - [4570] = 4396, - [4571] = 4396, + [4529] = 4398, + [4530] = 4423, + [4531] = 4418, + [4532] = 4414, + [4533] = 4403, + [4534] = 4398, + [4535] = 4535, + [4536] = 4421, + [4537] = 4419, + [4538] = 4418, + [4539] = 4419, + [4540] = 4421, + [4541] = 4423, + [4542] = 4425, + [4543] = 4433, + [4544] = 4544, + [4545] = 4545, + [4546] = 4414, + [4547] = 4418, + [4548] = 4392, + [4549] = 4410, + [4550] = 4413, + [4551] = 4551, + [4552] = 4396, + [4553] = 4414, + [4554] = 4398, + [4555] = 4399, + [4556] = 4395, + [4557] = 4395, + [4558] = 4400, + [4559] = 4559, + [4560] = 4419, + [4561] = 4561, + [4562] = 4401, + [4563] = 4403, + [4564] = 4496, + [4565] = 4421, + [4566] = 4401, + [4567] = 4395, + [4568] = 4396, + [4569] = 4465, + [4570] = 4570, + [4571] = 4571, [4572] = 4572, - [4573] = 4390, - [4574] = 4395, - [4575] = 4389, - [4576] = 4576, - [4577] = 4388, - [4578] = 4399, - [4579] = 4382, - [4580] = 4452, - [4581] = 4403, - [4582] = 4582, - [4583] = 4404, - [4584] = 4397, - [4585] = 4585, - [4586] = 4416, - [4587] = 4452, - [4588] = 4388, - [4589] = 4395, - [4590] = 4416, - [4591] = 4389, - [4592] = 4397, - [4593] = 4400, - [4594] = 4390, - [4595] = 4396, - [4596] = 4596, - [4597] = 4395, - [4598] = 4397, - [4599] = 4400, - [4600] = 4390, - [4601] = 4404, - [4602] = 4403, - [4603] = 4399, - [4604] = 4566, - [4605] = 4403, - [4606] = 4606, - [4607] = 4404, - [4608] = 4399, - [4609] = 4400, - [4610] = 4400, - [4611] = 4611, + [4573] = 4410, + [4574] = 4574, + [4575] = 4433, + [4576] = 4414, + [4577] = 4425, + [4578] = 4578, + [4579] = 4416, + [4580] = 4418, + [4581] = 4581, + [4582] = 4421, + [4583] = 4583, + [4584] = 4423, + [4585] = 4413, + [4586] = 4425, + [4587] = 4423, + [4588] = 4433, + [4589] = 4589, + [4590] = 4392, + [4591] = 4419, + [4592] = 4425, + [4593] = 4433, + [4594] = 4594, + [4595] = 4413, + [4596] = 4413, + [4597] = 4413, + [4598] = 4598, + [4599] = 4392, + [4600] = 4401, + [4601] = 4413, + [4602] = 4392, + [4603] = 4433, + [4604] = 4425, + [4605] = 4423, + [4606] = 4395, + [4607] = 4421, + [4608] = 4419, + [4609] = 4418, + [4610] = 4416, + [4611] = 4414, [4612] = 4612, - [4613] = 4400, + [4613] = 4410, [4614] = 4614, [4615] = 4615, - [4616] = 4399, - [4617] = 4416, - [4618] = 4389, - [4619] = 4388, - [4620] = 4400, - [4621] = 4395, - [4622] = 4400, + [4616] = 4396, + [4617] = 4413, + [4618] = 4396, + [4619] = 4410, + [4620] = 4395, + [4621] = 4621, + [4622] = 4414, [4623] = 4416, - [4624] = 4403, - [4625] = 4625, - [4626] = 4404, - [4627] = 4403, - [4628] = 4399, - [4629] = 4388, - [4630] = 4630, - [4631] = 4404, - [4632] = 4400, - [4633] = 4400, - [4634] = 4395, - [4635] = 4397, - [4636] = 4397, - [4637] = 4396, - [4638] = 4396, - [4639] = 4390, - [4640] = 4390, - [4641] = 4389, - [4642] = 4529, - [4643] = 4388, - [4644] = 4567, - [4645] = 4395, - [4646] = 4526, - [4647] = 4529, - [4648] = 4400, - [4649] = 4400, - [4650] = 4650, - [4651] = 4529, - [4652] = 4395, - [4653] = 4389, - [4654] = 4382, - [4655] = 4529, - [4656] = 4452, - [4657] = 4382, - [4658] = 4389, - [4659] = 4529, - [4660] = 4452, - [4661] = 4661, - [4662] = 4400, - [4663] = 4529, - [4664] = 4452, - [4665] = 4382, - [4666] = 4395, - [4667] = 4529, - [4668] = 4395, - [4669] = 4452, - [4670] = 4670, - [4671] = 4529, - [4672] = 4672, - [4673] = 4388, - [4674] = 4400, - [4675] = 4529, - [4676] = 4676, - [4677] = 4677, - [4678] = 4416, - [4679] = 4529, - [4680] = 4680, - [4681] = 4404, + [4624] = 4416, + [4625] = 4401, + [4626] = 4403, + [4627] = 4418, + [4628] = 4419, + [4629] = 4413, + [4630] = 4401, + [4631] = 4421, + [4632] = 4423, + [4633] = 4425, + [4634] = 4634, + [4635] = 4433, + [4636] = 4392, + [4637] = 4401, + [4638] = 4413, + [4639] = 4413, + [4640] = 4640, + [4641] = 2298, + [4642] = 4401, + [4643] = 4401, + [4644] = 4395, + [4645] = 4645, + [4646] = 4414, + [4647] = 4413, + [4648] = 4396, + [4649] = 4410, + [4650] = 4414, + [4651] = 4416, + [4652] = 4652, + [4653] = 4653, + [4654] = 4654, + [4655] = 4401, + [4656] = 4656, + [4657] = 4418, + [4658] = 4410, + [4659] = 4392, + [4660] = 4660, + [4661] = 4419, + [4662] = 4421, + [4663] = 4433, + [4664] = 4551, + [4665] = 4425, + [4666] = 4423, + [4667] = 4413, + [4668] = 4668, + [4669] = 4551, + [4670] = 2296, + [4671] = 4423, + [4672] = 4421, + [4673] = 4551, + [4674] = 4421, + [4675] = 4425, + [4676] = 4419, + [4677] = 4551, + [4678] = 4419, + [4679] = 4433, + [4680] = 4418, + [4681] = 4551, [4682] = 4682, - [4683] = 4683, - [4684] = 4403, - [4685] = 4399, - [4686] = 4397, - [4687] = 4396, - [4688] = 4382, - [4689] = 4382, - [4690] = 4416, - [4691] = 4389, - [4692] = 4395, - [4693] = 4693, - [4694] = 4388, + [4683] = 4398, + [4684] = 4416, + [4685] = 4551, + [4686] = 4414, + [4687] = 4392, + [4688] = 4392, + [4689] = 4551, + [4690] = 4410, + [4691] = 4433, + [4692] = 4425, + [4693] = 4551, + [4694] = 4413, + [4695] = 4423, + [4696] = 4396, + [4697] = 4551, + [4698] = 4413, + [4699] = 4399, + [4700] = 4395, + [4701] = 4551, + [4702] = 4400, + [4703] = 4421, + [4704] = 4704, + [4705] = 4419, + [4706] = 4395, + [4707] = 4396, + [4708] = 4414, + [4709] = 4401, + [4710] = 4410, + [4711] = 4418, + [4712] = 4401, + [4713] = 4416, + [4714] = 4714, + [4715] = 4551, + [4716] = 4396, }; static inline bool sym_rune_literal_character_set_1(int32_t c) { @@ -9652,9 +9699,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(308); if (lookahead == '0') ADVANCE(400); - if (lookahead == ':') ADVANCE(168); + if (lookahead == ':') ADVANCE(331); if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); + if (lookahead == '<') ADVANCE(311); if (lookahead == '=') ADVANCE(293); if (lookahead == '>') ADVANCE(318); if (lookahead == '?') ADVANCE(335); @@ -9688,9 +9735,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(308); if (lookahead == '0') ADVANCE(400); - if (lookahead == ':') ADVANCE(168); + if (lookahead == ':') ADVANCE(331); if (lookahead == ';') ADVANCE(277); - if (lookahead == '<') ADVANCE(313); + if (lookahead == '<') ADVANCE(311); if (lookahead == '=') ADVANCE(293); if (lookahead == '>') ADVANCE(318); if (lookahead == '?') ADVANCE(335); @@ -9733,15 +9780,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'J') ADVANCE(691); if (lookahead == '[') ADVANCE(325); if (lookahead == '^') ADVANCE(342); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('b' <= lookahead && lookahead <= 'h') || + ('j' <= lookahead && lookahead <= 'n') || + ('p' <= lookahead && lookahead <= 'z') || + lookahead == 181 || + (913 <= lookahead && lookahead <= 937) || + (945 <= lookahead && lookahead <= 969)) ADVANCE(708); if (lookahead == 'a') ADVANCE(704); if (lookahead == 'i') ADVANCE(694); - if (lookahead == 'm') ADVANCE(707); if (lookahead == 'o') ADVANCE(702); if (lookahead == '{') ADVANCE(287); if (lookahead == '|') ADVANCE(295); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45) + lookahead == ' ') SKIP(44) END_STATE(); case 44: if (lookahead == '!') ADVANCE(337); @@ -9764,7 +9817,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(687); if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); + if (lookahead == '[') ADVANCE(339); if (lookahead == '^') ADVANCE(342); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9780,7 +9833,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(287); if (lookahead == '|') ADVANCE(295); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46) + lookahead == ' ') SKIP(44) END_STATE(); case 45: if (lookahead == '!') ADVANCE(337); @@ -9795,15 +9848,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(311); + if (lookahead == ':') ADVANCE(168); + if (lookahead == ';') ADVANCE(277); + if (lookahead == '<') ADVANCE(313); if (lookahead == '=') ADVANCE(293); if (lookahead == '>') ADVANCE(318); if (lookahead == '?') ADVANCE(335); if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(687); if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == '[') ADVANCE(325); if (lookahead == '^') ADVANCE(342); if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); if (lookahead == 'a') ADVANCE(704); @@ -9813,7 +9867,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(287); if (lookahead == '|') ADVANCE(295); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45) + lookahead == ' ') SKIP(47) END_STATE(); case 46: if (lookahead == '!') ADVANCE(337); @@ -9828,15 +9882,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(303); if (lookahead == '.') ADVANCE(278); if (lookahead == '/') ADVANCE(308); - if (lookahead == ':') ADVANCE(330); - if (lookahead == '<') ADVANCE(311); + if (lookahead == ':') ADVANCE(168); + if (lookahead == ';') ADVANCE(277); + if (lookahead == '<') ADVANCE(313); if (lookahead == '=') ADVANCE(293); if (lookahead == '>') ADVANCE(318); if (lookahead == '?') ADVANCE(335); if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(687); if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(339); + if (lookahead == '[') ADVANCE(325); if (lookahead == '^') ADVANCE(342); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || @@ -9852,7 +9907,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(287); if (lookahead == '|') ADVANCE(295); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(46) + lookahead == ' ') SKIP(48) END_STATE(); case 47: if (lookahead == '!') ADVANCE(337); @@ -9876,23 +9931,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(92); if (lookahead == 'C') ADVANCE(687); if (lookahead == 'J') ADVANCE(691); - if (lookahead == '[') ADVANCE(325); + if (lookahead == '[') ADVANCE(339); if (lookahead == '^') ADVANCE(342); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(708); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(708); if (lookahead == 'a') ADVANCE(704); if (lookahead == 'i') ADVANCE(694); + if (lookahead == 'm') ADVANCE(707); if (lookahead == 'o') ADVANCE(702); if (lookahead == '{') ADVANCE(287); if (lookahead == '|') ADVANCE(295); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) + lookahead == ' ') SKIP(47) END_STATE(); case 48: if (lookahead == '!') ADVANCE(337); @@ -11024,6 +11073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'm') ADVANCE(707); if (lookahead == 'r') ADVANCE(685); if (lookahead == '{') ADVANCE(287); + if (lookahead == '|') ADVANCE(294); if (lookahead == '}') ADVANCE(289); if (lookahead == '~') ADVANCE(340); if (('\t' <= lookahead && lookahead <= '\r') || @@ -11202,6 +11252,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (913 <= lookahead && lookahead <= 937) || (945 <= lookahead && lookahead <= 969)) ADVANCE(708); if (lookahead == '{') ADVANCE(287); + if (lookahead == '|') ADVANCE(294); if (lookahead == '}') ADVANCE(289); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(86) @@ -11236,6 +11287,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (913 <= lookahead && lookahead <= 937) || (945 <= lookahead && lookahead <= 969)) ADVANCE(708); if (lookahead == '{') ADVANCE(287); + if (lookahead == '|') ADVANCE(294); if (lookahead == '}') ADVANCE(289); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(86) @@ -12711,6 +12763,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'm') ADVANCE(707); if (lookahead == 'r') ADVANCE(685); if (lookahead == '{') ADVANCE(287); + if (lookahead == '|') ADVANCE(294); if (lookahead == '~') ADVANCE(340); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260) @@ -17865,7 +17918,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [172] = {.lex_state = 79}, [173] = {.lex_state = 79}, [174] = {.lex_state = 79}, - [175] = {.lex_state = 79}, + [175] = {.lex_state = 80}, [176] = {.lex_state = 79}, [177] = {.lex_state = 79}, [178] = {.lex_state = 79}, @@ -17886,7 +17939,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [193] = {.lex_state = 79}, [194] = {.lex_state = 79}, [195] = {.lex_state = 79}, - [196] = {.lex_state = 80}, + [196] = {.lex_state = 79}, [197] = {.lex_state = 79}, [198] = {.lex_state = 79}, [199] = {.lex_state = 79}, @@ -17896,15 +17949,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [203] = {.lex_state = 79}, [204] = {.lex_state = 79}, [205] = {.lex_state = 249}, - [206] = {.lex_state = 79}, - [207] = {.lex_state = 79}, - [208] = {.lex_state = 79}, + [206] = {.lex_state = 249}, + [207] = {.lex_state = 30}, + [208] = {.lex_state = 249}, [209] = {.lex_state = 79}, - [210] = {.lex_state = 249}, + [210] = {.lex_state = 79}, [211] = {.lex_state = 249}, - [212] = {.lex_state = 30}, + [212] = {.lex_state = 79}, [213] = {.lex_state = 249}, - [214] = {.lex_state = 249}, + [214] = {.lex_state = 79}, [215] = {.lex_state = 247}, [216] = {.lex_state = 247}, [217] = {.lex_state = 79}, @@ -17923,22 +17976,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [230] = {.lex_state = 79}, [231] = {.lex_state = 79}, [232] = {.lex_state = 79}, - [233] = {.lex_state = 247}, - [234] = {.lex_state = 247}, - [235] = {.lex_state = 79}, - [236] = {.lex_state = 79}, + [233] = {.lex_state = 79}, + [234] = {.lex_state = 79}, + [235] = {.lex_state = 247}, + [236] = {.lex_state = 247}, [237] = {.lex_state = 79}, [238] = {.lex_state = 79}, [239] = {.lex_state = 79}, - [240] = {.lex_state = 79}, - [241] = {.lex_state = 79}, - [242] = {.lex_state = 79}, + [240] = {.lex_state = 247}, + [241] = {.lex_state = 247}, + [242] = {.lex_state = 247}, [243] = {.lex_state = 79}, [244] = {.lex_state = 79}, [245] = {.lex_state = 79}, [246] = {.lex_state = 79}, [247] = {.lex_state = 79}, - [248] = {.lex_state = 79}, + [248] = {.lex_state = 247}, [249] = {.lex_state = 79}, [250] = {.lex_state = 79}, [251] = {.lex_state = 79}, @@ -17946,7 +17999,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [253] = {.lex_state = 79}, [254] = {.lex_state = 79}, [255] = {.lex_state = 79}, - [256] = {.lex_state = 247}, + [256] = {.lex_state = 79}, [257] = {.lex_state = 79}, [258] = {.lex_state = 79}, [259] = {.lex_state = 79}, @@ -17955,12 +18008,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [262] = {.lex_state = 79}, [263] = {.lex_state = 79}, [264] = {.lex_state = 79}, - [265] = {.lex_state = 247}, + [265] = {.lex_state = 79}, [266] = {.lex_state = 79}, [267] = {.lex_state = 79}, [268] = {.lex_state = 79}, - [269] = {.lex_state = 247}, - [270] = {.lex_state = 247}, + [269] = {.lex_state = 79}, + [270] = {.lex_state = 79}, [271] = {.lex_state = 79}, [272] = {.lex_state = 79}, [273] = {.lex_state = 79}, @@ -17970,141 +18023,141 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [277] = {.lex_state = 79}, [278] = {.lex_state = 79}, [279] = {.lex_state = 79}, - [280] = {.lex_state = 247}, + [280] = {.lex_state = 79}, [281] = {.lex_state = 79}, - [282] = {.lex_state = 79}, + [282] = {.lex_state = 247}, [283] = {.lex_state = 79}, - [284] = {.lex_state = 247}, - [285] = {.lex_state = 247}, + [284] = {.lex_state = 79}, + [285] = {.lex_state = 79}, [286] = {.lex_state = 79}, [287] = {.lex_state = 79}, - [288] = {.lex_state = 247}, - [289] = {.lex_state = 79}, + [288] = {.lex_state = 79}, + [289] = {.lex_state = 247}, [290] = {.lex_state = 79}, [291] = {.lex_state = 79}, - [292] = {.lex_state = 247}, + [292] = {.lex_state = 79}, [293] = {.lex_state = 79}, - [294] = {.lex_state = 79}, + [294] = {.lex_state = 247}, [295] = {.lex_state = 247}, - [296] = {.lex_state = 79}, - [297] = {.lex_state = 79}, + [296] = {.lex_state = 247}, + [297] = {.lex_state = 247}, [298] = {.lex_state = 247}, - [299] = {.lex_state = 79}, + [299] = {.lex_state = 80}, [300] = {.lex_state = 79}, - [301] = {.lex_state = 80}, + [301] = {.lex_state = 79}, [302] = {.lex_state = 79}, [303] = {.lex_state = 79}, [304] = {.lex_state = 79}, - [305] = {.lex_state = 80}, - [306] = {.lex_state = 80}, + [305] = {.lex_state = 79}, + [306] = {.lex_state = 79}, [307] = {.lex_state = 79}, [308] = {.lex_state = 79}, [309] = {.lex_state = 79}, [310] = {.lex_state = 79}, - [311] = {.lex_state = 79}, + [311] = {.lex_state = 80}, [312] = {.lex_state = 79}, [313] = {.lex_state = 79}, [314] = {.lex_state = 79}, [315] = {.lex_state = 79}, [316] = {.lex_state = 79}, - [317] = {.lex_state = 80}, - [318] = {.lex_state = 80}, + [317] = {.lex_state = 79}, + [318] = {.lex_state = 79}, [319] = {.lex_state = 79}, - [320] = {.lex_state = 79}, + [320] = {.lex_state = 80}, [321] = {.lex_state = 79}, - [322] = {.lex_state = 80}, - [323] = {.lex_state = 80}, + [322] = {.lex_state = 79}, + [323] = {.lex_state = 79}, [324] = {.lex_state = 79}, [325] = {.lex_state = 79}, [326] = {.lex_state = 79}, - [327] = {.lex_state = 80}, - [328] = {.lex_state = 80}, + [327] = {.lex_state = 79}, + [328] = {.lex_state = 79}, [329] = {.lex_state = 79}, [330] = {.lex_state = 79}, [331] = {.lex_state = 79}, [332] = {.lex_state = 79}, [333] = {.lex_state = 79}, [334] = {.lex_state = 79}, - [335] = {.lex_state = 80}, - [336] = {.lex_state = 80}, - [337] = {.lex_state = 80}, + [335] = {.lex_state = 79}, + [336] = {.lex_state = 79}, + [337] = {.lex_state = 79}, [338] = {.lex_state = 79}, [339] = {.lex_state = 79}, - [340] = {.lex_state = 80}, + [340] = {.lex_state = 79}, [341] = {.lex_state = 80}, [342] = {.lex_state = 79}, [343] = {.lex_state = 80}, [344] = {.lex_state = 79}, [345] = {.lex_state = 79}, [346] = {.lex_state = 79}, - [347] = {.lex_state = 79}, - [348] = {.lex_state = 79}, + [347] = {.lex_state = 80}, + [348] = {.lex_state = 80}, [349] = {.lex_state = 79}, [350] = {.lex_state = 79}, [351] = {.lex_state = 79}, - [352] = {.lex_state = 79}, - [353] = {.lex_state = 80}, - [354] = {.lex_state = 80}, - [355] = {.lex_state = 79}, - [356] = {.lex_state = 79}, + [352] = {.lex_state = 80}, + [353] = {.lex_state = 79}, + [354] = {.lex_state = 79}, + [355] = {.lex_state = 80}, + [356] = {.lex_state = 80}, [357] = {.lex_state = 79}, - [358] = {.lex_state = 80}, - [359] = {.lex_state = 80}, - [360] = {.lex_state = 79}, + [358] = {.lex_state = 79}, + [359] = {.lex_state = 79}, + [360] = {.lex_state = 80}, [361] = {.lex_state = 79}, [362] = {.lex_state = 79}, [363] = {.lex_state = 79}, - [364] = {.lex_state = 79}, - [365] = {.lex_state = 79}, - [366] = {.lex_state = 80}, - [367] = {.lex_state = 79}, - [368] = {.lex_state = 79}, - [369] = {.lex_state = 79}, + [364] = {.lex_state = 80}, + [365] = {.lex_state = 80}, + [366] = {.lex_state = 79}, + [367] = {.lex_state = 80}, + [368] = {.lex_state = 80}, + [369] = {.lex_state = 80}, [370] = {.lex_state = 79}, [371] = {.lex_state = 79}, [372] = {.lex_state = 79}, [373] = {.lex_state = 80}, - [374] = {.lex_state = 79}, + [374] = {.lex_state = 80}, [375] = {.lex_state = 79}, [376] = {.lex_state = 80}, - [377] = {.lex_state = 80}, - [378] = {.lex_state = 79}, - [379] = {.lex_state = 79}, + [377] = {.lex_state = 79}, + [378] = {.lex_state = 80}, + [379] = {.lex_state = 247}, [380] = {.lex_state = 79}, - [381] = {.lex_state = 79}, + [381] = {.lex_state = 80}, [382] = {.lex_state = 79}, - [383] = {.lex_state = 79}, - [384] = {.lex_state = 80}, - [385] = {.lex_state = 247}, - [386] = {.lex_state = 247}, + [383] = {.lex_state = 80}, + [384] = {.lex_state = 79}, + [385] = {.lex_state = 80}, + [386] = {.lex_state = 80}, [387] = {.lex_state = 79}, [388] = {.lex_state = 79}, - [389] = {.lex_state = 79}, + [389] = {.lex_state = 247}, [390] = {.lex_state = 79}, [391] = {.lex_state = 79}, [392] = {.lex_state = 79}, - [393] = {.lex_state = 79}, + [393] = {.lex_state = 251}, [394] = {.lex_state = 247}, - [395] = {.lex_state = 251}, - [396] = {.lex_state = 79}, + [395] = {.lex_state = 79}, + [396] = {.lex_state = 251}, [397] = {.lex_state = 79}, - [398] = {.lex_state = 79}, + [398] = {.lex_state = 251}, [399] = {.lex_state = 79}, [400] = {.lex_state = 79}, - [401] = {.lex_state = 79}, + [401] = {.lex_state = 247}, [402] = {.lex_state = 79}, [403] = {.lex_state = 79}, - [404] = {.lex_state = 79}, + [404] = {.lex_state = 247}, [405] = {.lex_state = 79}, [406] = {.lex_state = 79}, - [407] = {.lex_state = 79}, + [407] = {.lex_state = 247}, [408] = {.lex_state = 79}, [409] = {.lex_state = 79}, - [410] = {.lex_state = 79}, + [410] = {.lex_state = 247}, [411] = {.lex_state = 79}, - [412] = {.lex_state = 247}, + [412] = {.lex_state = 79}, [413] = {.lex_state = 79}, - [414] = {.lex_state = 247}, + [414] = {.lex_state = 79}, [415] = {.lex_state = 79}, [416] = {.lex_state = 79}, [417] = {.lex_state = 79}, @@ -18126,63 +18179,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [433] = {.lex_state = 79}, [434] = {.lex_state = 79}, [435] = {.lex_state = 79}, - [436] = {.lex_state = 251}, + [436] = {.lex_state = 79}, [437] = {.lex_state = 79}, - [438] = {.lex_state = 247}, - [439] = {.lex_state = 247}, + [438] = {.lex_state = 79}, + [439] = {.lex_state = 79}, [440] = {.lex_state = 79}, - [441] = {.lex_state = 251}, + [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}, + [448] = {.lex_state = 247}, [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 = 247}, - [456] = {.lex_state = 79}, - [457] = {.lex_state = 247}, + [450] = {.lex_state = 247}, + [451] = {.lex_state = 247}, + [452] = {.lex_state = 247}, + [453] = {.lex_state = 247}, + [454] = {.lex_state = 247}, + [455] = {.lex_state = 79}, + [456] = {.lex_state = 247}, + [457] = {.lex_state = 79}, [458] = {.lex_state = 79}, - [459] = {.lex_state = 79}, + [459] = {.lex_state = 247}, [460] = {.lex_state = 247}, - [461] = {.lex_state = 247}, + [461] = {.lex_state = 79}, [462] = {.lex_state = 79}, [463] = {.lex_state = 79}, [464] = {.lex_state = 79}, [465] = {.lex_state = 247}, [466] = {.lex_state = 247}, - [467] = {.lex_state = 79}, + [467] = {.lex_state = 247}, [468] = {.lex_state = 247}, [469] = {.lex_state = 79}, - [470] = {.lex_state = 79}, + [470] = {.lex_state = 247}, [471] = {.lex_state = 79}, - [472] = {.lex_state = 79}, - [473] = {.lex_state = 79}, - [474] = {.lex_state = 247}, - [475] = {.lex_state = 247}, - [476] = {.lex_state = 247}, - [477] = {.lex_state = 247}, + [472] = {.lex_state = 247}, + [473] = {.lex_state = 247}, + [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 = 247}, + [484] = {.lex_state = 79}, [485] = {.lex_state = 79}, - [486] = {.lex_state = 79}, + [486] = {.lex_state = 247}, [487] = {.lex_state = 79}, - [488] = {.lex_state = 247}, + [488] = {.lex_state = 79}, [489] = {.lex_state = 79}, [490] = {.lex_state = 79}, [491] = {.lex_state = 79}, - [492] = {.lex_state = 247}, + [492] = {.lex_state = 79}, [493] = {.lex_state = 79}, [494] = {.lex_state = 79}, [495] = {.lex_state = 79}, @@ -18199,10 +18252,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [506] = {.lex_state = 79}, [507] = {.lex_state = 79}, [508] = {.lex_state = 79}, - [509] = {.lex_state = 247}, + [509] = {.lex_state = 79}, [510] = {.lex_state = 79}, [511] = {.lex_state = 79}, - [512] = {.lex_state = 247}, + [512] = {.lex_state = 79}, [513] = {.lex_state = 79}, [514] = {.lex_state = 79}, [515] = {.lex_state = 79}, @@ -18218,8 +18271,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [525] = {.lex_state = 79}, [526] = {.lex_state = 79}, [527] = {.lex_state = 247}, - [528] = {.lex_state = 247}, - [529] = {.lex_state = 247}, + [528] = {.lex_state = 79}, + [529] = {.lex_state = 79}, [530] = {.lex_state = 79}, [531] = {.lex_state = 79}, [532] = {.lex_state = 79}, @@ -18230,11 +18283,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [537] = {.lex_state = 79}, [538] = {.lex_state = 79}, [539] = {.lex_state = 79}, - [540] = {.lex_state = 79}, + [540] = {.lex_state = 247}, [541] = {.lex_state = 79}, [542] = {.lex_state = 79}, [543] = {.lex_state = 79}, - [544] = {.lex_state = 247}, + [544] = {.lex_state = 79}, [545] = {.lex_state = 79}, [546] = {.lex_state = 79}, [547] = {.lex_state = 79}, @@ -18242,9 +18295,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [549] = {.lex_state = 79}, [550] = {.lex_state = 79}, [551] = {.lex_state = 79}, - [552] = {.lex_state = 247}, - [553] = {.lex_state = 247}, - [554] = {.lex_state = 247}, + [552] = {.lex_state = 79}, + [553] = {.lex_state = 79}, + [554] = {.lex_state = 79}, [555] = {.lex_state = 79}, [556] = {.lex_state = 247}, [557] = {.lex_state = 247}, @@ -18254,9 +18307,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [561] = {.lex_state = 79}, [562] = {.lex_state = 79}, [563] = {.lex_state = 79}, - [564] = {.lex_state = 247}, + [564] = {.lex_state = 79}, [565] = {.lex_state = 247}, - [566] = {.lex_state = 79}, + [566] = {.lex_state = 247}, [567] = {.lex_state = 79}, [568] = {.lex_state = 79}, [569] = {.lex_state = 79}, @@ -18285,14 +18338,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [592] = {.lex_state = 79}, [593] = {.lex_state = 79}, [594] = {.lex_state = 79}, - [595] = {.lex_state = 247}, + [595] = {.lex_state = 79}, [596] = {.lex_state = 247}, [597] = {.lex_state = 79}, [598] = {.lex_state = 79}, [599] = {.lex_state = 79}, [600] = {.lex_state = 247}, [601] = {.lex_state = 247}, - [602] = {.lex_state = 79}, + [602] = {.lex_state = 247}, [603] = {.lex_state = 79}, [604] = {.lex_state = 247}, [605] = {.lex_state = 79}, @@ -18313,10 +18366,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [620] = {.lex_state = 247}, [621] = {.lex_state = 79}, [622] = {.lex_state = 79}, - [623] = {.lex_state = 79}, + [623] = {.lex_state = 247}, [624] = {.lex_state = 79}, [625] = {.lex_state = 79}, - [626] = {.lex_state = 247}, + [626] = {.lex_state = 79}, [627] = {.lex_state = 79}, [628] = {.lex_state = 247}, [629] = {.lex_state = 79}, @@ -18324,59 +18377,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [631] = {.lex_state = 247}, [632] = {.lex_state = 79}, [633] = {.lex_state = 79}, - [634] = {.lex_state = 247}, - [635] = {.lex_state = 247}, + [634] = {.lex_state = 79}, + [635] = {.lex_state = 79}, [636] = {.lex_state = 79}, - [637] = {.lex_state = 247}, - [638] = {.lex_state = 247}, + [637] = {.lex_state = 79}, + [638] = {.lex_state = 79}, [639] = {.lex_state = 79}, - [640] = {.lex_state = 247}, + [640] = {.lex_state = 79}, [641] = {.lex_state = 79}, [642] = {.lex_state = 79}, [643] = {.lex_state = 79}, - [644] = {.lex_state = 247}, - [645] = {.lex_state = 247}, + [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 = 247}, - [651] = {.lex_state = 247}, - [652] = {.lex_state = 79}, - [653] = {.lex_state = 79}, + [650] = {.lex_state = 79}, + [651] = {.lex_state = 79}, + [652] = {.lex_state = 247}, + [653] = {.lex_state = 247}, [654] = {.lex_state = 247}, [655] = {.lex_state = 79}, - [656] = {.lex_state = 79}, + [656] = {.lex_state = 247}, [657] = {.lex_state = 79}, - [658] = {.lex_state = 79}, - [659] = {.lex_state = 247}, - [660] = {.lex_state = 79}, - [661] = {.lex_state = 79}, + [658] = {.lex_state = 247}, + [659] = {.lex_state = 79}, + [660] = {.lex_state = 247}, + [661] = {.lex_state = 247}, [662] = {.lex_state = 79}, [663] = {.lex_state = 79}, [664] = {.lex_state = 79}, - [665] = {.lex_state = 247}, - [666] = {.lex_state = 247}, - [667] = {.lex_state = 247}, + [665] = {.lex_state = 79}, + [666] = {.lex_state = 79}, + [667] = {.lex_state = 79}, [668] = {.lex_state = 247}, [669] = {.lex_state = 79}, - [670] = {.lex_state = 247}, + [670] = {.lex_state = 79}, [671] = {.lex_state = 79}, - [672] = {.lex_state = 79}, + [672] = {.lex_state = 247}, [673] = {.lex_state = 79}, - [674] = {.lex_state = 79}, - [675] = {.lex_state = 247}, + [674] = {.lex_state = 247}, + [675] = {.lex_state = 79}, [676] = {.lex_state = 247}, [677] = {.lex_state = 247}, [678] = {.lex_state = 247}, - [679] = {.lex_state = 79}, - [680] = {.lex_state = 79}, + [679] = {.lex_state = 247}, + [680] = {.lex_state = 247}, [681] = {.lex_state = 79}, - [682] = {.lex_state = 247}, - [683] = {.lex_state = 247}, + [682] = {.lex_state = 79}, + [683] = {.lex_state = 79}, [684] = {.lex_state = 79}, [685] = {.lex_state = 79}, - [686] = {.lex_state = 79}, + [686] = {.lex_state = 247}, [687] = {.lex_state = 79}, [688] = {.lex_state = 79}, [689] = {.lex_state = 79}, @@ -18386,26 +18439,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [693] = {.lex_state = 79}, [694] = {.lex_state = 79}, [695] = {.lex_state = 79}, - [696] = {.lex_state = 79}, + [696] = {.lex_state = 247}, [697] = {.lex_state = 79}, [698] = {.lex_state = 79}, [699] = {.lex_state = 79}, [700] = {.lex_state = 79}, [701] = {.lex_state = 79}, - [702] = {.lex_state = 247}, - [703] = {.lex_state = 247}, - [704] = {.lex_state = 247}, - [705] = {.lex_state = 247}, - [706] = {.lex_state = 79}, + [702] = {.lex_state = 79}, + [703] = {.lex_state = 79}, + [704] = {.lex_state = 79}, + [705] = {.lex_state = 79}, + [706] = {.lex_state = 247}, [707] = {.lex_state = 79}, [708] = {.lex_state = 79}, [709] = {.lex_state = 79}, [710] = {.lex_state = 79}, - [711] = {.lex_state = 79}, + [711] = {.lex_state = 247}, [712] = {.lex_state = 79}, [713] = {.lex_state = 79}, [714] = {.lex_state = 79}, - [715] = {.lex_state = 247}, + [715] = {.lex_state = 79}, [716] = {.lex_state = 247}, [717] = {.lex_state = 79}, [718] = {.lex_state = 247}, @@ -18416,59 +18469,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [723] = {.lex_state = 79}, [724] = {.lex_state = 79}, [725] = {.lex_state = 79}, - [726] = {.lex_state = 79}, + [726] = {.lex_state = 247}, [727] = {.lex_state = 79}, [728] = {.lex_state = 79}, [729] = {.lex_state = 79}, [730] = {.lex_state = 79}, [731] = {.lex_state = 79}, - [732] = {.lex_state = 79}, + [732] = {.lex_state = 247}, [733] = {.lex_state = 79}, - [734] = {.lex_state = 247}, - [735] = {.lex_state = 247}, - [736] = {.lex_state = 247}, + [734] = {.lex_state = 79}, + [735] = {.lex_state = 79}, + [736] = {.lex_state = 79}, [737] = {.lex_state = 79}, - [738] = {.lex_state = 247}, - [739] = {.lex_state = 247}, + [738] = {.lex_state = 79}, + [739] = {.lex_state = 79}, [740] = {.lex_state = 79}, - [741] = {.lex_state = 79}, - [742] = {.lex_state = 247}, - [743] = {.lex_state = 247}, + [741] = {.lex_state = 247}, + [742] = {.lex_state = 79}, + [743] = {.lex_state = 79}, [744] = {.lex_state = 79}, [745] = {.lex_state = 79}, [746] = {.lex_state = 79}, - [747] = {.lex_state = 247}, + [747] = {.lex_state = 79}, [748] = {.lex_state = 79}, - [749] = {.lex_state = 79}, + [749] = {.lex_state = 247}, [750] = {.lex_state = 247}, [751] = {.lex_state = 79}, [752] = {.lex_state = 79}, [753] = {.lex_state = 79}, - [754] = {.lex_state = 79}, + [754] = {.lex_state = 247}, [755] = {.lex_state = 79}, - [756] = {.lex_state = 247}, - [757] = {.lex_state = 247}, - [758] = {.lex_state = 79}, + [756] = {.lex_state = 79}, + [757] = {.lex_state = 79}, + [758] = {.lex_state = 247}, [759] = {.lex_state = 247}, - [760] = {.lex_state = 247}, - [761] = {.lex_state = 79}, - [762] = {.lex_state = 247}, + [760] = {.lex_state = 79}, + [761] = {.lex_state = 247}, + [762] = {.lex_state = 79}, [763] = {.lex_state = 79}, - [764] = {.lex_state = 247}, - [765] = {.lex_state = 247}, - [766] = {.lex_state = 79}, + [764] = {.lex_state = 79}, + [765] = {.lex_state = 79}, + [766] = {.lex_state = 247}, [767] = {.lex_state = 79}, - [768] = {.lex_state = 247}, + [768] = {.lex_state = 79}, [769] = {.lex_state = 247}, [770] = {.lex_state = 79}, [771] = {.lex_state = 79}, [772] = {.lex_state = 79}, [773] = {.lex_state = 79}, [774] = {.lex_state = 79}, - [775] = {.lex_state = 247}, - [776] = {.lex_state = 247}, - [777] = {.lex_state = 79}, - [778] = {.lex_state = 79}, + [775] = {.lex_state = 79}, + [776] = {.lex_state = 79}, + [777] = {.lex_state = 247}, + [778] = {.lex_state = 247}, [779] = {.lex_state = 79}, [780] = {.lex_state = 79}, [781] = {.lex_state = 79}, @@ -18498,92 +18551,92 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [805] = {.lex_state = 79}, [806] = {.lex_state = 79}, [807] = {.lex_state = 79}, - [808] = {.lex_state = 247}, + [808] = {.lex_state = 79}, [809] = {.lex_state = 247}, [810] = {.lex_state = 247}, - [811] = {.lex_state = 247}, - [812] = {.lex_state = 79}, - [813] = {.lex_state = 79}, + [811] = {.lex_state = 79}, + [812] = {.lex_state = 247}, + [813] = {.lex_state = 247}, [814] = {.lex_state = 79}, [815] = {.lex_state = 79}, [816] = {.lex_state = 79}, [817] = {.lex_state = 79}, - [818] = {.lex_state = 247}, + [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}, + [824] = {.lex_state = 247}, [825] = {.lex_state = 79}, [826] = {.lex_state = 79}, [827] = {.lex_state = 79}, - [828] = {.lex_state = 79}, + [828] = {.lex_state = 247}, [829] = {.lex_state = 79}, [830] = {.lex_state = 79}, [831] = {.lex_state = 79}, - [832] = {.lex_state = 247}, + [832] = {.lex_state = 79}, [833] = {.lex_state = 79}, - [834] = {.lex_state = 79}, + [834] = {.lex_state = 247}, [835] = {.lex_state = 79}, - [836] = {.lex_state = 79}, + [836] = {.lex_state = 247}, [837] = {.lex_state = 79}, [838] = {.lex_state = 79}, [839] = {.lex_state = 79}, - [840] = {.lex_state = 79}, + [840] = {.lex_state = 247}, [841] = {.lex_state = 79}, [842] = {.lex_state = 79}, [843] = {.lex_state = 79}, [844] = {.lex_state = 79}, - [845] = {.lex_state = 247}, - [846] = {.lex_state = 247}, + [845] = {.lex_state = 79}, + [846] = {.lex_state = 79}, [847] = {.lex_state = 79}, - [848] = {.lex_state = 247}, + [848] = {.lex_state = 79}, [849] = {.lex_state = 79}, [850] = {.lex_state = 79}, - [851] = {.lex_state = 79}, - [852] = {.lex_state = 79}, + [851] = {.lex_state = 247}, + [852] = {.lex_state = 247}, [853] = {.lex_state = 247}, - [854] = {.lex_state = 79}, + [854] = {.lex_state = 247}, [855] = {.lex_state = 79}, [856] = {.lex_state = 79}, [857] = {.lex_state = 79}, [858] = {.lex_state = 79}, [859] = {.lex_state = 247}, [860] = {.lex_state = 79}, - [861] = {.lex_state = 79}, + [861] = {.lex_state = 247}, [862] = {.lex_state = 79}, [863] = {.lex_state = 79}, - [864] = {.lex_state = 247}, - [865] = {.lex_state = 79}, + [864] = {.lex_state = 79}, + [865] = {.lex_state = 247}, [866] = {.lex_state = 79}, [867] = {.lex_state = 247}, [868] = {.lex_state = 79}, - [869] = {.lex_state = 247}, + [869] = {.lex_state = 79}, [870] = {.lex_state = 79}, [871] = {.lex_state = 79}, - [872] = {.lex_state = 79}, + [872] = {.lex_state = 247}, [873] = {.lex_state = 79}, [874] = {.lex_state = 79}, [875] = {.lex_state = 79}, - [876] = {.lex_state = 79}, - [877] = {.lex_state = 79}, - [878] = {.lex_state = 79}, - [879] = {.lex_state = 79}, + [876] = {.lex_state = 247}, + [877] = {.lex_state = 247}, + [878] = {.lex_state = 247}, + [879] = {.lex_state = 247}, [880] = {.lex_state = 79}, [881] = {.lex_state = 79}, [882] = {.lex_state = 79}, - [883] = {.lex_state = 79}, + [883] = {.lex_state = 247}, [884] = {.lex_state = 79}, [885] = {.lex_state = 79}, [886] = {.lex_state = 79}, [887] = {.lex_state = 79}, [888] = {.lex_state = 79}, [889] = {.lex_state = 79}, - [890] = {.lex_state = 247}, + [890] = {.lex_state = 79}, [891] = {.lex_state = 79}, [892] = {.lex_state = 79}, - [893] = {.lex_state = 79}, + [893] = {.lex_state = 247}, [894] = {.lex_state = 79}, [895] = {.lex_state = 79}, [896] = {.lex_state = 79}, @@ -18595,49 +18648,49 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [902] = {.lex_state = 79}, [903] = {.lex_state = 79}, [904] = {.lex_state = 79}, - [905] = {.lex_state = 79}, + [905] = {.lex_state = 247}, [906] = {.lex_state = 79}, - [907] = {.lex_state = 247}, - [908] = {.lex_state = 247}, + [907] = {.lex_state = 79}, + [908] = {.lex_state = 79}, [909] = {.lex_state = 79}, [910] = {.lex_state = 79}, [911] = {.lex_state = 79}, [912] = {.lex_state = 79}, [913] = {.lex_state = 79}, - [914] = {.lex_state = 79}, - [915] = {.lex_state = 79}, + [914] = {.lex_state = 247}, + [915] = {.lex_state = 247}, [916] = {.lex_state = 79}, [917] = {.lex_state = 79}, [918] = {.lex_state = 79}, [919] = {.lex_state = 79}, - [920] = {.lex_state = 79}, + [920] = {.lex_state = 247}, [921] = {.lex_state = 79}, - [922] = {.lex_state = 79}, - [923] = {.lex_state = 79}, + [922] = {.lex_state = 247}, + [923] = {.lex_state = 247}, [924] = {.lex_state = 79}, - [925] = {.lex_state = 79}, + [925] = {.lex_state = 247}, [926] = {.lex_state = 79}, - [927] = {.lex_state = 79}, + [927] = {.lex_state = 247}, [928] = {.lex_state = 79}, [929] = {.lex_state = 79}, [930] = {.lex_state = 79}, - [931] = {.lex_state = 79}, + [931] = {.lex_state = 247}, [932] = {.lex_state = 79}, - [933] = {.lex_state = 79}, - [934] = {.lex_state = 79}, + [933] = {.lex_state = 247}, + [934] = {.lex_state = 247}, [935] = {.lex_state = 79}, - [936] = {.lex_state = 247}, + [936] = {.lex_state = 79}, [937] = {.lex_state = 79}, [938] = {.lex_state = 79}, [939] = {.lex_state = 79}, [940] = {.lex_state = 79}, - [941] = {.lex_state = 79}, + [941] = {.lex_state = 247}, [942] = {.lex_state = 79}, - [943] = {.lex_state = 79}, - [944] = {.lex_state = 247}, - [945] = {.lex_state = 79}, - [946] = {.lex_state = 79}, - [947] = {.lex_state = 79}, + [943] = {.lex_state = 247}, + [944] = {.lex_state = 79}, + [945] = {.lex_state = 247}, + [946] = {.lex_state = 247}, + [947] = {.lex_state = 247}, [948] = {.lex_state = 79}, [949] = {.lex_state = 79}, [950] = {.lex_state = 79}, @@ -18649,24 +18702,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [956] = {.lex_state = 79}, [957] = {.lex_state = 79}, [958] = {.lex_state = 79}, - [959] = {.lex_state = 247}, + [959] = {.lex_state = 79}, [960] = {.lex_state = 79}, [961] = {.lex_state = 79}, [962] = {.lex_state = 79}, [963] = {.lex_state = 79}, - [964] = {.lex_state = 247}, + [964] = {.lex_state = 79}, [965] = {.lex_state = 79}, [966] = {.lex_state = 79}, [967] = {.lex_state = 79}, - [968] = {.lex_state = 2}, - [969] = {.lex_state = 2}, - [970] = {.lex_state = 2}, + [968] = {.lex_state = 79}, + [969] = {.lex_state = 79}, + [970] = {.lex_state = 79}, [971] = {.lex_state = 2}, [972] = {.lex_state = 2}, [973] = {.lex_state = 2}, - [974] = {.lex_state = 249}, - [975] = {.lex_state = 249}, - [976] = {.lex_state = 249}, + [974] = {.lex_state = 2}, + [975] = {.lex_state = 2}, + [976] = {.lex_state = 2}, [977] = {.lex_state = 249}, [978] = {.lex_state = 249}, [979] = {.lex_state = 249}, @@ -18693,21 +18746,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1000] = {.lex_state = 249}, [1001] = {.lex_state = 249}, [1002] = {.lex_state = 249}, - [1003] = {.lex_state = 253}, - [1004] = {.lex_state = 37}, + [1003] = {.lex_state = 249}, + [1004] = {.lex_state = 249}, [1005] = {.lex_state = 249}, [1006] = {.lex_state = 253}, [1007] = {.lex_state = 249}, [1008] = {.lex_state = 253}, [1009] = {.lex_state = 37}, [1010] = {.lex_state = 37}, - [1011] = {.lex_state = 37}, - [1012] = {.lex_state = 253}, + [1011] = {.lex_state = 253}, + [1012] = {.lex_state = 249}, [1013] = {.lex_state = 37}, [1014] = {.lex_state = 249}, - [1015] = {.lex_state = 249}, - [1016] = {.lex_state = 249}, - [1017] = {.lex_state = 249}, + [1015] = {.lex_state = 253}, + [1016] = {.lex_state = 37}, + [1017] = {.lex_state = 37}, [1018] = {.lex_state = 249}, [1019] = {.lex_state = 249}, [1020] = {.lex_state = 249}, @@ -18812,56 +18865,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1119] = {.lex_state = 249}, [1120] = {.lex_state = 249}, [1121] = {.lex_state = 249}, - [1122] = {.lex_state = 256}, - [1123] = {.lex_state = 256}, - [1124] = {.lex_state = 256}, - [1125] = {.lex_state = 6}, - [1126] = {.lex_state = 6}, - [1127] = {.lex_state = 6}, - [1128] = {.lex_state = 255}, + [1122] = {.lex_state = 249}, + [1123] = {.lex_state = 249}, + [1124] = {.lex_state = 249}, + [1125] = {.lex_state = 256}, + [1126] = {.lex_state = 256}, + [1127] = {.lex_state = 256}, + [1128] = {.lex_state = 6}, [1129] = {.lex_state = 6}, [1130] = {.lex_state = 6}, - [1131] = {.lex_state = 2}, - [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 2}, + [1131] = {.lex_state = 255}, + [1132] = {.lex_state = 6}, + [1133] = {.lex_state = 6}, [1134] = {.lex_state = 2}, [1135] = {.lex_state = 2}, [1136] = {.lex_state = 2}, - [1137] = {.lex_state = 2}, + [1137] = {.lex_state = 10}, [1138] = {.lex_state = 2}, [1139] = {.lex_state = 2}, [1140] = {.lex_state = 2}, - [1141] = {.lex_state = 10}, + [1141] = {.lex_state = 2}, [1142] = {.lex_state = 2}, [1143] = {.lex_state = 2}, - [1144] = {.lex_state = 10}, + [1144] = {.lex_state = 2}, [1145] = {.lex_state = 2}, [1146] = {.lex_state = 10}, [1147] = {.lex_state = 2}, [1148] = {.lex_state = 10}, [1149] = {.lex_state = 2}, - [1150] = {.lex_state = 10}, - [1151] = {.lex_state = 2}, + [1150] = {.lex_state = 2}, + [1151] = {.lex_state = 10}, [1152] = {.lex_state = 2}, - [1153] = {.lex_state = 4}, + [1153] = {.lex_state = 2}, [1154] = {.lex_state = 2}, - [1155] = {.lex_state = 4}, + [1155] = {.lex_state = 10}, [1156] = {.lex_state = 2}, - [1157] = {.lex_state = 2}, + [1157] = {.lex_state = 4}, [1158] = {.lex_state = 4}, [1159] = {.lex_state = 2}, - [1160] = {.lex_state = 2}, - [1161] = {.lex_state = 2}, - [1162] = {.lex_state = 4}, + [1160] = {.lex_state = 4}, + [1161] = {.lex_state = 4}, + [1162] = {.lex_state = 2}, [1163] = {.lex_state = 2}, - [1164] = {.lex_state = 41}, + [1164] = {.lex_state = 2}, [1165] = {.lex_state = 2}, [1166] = {.lex_state = 2}, [1167] = {.lex_state = 2}, [1168] = {.lex_state = 2}, [1169] = {.lex_state = 2}, [1170] = {.lex_state = 2}, - [1171] = {.lex_state = 2}, + [1171] = {.lex_state = 41}, [1172] = {.lex_state = 2}, [1173] = {.lex_state = 2}, [1174] = {.lex_state = 2}, @@ -18880,7 +18933,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1187] = {.lex_state = 2}, [1188] = {.lex_state = 2}, [1189] = {.lex_state = 2}, - [1190] = {.lex_state = 2}, + [1190] = {.lex_state = 45}, [1191] = {.lex_state = 2}, [1192] = {.lex_state = 2}, [1193] = {.lex_state = 2}, @@ -18890,7 +18943,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1197] = {.lex_state = 2}, [1198] = {.lex_state = 2}, [1199] = {.lex_state = 2}, - [1200] = {.lex_state = 41}, + [1200] = {.lex_state = 2}, [1201] = {.lex_state = 2}, [1202] = {.lex_state = 2}, [1203] = {.lex_state = 2}, @@ -18917,45 +18970,45 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1224] = {.lex_state = 2}, [1225] = {.lex_state = 2}, [1226] = {.lex_state = 2}, - [1227] = {.lex_state = 2}, + [1227] = {.lex_state = 45}, [1228] = {.lex_state = 2}, - [1229] = {.lex_state = 43}, + [1229] = {.lex_state = 2}, [1230] = {.lex_state = 2}, [1231] = {.lex_state = 2}, - [1232] = {.lex_state = 2}, + [1232] = {.lex_state = 45}, [1233] = {.lex_state = 2}, [1234] = {.lex_state = 2}, [1235] = {.lex_state = 2}, [1236] = {.lex_state = 2}, - [1237] = {.lex_state = 2}, + [1237] = {.lex_state = 41}, [1238] = {.lex_state = 2}, [1239] = {.lex_state = 2}, - [1240] = {.lex_state = 2}, + [1240] = {.lex_state = 45}, [1241] = {.lex_state = 2}, - [1242] = {.lex_state = 2}, + [1242] = {.lex_state = 45}, [1243] = {.lex_state = 2}, - [1244] = {.lex_state = 43}, + [1244] = {.lex_state = 2}, [1245] = {.lex_state = 2}, - [1246] = {.lex_state = 43}, - [1247] = {.lex_state = 2}, - [1248] = {.lex_state = 2}, + [1246] = {.lex_state = 41}, + [1247] = {.lex_state = 41}, + [1248] = {.lex_state = 45}, [1249] = {.lex_state = 2}, [1250] = {.lex_state = 2}, [1251] = {.lex_state = 2}, [1252] = {.lex_state = 2}, - [1253] = {.lex_state = 43}, + [1253] = {.lex_state = 2}, [1254] = {.lex_state = 2}, - [1255] = {.lex_state = 43}, + [1255] = {.lex_state = 2}, [1256] = {.lex_state = 2}, [1257] = {.lex_state = 2}, [1258] = {.lex_state = 2}, - [1259] = {.lex_state = 41}, + [1259] = {.lex_state = 2}, [1260] = {.lex_state = 2}, [1261] = {.lex_state = 2}, [1262] = {.lex_state = 2}, [1263] = {.lex_state = 2}, [1264] = {.lex_state = 2}, - [1265] = {.lex_state = 2}, + [1265] = {.lex_state = 41}, [1266] = {.lex_state = 2}, [1267] = {.lex_state = 2}, [1268] = {.lex_state = 2}, @@ -18965,17 +19018,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1272] = {.lex_state = 2}, [1273] = {.lex_state = 2}, [1274] = {.lex_state = 2}, - [1275] = {.lex_state = 41}, - [1276] = {.lex_state = 41}, + [1275] = {.lex_state = 2}, + [1276] = {.lex_state = 2}, [1277] = {.lex_state = 2}, - [1278] = {.lex_state = 41}, - [1279] = {.lex_state = 37}, - [1280] = {.lex_state = 37}, + [1278] = {.lex_state = 2}, + [1279] = {.lex_state = 2}, + [1280] = {.lex_state = 2}, [1281] = {.lex_state = 2}, - [1282] = {.lex_state = 2}, - [1283] = {.lex_state = 41}, - [1284] = {.lex_state = 37}, - [1285] = {.lex_state = 37}, + [1282] = {.lex_state = 37}, + [1283] = {.lex_state = 45}, + [1284] = {.lex_state = 2}, + [1285] = {.lex_state = 2}, [1286] = {.lex_state = 37}, [1287] = {.lex_state = 37}, [1288] = {.lex_state = 37}, @@ -18986,12 +19039,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1293] = {.lex_state = 37}, [1294] = {.lex_state = 37}, [1295] = {.lex_state = 37}, - [1296] = {.lex_state = 37}, + [1296] = {.lex_state = 39}, [1297] = {.lex_state = 37}, [1298] = {.lex_state = 39}, - [1299] = {.lex_state = 37}, + [1299] = {.lex_state = 39}, [1300] = {.lex_state = 37}, - [1301] = {.lex_state = 39}, + [1301] = {.lex_state = 37}, [1302] = {.lex_state = 37}, [1303] = {.lex_state = 37}, [1304] = {.lex_state = 37}, @@ -18999,8 +19052,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1306] = {.lex_state = 37}, [1307] = {.lex_state = 37}, [1308] = {.lex_state = 37}, - [1309] = {.lex_state = 39}, - [1310] = {.lex_state = 37}, + [1309] = {.lex_state = 37}, + [1310] = {.lex_state = 39}, [1311] = {.lex_state = 37}, [1312] = {.lex_state = 37}, [1313] = {.lex_state = 37}, @@ -19009,7 +19062,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1316] = {.lex_state = 37}, [1317] = {.lex_state = 37}, [1318] = {.lex_state = 37}, - [1319] = {.lex_state = 39}, + [1319] = {.lex_state = 37}, [1320] = {.lex_state = 37}, [1321] = {.lex_state = 37}, [1322] = {.lex_state = 37}, @@ -19109,35 +19162,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1416] = {.lex_state = 37}, [1417] = {.lex_state = 37}, [1418] = {.lex_state = 37}, - [1419] = {.lex_state = 14}, + [1419] = {.lex_state = 37}, [1420] = {.lex_state = 37}, - [1421] = {.lex_state = 14}, + [1421] = {.lex_state = 37}, [1422] = {.lex_state = 14}, [1423] = {.lex_state = 37}, - [1424] = {.lex_state = 14}, - [1425] = {.lex_state = 37}, + [1424] = {.lex_state = 37}, + [1425] = {.lex_state = 14}, [1426] = {.lex_state = 14}, - [1427] = {.lex_state = 37}, - [1428] = {.lex_state = 37}, - [1429] = {.lex_state = 49}, - [1430] = {.lex_state = 49}, - [1431] = {.lex_state = 257}, + [1427] = {.lex_state = 14}, + [1428] = {.lex_state = 14}, + [1429] = {.lex_state = 37}, + [1430] = {.lex_state = 37}, + [1431] = {.lex_state = 37}, [1432] = {.lex_state = 49}, - [1433] = {.lex_state = 14}, - [1434] = {.lex_state = 256}, - [1435] = {.lex_state = 256}, + [1433] = {.lex_state = 49}, + [1434] = {.lex_state = 49}, + [1435] = {.lex_state = 257}, [1436] = {.lex_state = 256}, [1437] = {.lex_state = 256}, - [1438] = {.lex_state = 257}, + [1438] = {.lex_state = 256}, [1439] = {.lex_state = 257}, [1440] = {.lex_state = 256}, - [1441] = {.lex_state = 257}, - [1442] = {.lex_state = 49}, + [1441] = {.lex_state = 256}, + [1442] = {.lex_state = 14}, [1443] = {.lex_state = 256}, [1444] = {.lex_state = 256}, - [1445] = {.lex_state = 256}, - [1446] = {.lex_state = 256}, - [1447] = {.lex_state = 256}, + [1445] = {.lex_state = 257}, + [1446] = {.lex_state = 257}, + [1447] = {.lex_state = 49}, [1448] = {.lex_state = 256}, [1449] = {.lex_state = 256}, [1450] = {.lex_state = 256}, @@ -19148,21 +19201,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1455] = {.lex_state = 256}, [1456] = {.lex_state = 256}, [1457] = {.lex_state = 256}, - [1458] = {.lex_state = 14}, - [1459] = {.lex_state = 256}, - [1460] = {.lex_state = 256}, + [1458] = {.lex_state = 256}, + [1459] = {.lex_state = 14}, + [1460] = {.lex_state = 14}, [1461] = {.lex_state = 256}, - [1462] = {.lex_state = 256}, + [1462] = {.lex_state = 14}, [1463] = {.lex_state = 256}, - [1464] = {.lex_state = 256}, + [1464] = {.lex_state = 14}, [1465] = {.lex_state = 256}, [1466] = {.lex_state = 256}, - [1467] = {.lex_state = 14}, + [1467] = {.lex_state = 256}, [1468] = {.lex_state = 256}, [1469] = {.lex_state = 256}, [1470] = {.lex_state = 256}, - [1471] = {.lex_state = 14}, - [1472] = {.lex_state = 14}, + [1471] = {.lex_state = 256}, + [1472] = {.lex_state = 256}, [1473] = {.lex_state = 256}, [1474] = {.lex_state = 256}, [1475] = {.lex_state = 256}, @@ -19203,10 +19256,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1510] = {.lex_state = 256}, [1511] = {.lex_state = 256}, [1512] = {.lex_state = 256}, - [1513] = {.lex_state = 49}, + [1513] = {.lex_state = 256}, [1514] = {.lex_state = 256}, [1515] = {.lex_state = 256}, - [1516] = {.lex_state = 53}, + [1516] = {.lex_state = 256}, [1517] = {.lex_state = 256}, [1518] = {.lex_state = 256}, [1519] = {.lex_state = 256}, @@ -19216,7 +19269,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1523] = {.lex_state = 256}, [1524] = {.lex_state = 256}, [1525] = {.lex_state = 256}, - [1526] = {.lex_state = 256}, + [1526] = {.lex_state = 53}, [1527] = {.lex_state = 256}, [1528] = {.lex_state = 256}, [1529] = {.lex_state = 256}, @@ -19233,7 +19286,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1540] = {.lex_state = 256}, [1541] = {.lex_state = 256}, [1542] = {.lex_state = 256}, - [1543] = {.lex_state = 261}, + [1543] = {.lex_state = 256}, [1544] = {.lex_state = 256}, [1545] = {.lex_state = 256}, [1546] = {.lex_state = 256}, @@ -19241,7 +19294,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1548] = {.lex_state = 256}, [1549] = {.lex_state = 256}, [1550] = {.lex_state = 256}, - [1551] = {.lex_state = 261}, + [1551] = {.lex_state = 256}, [1552] = {.lex_state = 256}, [1553] = {.lex_state = 256}, [1554] = {.lex_state = 256}, @@ -19259,7 +19312,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1566] = {.lex_state = 256}, [1567] = {.lex_state = 256}, [1568] = {.lex_state = 256}, - [1569] = {.lex_state = 256}, + [1569] = {.lex_state = 49}, [1570] = {.lex_state = 256}, [1571] = {.lex_state = 256}, [1572] = {.lex_state = 256}, @@ -19279,56 +19332,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1586] = {.lex_state = 256}, [1587] = {.lex_state = 256}, [1588] = {.lex_state = 256}, - [1589] = {.lex_state = 256}, + [1589] = {.lex_state = 261}, [1590] = {.lex_state = 256}, [1591] = {.lex_state = 256}, [1592] = {.lex_state = 256}, [1593] = {.lex_state = 256}, [1594] = {.lex_state = 256}, [1595] = {.lex_state = 256}, - [1596] = {.lex_state = 256}, + [1596] = {.lex_state = 261}, [1597] = {.lex_state = 256}, [1598] = {.lex_state = 256}, [1599] = {.lex_state = 256}, [1600] = {.lex_state = 256}, [1601] = {.lex_state = 256}, [1602] = {.lex_state = 256}, - [1603] = {.lex_state = 53}, - [1604] = {.lex_state = 53}, - [1605] = {.lex_state = 53}, + [1603] = {.lex_state = 256}, + [1604] = {.lex_state = 256}, + [1605] = {.lex_state = 256}, [1606] = {.lex_state = 53}, - [1607] = {.lex_state = 49}, - [1608] = {.lex_state = 261}, - [1609] = {.lex_state = 49}, - [1610] = {.lex_state = 261}, - [1611] = {.lex_state = 49}, - [1612] = {.lex_state = 79}, - [1613] = {.lex_state = 261}, + [1607] = {.lex_state = 53}, + [1608] = {.lex_state = 49}, + [1609] = {.lex_state = 53}, + [1610] = {.lex_state = 53}, + [1611] = {.lex_state = 79}, + [1612] = {.lex_state = 261}, + [1613] = {.lex_state = 49}, [1614] = {.lex_state = 261}, - [1615] = {.lex_state = 6}, - [1616] = {.lex_state = 6}, - [1617] = {.lex_state = 6}, + [1615] = {.lex_state = 261}, + [1616] = {.lex_state = 49}, + [1617] = {.lex_state = 261}, [1618] = {.lex_state = 6}, [1619] = {.lex_state = 6}, - [1620] = {.lex_state = 10}, - [1621] = {.lex_state = 10}, - [1622] = {.lex_state = 10}, + [1620] = {.lex_state = 6}, + [1621] = {.lex_state = 6}, + [1622] = {.lex_state = 6}, [1623] = {.lex_state = 10}, [1624] = {.lex_state = 10}, - [1625] = {.lex_state = 24}, - [1626] = {.lex_state = 43}, - [1627] = {.lex_state = 43}, - [1628] = {.lex_state = 41}, - [1629] = {.lex_state = 43}, - [1630] = {.lex_state = 43}, - [1631] = {.lex_state = 43}, + [1625] = {.lex_state = 10}, + [1626] = {.lex_state = 10}, + [1627] = {.lex_state = 10}, + [1628] = {.lex_state = 45}, + [1629] = {.lex_state = 45}, + [1630] = {.lex_state = 41}, + [1631] = {.lex_state = 41}, [1632] = {.lex_state = 41}, [1633] = {.lex_state = 41}, - [1634] = {.lex_state = 41}, - [1635] = {.lex_state = 41}, - [1636] = {.lex_state = 24}, + [1634] = {.lex_state = 45}, + [1635] = {.lex_state = 45}, + [1636] = {.lex_state = 45}, [1637] = {.lex_state = 24}, - [1638] = {.lex_state = 24}, + [1638] = {.lex_state = 41}, [1639] = {.lex_state = 24}, [1640] = {.lex_state = 24}, [1641] = {.lex_state = 24}, @@ -19339,54 +19392,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1646] = {.lex_state = 24}, [1647] = {.lex_state = 24}, [1648] = {.lex_state = 24}, - [1649] = {.lex_state = 26}, - [1650] = {.lex_state = 18}, - [1651] = {.lex_state = 18}, - [1652] = {.lex_state = 7}, + [1649] = {.lex_state = 24}, + [1650] = {.lex_state = 24}, + [1651] = {.lex_state = 24}, + [1652] = {.lex_state = 18}, [1653] = {.lex_state = 7}, - [1654] = {.lex_state = 24}, - [1655] = {.lex_state = 26}, + [1654] = {.lex_state = 7}, + [1655] = {.lex_state = 18}, [1656] = {.lex_state = 26}, [1657] = {.lex_state = 26}, [1658] = {.lex_state = 26}, - [1659] = {.lex_state = 26}, - [1660] = {.lex_state = 26}, - [1661] = {.lex_state = 26}, - [1662] = {.lex_state = 26}, - [1663] = {.lex_state = 24}, - [1664] = {.lex_state = 24}, + [1659] = {.lex_state = 24}, + [1660] = {.lex_state = 24}, + [1661] = {.lex_state = 24}, + [1662] = {.lex_state = 24}, + [1663] = {.lex_state = 26}, + [1664] = {.lex_state = 69}, [1665] = {.lex_state = 24}, - [1666] = {.lex_state = 69}, + [1666] = {.lex_state = 26}, [1667] = {.lex_state = 24}, - [1668] = {.lex_state = 26}, + [1668] = {.lex_state = 69}, [1669] = {.lex_state = 26}, [1670] = {.lex_state = 26}, [1671] = {.lex_state = 24}, [1672] = {.lex_state = 24}, - [1673] = {.lex_state = 26}, - [1674] = {.lex_state = 24}, + [1673] = {.lex_state = 24}, + [1674] = {.lex_state = 26}, [1675] = {.lex_state = 24}, [1676] = {.lex_state = 24}, - [1677] = {.lex_state = 24}, - [1678] = {.lex_state = 261}, + [1677] = {.lex_state = 261}, + [1678] = {.lex_state = 24}, [1679] = {.lex_state = 24}, [1680] = {.lex_state = 24}, [1681] = {.lex_state = 24}, [1682] = {.lex_state = 24}, - [1683] = {.lex_state = 24}, + [1683] = {.lex_state = 26}, [1684] = {.lex_state = 24}, - [1685] = {.lex_state = 24}, + [1685] = {.lex_state = 26}, [1686] = {.lex_state = 24}, [1687] = {.lex_state = 24}, [1688] = {.lex_state = 24}, [1689] = {.lex_state = 24}, - [1690] = {.lex_state = 24}, - [1691] = {.lex_state = 24}, - [1692] = {.lex_state = 24}, + [1690] = {.lex_state = 26}, + [1691] = {.lex_state = 26}, + [1692] = {.lex_state = 26}, [1693] = {.lex_state = 24}, [1694] = {.lex_state = 24}, [1695] = {.lex_state = 24}, - [1696] = {.lex_state = 69}, + [1696] = {.lex_state = 24}, [1697] = {.lex_state = 24}, [1698] = {.lex_state = 24}, [1699] = {.lex_state = 24}, @@ -19398,10 +19451,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1705] = {.lex_state = 24}, [1706] = {.lex_state = 24}, [1707] = {.lex_state = 24}, - [1708] = {.lex_state = 20}, - [1709] = {.lex_state = 11}, - [1710] = {.lex_state = 26}, - [1711] = {.lex_state = 24}, + [1708] = {.lex_state = 24}, + [1709] = {.lex_state = 24}, + [1710] = {.lex_state = 24}, + [1711] = {.lex_state = 26}, [1712] = {.lex_state = 24}, [1713] = {.lex_state = 24}, [1714] = {.lex_state = 24}, @@ -19427,13 +19480,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1734] = {.lex_state = 24}, [1735] = {.lex_state = 24}, [1736] = {.lex_state = 24}, - [1737] = {.lex_state = 24}, + [1737] = {.lex_state = 11}, [1738] = {.lex_state = 24}, [1739] = {.lex_state = 24}, - [1740] = {.lex_state = 24}, + [1740] = {.lex_state = 11}, [1741] = {.lex_state = 24}, [1742] = {.lex_state = 24}, - [1743] = {.lex_state = 20}, + [1743] = {.lex_state = 24}, [1744] = {.lex_state = 24}, [1745] = {.lex_state = 24}, [1746] = {.lex_state = 24}, @@ -19458,101 +19511,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1765] = {.lex_state = 24}, [1766] = {.lex_state = 24}, [1767] = {.lex_state = 24}, - [1768] = {.lex_state = 24}, - [1769] = {.lex_state = 24}, + [1768] = {.lex_state = 20}, + [1769] = {.lex_state = 20}, [1770] = {.lex_state = 24}, [1771] = {.lex_state = 24}, [1772] = {.lex_state = 24}, [1773] = {.lex_state = 24}, [1774] = {.lex_state = 24}, [1775] = {.lex_state = 24}, - [1776] = {.lex_state = 11}, + [1776] = {.lex_state = 24}, [1777] = {.lex_state = 24}, [1778] = {.lex_state = 24}, [1779] = {.lex_state = 24}, - [1780] = {.lex_state = 69}, - [1781] = {.lex_state = 71}, - [1782] = {.lex_state = 71}, + [1780] = {.lex_state = 24}, + [1781] = {.lex_state = 24}, + [1782] = {.lex_state = 24}, [1783] = {.lex_state = 69}, [1784] = {.lex_state = 69}, [1785] = {.lex_state = 69}, [1786] = {.lex_state = 69}, - [1787] = {.lex_state = 69}, + [1787] = {.lex_state = 71}, [1788] = {.lex_state = 69}, [1789] = {.lex_state = 69}, - [1790] = {.lex_state = 69}, - [1791] = {.lex_state = 69}, - [1792] = {.lex_state = 26}, - [1793] = {.lex_state = 26}, - [1794] = {.lex_state = 69}, - [1795] = {.lex_state = 26}, - [1796] = {.lex_state = 71}, - [1797] = {.lex_state = 71}, - [1798] = {.lex_state = 71}, - [1799] = {.lex_state = 26}, - [1800] = {.lex_state = 26}, - [1801] = {.lex_state = 71}, - [1802] = {.lex_state = 71}, + [1790] = {.lex_state = 71}, + [1791] = {.lex_state = 26}, + [1792] = {.lex_state = 71}, + [1793] = {.lex_state = 71}, + [1794] = {.lex_state = 26}, + [1795] = {.lex_state = 71}, + [1796] = {.lex_state = 26}, + [1797] = {.lex_state = 26}, + [1798] = {.lex_state = 69}, + [1799] = {.lex_state = 69}, + [1800] = {.lex_state = 69}, + [1801] = {.lex_state = 26}, + [1802] = {.lex_state = 69}, [1803] = {.lex_state = 69}, - [1804] = {.lex_state = 71}, - [1805] = {.lex_state = 26}, - [1806] = {.lex_state = 69}, - [1807] = {.lex_state = 69}, - [1808] = {.lex_state = 71}, - [1809] = {.lex_state = 71}, + [1804] = {.lex_state = 69}, + [1805] = {.lex_state = 69}, + [1806] = {.lex_state = 71}, + [1807] = {.lex_state = 71}, + [1808] = {.lex_state = 69}, + [1809] = {.lex_state = 26}, [1810] = {.lex_state = 71}, - [1811] = {.lex_state = 26}, - [1812] = {.lex_state = 26}, - [1813] = {.lex_state = 26}, + [1811] = {.lex_state = 71}, + [1812] = {.lex_state = 71}, + [1813] = {.lex_state = 71}, [1814] = {.lex_state = 26}, [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 26}, + [1816] = {.lex_state = 46}, [1817] = {.lex_state = 26}, [1818] = {.lex_state = 26}, [1819] = {.lex_state = 26}, [1820] = {.lex_state = 26}, [1821] = {.lex_state = 26}, [1822] = {.lex_state = 26}, - [1823] = {.lex_state = 26}, - [1824] = {.lex_state = 44}, + [1823] = {.lex_state = 61}, + [1824] = {.lex_state = 26}, [1825] = {.lex_state = 26}, - [1826] = {.lex_state = 61}, - [1827] = {.lex_state = 69}, + [1826] = {.lex_state = 26}, + [1827] = {.lex_state = 26}, [1828] = {.lex_state = 26}, [1829] = {.lex_state = 26}, - [1830] = {.lex_state = 26}, + [1830] = {.lex_state = 59}, [1831] = {.lex_state = 26}, [1832] = {.lex_state = 26}, - [1833] = {.lex_state = 69}, + [1833] = {.lex_state = 14}, [1834] = {.lex_state = 69}, [1835] = {.lex_state = 26}, - [1836] = {.lex_state = 26}, - [1837] = {.lex_state = 47}, - [1838] = {.lex_state = 47}, - [1839] = {.lex_state = 69}, + [1836] = {.lex_state = 69}, + [1837] = {.lex_state = 26}, + [1838] = {.lex_state = 26}, + [1839] = {.lex_state = 26}, [1840] = {.lex_state = 26}, [1841] = {.lex_state = 26}, [1842] = {.lex_state = 26}, [1843] = {.lex_state = 26}, - [1844] = {.lex_state = 69}, + [1844] = {.lex_state = 26}, [1845] = {.lex_state = 26}, [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 71}, - [1848] = {.lex_state = 69}, - [1849] = {.lex_state = 69}, - [1850] = {.lex_state = 69}, + [1847] = {.lex_state = 26}, + [1848] = {.lex_state = 26}, + [1849] = {.lex_state = 26}, + [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 = 14}, + [1856] = {.lex_state = 14}, + [1857] = {.lex_state = 26}, [1858] = {.lex_state = 26}, - [1859] = {.lex_state = 26}, + [1859] = {.lex_state = 59}, [1860] = {.lex_state = 26}, [1861] = {.lex_state = 26}, - [1862] = {.lex_state = 26}, + [1862] = {.lex_state = 14}, [1863] = {.lex_state = 26}, [1864] = {.lex_state = 26}, [1865] = {.lex_state = 26}, @@ -19560,317 +19613,317 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1867] = {.lex_state = 26}, [1868] = {.lex_state = 26}, [1869] = {.lex_state = 26}, - [1870] = {.lex_state = 26}, - [1871] = {.lex_state = 26}, + [1870] = {.lex_state = 43}, + [1871] = {.lex_state = 43}, [1872] = {.lex_state = 26}, [1873] = {.lex_state = 26}, [1874] = {.lex_state = 26}, [1875] = {.lex_state = 26}, - [1876] = {.lex_state = 59}, + [1876] = {.lex_state = 26}, [1877] = {.lex_state = 26}, [1878] = {.lex_state = 26}, [1879] = {.lex_state = 26}, [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 14}, + [1881] = {.lex_state = 46}, [1882] = {.lex_state = 26}, [1883] = {.lex_state = 26}, [1884] = {.lex_state = 26}, [1885] = {.lex_state = 26}, - [1886] = {.lex_state = 14}, + [1886] = {.lex_state = 26}, [1887] = {.lex_state = 26}, [1888] = {.lex_state = 26}, [1889] = {.lex_state = 26}, [1890] = {.lex_state = 26}, - [1891] = {.lex_state = 26}, + [1891] = {.lex_state = 71}, [1892] = {.lex_state = 26}, [1893] = {.lex_state = 26}, - [1894] = {.lex_state = 26}, + [1894] = {.lex_state = 69}, [1895] = {.lex_state = 26}, [1896] = {.lex_state = 26}, - [1897] = {.lex_state = 26}, + [1897] = {.lex_state = 69}, [1898] = {.lex_state = 26}, - [1899] = {.lex_state = 26}, + [1899] = {.lex_state = 69}, [1900] = {.lex_state = 26}, [1901] = {.lex_state = 26}, - [1902] = {.lex_state = 44}, + [1902] = {.lex_state = 26}, [1903] = {.lex_state = 26}, - [1904] = {.lex_state = 69}, - [1905] = {.lex_state = 69}, + [1904] = {.lex_state = 26}, + [1905] = {.lex_state = 26}, [1906] = {.lex_state = 26}, [1907] = {.lex_state = 26}, [1908] = {.lex_state = 26}, [1909] = {.lex_state = 26}, [1910] = {.lex_state = 26}, - [1911] = {.lex_state = 26}, + [1911] = {.lex_state = 14}, [1912] = {.lex_state = 26}, [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 26}, + [1914] = {.lex_state = 14}, [1915] = {.lex_state = 26}, [1916] = {.lex_state = 26}, [1917] = {.lex_state = 26}, [1918] = {.lex_state = 26}, - [1919] = {.lex_state = 14}, + [1919] = {.lex_state = 26}, [1920] = {.lex_state = 26}, - [1921] = {.lex_state = 26}, - [1922] = {.lex_state = 59}, + [1921] = {.lex_state = 69}, + [1922] = {.lex_state = 26}, [1923] = {.lex_state = 26}, - [1924] = {.lex_state = 61}, + [1924] = {.lex_state = 26}, [1925] = {.lex_state = 26}, - [1926] = {.lex_state = 14}, - [1927] = {.lex_state = 26}, + [1926] = {.lex_state = 26}, + [1927] = {.lex_state = 69}, [1928] = {.lex_state = 26}, - [1929] = {.lex_state = 26}, + [1929] = {.lex_state = 69}, [1930] = {.lex_state = 26}, - [1931] = {.lex_state = 26}, + [1931] = {.lex_state = 61}, [1932] = {.lex_state = 69}, - [1933] = {.lex_state = 69}, + [1933] = {.lex_state = 26}, [1934] = {.lex_state = 69}, [1935] = {.lex_state = 69}, - [1936] = {.lex_state = 71}, + [1936] = {.lex_state = 69}, [1937] = {.lex_state = 69}, - [1938] = {.lex_state = 71}, + [1938] = {.lex_state = 69}, [1939] = {.lex_state = 71}, - [1940] = {.lex_state = 69}, - [1941] = {.lex_state = 30}, - [1942] = {.lex_state = 71}, + [1940] = {.lex_state = 71}, + [1941] = {.lex_state = 69}, + [1942] = {.lex_state = 69}, [1943] = {.lex_state = 30}, - [1944] = {.lex_state = 69}, + [1944] = {.lex_state = 30}, [1945] = {.lex_state = 71}, [1946] = {.lex_state = 71}, - [1947] = {.lex_state = 71}, + [1947] = {.lex_state = 69}, [1948] = {.lex_state = 71}, - [1949] = {.lex_state = 71}, - [1950] = {.lex_state = 69}, + [1949] = {.lex_state = 69}, + [1950] = {.lex_state = 71}, [1951] = {.lex_state = 69}, [1952] = {.lex_state = 69}, - [1953] = {.lex_state = 69}, - [1954] = {.lex_state = 69}, + [1953] = {.lex_state = 71}, + [1954] = {.lex_state = 71}, [1955] = {.lex_state = 69}, [1956] = {.lex_state = 71}, - [1957] = {.lex_state = 71}, - [1958] = {.lex_state = 71}, + [1957] = {.lex_state = 69}, + [1958] = {.lex_state = 69}, [1959] = {.lex_state = 71}, - [1960] = {.lex_state = 69}, - [1961] = {.lex_state = 71}, + [1960] = {.lex_state = 71}, + [1961] = {.lex_state = 69}, [1962] = {.lex_state = 71}, [1963] = {.lex_state = 69}, [1964] = {.lex_state = 71}, [1965] = {.lex_state = 71}, - [1966] = {.lex_state = 69}, - [1967] = {.lex_state = 69}, + [1966] = {.lex_state = 71}, + [1967] = {.lex_state = 71}, [1968] = {.lex_state = 69}, - [1969] = {.lex_state = 71}, + [1969] = {.lex_state = 69}, [1970] = {.lex_state = 71}, [1971] = {.lex_state = 69}, - [1972] = {.lex_state = 71}, - [1973] = {.lex_state = 71}, + [1972] = {.lex_state = 69}, + [1973] = {.lex_state = 69}, [1974] = {.lex_state = 71}, [1975] = {.lex_state = 69}, - [1976] = {.lex_state = 69}, - [1977] = {.lex_state = 69}, + [1976] = {.lex_state = 71}, + [1977] = {.lex_state = 71}, [1978] = {.lex_state = 69}, [1979] = {.lex_state = 69}, - [1980] = {.lex_state = 71}, - [1981] = {.lex_state = 69}, + [1980] = {.lex_state = 69}, + [1981] = {.lex_state = 71}, [1982] = {.lex_state = 69}, - [1983] = {.lex_state = 69}, + [1983] = {.lex_state = 71}, [1984] = {.lex_state = 71}, [1985] = {.lex_state = 71}, [1986] = {.lex_state = 69}, - [1987] = {.lex_state = 71}, + [1987] = {.lex_state = 69}, [1988] = {.lex_state = 69}, [1989] = {.lex_state = 69}, - [1990] = {.lex_state = 71}, - [1991] = {.lex_state = 71}, + [1990] = {.lex_state = 69}, + [1991] = {.lex_state = 69}, [1992] = {.lex_state = 69}, [1993] = {.lex_state = 69}, [1994] = {.lex_state = 69}, [1995] = {.lex_state = 69}, [1996] = {.lex_state = 69}, - [1997] = {.lex_state = 71}, + [1997] = {.lex_state = 69}, [1998] = {.lex_state = 71}, [1999] = {.lex_state = 69}, [2000] = {.lex_state = 69}, - [2001] = {.lex_state = 71}, + [2001] = {.lex_state = 69}, [2002] = {.lex_state = 69}, [2003] = {.lex_state = 69}, - [2004] = {.lex_state = 71}, + [2004] = {.lex_state = 69}, [2005] = {.lex_state = 69}, - [2006] = {.lex_state = 69}, + [2006] = {.lex_state = 71}, [2007] = {.lex_state = 69}, - [2008] = {.lex_state = 71}, + [2008] = {.lex_state = 69}, [2009] = {.lex_state = 69}, - [2010] = {.lex_state = 71}, - [2011] = {.lex_state = 71}, - [2012] = {.lex_state = 71}, - [2013] = {.lex_state = 71}, + [2010] = {.lex_state = 69}, + [2011] = {.lex_state = 69}, + [2012] = {.lex_state = 69}, + [2013] = {.lex_state = 69}, [2014] = {.lex_state = 71}, [2015] = {.lex_state = 71}, [2016] = {.lex_state = 69}, - [2017] = {.lex_state = 69}, - [2018] = {.lex_state = 69}, + [2017] = {.lex_state = 71}, + [2018] = {.lex_state = 71}, [2019] = {.lex_state = 69}, [2020] = {.lex_state = 71}, - [2021] = {.lex_state = 71}, + [2021] = {.lex_state = 69}, [2022] = {.lex_state = 69}, [2023] = {.lex_state = 69}, [2024] = {.lex_state = 71}, [2025] = {.lex_state = 69}, [2026] = {.lex_state = 69}, [2027] = {.lex_state = 71}, - [2028] = {.lex_state = 69}, - [2029] = {.lex_state = 69}, + [2028] = {.lex_state = 71}, + [2029] = {.lex_state = 71}, [2030] = {.lex_state = 69}, [2031] = {.lex_state = 69}, - [2032] = {.lex_state = 71}, + [2032] = {.lex_state = 69}, [2033] = {.lex_state = 69}, [2034] = {.lex_state = 69}, - [2035] = {.lex_state = 69}, + [2035] = {.lex_state = 71}, [2036] = {.lex_state = 69}, - [2037] = {.lex_state = 71}, + [2037] = {.lex_state = 69}, [2038] = {.lex_state = 71}, - [2039] = {.lex_state = 69}, + [2039] = {.lex_state = 71}, [2040] = {.lex_state = 69}, - [2041] = {.lex_state = 69}, + [2041] = {.lex_state = 71}, [2042] = {.lex_state = 69}, - [2043] = {.lex_state = 69}, + [2043] = {.lex_state = 71}, [2044] = {.lex_state = 69}, - [2045] = {.lex_state = 69}, - [2046] = {.lex_state = 69}, - [2047] = {.lex_state = 69}, - [2048] = {.lex_state = 30}, + [2045] = {.lex_state = 71}, + [2046] = {.lex_state = 71}, + [2047] = {.lex_state = 71}, + [2048] = {.lex_state = 71}, [2049] = {.lex_state = 71}, [2050] = {.lex_state = 71}, [2051] = {.lex_state = 71}, - [2052] = {.lex_state = 71}, + [2052] = {.lex_state = 69}, [2053] = {.lex_state = 69}, - [2054] = {.lex_state = 69}, - [2055] = {.lex_state = 71}, - [2056] = {.lex_state = 71}, + [2054] = {.lex_state = 71}, + [2055] = {.lex_state = 69}, + [2056] = {.lex_state = 69}, [2057] = {.lex_state = 71}, [2058] = {.lex_state = 71}, - [2059] = {.lex_state = 69}, - [2060] = {.lex_state = 69}, + [2059] = {.lex_state = 71}, + [2060] = {.lex_state = 71}, [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 69}, - [2063] = {.lex_state = 71}, - [2064] = {.lex_state = 71}, - [2065] = {.lex_state = 69}, - [2066] = {.lex_state = 69}, - [2067] = {.lex_state = 69}, - [2068] = {.lex_state = 69}, - [2069] = {.lex_state = 69}, + [2062] = {.lex_state = 71}, + [2063] = {.lex_state = 69}, + [2064] = {.lex_state = 69}, + [2065] = {.lex_state = 71}, + [2066] = {.lex_state = 71}, + [2067] = {.lex_state = 71}, + [2068] = {.lex_state = 71}, + [2069] = {.lex_state = 71}, [2070] = {.lex_state = 69}, [2071] = {.lex_state = 71}, - [2072] = {.lex_state = 69}, + [2072] = {.lex_state = 71}, [2073] = {.lex_state = 69}, [2074] = {.lex_state = 71}, [2075] = {.lex_state = 71}, [2076] = {.lex_state = 69}, [2077] = {.lex_state = 69}, - [2078] = {.lex_state = 69}, + [2078] = {.lex_state = 71}, [2079] = {.lex_state = 69}, - [2080] = {.lex_state = 69}, + [2080] = {.lex_state = 71}, [2081] = {.lex_state = 71}, [2082] = {.lex_state = 71}, - [2083] = {.lex_state = 69}, - [2084] = {.lex_state = 69}, + [2083] = {.lex_state = 71}, + [2084] = {.lex_state = 71}, [2085] = {.lex_state = 71}, [2086] = {.lex_state = 69}, [2087] = {.lex_state = 69}, - [2088] = {.lex_state = 71}, + [2088] = {.lex_state = 69}, [2089] = {.lex_state = 69}, - [2090] = {.lex_state = 30}, + [2090] = {.lex_state = 69}, [2091] = {.lex_state = 69}, [2092] = {.lex_state = 69}, [2093] = {.lex_state = 69}, - [2094] = {.lex_state = 71}, - [2095] = {.lex_state = 71}, + [2094] = {.lex_state = 69}, + [2095] = {.lex_state = 69}, [2096] = {.lex_state = 71}, [2097] = {.lex_state = 71}, [2098] = {.lex_state = 71}, - [2099] = {.lex_state = 71}, - [2100] = {.lex_state = 71}, + [2099] = {.lex_state = 69}, + [2100] = {.lex_state = 69}, [2101] = {.lex_state = 69}, - [2102] = {.lex_state = 69}, + [2102] = {.lex_state = 71}, [2103] = {.lex_state = 71}, - [2104] = {.lex_state = 71}, + [2104] = {.lex_state = 69}, [2105] = {.lex_state = 71}, [2106] = {.lex_state = 71}, [2107] = {.lex_state = 71}, [2108] = {.lex_state = 71}, [2109] = {.lex_state = 71}, [2110] = {.lex_state = 71}, - [2111] = {.lex_state = 71}, - [2112] = {.lex_state = 71}, + [2111] = {.lex_state = 69}, + [2112] = {.lex_state = 69}, [2113] = {.lex_state = 69}, - [2114] = {.lex_state = 71}, - [2115] = {.lex_state = 71}, + [2114] = {.lex_state = 69}, + [2115] = {.lex_state = 69}, [2116] = {.lex_state = 71}, [2117] = {.lex_state = 71}, [2118] = {.lex_state = 71}, [2119] = {.lex_state = 69}, - [2120] = {.lex_state = 71}, - [2121] = {.lex_state = 69}, - [2122] = {.lex_state = 71}, + [2120] = {.lex_state = 69}, + [2121] = {.lex_state = 71}, + [2122] = {.lex_state = 69}, [2123] = {.lex_state = 69}, [2124] = {.lex_state = 71}, [2125] = {.lex_state = 69}, - [2126] = {.lex_state = 69}, - [2127] = {.lex_state = 69}, - [2128] = {.lex_state = 69}, - [2129] = {.lex_state = 69}, + [2126] = {.lex_state = 71}, + [2127] = {.lex_state = 30}, + [2128] = {.lex_state = 71}, + [2129] = {.lex_state = 71}, [2130] = {.lex_state = 69}, [2131] = {.lex_state = 71}, - [2132] = {.lex_state = 71}, + [2132] = {.lex_state = 69}, [2133] = {.lex_state = 71}, - [2134] = {.lex_state = 71}, - [2135] = {.lex_state = 69}, + [2134] = {.lex_state = 69}, + [2135] = {.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 = 69}, + [2140] = {.lex_state = 69}, + [2141] = {.lex_state = 71}, [2142] = {.lex_state = 71}, [2143] = {.lex_state = 71}, [2144] = {.lex_state = 71}, [2145] = {.lex_state = 71}, [2146] = {.lex_state = 71}, - [2147] = {.lex_state = 69}, - [2148] = {.lex_state = 71}, + [2147] = {.lex_state = 71}, + [2148] = {.lex_state = 69}, [2149] = {.lex_state = 69}, - [2150] = {.lex_state = 69}, - [2151] = {.lex_state = 49}, - [2152] = {.lex_state = 49}, + [2150] = {.lex_state = 71}, + [2151] = {.lex_state = 71}, + [2152] = {.lex_state = 69}, [2153] = {.lex_state = 49}, [2154] = {.lex_state = 49}, [2155] = {.lex_state = 49}, - [2156] = {.lex_state = 69}, - [2157] = {.lex_state = 15}, + [2156] = {.lex_state = 49}, + [2157] = {.lex_state = 49}, [2158] = {.lex_state = 15}, [2159] = {.lex_state = 15}, - [2160] = {.lex_state = 15}, - [2161] = {.lex_state = 79}, + [2160] = {.lex_state = 69}, + [2161] = {.lex_state = 15}, [2162] = {.lex_state = 15}, [2163] = {.lex_state = 79}, - [2164] = {.lex_state = 79}, + [2164] = {.lex_state = 15}, [2165] = {.lex_state = 79}, [2166] = {.lex_state = 79}, - [2167] = {.lex_state = 15}, + [2167] = {.lex_state = 79}, [2168] = {.lex_state = 79}, [2169] = {.lex_state = 15}, - [2170] = {.lex_state = 79}, - [2171] = {.lex_state = 79}, + [2170] = {.lex_state = 15}, + [2171] = {.lex_state = 22}, [2172] = {.lex_state = 79}, - [2173] = {.lex_state = 15}, + [2173] = {.lex_state = 79}, [2174] = {.lex_state = 22}, - [2175] = {.lex_state = 22}, + [2175] = {.lex_state = 15}, [2176] = {.lex_state = 15}, - [2177] = {.lex_state = 22}, + [2177] = {.lex_state = 79}, [2178] = {.lex_state = 22}, - [2179] = {.lex_state = 15}, - [2180] = {.lex_state = 15}, + [2179] = {.lex_state = 79}, + [2180] = {.lex_state = 22}, [2181] = {.lex_state = 15}, [2182] = {.lex_state = 15}, [2183] = {.lex_state = 15}, @@ -19891,24 +19944,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2198] = {.lex_state = 15}, [2199] = {.lex_state = 15}, [2200] = {.lex_state = 15}, - [2201] = {.lex_state = 15}, - [2202] = {.lex_state = 31}, + [2201] = {.lex_state = 53}, + [2202] = {.lex_state = 15}, [2203] = {.lex_state = 15}, [2204] = {.lex_state = 15}, - [2205] = {.lex_state = 79}, + [2205] = {.lex_state = 15}, [2206] = {.lex_state = 15}, [2207] = {.lex_state = 15}, [2208] = {.lex_state = 15}, [2209] = {.lex_state = 15}, - [2210] = {.lex_state = 15}, + [2210] = {.lex_state = 53}, [2211] = {.lex_state = 15}, - [2212] = {.lex_state = 53}, - [2213] = {.lex_state = 53}, - [2214] = {.lex_state = 53}, - [2215] = {.lex_state = 53}, + [2212] = {.lex_state = 15}, + [2213] = {.lex_state = 15}, + [2214] = {.lex_state = 15}, + [2215] = {.lex_state = 15}, [2216] = {.lex_state = 15}, [2217] = {.lex_state = 15}, - [2218] = {.lex_state = 53}, + [2218] = {.lex_state = 15}, [2219] = {.lex_state = 15}, [2220] = {.lex_state = 15}, [2221] = {.lex_state = 15}, @@ -19918,10 +19971,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2225] = {.lex_state = 15}, [2226] = {.lex_state = 15}, [2227] = {.lex_state = 15}, - [2228] = {.lex_state = 15}, - [2229] = {.lex_state = 79}, + [2228] = {.lex_state = 53}, + [2229] = {.lex_state = 15}, [2230] = {.lex_state = 15}, - [2231] = {.lex_state = 79}, + [2231] = {.lex_state = 15}, [2232] = {.lex_state = 15}, [2233] = {.lex_state = 15}, [2234] = {.lex_state = 15}, @@ -19932,15 +19985,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2239] = {.lex_state = 15}, [2240] = {.lex_state = 15}, [2241] = {.lex_state = 15}, - [2242] = {.lex_state = 79}, + [2242] = {.lex_state = 15}, [2243] = {.lex_state = 15}, [2244] = {.lex_state = 15}, [2245] = {.lex_state = 15}, [2246] = {.lex_state = 15}, - [2247] = {.lex_state = 15}, + [2247] = {.lex_state = 79}, [2248] = {.lex_state = 15}, [2249] = {.lex_state = 15}, - [2250] = {.lex_state = 15}, + [2250] = {.lex_state = 79}, [2251] = {.lex_state = 15}, [2252] = {.lex_state = 15}, [2253] = {.lex_state = 15}, @@ -19948,13 +20001,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2255] = {.lex_state = 15}, [2256] = {.lex_state = 15}, [2257] = {.lex_state = 15}, - [2258] = {.lex_state = 15}, + [2258] = {.lex_state = 79}, [2259] = {.lex_state = 15}, [2260] = {.lex_state = 15}, [2261] = {.lex_state = 15}, - [2262] = {.lex_state = 15}, + [2262] = {.lex_state = 53}, [2263] = {.lex_state = 15}, - [2264] = {.lex_state = 15}, + [2264] = {.lex_state = 79}, [2265] = {.lex_state = 15}, [2266] = {.lex_state = 15}, [2267] = {.lex_state = 15}, @@ -19975,47 +20028,47 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2282] = {.lex_state = 15}, [2283] = {.lex_state = 15}, [2284] = {.lex_state = 15}, - [2285] = {.lex_state = 15}, + [2285] = {.lex_state = 53}, [2286] = {.lex_state = 15}, [2287] = {.lex_state = 15}, [2288] = {.lex_state = 15}, [2289] = {.lex_state = 15}, [2290] = {.lex_state = 15}, - [2291] = {.lex_state = 15}, + [2291] = {.lex_state = 31}, [2292] = {.lex_state = 15}, [2293] = {.lex_state = 15}, [2294] = {.lex_state = 15}, [2295] = {.lex_state = 15}, - [2296] = {.lex_state = 15}, + [2296] = {.lex_state = 79}, [2297] = {.lex_state = 15}, - [2298] = {.lex_state = 15}, + [2298] = {.lex_state = 79}, [2299] = {.lex_state = 15}, [2300] = {.lex_state = 15}, [2301] = {.lex_state = 15}, - [2302] = {.lex_state = 79}, - [2303] = {.lex_state = 79}, + [2302] = {.lex_state = 73}, + [2303] = {.lex_state = 15}, [2304] = {.lex_state = 15}, - [2305] = {.lex_state = 63}, - [2306] = {.lex_state = 63}, + [2305] = {.lex_state = 15}, + [2306] = {.lex_state = 15}, [2307] = {.lex_state = 73}, - [2308] = {.lex_state = 73}, - [2309] = {.lex_state = 15}, + [2308] = {.lex_state = 15}, + [2309] = {.lex_state = 73}, [2310] = {.lex_state = 15}, - [2311] = {.lex_state = 73}, - [2312] = {.lex_state = 50}, - [2313] = {.lex_state = 50}, - [2314] = {.lex_state = 15}, - [2315] = {.lex_state = 73}, - [2316] = {.lex_state = 73}, - [2317] = {.lex_state = 28}, - [2318] = {.lex_state = 28}, - [2319] = {.lex_state = 15}, - [2320] = {.lex_state = 28}, - [2321] = {.lex_state = 15}, + [2311] = {.lex_state = 63}, + [2312] = {.lex_state = 63}, + [2313] = {.lex_state = 15}, + [2314] = {.lex_state = 50}, + [2315] = {.lex_state = 50}, + [2316] = {.lex_state = 15}, + [2317] = {.lex_state = 15}, + [2318] = {.lex_state = 15}, + [2319] = {.lex_state = 28}, + [2320] = {.lex_state = 73}, + [2321] = {.lex_state = 28}, [2322] = {.lex_state = 28}, [2323] = {.lex_state = 73}, [2324] = {.lex_state = 73}, - [2325] = {.lex_state = 73}, + [2325] = {.lex_state = 28}, [2326] = {.lex_state = 73}, [2327] = {.lex_state = 73}, [2328] = {.lex_state = 73}, @@ -20023,10 +20076,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2330] = {.lex_state = 73}, [2331] = {.lex_state = 73}, [2332] = {.lex_state = 28}, - [2333] = {.lex_state = 73}, + [2333] = {.lex_state = 28}, [2334] = {.lex_state = 73}, [2335] = {.lex_state = 73}, - [2336] = {.lex_state = 22}, + [2336] = {.lex_state = 73}, [2337] = {.lex_state = 28}, [2338] = {.lex_state = 73}, [2339] = {.lex_state = 73}, @@ -20042,42 +20095,42 @@ 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 = 28}, [2353] = {.lex_state = 73}, [2354] = {.lex_state = 73}, [2355] = {.lex_state = 73}, [2356] = {.lex_state = 73}, [2357] = {.lex_state = 73}, - [2358] = {.lex_state = 73}, - [2359] = {.lex_state = 73}, - [2360] = {.lex_state = 73}, + [2358] = {.lex_state = 28}, + [2359] = {.lex_state = 28}, + [2360] = {.lex_state = 28}, [2361] = {.lex_state = 73}, - [2362] = {.lex_state = 73}, + [2362] = {.lex_state = 28}, [2363] = {.lex_state = 73}, [2364] = {.lex_state = 73}, [2365] = {.lex_state = 28}, - [2366] = {.lex_state = 28}, - [2367] = {.lex_state = 73}, + [2366] = {.lex_state = 73}, + [2367] = {.lex_state = 28}, [2368] = {.lex_state = 73}, [2369] = {.lex_state = 73}, [2370] = {.lex_state = 73}, - [2371] = {.lex_state = 28}, - [2372] = {.lex_state = 28}, + [2371] = {.lex_state = 73}, + [2372] = {.lex_state = 73}, [2373] = {.lex_state = 73}, - [2374] = {.lex_state = 28}, - [2375] = {.lex_state = 28}, + [2374] = {.lex_state = 73}, + [2375] = {.lex_state = 73}, [2376] = {.lex_state = 73}, - [2377] = {.lex_state = 28}, + [2377] = {.lex_state = 73}, [2378] = {.lex_state = 73}, - [2379] = {.lex_state = 28}, + [2379] = {.lex_state = 73}, [2380] = {.lex_state = 73}, - [2381] = {.lex_state = 28}, + [2381] = {.lex_state = 73}, [2382] = {.lex_state = 73}, [2383] = {.lex_state = 73}, [2384] = {.lex_state = 73}, [2385] = {.lex_state = 73}, - [2386] = {.lex_state = 73}, - [2387] = {.lex_state = 73}, + [2386] = {.lex_state = 15}, + [2387] = {.lex_state = 15}, [2388] = {.lex_state = 73}, [2389] = {.lex_state = 73}, [2390] = {.lex_state = 73}, @@ -20090,37 +20143,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2397] = {.lex_state = 73}, [2398] = {.lex_state = 73}, [2399] = {.lex_state = 73}, - [2400] = {.lex_state = 73}, + [2400] = {.lex_state = 28}, [2401] = {.lex_state = 73}, - [2402] = {.lex_state = 15}, - [2403] = {.lex_state = 15}, - [2404] = {.lex_state = 73}, + [2402] = {.lex_state = 73}, + [2403] = {.lex_state = 28}, + [2404] = {.lex_state = 28}, [2405] = {.lex_state = 73}, [2406] = {.lex_state = 73}, - [2407] = {.lex_state = 22}, + [2407] = {.lex_state = 73}, [2408] = {.lex_state = 73}, - [2409] = {.lex_state = 28}, + [2409] = {.lex_state = 73}, [2410] = {.lex_state = 73}, [2411] = {.lex_state = 73}, - [2412] = {.lex_state = 73}, + [2412] = {.lex_state = 28}, [2413] = {.lex_state = 73}, [2414] = {.lex_state = 73}, [2415] = {.lex_state = 73}, [2416] = {.lex_state = 73}, [2417] = {.lex_state = 73}, - [2418] = {.lex_state = 73}, + [2418] = {.lex_state = 22}, [2419] = {.lex_state = 28}, [2420] = {.lex_state = 73}, - [2421] = {.lex_state = 73}, + [2421] = {.lex_state = 28}, [2422] = {.lex_state = 73}, [2423] = {.lex_state = 73}, [2424] = {.lex_state = 73}, [2425] = {.lex_state = 73}, [2426] = {.lex_state = 73}, - [2427] = {.lex_state = 73}, + [2427] = {.lex_state = 28}, [2428] = {.lex_state = 73}, - [2429] = {.lex_state = 73}, - [2430] = {.lex_state = 28}, + [2429] = {.lex_state = 22}, + [2430] = {.lex_state = 73}, [2431] = {.lex_state = 73}, [2432] = {.lex_state = 73}, [2433] = {.lex_state = 73}, @@ -20130,60 +20183,60 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2437] = {.lex_state = 73}, [2438] = {.lex_state = 73}, [2439] = {.lex_state = 73}, - [2440] = {.lex_state = 28}, - [2441] = {.lex_state = 28}, + [2440] = {.lex_state = 73}, + [2441] = {.lex_state = 73}, [2442] = {.lex_state = 73}, [2443] = {.lex_state = 73}, [2444] = {.lex_state = 73}, [2445] = {.lex_state = 73}, - [2446] = {.lex_state = 28}, - [2447] = {.lex_state = 28}, + [2446] = {.lex_state = 73}, + [2447] = {.lex_state = 73}, [2448] = {.lex_state = 73}, [2449] = {.lex_state = 73}, [2450] = {.lex_state = 73}, - [2451] = {.lex_state = 73}, + [2451] = {.lex_state = 28}, [2452] = {.lex_state = 73}, [2453] = {.lex_state = 73}, [2454] = {.lex_state = 73}, - [2455] = {.lex_state = 28}, - [2456] = {.lex_state = 75}, - [2457] = {.lex_state = 75}, - [2458] = {.lex_state = 75}, - [2459] = {.lex_state = 75}, - [2460] = {.lex_state = 75}, - [2461] = {.lex_state = 75}, + [2455] = {.lex_state = 73}, + [2456] = {.lex_state = 73}, + [2457] = {.lex_state = 28}, + [2458] = {.lex_state = 73}, + [2459] = {.lex_state = 28}, + [2460] = {.lex_state = 28}, + [2461] = {.lex_state = 28}, [2462] = {.lex_state = 75}, - [2463] = {.lex_state = 31}, - [2464] = {.lex_state = 28}, + [2463] = {.lex_state = 28}, + [2464] = {.lex_state = 75}, [2465] = {.lex_state = 75}, - [2466] = {.lex_state = 28}, - [2467] = {.lex_state = 75}, - [2468] = {.lex_state = 75}, - [2469] = {.lex_state = 28}, + [2466] = {.lex_state = 75}, + [2467] = {.lex_state = 73}, + [2468] = {.lex_state = 73}, + [2469] = {.lex_state = 73}, [2470] = {.lex_state = 73}, - [2471] = {.lex_state = 28}, - [2472] = {.lex_state = 75}, - [2473] = {.lex_state = 33}, - [2474] = {.lex_state = 73}, - [2475] = {.lex_state = 33}, - [2476] = {.lex_state = 28}, - [2477] = {.lex_state = 73}, - [2478] = {.lex_state = 73}, - [2479] = {.lex_state = 28}, - [2480] = {.lex_state = 28}, - [2481] = {.lex_state = 73}, - [2482] = {.lex_state = 73}, - [2483] = {.lex_state = 33}, + [2471] = {.lex_state = 73}, + [2472] = {.lex_state = 73}, + [2473] = {.lex_state = 73}, + [2474] = {.lex_state = 75}, + [2475] = {.lex_state = 31}, + [2476] = {.lex_state = 75}, + [2477] = {.lex_state = 33}, + [2478] = {.lex_state = 75}, + [2479] = {.lex_state = 75}, + [2480] = {.lex_state = 75}, + [2481] = {.lex_state = 33}, + [2482] = {.lex_state = 33}, + [2483] = {.lex_state = 75}, [2484] = {.lex_state = 73}, - [2485] = {.lex_state = 28}, + [2485] = {.lex_state = 73}, [2486] = {.lex_state = 73}, [2487] = {.lex_state = 28}, - [2488] = {.lex_state = 73}, - [2489] = {.lex_state = 75}, - [2490] = {.lex_state = 73}, - [2491] = {.lex_state = 73}, + [2488] = {.lex_state = 75}, + [2489] = {.lex_state = 28}, + [2490] = {.lex_state = 28}, + [2491] = {.lex_state = 28}, [2492] = {.lex_state = 28}, - [2493] = {.lex_state = 65}, + [2493] = {.lex_state = 75}, [2494] = {.lex_state = 28}, [2495] = {.lex_state = 28}, [2496] = {.lex_state = 28}, @@ -20193,30 +20246,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2500] = {.lex_state = 28}, [2501] = {.lex_state = 28}, [2502] = {.lex_state = 28}, - [2503] = {.lex_state = 73}, - [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}, [2509] = {.lex_state = 28}, - [2510] = {.lex_state = 28}, + [2510] = {.lex_state = 73}, [2511] = {.lex_state = 28}, [2512] = {.lex_state = 28}, [2513] = {.lex_state = 28}, [2514] = {.lex_state = 28}, - [2515] = {.lex_state = 28}, + [2515] = {.lex_state = 65}, [2516] = {.lex_state = 28}, - [2517] = {.lex_state = 28}, + [2517] = {.lex_state = 65}, [2518] = {.lex_state = 28}, - [2519] = {.lex_state = 73}, + [2519] = {.lex_state = 28}, [2520] = {.lex_state = 28}, [2521] = {.lex_state = 28}, [2522] = {.lex_state = 28}, - [2523] = {.lex_state = 73}, - [2524] = {.lex_state = 73}, + [2523] = {.lex_state = 28}, + [2524] = {.lex_state = 28}, [2525] = {.lex_state = 28}, - [2526] = {.lex_state = 73}, + [2526] = {.lex_state = 28}, [2527] = {.lex_state = 28}, [2528] = {.lex_state = 28}, [2529] = {.lex_state = 28}, @@ -20230,74 +20283,74 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2537] = {.lex_state = 28}, [2538] = {.lex_state = 28}, [2539] = {.lex_state = 28}, - [2540] = {.lex_state = 73}, + [2540] = {.lex_state = 28}, [2541] = {.lex_state = 28}, [2542] = {.lex_state = 28}, [2543] = {.lex_state = 28}, - [2544] = {.lex_state = 73}, + [2544] = {.lex_state = 28}, [2545] = {.lex_state = 28}, [2546] = {.lex_state = 28}, [2547] = {.lex_state = 28}, - [2548] = {.lex_state = 55}, - [2549] = {.lex_state = 75}, - [2550] = {.lex_state = 75}, - [2551] = {.lex_state = 28}, - [2552] = {.lex_state = 55}, - [2553] = {.lex_state = 73}, - [2554] = {.lex_state = 73}, - [2555] = {.lex_state = 28}, - [2556] = {.lex_state = 28}, - [2557] = {.lex_state = 73}, - [2558] = {.lex_state = 73}, - [2559] = {.lex_state = 73}, + [2548] = {.lex_state = 28}, + [2549] = {.lex_state = 28}, + [2550] = {.lex_state = 28}, + [2551] = {.lex_state = 75}, + [2552] = {.lex_state = 28}, + [2553] = {.lex_state = 75}, + [2554] = {.lex_state = 75}, + [2555] = {.lex_state = 75}, + [2556] = {.lex_state = 75}, + [2557] = {.lex_state = 75}, + [2558] = {.lex_state = 28}, + [2559] = {.lex_state = 28}, [2560] = {.lex_state = 28}, [2561] = {.lex_state = 28}, [2562] = {.lex_state = 28}, [2563] = {.lex_state = 28}, [2564] = {.lex_state = 28}, [2565] = {.lex_state = 28}, - [2566] = {.lex_state = 28}, + [2566] = {.lex_state = 73}, [2567] = {.lex_state = 28}, - [2568] = {.lex_state = 73}, + [2568] = {.lex_state = 28}, [2569] = {.lex_state = 73}, - [2570] = {.lex_state = 75}, + [2570] = {.lex_state = 73}, [2571] = {.lex_state = 28}, [2572] = {.lex_state = 28}, - [2573] = {.lex_state = 28}, + [2573] = {.lex_state = 73}, [2574] = {.lex_state = 28}, - [2575] = {.lex_state = 75}, - [2576] = {.lex_state = 75}, - [2577] = {.lex_state = 75}, - [2578] = {.lex_state = 75}, - [2579] = {.lex_state = 73}, + [2575] = {.lex_state = 73}, + [2576] = {.lex_state = 73}, + [2577] = {.lex_state = 73}, + [2578] = {.lex_state = 73}, + [2579] = {.lex_state = 28}, [2580] = {.lex_state = 28}, [2581] = {.lex_state = 75}, - [2582] = {.lex_state = 65}, + [2582] = {.lex_state = 28}, [2583] = {.lex_state = 28}, - [2584] = {.lex_state = 75}, + [2584] = {.lex_state = 28}, [2585] = {.lex_state = 73}, - [2586] = {.lex_state = 75}, - [2587] = {.lex_state = 28}, - [2588] = {.lex_state = 28}, - [2589] = {.lex_state = 28}, + [2586] = {.lex_state = 28}, + [2587] = {.lex_state = 73}, + [2588] = {.lex_state = 73}, + [2589] = {.lex_state = 73}, [2590] = {.lex_state = 28}, - [2591] = {.lex_state = 28}, - [2592] = {.lex_state = 28}, + [2591] = {.lex_state = 73}, + [2592] = {.lex_state = 73}, [2593] = {.lex_state = 28}, - [2594] = {.lex_state = 28}, + [2594] = {.lex_state = 75}, [2595] = {.lex_state = 28}, [2596] = {.lex_state = 28}, [2597] = {.lex_state = 28}, [2598] = {.lex_state = 28}, [2599] = {.lex_state = 28}, - [2600] = {.lex_state = 28}, - [2601] = {.lex_state = 28}, + [2600] = {.lex_state = 73}, + [2601] = {.lex_state = 73}, [2602] = {.lex_state = 28}, [2603] = {.lex_state = 73}, [2604] = {.lex_state = 28}, [2605] = {.lex_state = 28}, - [2606] = {.lex_state = 28}, - [2607] = {.lex_state = 75}, + [2606] = {.lex_state = 73}, + [2607] = {.lex_state = 28}, [2608] = {.lex_state = 28}, [2609] = {.lex_state = 28}, [2610] = {.lex_state = 28}, @@ -20306,35 +20359,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2613] = {.lex_state = 28}, [2614] = {.lex_state = 28}, [2615] = {.lex_state = 28}, - [2616] = {.lex_state = 73}, + [2616] = {.lex_state = 28}, [2617] = {.lex_state = 28}, [2618] = {.lex_state = 28}, [2619] = {.lex_state = 28}, - [2620] = {.lex_state = 28}, - [2621] = {.lex_state = 28}, - [2622] = {.lex_state = 73}, - [2623] = {.lex_state = 73}, - [2624] = {.lex_state = 73}, + [2620] = {.lex_state = 55}, + [2621] = {.lex_state = 55}, + [2622] = {.lex_state = 28}, + [2623] = {.lex_state = 28}, + [2624] = {.lex_state = 75}, [2625] = {.lex_state = 73}, [2626] = {.lex_state = 73}, [2627] = {.lex_state = 73}, [2628] = {.lex_state = 73}, [2629] = {.lex_state = 73}, - [2630] = {.lex_state = 75}, - [2631] = {.lex_state = 75}, - [2632] = {.lex_state = 73}, - [2633] = {.lex_state = 28}, - [2634] = {.lex_state = 28}, - [2635] = {.lex_state = 73}, + [2630] = {.lex_state = 73}, + [2631] = {.lex_state = 73}, + [2632] = {.lex_state = 75}, + [2633] = {.lex_state = 73}, + [2634] = {.lex_state = 73}, + [2635] = {.lex_state = 75}, [2636] = {.lex_state = 73}, [2637] = {.lex_state = 73}, - [2638] = {.lex_state = 75}, - [2639] = {.lex_state = 75}, + [2638] = {.lex_state = 73}, + [2639] = {.lex_state = 28}, [2640] = {.lex_state = 73}, - [2641] = {.lex_state = 73}, - [2642] = {.lex_state = 75}, - [2643] = {.lex_state = 75}, - [2644] = {.lex_state = 77}, + [2641] = {.lex_state = 77}, + [2642] = {.lex_state = 73}, + [2643] = {.lex_state = 73}, + [2644] = {.lex_state = 73}, [2645] = {.lex_state = 73}, [2646] = {.lex_state = 73}, [2647] = {.lex_state = 73}, @@ -20342,62 +20395,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2649] = {.lex_state = 73}, [2650] = {.lex_state = 73}, [2651] = {.lex_state = 73}, - [2652] = {.lex_state = 73}, - [2653] = {.lex_state = 73}, - [2654] = {.lex_state = 73}, + [2652] = {.lex_state = 75}, + [2653] = {.lex_state = 75}, + [2654] = {.lex_state = 75}, [2655] = {.lex_state = 73}, [2656] = {.lex_state = 73}, [2657] = {.lex_state = 75}, - [2658] = {.lex_state = 73}, + [2658] = {.lex_state = 28}, [2659] = {.lex_state = 73}, [2660] = {.lex_state = 73}, - [2661] = {.lex_state = 73}, + [2661] = {.lex_state = 75}, [2662] = {.lex_state = 73}, [2663] = {.lex_state = 73}, [2664] = {.lex_state = 73}, - [2665] = {.lex_state = 75}, - [2666] = {.lex_state = 83}, - [2667] = {.lex_state = 75}, + [2665] = {.lex_state = 73}, + [2666] = {.lex_state = 73}, + [2667] = {.lex_state = 73}, [2668] = {.lex_state = 75}, - [2669] = {.lex_state = 75}, + [2669] = {.lex_state = 73}, [2670] = {.lex_state = 73}, [2671] = {.lex_state = 73}, - [2672] = {.lex_state = 83}, - [2673] = {.lex_state = 73}, + [2672] = {.lex_state = 57}, + [2673] = {.lex_state = 75}, [2674] = {.lex_state = 73}, - [2675] = {.lex_state = 75}, + [2675] = {.lex_state = 83}, [2676] = {.lex_state = 75}, - [2677] = {.lex_state = 83}, - [2678] = {.lex_state = 75}, + [2677] = {.lex_state = 73}, + [2678] = {.lex_state = 83}, [2679] = {.lex_state = 75}, [2680] = {.lex_state = 75}, - [2681] = {.lex_state = 75}, + [2681] = {.lex_state = 73}, [2682] = {.lex_state = 75}, [2683] = {.lex_state = 75}, [2684] = {.lex_state = 75}, [2685] = {.lex_state = 75}, - [2686] = {.lex_state = 73}, - [2687] = {.lex_state = 75}, - [2688] = {.lex_state = 75}, - [2689] = {.lex_state = 75}, + [2686] = {.lex_state = 75}, + [2687] = {.lex_state = 73}, + [2688] = {.lex_state = 73}, + [2689] = {.lex_state = 73}, [2690] = {.lex_state = 73}, - [2691] = {.lex_state = 75}, - [2692] = {.lex_state = 73}, + [2691] = {.lex_state = 73}, + [2692] = {.lex_state = 75}, [2693] = {.lex_state = 75}, - [2694] = {.lex_state = 75}, - [2695] = {.lex_state = 75}, + [2694] = {.lex_state = 83}, + [2695] = {.lex_state = 73}, [2696] = {.lex_state = 75}, - [2697] = {.lex_state = 73}, - [2698] = {.lex_state = 73}, + [2697] = {.lex_state = 75}, + [2698] = {.lex_state = 75}, [2699] = {.lex_state = 75}, [2700] = {.lex_state = 75}, - [2701] = {.lex_state = 73}, + [2701] = {.lex_state = 75}, [2702] = {.lex_state = 73}, - [2703] = {.lex_state = 83}, - [2704] = {.lex_state = 83}, - [2705] = {.lex_state = 75}, - [2706] = {.lex_state = 83}, - [2707] = {.lex_state = 73}, + [2703] = {.lex_state = 75}, + [2704] = {.lex_state = 75}, + [2705] = {.lex_state = 83}, + [2706] = {.lex_state = 73}, + [2707] = {.lex_state = 75}, [2708] = {.lex_state = 75}, [2709] = {.lex_state = 75}, [2710] = {.lex_state = 75}, @@ -20405,149 +20458,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2712] = {.lex_state = 75}, [2713] = {.lex_state = 73}, [2714] = {.lex_state = 75}, - [2715] = {.lex_state = 75}, + [2715] = {.lex_state = 73}, [2716] = {.lex_state = 73}, [2717] = {.lex_state = 75}, - [2718] = {.lex_state = 75}, - [2719] = {.lex_state = 75}, + [2718] = {.lex_state = 83}, + [2719] = {.lex_state = 73}, [2720] = {.lex_state = 75}, [2721] = {.lex_state = 75}, - [2722] = {.lex_state = 73}, + [2722] = {.lex_state = 75}, [2723] = {.lex_state = 75}, - [2724] = {.lex_state = 77}, - [2725] = {.lex_state = 75}, + [2724] = {.lex_state = 75}, + [2725] = {.lex_state = 73}, [2726] = {.lex_state = 73}, - [2727] = {.lex_state = 73}, - [2728] = {.lex_state = 73}, - [2729] = {.lex_state = 73}, + [2727] = {.lex_state = 75}, + [2728] = {.lex_state = 75}, + [2729] = {.lex_state = 75}, [2730] = {.lex_state = 75}, [2731] = {.lex_state = 75}, [2732] = {.lex_state = 75}, - [2733] = {.lex_state = 75}, - [2734] = {.lex_state = 83}, - [2735] = {.lex_state = 75}, + [2733] = {.lex_state = 83}, + [2734] = {.lex_state = 75}, + [2735] = {.lex_state = 83}, [2736] = {.lex_state = 75}, - [2737] = {.lex_state = 75}, + [2737] = {.lex_state = 57}, [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 75}, + [2739] = {.lex_state = 73}, [2740] = {.lex_state = 75}, [2741] = {.lex_state = 75}, [2742] = {.lex_state = 75}, - [2743] = {.lex_state = 73}, + [2743] = {.lex_state = 75}, [2744] = {.lex_state = 75}, [2745] = {.lex_state = 75}, [2746] = {.lex_state = 75}, - [2747] = {.lex_state = 73}, - [2748] = {.lex_state = 73}, - [2749] = {.lex_state = 73}, - [2750] = {.lex_state = 73}, - [2751] = {.lex_state = 83}, - [2752] = {.lex_state = 75}, - [2753] = {.lex_state = 73}, - [2754] = {.lex_state = 73}, - [2755] = {.lex_state = 75}, - [2756] = {.lex_state = 73}, + [2747] = {.lex_state = 75}, + [2748] = {.lex_state = 75}, + [2749] = {.lex_state = 75}, + [2750] = {.lex_state = 75}, + [2751] = {.lex_state = 75}, + [2752] = {.lex_state = 73}, + [2753] = {.lex_state = 75}, + [2754] = {.lex_state = 75}, + [2755] = {.lex_state = 73}, + [2756] = {.lex_state = 75}, [2757] = {.lex_state = 77}, - [2758] = {.lex_state = 75}, + [2758] = {.lex_state = 73}, [2759] = {.lex_state = 75}, [2760] = {.lex_state = 75}, - [2761] = {.lex_state = 75}, + [2761] = {.lex_state = 73}, [2762] = {.lex_state = 75}, [2763] = {.lex_state = 75}, - [2764] = {.lex_state = 67}, + [2764] = {.lex_state = 73}, [2765] = {.lex_state = 75}, - [2766] = {.lex_state = 73}, - [2767] = {.lex_state = 75}, - [2768] = {.lex_state = 75}, + [2766] = {.lex_state = 75}, + [2767] = {.lex_state = 73}, + [2768] = {.lex_state = 77}, [2769] = {.lex_state = 73}, [2770] = {.lex_state = 75}, - [2771] = {.lex_state = 73}, - [2772] = {.lex_state = 73}, + [2771] = {.lex_state = 75}, + [2772] = {.lex_state = 75}, [2773] = {.lex_state = 75}, - [2774] = {.lex_state = 75}, - [2775] = {.lex_state = 73}, + [2774] = {.lex_state = 77}, + [2775] = {.lex_state = 75}, [2776] = {.lex_state = 75}, - [2777] = {.lex_state = 83}, - [2778] = {.lex_state = 75}, - [2779] = {.lex_state = 75}, - [2780] = {.lex_state = 75}, - [2781] = {.lex_state = 67}, - [2782] = {.lex_state = 75}, - [2783] = {.lex_state = 75}, + [2777] = {.lex_state = 75}, + [2778] = {.lex_state = 67}, + [2779] = {.lex_state = 73}, + [2780] = {.lex_state = 73}, + [2781] = {.lex_state = 73}, + [2782] = {.lex_state = 73}, + [2783] = {.lex_state = 83}, [2784] = {.lex_state = 75}, - [2785] = {.lex_state = 75}, + [2785] = {.lex_state = 73}, [2786] = {.lex_state = 73}, - [2787] = {.lex_state = 75}, + [2787] = {.lex_state = 73}, [2788] = {.lex_state = 75}, [2789] = {.lex_state = 73}, - [2790] = {.lex_state = 75}, - [2791] = {.lex_state = 73}, - [2792] = {.lex_state = 83}, - [2793] = {.lex_state = 75}, - [2794] = {.lex_state = 75}, - [2795] = {.lex_state = 73}, + [2790] = {.lex_state = 73}, + [2791] = {.lex_state = 83}, + [2792] = {.lex_state = 75}, + [2793] = {.lex_state = 73}, + [2794] = {.lex_state = 73}, + [2795] = {.lex_state = 75}, [2796] = {.lex_state = 73}, [2797] = {.lex_state = 73}, - [2798] = {.lex_state = 73}, + [2798] = {.lex_state = 83}, [2799] = {.lex_state = 73}, - [2800] = {.lex_state = 73}, + [2800] = {.lex_state = 67}, [2801] = {.lex_state = 75}, - [2802] = {.lex_state = 73}, + [2802] = {.lex_state = 75}, [2803] = {.lex_state = 75}, - [2804] = {.lex_state = 73}, - [2805] = {.lex_state = 73}, - [2806] = {.lex_state = 73}, - [2807] = {.lex_state = 73}, - [2808] = {.lex_state = 73}, - [2809] = {.lex_state = 75}, - [2810] = {.lex_state = 73}, - [2811] = {.lex_state = 75}, - [2812] = {.lex_state = 73}, - [2813] = {.lex_state = 73}, + [2804] = {.lex_state = 75}, + [2805] = {.lex_state = 75}, + [2806] = {.lex_state = 75}, + [2807] = {.lex_state = 75}, + [2808] = {.lex_state = 75}, + [2809] = {.lex_state = 73}, + [2810] = {.lex_state = 75}, + [2811] = {.lex_state = 73}, + [2812] = {.lex_state = 83}, + [2813] = {.lex_state = 75}, [2814] = {.lex_state = 75}, - [2815] = {.lex_state = 73}, + [2815] = {.lex_state = 75}, [2816] = {.lex_state = 75}, [2817] = {.lex_state = 73}, - [2818] = {.lex_state = 83}, + [2818] = {.lex_state = 75}, [2819] = {.lex_state = 73}, [2820] = {.lex_state = 75}, - [2821] = {.lex_state = 75}, - [2822] = {.lex_state = 83}, + [2821] = {.lex_state = 73}, + [2822] = {.lex_state = 73}, [2823] = {.lex_state = 73}, - [2824] = {.lex_state = 83}, + [2824] = {.lex_state = 73}, [2825] = {.lex_state = 75}, - [2826] = {.lex_state = 73}, - [2827] = {.lex_state = 75}, + [2826] = {.lex_state = 75}, + [2827] = {.lex_state = 73}, [2828] = {.lex_state = 73}, - [2829] = {.lex_state = 83}, - [2830] = {.lex_state = 73}, - [2831] = {.lex_state = 73}, - [2832] = {.lex_state = 57}, - [2833] = {.lex_state = 73}, - [2834] = {.lex_state = 75}, + [2829] = {.lex_state = 75}, + [2830] = {.lex_state = 83}, + [2831] = {.lex_state = 83}, + [2832] = {.lex_state = 75}, + [2833] = {.lex_state = 75}, + [2834] = {.lex_state = 73}, [2835] = {.lex_state = 73}, - [2836] = {.lex_state = 75}, - [2837] = {.lex_state = 57}, + [2836] = {.lex_state = 83}, + [2837] = {.lex_state = 73}, [2838] = {.lex_state = 73}, [2839] = {.lex_state = 73}, [2840] = {.lex_state = 73}, [2841] = {.lex_state = 83}, - [2842] = {.lex_state = 75}, - [2843] = {.lex_state = 73}, - [2844] = {.lex_state = 73}, + [2842] = {.lex_state = 73}, + [2843] = {.lex_state = 75}, + [2844] = {.lex_state = 75}, [2845] = {.lex_state = 75}, [2846] = {.lex_state = 75}, - [2847] = {.lex_state = 77}, - [2848] = {.lex_state = 75}, - [2849] = {.lex_state = 83}, - [2850] = {.lex_state = 75}, - [2851] = {.lex_state = 75}, + [2847] = {.lex_state = 73}, + [2848] = {.lex_state = 73}, + [2849] = {.lex_state = 75}, + [2850] = {.lex_state = 73}, + [2851] = {.lex_state = 73}, [2852] = {.lex_state = 73}, - [2853] = {.lex_state = 77}, + [2853] = {.lex_state = 83}, [2854] = {.lex_state = 73}, - [2855] = {.lex_state = 73}, + [2855] = {.lex_state = 81}, [2856] = {.lex_state = 73}, - [2857] = {.lex_state = 73}, + [2857] = {.lex_state = 81}, [2858] = {.lex_state = 73}, [2859] = {.lex_state = 73}, [2860] = {.lex_state = 73}, @@ -20555,73 +20608,73 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2862] = {.lex_state = 73}, [2863] = {.lex_state = 73}, [2864] = {.lex_state = 73}, - [2865] = {.lex_state = 81}, + [2865] = {.lex_state = 73}, [2866] = {.lex_state = 73}, [2867] = {.lex_state = 73}, [2868] = {.lex_state = 73}, - [2869] = {.lex_state = 73}, - [2870] = {.lex_state = 73}, + [2869] = {.lex_state = 81}, + [2870] = {.lex_state = 77}, [2871] = {.lex_state = 73}, - [2872] = {.lex_state = 77}, - [2873] = {.lex_state = 81}, + [2872] = {.lex_state = 73}, + [2873] = {.lex_state = 73}, [2874] = {.lex_state = 73}, [2875] = {.lex_state = 81}, - [2876] = {.lex_state = 81}, + [2876] = {.lex_state = 77}, [2877] = {.lex_state = 73}, [2878] = {.lex_state = 73}, - [2879] = {.lex_state = 77}, - [2880] = {.lex_state = 77}, - [2881] = {.lex_state = 77}, - [2882] = {.lex_state = 73}, - [2883] = {.lex_state = 83}, - [2884] = {.lex_state = 83}, + [2879] = {.lex_state = 73}, + [2880] = {.lex_state = 73}, + [2881] = {.lex_state = 73}, + [2882] = {.lex_state = 77}, + [2883] = {.lex_state = 77}, + [2884] = {.lex_state = 77}, [2885] = {.lex_state = 77}, [2886] = {.lex_state = 77}, [2887] = {.lex_state = 77}, - [2888] = {.lex_state = 73}, - [2889] = {.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 = 83}, - [2894] = {.lex_state = 77}, + [2892] = {.lex_state = 77}, + [2893] = {.lex_state = 73}, + [2894] = {.lex_state = 73}, [2895] = {.lex_state = 77}, [2896] = {.lex_state = 73}, [2897] = {.lex_state = 77}, - [2898] = {.lex_state = 73}, + [2898] = {.lex_state = 77}, [2899] = {.lex_state = 77}, [2900] = {.lex_state = 77}, [2901] = {.lex_state = 77}, [2902] = {.lex_state = 77}, - [2903] = {.lex_state = 73}, + [2903] = {.lex_state = 83}, [2904] = {.lex_state = 77}, - [2905] = {.lex_state = 73}, - [2906] = {.lex_state = 73}, - [2907] = {.lex_state = 77}, - [2908] = {.lex_state = 73}, + [2905] = {.lex_state = 83}, + [2906] = {.lex_state = 77}, + [2907] = {.lex_state = 73}, + [2908] = {.lex_state = 77}, [2909] = {.lex_state = 77}, [2910] = {.lex_state = 73}, - [2911] = {.lex_state = 83}, - [2912] = {.lex_state = 33}, + [2911] = {.lex_state = 77}, + [2912] = {.lex_state = 77}, [2913] = {.lex_state = 77}, [2914] = {.lex_state = 73}, [2915] = {.lex_state = 77}, [2916] = {.lex_state = 73}, - [2917] = {.lex_state = 77}, - [2918] = {.lex_state = 77}, + [2917] = {.lex_state = 33}, + [2918] = {.lex_state = 73}, [2919] = {.lex_state = 77}, - [2920] = {.lex_state = 77}, - [2921] = {.lex_state = 33}, - [2922] = {.lex_state = 77}, - [2923] = {.lex_state = 33}, - [2924] = {.lex_state = 77}, - [2925] = {.lex_state = 77}, - [2926] = {.lex_state = 77}, - [2927] = {.lex_state = 77}, + [2920] = {.lex_state = 33}, + [2921] = {.lex_state = 77}, + [2922] = {.lex_state = 73}, + [2923] = {.lex_state = 77}, + [2924] = {.lex_state = 33}, + [2925] = {.lex_state = 73}, + [2926] = {.lex_state = 73}, + [2927] = {.lex_state = 73}, [2928] = {.lex_state = 73}, [2929] = {.lex_state = 73}, - [2930] = {.lex_state = 73}, - [2931] = {.lex_state = 73}, + [2930] = {.lex_state = 83}, + [2931] = {.lex_state = 83}, [2932] = {.lex_state = 73}, [2933] = {.lex_state = 73}, [2934] = {.lex_state = 73}, @@ -20691,12 +20744,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2998] = {.lex_state = 73}, [2999] = {.lex_state = 73}, [3000] = {.lex_state = 73}, - [3001] = {.lex_state = 83}, - [3002] = {.lex_state = 83}, - [3003] = {.lex_state = 83}, - [3004] = {.lex_state = 83}, - [3005] = {.lex_state = 83}, - [3006] = {.lex_state = 83}, + [3001] = {.lex_state = 73}, + [3002] = {.lex_state = 73}, + [3003] = {.lex_state = 73}, + [3004] = {.lex_state = 73}, + [3005] = {.lex_state = 73}, + [3006] = {.lex_state = 73}, [3007] = {.lex_state = 83}, [3008] = {.lex_state = 83}, [3009] = {.lex_state = 83}, @@ -21001,116 +21054,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3308] = {.lex_state = 83}, [3309] = {.lex_state = 83}, [3310] = {.lex_state = 83}, - [3311] = {.lex_state = 87}, + [3311] = {.lex_state = 83}, [3312] = {.lex_state = 83}, [3313] = {.lex_state = 83}, [3314] = {.lex_state = 83}, - [3315] = {.lex_state = 87}, + [3315] = {.lex_state = 83}, [3316] = {.lex_state = 83}, - [3317] = {.lex_state = 83}, + [3317] = {.lex_state = 87}, [3318] = {.lex_state = 83}, [3319] = {.lex_state = 83}, [3320] = {.lex_state = 83}, [3321] = {.lex_state = 83}, [3322] = {.lex_state = 83}, [3323] = {.lex_state = 83}, - [3324] = {.lex_state = 85}, - [3325] = {.lex_state = 33}, - [3326] = {.lex_state = 33}, - [3327] = {.lex_state = 33}, - [3328] = {.lex_state = 33}, - [3329] = {.lex_state = 33}, - [3330] = {.lex_state = 247}, - [3331] = {.lex_state = 87}, - [3332] = {.lex_state = 83}, - [3333] = {.lex_state = 83}, - [3334] = {.lex_state = 84}, - [3335] = {.lex_state = 84}, - [3336] = {.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 = 87}, + [3330] = {.lex_state = 85}, + [3331] = {.lex_state = 33}, + [3332] = {.lex_state = 33}, + [3333] = {.lex_state = 33}, + [3334] = {.lex_state = 33}, + [3335] = {.lex_state = 33}, + [3336] = {.lex_state = 247}, [3337] = {.lex_state = 84}, - [3338] = {.lex_state = 83}, - [3339] = {.lex_state = 83}, - [3340] = {.lex_state = 41}, - [3341] = {.lex_state = 41}, + [3338] = {.lex_state = 87}, + [3339] = {.lex_state = 84}, + [3340] = {.lex_state = 83}, + [3341] = {.lex_state = 83}, [3342] = {.lex_state = 83}, - [3343] = {.lex_state = 34}, - [3344] = {.lex_state = 34}, - [3345] = {.lex_state = 41}, + [3343] = {.lex_state = 83}, + [3344] = {.lex_state = 83}, + [3345] = {.lex_state = 84}, [3346] = {.lex_state = 41}, - [3347] = {.lex_state = 83}, - [3348] = {.lex_state = 41}, + [3347] = {.lex_state = 34}, + [3348] = {.lex_state = 34}, [3349] = {.lex_state = 41}, [3350] = {.lex_state = 41}, - [3351] = {.lex_state = 41}, - [3352] = {.lex_state = 41}, + [3351] = {.lex_state = 83}, + [3352] = {.lex_state = 83}, [3353] = {.lex_state = 41}, [3354] = {.lex_state = 41}, - [3355] = {.lex_state = 85}, + [3355] = {.lex_state = 41}, [3356] = {.lex_state = 41}, - [3357] = {.lex_state = 83}, - [3358] = {.lex_state = 85}, - [3359] = {.lex_state = 85}, - [3360] = {.lex_state = 83}, - [3361] = {.lex_state = 84}, - [3362] = {.lex_state = 85}, + [3357] = {.lex_state = 41}, + [3358] = {.lex_state = 41}, + [3359] = {.lex_state = 41}, + [3360] = {.lex_state = 41}, + [3361] = {.lex_state = 83}, + [3362] = {.lex_state = 83}, [3363] = {.lex_state = 85}, [3364] = {.lex_state = 85}, [3365] = {.lex_state = 85}, - [3366] = {.lex_state = 85}, + [3366] = {.lex_state = 41}, [3367] = {.lex_state = 85}, - [3368] = {.lex_state = 84}, + [3368] = {.lex_state = 85}, [3369] = {.lex_state = 85}, - [3370] = {.lex_state = 85}, - [3371] = {.lex_state = 41}, - [3372] = {.lex_state = 34}, - [3373] = {.lex_state = 84}, + [3370] = {.lex_state = 84}, + [3371] = {.lex_state = 85}, + [3372] = {.lex_state = 85}, + [3373] = {.lex_state = 85}, [3374] = {.lex_state = 85}, - [3375] = {.lex_state = 85}, + [3375] = {.lex_state = 35}, [3376] = {.lex_state = 85}, [3377] = {.lex_state = 85}, - [3378] = {.lex_state = 84}, - [3379] = {.lex_state = 85}, - [3380] = {.lex_state = 41}, - [3381] = {.lex_state = 85}, - [3382] = {.lex_state = 85}, + [3378] = {.lex_state = 85}, + [3379] = {.lex_state = 41}, + [3380] = {.lex_state = 35}, + [3381] = {.lex_state = 41}, + [3382] = {.lex_state = 84}, [3383] = {.lex_state = 85}, - [3384] = {.lex_state = 41}, - [3385] = {.lex_state = 35}, - [3386] = {.lex_state = 35}, + [3384] = {.lex_state = 35}, + [3385] = {.lex_state = 84}, + [3386] = {.lex_state = 85}, [3387] = {.lex_state = 85}, [3388] = {.lex_state = 85}, - [3389] = {.lex_state = 84}, + [3389] = {.lex_state = 85}, [3390] = {.lex_state = 35}, - [3391] = {.lex_state = 85}, + [3391] = {.lex_state = 84}, [3392] = {.lex_state = 85}, - [3393] = {.lex_state = 84}, - [3394] = {.lex_state = 84}, - [3395] = {.lex_state = 85}, - [3396] = {.lex_state = 35}, - [3397] = {.lex_state = 85}, + [3393] = {.lex_state = 85}, + [3394] = {.lex_state = 85}, + [3395] = {.lex_state = 84}, + [3396] = {.lex_state = 85}, + [3397] = {.lex_state = 34}, [3398] = {.lex_state = 84}, [3399] = {.lex_state = 85}, - [3400] = {.lex_state = 85}, + [3400] = {.lex_state = 41}, [3401] = {.lex_state = 85}, - [3402] = {.lex_state = 85}, + [3402] = {.lex_state = 41}, [3403] = {.lex_state = 85}, [3404] = {.lex_state = 85}, - [3405] = {.lex_state = 41}, - [3406] = {.lex_state = 85}, - [3407] = {.lex_state = 34}, - [3408] = {.lex_state = 34}, - [3409] = {.lex_state = 34}, - [3410] = {.lex_state = 84}, - [3411] = {.lex_state = 84}, - [3412] = {.lex_state = 84}, + [3405] = {.lex_state = 85}, + [3406] = {.lex_state = 84}, + [3407] = {.lex_state = 85}, + [3408] = {.lex_state = 84}, + [3409] = {.lex_state = 85}, + [3410] = {.lex_state = 85}, + [3411] = {.lex_state = 85}, + [3412] = {.lex_state = 85}, [3413] = {.lex_state = 84}, [3414] = {.lex_state = 34}, [3415] = {.lex_state = 34}, [3416] = {.lex_state = 34}, [3417] = {.lex_state = 84}, - [3418] = {.lex_state = 34}, + [3418] = {.lex_state = 84}, [3419] = {.lex_state = 34}, - [3420] = {.lex_state = 34}, + [3420] = {.lex_state = 84}, [3421] = {.lex_state = 34}, [3422] = {.lex_state = 34}, [3423] = {.lex_state = 34}, @@ -21118,636 +21171,636 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3425] = {.lex_state = 34}, [3426] = {.lex_state = 34}, [3427] = {.lex_state = 34}, - [3428] = {.lex_state = 34}, + [3428] = {.lex_state = 35}, [3429] = {.lex_state = 34}, - [3430] = {.lex_state = 35}, + [3430] = {.lex_state = 34}, [3431] = {.lex_state = 34}, [3432] = {.lex_state = 34}, [3433] = {.lex_state = 34}, [3434] = {.lex_state = 34}, [3435] = {.lex_state = 34}, - [3436] = {.lex_state = 34}, + [3436] = {.lex_state = 84}, [3437] = {.lex_state = 34}, [3438] = {.lex_state = 34}, [3439] = {.lex_state = 34}, - [3440] = {.lex_state = 35}, - [3441] = {.lex_state = 85}, - [3442] = {.lex_state = 85}, + [3440] = {.lex_state = 34}, + [3441] = {.lex_state = 34}, + [3442] = {.lex_state = 34}, [3443] = {.lex_state = 34}, [3444] = {.lex_state = 34}, - [3445] = {.lex_state = 81}, - [3446] = {.lex_state = 85}, - [3447] = {.lex_state = 81}, + [3445] = {.lex_state = 34}, + [3446] = {.lex_state = 35}, + [3447] = {.lex_state = 85}, [3448] = {.lex_state = 85}, [3449] = {.lex_state = 81}, - [3450] = {.lex_state = 81}, - [3451] = {.lex_state = 81}, + [3450] = {.lex_state = 34}, + [3451] = {.lex_state = 34}, [3452] = {.lex_state = 81}, [3453] = {.lex_state = 81}, - [3454] = {.lex_state = 81}, + [3454] = {.lex_state = 85}, [3455] = {.lex_state = 81}, - [3456] = {.lex_state = 81}, - [3457] = {.lex_state = 34}, - [3458] = {.lex_state = 81}, - [3459] = {.lex_state = 34}, + [3456] = {.lex_state = 34}, + [3457] = {.lex_state = 81}, + [3458] = {.lex_state = 34}, + [3459] = {.lex_state = 81}, [3460] = {.lex_state = 81}, - [3461] = {.lex_state = 85}, - [3462] = {.lex_state = 34}, - [3463] = {.lex_state = 34}, - [3464] = {.lex_state = 34}, - [3465] = {.lex_state = 85}, - [3466] = {.lex_state = 34}, - [3467] = {.lex_state = 34}, + [3461] = {.lex_state = 81}, + [3462] = {.lex_state = 81}, + [3463] = {.lex_state = 85}, + [3464] = {.lex_state = 81}, + [3465] = {.lex_state = 81}, + [3466] = {.lex_state = 81}, + [3467] = {.lex_state = 24}, [3468] = {.lex_state = 34}, [3469] = {.lex_state = 34}, [3470] = {.lex_state = 34}, [3471] = {.lex_state = 34}, [3472] = {.lex_state = 34}, - [3473] = {.lex_state = 24}, + [3473] = {.lex_state = 34}, [3474] = {.lex_state = 34}, [3475] = {.lex_state = 34}, - [3476] = {.lex_state = 24}, - [3477] = {.lex_state = 24}, + [3476] = {.lex_state = 34}, + [3477] = {.lex_state = 85}, [3478] = {.lex_state = 24}, - [3479] = {.lex_state = 85}, - [3480] = {.lex_state = 81}, - [3481] = {.lex_state = 81}, - [3482] = {.lex_state = 81}, - [3483] = {.lex_state = 81}, + [3479] = {.lex_state = 24}, + [3480] = {.lex_state = 24}, + [3481] = {.lex_state = 34}, + [3482] = {.lex_state = 34}, + [3483] = {.lex_state = 34}, [3484] = {.lex_state = 81}, - [3485] = {.lex_state = 85}, + [3485] = {.lex_state = 81}, [3486] = {.lex_state = 81}, - [3487] = {.lex_state = 81}, + [3487] = {.lex_state = 85}, [3488] = {.lex_state = 81}, [3489] = {.lex_state = 81}, [3490] = {.lex_state = 24}, [3491] = {.lex_state = 81}, - [3492] = {.lex_state = 81}, + [3492] = {.lex_state = 34}, [3493] = {.lex_state = 81}, [3494] = {.lex_state = 81}, - [3495] = {.lex_state = 24}, - [3496] = {.lex_state = 85}, + [3495] = {.lex_state = 81}, + [3496] = {.lex_state = 81}, [3497] = {.lex_state = 81}, - [3498] = {.lex_state = 81}, - [3499] = {.lex_state = 81}, + [3498] = {.lex_state = 85}, + [3499] = {.lex_state = 85}, [3500] = {.lex_state = 81}, [3501] = {.lex_state = 81}, - [3502] = {.lex_state = 85}, + [3502] = {.lex_state = 81}, [3503] = {.lex_state = 81}, [3504] = {.lex_state = 81}, - [3505] = {.lex_state = 34}, - [3506] = {.lex_state = 81}, + [3505] = {.lex_state = 81}, + [3506] = {.lex_state = 24}, [3507] = {.lex_state = 81}, [3508] = {.lex_state = 81}, - [3509] = {.lex_state = 85}, - [3510] = {.lex_state = 81}, - [3511] = {.lex_state = 88}, - [3512] = {.lex_state = 88}, - [3513] = {.lex_state = 95}, - [3514] = {.lex_state = 88}, - [3515] = {.lex_state = 88}, - [3516] = {.lex_state = 95}, - [3517] = {.lex_state = 95}, - [3518] = {.lex_state = 88}, - [3519] = {.lex_state = 88}, + [3509] = {.lex_state = 81}, + [3510] = {.lex_state = 85}, + [3511] = {.lex_state = 81}, + [3512] = {.lex_state = 85}, + [3513] = {.lex_state = 81}, + [3514] = {.lex_state = 85}, + [3515] = {.lex_state = 81}, + [3516] = {.lex_state = 81}, + [3517] = {.lex_state = 256}, + [3518] = {.lex_state = 256}, + [3519] = {.lex_state = 95}, [3520] = {.lex_state = 95}, [3521] = {.lex_state = 88}, - [3522] = {.lex_state = 88}, - [3523] = {.lex_state = 95}, - [3524] = {.lex_state = 95}, - [3525] = {.lex_state = 256}, - [3526] = {.lex_state = 88}, - [3527] = {.lex_state = 95}, + [3522] = {.lex_state = 95}, + [3523] = {.lex_state = 90}, + [3524] = {.lex_state = 88}, + [3525] = {.lex_state = 95}, + [3526] = {.lex_state = 95}, + [3527] = {.lex_state = 88}, [3528] = {.lex_state = 88}, [3529] = {.lex_state = 95}, [3530] = {.lex_state = 95}, [3531] = {.lex_state = 88}, [3532] = {.lex_state = 88}, - [3533] = {.lex_state = 90}, - [3534] = {.lex_state = 88}, - [3535] = {.lex_state = 95}, + [3533] = {.lex_state = 95}, + [3534] = {.lex_state = 95}, + [3535] = {.lex_state = 88}, [3536] = {.lex_state = 88}, [3537] = {.lex_state = 95}, - [3538] = {.lex_state = 88}, - [3539] = {.lex_state = 95}, - [3540] = {.lex_state = 95}, - [3541] = {.lex_state = 88}, - [3542] = {.lex_state = 95}, - [3543] = {.lex_state = 0}, - [3544] = {.lex_state = 256}, - [3545] = {.lex_state = 88}, + [3538] = {.lex_state = 0}, + [3539] = {.lex_state = 256}, + [3540] = {.lex_state = 88}, + [3541] = {.lex_state = 95}, + [3542] = {.lex_state = 88}, + [3543] = {.lex_state = 88}, + [3544] = {.lex_state = 95}, + [3545] = {.lex_state = 95}, [3546] = {.lex_state = 95}, [3547] = {.lex_state = 88}, [3548] = {.lex_state = 95}, [3549] = {.lex_state = 95}, - [3550] = {.lex_state = 95}, - [3551] = {.lex_state = 88}, - [3552] = {.lex_state = 88}, - [3553] = {.lex_state = 95}, + [3550] = {.lex_state = 88}, + [3551] = {.lex_state = 95}, + [3552] = {.lex_state = 95}, + [3553] = {.lex_state = 88}, [3554] = {.lex_state = 95}, - [3555] = {.lex_state = 95}, - [3556] = {.lex_state = 88}, - [3557] = {.lex_state = 95}, - [3558] = {.lex_state = 88}, + [3555] = {.lex_state = 88}, + [3556] = {.lex_state = 95}, + [3557] = {.lex_state = 88}, + [3558] = {.lex_state = 95}, [3559] = {.lex_state = 88}, - [3560] = {.lex_state = 95}, - [3561] = {.lex_state = 88}, - [3562] = {.lex_state = 95}, + [3560] = {.lex_state = 88}, + [3561] = {.lex_state = 95}, + [3562] = {.lex_state = 88}, [3563] = {.lex_state = 95}, [3564] = {.lex_state = 88}, [3565] = {.lex_state = 95}, [3566] = {.lex_state = 88}, - [3567] = {.lex_state = 95}, - [3568] = {.lex_state = 88}, - [3569] = {.lex_state = 95}, - [3570] = {.lex_state = 88}, - [3571] = {.lex_state = 95}, - [3572] = {.lex_state = 88}, + [3567] = {.lex_state = 88}, + [3568] = {.lex_state = 95}, + [3569] = {.lex_state = 88}, + [3570] = {.lex_state = 34}, + [3571] = {.lex_state = 34}, + [3572] = {.lex_state = 95}, [3573] = {.lex_state = 88}, - [3574] = {.lex_state = 95}, + [3574] = {.lex_state = 85}, [3575] = {.lex_state = 88}, [3576] = {.lex_state = 95}, [3577] = {.lex_state = 95}, - [3578] = {.lex_state = 256}, - [3579] = {.lex_state = 88}, + [3578] = {.lex_state = 88}, + [3579] = {.lex_state = 95}, [3580] = {.lex_state = 95}, [3581] = {.lex_state = 88}, [3582] = {.lex_state = 95}, [3583] = {.lex_state = 88}, - [3584] = {.lex_state = 95}, - [3585] = {.lex_state = 0}, - [3586] = {.lex_state = 256}, - [3587] = {.lex_state = 34}, - [3588] = {.lex_state = 34}, + [3584] = {.lex_state = 88}, + [3585] = {.lex_state = 95}, + [3586] = {.lex_state = 88}, + [3587] = {.lex_state = 95}, + [3588] = {.lex_state = 88}, [3589] = {.lex_state = 256}, [3590] = {.lex_state = 95}, [3591] = {.lex_state = 88}, [3592] = {.lex_state = 95}, - [3593] = {.lex_state = 88}, + [3593] = {.lex_state = 256}, [3594] = {.lex_state = 88}, [3595] = {.lex_state = 88}, [3596] = {.lex_state = 95}, [3597] = {.lex_state = 95}, [3598] = {.lex_state = 88}, - [3599] = {.lex_state = 95}, - [3600] = {.lex_state = 256}, + [3599] = {.lex_state = 88}, + [3600] = {.lex_state = 88}, [3601] = {.lex_state = 88}, - [3602] = {.lex_state = 88}, + [3602] = {.lex_state = 256}, [3603] = {.lex_state = 95}, [3604] = {.lex_state = 88}, - [3605] = {.lex_state = 256}, + [3605] = {.lex_state = 0}, [3606] = {.lex_state = 95}, - [3607] = {.lex_state = 88}, + [3607] = {.lex_state = 95}, [3608] = {.lex_state = 95}, - [3609] = {.lex_state = 95}, - [3610] = {.lex_state = 88}, + [3609] = {.lex_state = 88}, + [3610] = {.lex_state = 95}, [3611] = {.lex_state = 95}, [3612] = {.lex_state = 88}, - [3613] = {.lex_state = 95}, - [3614] = {.lex_state = 88}, - [3615] = {.lex_state = 95}, - [3616] = {.lex_state = 88}, - [3617] = {.lex_state = 95}, - [3618] = {.lex_state = 88}, - [3619] = {.lex_state = 95}, - [3620] = {.lex_state = 256}, - [3621] = {.lex_state = 88}, - [3622] = {.lex_state = 85}, - [3623] = {.lex_state = 85}, - [3624] = {.lex_state = 85}, - [3625] = {.lex_state = 0}, - [3626] = {.lex_state = 256}, - [3627] = {.lex_state = 0}, - [3628] = {.lex_state = 85}, - [3629] = {.lex_state = 85}, - [3630] = {.lex_state = 0}, + [3613] = {.lex_state = 88}, + [3614] = {.lex_state = 95}, + [3615] = {.lex_state = 88}, + [3616] = {.lex_state = 256}, + [3617] = {.lex_state = 88}, + [3618] = {.lex_state = 95}, + [3619] = {.lex_state = 85}, + [3620] = {.lex_state = 88}, + [3621] = {.lex_state = 95}, + [3622] = {.lex_state = 256}, + [3623] = {.lex_state = 88}, + [3624] = {.lex_state = 95}, + [3625] = {.lex_state = 95}, + [3626] = {.lex_state = 88}, + [3627] = {.lex_state = 88}, + [3628] = {.lex_state = 88}, + [3629] = {.lex_state = 95}, + [3630] = {.lex_state = 256}, [3631] = {.lex_state = 0}, [3632] = {.lex_state = 85}, - [3633] = {.lex_state = 0}, + [3633] = {.lex_state = 85}, [3634] = {.lex_state = 0}, - [3635] = {.lex_state = 34}, - [3636] = {.lex_state = 85}, - [3637] = {.lex_state = 256}, - [3638] = {.lex_state = 81}, - [3639] = {.lex_state = 81}, - [3640] = {.lex_state = 81}, + [3635] = {.lex_state = 260}, + [3636] = {.lex_state = 81}, + [3637] = {.lex_state = 81}, + [3638] = {.lex_state = 0}, + [3639] = {.lex_state = 85}, + [3640] = {.lex_state = 256}, [3641] = {.lex_state = 81}, - [3642] = {.lex_state = 34}, + [3642] = {.lex_state = 81}, [3643] = {.lex_state = 256}, - [3644] = {.lex_state = 256}, - [3645] = {.lex_state = 81}, - [3646] = {.lex_state = 34}, - [3647] = {.lex_state = 81}, - [3648] = {.lex_state = 256}, - [3649] = {.lex_state = 85}, - [3650] = {.lex_state = 0}, + [3644] = {.lex_state = 0}, + [3645] = {.lex_state = 256}, + [3646] = {.lex_state = 256}, + [3647] = {.lex_state = 34}, + [3648] = {.lex_state = 85}, + [3649] = {.lex_state = 81}, + [3650] = {.lex_state = 85}, [3651] = {.lex_state = 256}, - [3652] = {.lex_state = 0}, + [3652] = {.lex_state = 81}, [3653] = {.lex_state = 81}, - [3654] = {.lex_state = 81}, - [3655] = {.lex_state = 256}, - [3656] = {.lex_state = 256}, - [3657] = {.lex_state = 85}, + [3654] = {.lex_state = 0}, + [3655] = {.lex_state = 85}, + [3656] = {.lex_state = 0}, + [3657] = {.lex_state = 34}, [3658] = {.lex_state = 0}, - [3659] = {.lex_state = 0}, - [3660] = {.lex_state = 85}, + [3659] = {.lex_state = 34}, + [3660] = {.lex_state = 81}, [3661] = {.lex_state = 0}, - [3662] = {.lex_state = 0}, - [3663] = {.lex_state = 90}, - [3664] = {.lex_state = 69}, + [3662] = {.lex_state = 85}, + [3663] = {.lex_state = 69}, + [3664] = {.lex_state = 0}, [3665] = {.lex_state = 85}, - [3666] = {.lex_state = 0}, - [3667] = {.lex_state = 69}, + [3666] = {.lex_state = 81}, + [3667] = {.lex_state = 85}, [3668] = {.lex_state = 0}, - [3669] = {.lex_state = 0}, - [3670] = {.lex_state = 256}, + [3669] = {.lex_state = 85}, + [3670] = {.lex_state = 69}, [3671] = {.lex_state = 0}, - [3672] = {.lex_state = 0}, - [3673] = {.lex_state = 0}, - [3674] = {.lex_state = 0}, - [3675] = {.lex_state = 0}, - [3676] = {.lex_state = 90}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 85}, - [3679] = {.lex_state = 260}, - [3680] = {.lex_state = 85}, - [3681] = {.lex_state = 0}, - [3682] = {.lex_state = 256}, - [3683] = {.lex_state = 260}, + [3672] = {.lex_state = 69}, + [3673] = {.lex_state = 85}, + [3674] = {.lex_state = 85}, + [3675] = {.lex_state = 85}, + [3676] = {.lex_state = 85}, + [3677] = {.lex_state = 69}, + [3678] = {.lex_state = 69}, + [3679] = {.lex_state = 0}, + [3680] = {.lex_state = 69}, + [3681] = {.lex_state = 85}, + [3682] = {.lex_state = 85}, + [3683] = {.lex_state = 0}, [3684] = {.lex_state = 0}, - [3685] = {.lex_state = 85}, - [3686] = {.lex_state = 95}, + [3685] = {.lex_state = 0}, + [3686] = {.lex_state = 0}, [3687] = {.lex_state = 0}, - [3688] = {.lex_state = 69}, - [3689] = {.lex_state = 256}, - [3690] = {.lex_state = 69}, - [3691] = {.lex_state = 85}, + [3688] = {.lex_state = 85}, + [3689] = {.lex_state = 69}, + [3690] = {.lex_state = 85}, + [3691] = {.lex_state = 0}, [3692] = {.lex_state = 69}, - [3693] = {.lex_state = 85}, - [3694] = {.lex_state = 95}, - [3695] = {.lex_state = 0}, - [3696] = {.lex_state = 69}, - [3697] = {.lex_state = 85}, - [3698] = {.lex_state = 69}, - [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 256}, - [3701] = {.lex_state = 81}, - [3702] = {.lex_state = 256}, + [3693] = {.lex_state = 0}, + [3694] = {.lex_state = 69}, + [3695] = {.lex_state = 69}, + [3696] = {.lex_state = 85}, + [3697] = {.lex_state = 69}, + [3698] = {.lex_state = 256}, + [3699] = {.lex_state = 85}, + [3700] = {.lex_state = 0}, + [3701] = {.lex_state = 256}, + [3702] = {.lex_state = 85}, [3703] = {.lex_state = 0}, [3704] = {.lex_state = 0}, - [3705] = {.lex_state = 95}, - [3706] = {.lex_state = 81}, - [3707] = {.lex_state = 69}, - [3708] = {.lex_state = 0}, - [3709] = {.lex_state = 256}, - [3710] = {.lex_state = 85}, + [3705] = {.lex_state = 256}, + [3706] = {.lex_state = 256}, + [3707] = {.lex_state = 0}, + [3708] = {.lex_state = 85}, + [3709] = {.lex_state = 0}, + [3710] = {.lex_state = 0}, [3711] = {.lex_state = 0}, [3712] = {.lex_state = 85}, - [3713] = {.lex_state = 69}, - [3714] = {.lex_state = 85}, - [3715] = {.lex_state = 85}, - [3716] = {.lex_state = 0}, + [3713] = {.lex_state = 256}, + [3714] = {.lex_state = 260}, + [3715] = {.lex_state = 0}, + [3716] = {.lex_state = 256}, [3717] = {.lex_state = 0}, - [3718] = {.lex_state = 69}, + [3718] = {.lex_state = 0}, [3719] = {.lex_state = 0}, - [3720] = {.lex_state = 69}, - [3721] = {.lex_state = 85}, + [3720] = {.lex_state = 260}, + [3721] = {.lex_state = 0}, [3722] = {.lex_state = 85}, - [3723] = {.lex_state = 69}, - [3724] = {.lex_state = 85}, - [3725] = {.lex_state = 256}, - [3726] = {.lex_state = 85}, + [3723] = {.lex_state = 0}, + [3724] = {.lex_state = 69}, + [3725] = {.lex_state = 85}, + [3726] = {.lex_state = 69}, [3727] = {.lex_state = 69}, - [3728] = {.lex_state = 69}, - [3729] = {.lex_state = 0}, + [3728] = {.lex_state = 85}, + [3729] = {.lex_state = 85}, [3730] = {.lex_state = 85}, - [3731] = {.lex_state = 85}, + [3731] = {.lex_state = 69}, [3732] = {.lex_state = 69}, - [3733] = {.lex_state = 85}, - [3734] = {.lex_state = 85}, - [3735] = {.lex_state = 0}, - [3736] = {.lex_state = 0}, - [3737] = {.lex_state = 81}, - [3738] = {.lex_state = 85}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 85}, - [3741] = {.lex_state = 256}, - [3742] = {.lex_state = 256}, + [3733] = {.lex_state = 256}, + [3734] = {.lex_state = 256}, + [3735] = {.lex_state = 85}, + [3736] = {.lex_state = 85}, + [3737] = {.lex_state = 85}, + [3738] = {.lex_state = 69}, + [3739] = {.lex_state = 256}, + [3740] = {.lex_state = 90}, + [3741] = {.lex_state = 85}, + [3742] = {.lex_state = 85}, [3743] = {.lex_state = 256}, - [3744] = {.lex_state = 256}, - [3745] = {.lex_state = 256}, - [3746] = {.lex_state = 69}, - [3747] = {.lex_state = 256}, - [3748] = {.lex_state = 256}, - [3749] = {.lex_state = 85}, + [3744] = {.lex_state = 0}, + [3745] = {.lex_state = 69}, + [3746] = {.lex_state = 88}, + [3747] = {.lex_state = 85}, + [3748] = {.lex_state = 69}, + [3749] = {.lex_state = 0}, [3750] = {.lex_state = 256}, [3751] = {.lex_state = 0}, - [3752] = {.lex_state = 0}, - [3753] = {.lex_state = 256}, - [3754] = {.lex_state = 85}, - [3755] = {.lex_state = 0}, - [3756] = {.lex_state = 0}, - [3757] = {.lex_state = 85}, - [3758] = {.lex_state = 85}, - [3759] = {.lex_state = 0}, - [3760] = {.lex_state = 256}, - [3761] = {.lex_state = 0}, - [3762] = {.lex_state = 85}, - [3763] = {.lex_state = 69}, + [3752] = {.lex_state = 69}, + [3753] = {.lex_state = 85}, + [3754] = {.lex_state = 256}, + [3755] = {.lex_state = 95}, + [3756] = {.lex_state = 95}, + [3757] = {.lex_state = 0}, + [3758] = {.lex_state = 69}, + [3759] = {.lex_state = 85}, + [3760] = {.lex_state = 0}, + [3761] = {.lex_state = 88}, + [3762] = {.lex_state = 256}, + [3763] = {.lex_state = 256}, [3764] = {.lex_state = 0}, - [3765] = {.lex_state = 260}, - [3766] = {.lex_state = 0}, + [3765] = {.lex_state = 85}, + [3766] = {.lex_state = 88}, [3767] = {.lex_state = 0}, [3768] = {.lex_state = 256}, [3769] = {.lex_state = 85}, - [3770] = {.lex_state = 0}, - [3771] = {.lex_state = 69}, - [3772] = {.lex_state = 85}, - [3773] = {.lex_state = 0}, - [3774] = {.lex_state = 95}, + [3770] = {.lex_state = 88}, + [3771] = {.lex_state = 0}, + [3772] = {.lex_state = 0}, + [3773] = {.lex_state = 95}, + [3774] = {.lex_state = 0}, [3775] = {.lex_state = 85}, - [3776] = {.lex_state = 85}, - [3777] = {.lex_state = 0}, - [3778] = {.lex_state = 69}, + [3776] = {.lex_state = 256}, + [3777] = {.lex_state = 95}, + [3778] = {.lex_state = 256}, [3779] = {.lex_state = 69}, - [3780] = {.lex_state = 85}, - [3781] = {.lex_state = 69}, - [3782] = {.lex_state = 69}, - [3783] = {.lex_state = 69}, - [3784] = {.lex_state = 85}, - [3785] = {.lex_state = 85}, - [3786] = {.lex_state = 85}, - [3787] = {.lex_state = 85}, - [3788] = {.lex_state = 256}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 0}, - [3791] = {.lex_state = 256}, - [3792] = {.lex_state = 0}, - [3793] = {.lex_state = 0}, + [3780] = {.lex_state = 0}, + [3781] = {.lex_state = 256}, + [3782] = {.lex_state = 0}, + [3783] = {.lex_state = 85}, + [3784] = {.lex_state = 81}, + [3785] = {.lex_state = 0}, + [3786] = {.lex_state = 256}, + [3787] = {.lex_state = 0}, + [3788] = {.lex_state = 85}, + [3789] = {.lex_state = 85}, + [3790] = {.lex_state = 256}, + [3791] = {.lex_state = 0}, + [3792] = {.lex_state = 69}, + [3793] = {.lex_state = 85}, [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 256}, - [3796] = {.lex_state = 0}, - [3797] = {.lex_state = 0}, - [3798] = {.lex_state = 88}, - [3799] = {.lex_state = 0}, - [3800] = {.lex_state = 85}, - [3801] = {.lex_state = 85}, - [3802] = {.lex_state = 69}, - [3803] = {.lex_state = 88}, - [3804] = {.lex_state = 85}, + [3795] = {.lex_state = 0}, + [3796] = {.lex_state = 85}, + [3797] = {.lex_state = 85}, + [3798] = {.lex_state = 0}, + [3799] = {.lex_state = 69}, + [3800] = {.lex_state = 69}, + [3801] = {.lex_state = 256}, + [3802] = {.lex_state = 256}, + [3803] = {.lex_state = 256}, + [3804] = {.lex_state = 0}, [3805] = {.lex_state = 0}, - [3806] = {.lex_state = 0}, - [3807] = {.lex_state = 88}, - [3808] = {.lex_state = 85}, - [3809] = {.lex_state = 85}, - [3810] = {.lex_state = 69}, - [3811] = {.lex_state = 0}, + [3806] = {.lex_state = 85}, + [3807] = {.lex_state = 69}, + [3808] = {.lex_state = 0}, + [3809] = {.lex_state = 69}, + [3810] = {.lex_state = 85}, + [3811] = {.lex_state = 69}, [3812] = {.lex_state = 256}, - [3813] = {.lex_state = 88}, - [3814] = {.lex_state = 256}, - [3815] = {.lex_state = 69}, - [3816] = {.lex_state = 69}, + [3813] = {.lex_state = 85}, + [3814] = {.lex_state = 0}, + [3815] = {.lex_state = 0}, + [3816] = {.lex_state = 0}, [3817] = {.lex_state = 0}, - [3818] = {.lex_state = 85}, - [3819] = {.lex_state = 69}, - [3820] = {.lex_state = 85}, - [3821] = {.lex_state = 256}, - [3822] = {.lex_state = 0}, - [3823] = {.lex_state = 85}, - [3824] = {.lex_state = 69}, - [3825] = {.lex_state = 69}, - [3826] = {.lex_state = 89}, + [3818] = {.lex_state = 260}, + [3819] = {.lex_state = 90}, + [3820] = {.lex_state = 81}, + [3821] = {.lex_state = 0}, + [3822] = {.lex_state = 85}, + [3823] = {.lex_state = 0}, + [3824] = {.lex_state = 256}, + [3825] = {.lex_state = 85}, + [3826] = {.lex_state = 0}, [3827] = {.lex_state = 0}, - [3828] = {.lex_state = 0}, - [3829] = {.lex_state = 89}, - [3830] = {.lex_state = 96}, - [3831] = {.lex_state = 85}, - [3832] = {.lex_state = 0}, - [3833] = {.lex_state = 0}, - [3834] = {.lex_state = 85}, - [3835] = {.lex_state = 0}, + [3828] = {.lex_state = 69}, + [3829] = {.lex_state = 0}, + [3830] = {.lex_state = 85}, + [3831] = {.lex_state = 69}, + [3832] = {.lex_state = 256}, + [3833] = {.lex_state = 96}, + [3834] = {.lex_state = 89}, + [3835] = {.lex_state = 89}, [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 85}, + [3837] = {.lex_state = 0}, [3838] = {.lex_state = 0}, - [3839] = {.lex_state = 89}, + [3839] = {.lex_state = 0}, [3840] = {.lex_state = 96}, [3841] = {.lex_state = 0}, - [3842] = {.lex_state = 85}, + [3842] = {.lex_state = 0}, [3843] = {.lex_state = 0}, [3844] = {.lex_state = 0}, [3845] = {.lex_state = 0}, - [3846] = {.lex_state = 0}, - [3847] = {.lex_state = 89}, - [3848] = {.lex_state = 96}, + [3846] = {.lex_state = 260}, + [3847] = {.lex_state = 0}, + [3848] = {.lex_state = 0}, [3849] = {.lex_state = 0}, [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 85}, + [3851] = {.lex_state = 96}, [3852] = {.lex_state = 89}, - [3853] = {.lex_state = 96}, - [3854] = {.lex_state = 96}, - [3855] = {.lex_state = 89}, + [3853] = {.lex_state = 0}, + [3854] = {.lex_state = 85}, + [3855] = {.lex_state = 85}, [3856] = {.lex_state = 0}, - [3857] = {.lex_state = 89}, - [3858] = {.lex_state = 96}, - [3859] = {.lex_state = 69}, - [3860] = {.lex_state = 85}, - [3861] = {.lex_state = 85}, - [3862] = {.lex_state = 81}, + [3857] = {.lex_state = 0}, + [3858] = {.lex_state = 0}, + [3859] = {.lex_state = 0}, + [3860] = {.lex_state = 89}, + [3861] = {.lex_state = 96}, + [3862] = {.lex_state = 0}, [3863] = {.lex_state = 0}, - [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 0}, + [3864] = {.lex_state = 81}, + [3865] = {.lex_state = 85}, [3866] = {.lex_state = 0}, [3867] = {.lex_state = 0}, - [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 96}, + [3868] = {.lex_state = 89}, + [3869] = {.lex_state = 0}, [3870] = {.lex_state = 0}, [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 260}, + [3872] = {.lex_state = 0}, [3873] = {.lex_state = 0}, [3874] = {.lex_state = 0}, [3875] = {.lex_state = 0}, [3876] = {.lex_state = 0}, [3877] = {.lex_state = 0}, - [3878] = {.lex_state = 0}, - [3879] = {.lex_state = 0}, - [3880] = {.lex_state = 0}, - [3881] = {.lex_state = 0}, - [3882] = {.lex_state = 0}, - [3883] = {.lex_state = 85}, - [3884] = {.lex_state = 89}, - [3885] = {.lex_state = 96}, - [3886] = {.lex_state = 69}, + [3878] = {.lex_state = 96}, + [3879] = {.lex_state = 81}, + [3880] = {.lex_state = 85}, + [3881] = {.lex_state = 89}, + [3882] = {.lex_state = 96}, + [3883] = {.lex_state = 89}, + [3884] = {.lex_state = 0}, + [3885] = {.lex_state = 0}, + [3886] = {.lex_state = 96}, [3887] = {.lex_state = 0}, - [3888] = {.lex_state = 0}, + [3888] = {.lex_state = 89}, [3889] = {.lex_state = 89}, [3890] = {.lex_state = 96}, - [3891] = {.lex_state = 85}, - [3892] = {.lex_state = 89}, - [3893] = {.lex_state = 96}, + [3891] = {.lex_state = 0}, + [3892] = {.lex_state = 0}, + [3893] = {.lex_state = 0}, [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 0}, - [3896] = {.lex_state = 89}, + [3895] = {.lex_state = 96}, + [3896] = {.lex_state = 0}, [3897] = {.lex_state = 0}, [3898] = {.lex_state = 0}, [3899] = {.lex_state = 0}, - [3900] = {.lex_state = 0}, - [3901] = {.lex_state = 85}, + [3900] = {.lex_state = 96}, + [3901] = {.lex_state = 0}, [3902] = {.lex_state = 0}, [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 0}, - [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 85}, - [3908] = {.lex_state = 0}, + [3904] = {.lex_state = 89}, + [3905] = {.lex_state = 260}, + [3906] = {.lex_state = 85}, + [3907] = {.lex_state = 0}, + [3908] = {.lex_state = 260}, [3909] = {.lex_state = 0}, - [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 81}, - [3912] = {.lex_state = 85}, - [3913] = {.lex_state = 89}, - [3914] = {.lex_state = 0}, + [3910] = {.lex_state = 89}, + [3911] = {.lex_state = 96}, + [3912] = {.lex_state = 0}, + [3913] = {.lex_state = 69}, + [3914] = {.lex_state = 69}, [3915] = {.lex_state = 96}, - [3916] = {.lex_state = 0}, + [3916] = {.lex_state = 89}, [3917] = {.lex_state = 0}, [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 89}, - [3920] = {.lex_state = 96}, + [3919] = {.lex_state = 96}, + [3920] = {.lex_state = 89}, [3921] = {.lex_state = 0}, [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 96}, + [3923] = {.lex_state = 69}, + [3924] = {.lex_state = 0}, [3925] = {.lex_state = 0}, [3926] = {.lex_state = 0}, [3927] = {.lex_state = 0}, [3928] = {.lex_state = 0}, - [3929] = {.lex_state = 0}, + [3929] = {.lex_state = 85}, [3930] = {.lex_state = 0}, [3931] = {.lex_state = 0}, [3932] = {.lex_state = 85}, [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 0}, + [3934] = {.lex_state = 96}, + [3935] = {.lex_state = 89}, [3936] = {.lex_state = 0}, - [3937] = {.lex_state = 89}, - [3938] = {.lex_state = 96}, + [3937] = {.lex_state = 85}, + [3938] = {.lex_state = 85}, [3939] = {.lex_state = 0}, [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 260}, - [3942] = {.lex_state = 81}, - [3943] = {.lex_state = 96}, - [3944] = {.lex_state = 89}, + [3941] = {.lex_state = 0}, + [3942] = {.lex_state = 260}, + [3943] = {.lex_state = 0}, + [3944] = {.lex_state = 0}, [3945] = {.lex_state = 0}, [3946] = {.lex_state = 0}, - [3947] = {.lex_state = 96}, - [3948] = {.lex_state = 89}, + [3947] = {.lex_state = 0}, + [3948] = {.lex_state = 0}, [3949] = {.lex_state = 0}, [3950] = {.lex_state = 0}, [3951] = {.lex_state = 0}, [3952] = {.lex_state = 0}, [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 0}, - [3955] = {.lex_state = 85}, - [3956] = {.lex_state = 89}, - [3957] = {.lex_state = 96}, - [3958] = {.lex_state = 85}, + [3954] = {.lex_state = 85}, + [3955] = {.lex_state = 0}, + [3956] = {.lex_state = 260}, + [3957] = {.lex_state = 89}, + [3958] = {.lex_state = 0}, [3959] = {.lex_state = 89}, [3960] = {.lex_state = 96}, - [3961] = {.lex_state = 0}, + [3961] = {.lex_state = 85}, [3962] = {.lex_state = 0}, [3963] = {.lex_state = 0}, [3964] = {.lex_state = 0}, [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 89}, - [3967] = {.lex_state = 96}, + [3966] = {.lex_state = 85}, + [3967] = {.lex_state = 0}, [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 0}, + [3969] = {.lex_state = 85}, [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 0}, + [3971] = {.lex_state = 81}, [3972] = {.lex_state = 0}, [3973] = {.lex_state = 0}, [3974] = {.lex_state = 0}, [3975] = {.lex_state = 0}, [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 85}, + [3977] = {.lex_state = 0}, [3978] = {.lex_state = 0}, [3979] = {.lex_state = 0}, [3980] = {.lex_state = 0}, [3981] = {.lex_state = 0}, [3982] = {.lex_state = 0}, - [3983] = {.lex_state = 69}, - [3984] = {.lex_state = 0}, - [3985] = {.lex_state = 260}, - [3986] = {.lex_state = 85}, - [3987] = {.lex_state = 89}, - [3988] = {.lex_state = 96}, - [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 89}, - [3991] = {.lex_state = 89}, - [3992] = {.lex_state = 96}, - [3993] = {.lex_state = 96}, + [3983] = {.lex_state = 0}, + [3984] = {.lex_state = 81}, + [3985] = {.lex_state = 85}, + [3986] = {.lex_state = 0}, + [3987] = {.lex_state = 96}, + [3988] = {.lex_state = 89}, + [3989] = {.lex_state = 96}, + [3990] = {.lex_state = 0}, + [3991] = {.lex_state = 96}, + [3992] = {.lex_state = 0}, + [3993] = {.lex_state = 89}, [3994] = {.lex_state = 0}, [3995] = {.lex_state = 0}, [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 85}, + [3997] = {.lex_state = 89}, + [3998] = {.lex_state = 96}, [3999] = {.lex_state = 0}, [4000] = {.lex_state = 0}, [4001] = {.lex_state = 0}, - [4002] = {.lex_state = 85}, + [4002] = {.lex_state = 0}, [4003] = {.lex_state = 0}, [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 89}, + [4005] = {.lex_state = 0}, [4006] = {.lex_state = 0}, [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 96}, + [4008] = {.lex_state = 0}, [4009] = {.lex_state = 0}, [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 0}, + [4011] = {.lex_state = 96}, [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 0}, + [4013] = {.lex_state = 89}, + [4014] = {.lex_state = 85}, [4015] = {.lex_state = 0}, [4016] = {.lex_state = 0}, - [4017] = {.lex_state = 81}, + [4017] = {.lex_state = 0}, [4018] = {.lex_state = 0}, [4019] = {.lex_state = 0}, [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 85}, - [4024] = {.lex_state = 0}, - [4025] = {.lex_state = 0}, - [4026] = {.lex_state = 260}, + [4021] = {.lex_state = 85}, + [4022] = {.lex_state = 85}, + [4023] = {.lex_state = 89}, + [4024] = {.lex_state = 96}, + [4025] = {.lex_state = 85}, + [4026] = {.lex_state = 0}, [4027] = {.lex_state = 0}, - [4028] = {.lex_state = 85}, + [4028] = {.lex_state = 0}, [4029] = {.lex_state = 0}, [4030] = {.lex_state = 0}, [4031] = {.lex_state = 0}, [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 0}, - [4034] = {.lex_state = 85}, - [4035] = {.lex_state = 89}, + [4033] = {.lex_state = 85}, + [4034] = {.lex_state = 0}, + [4035] = {.lex_state = 0}, [4036] = {.lex_state = 96}, - [4037] = {.lex_state = 0}, + [4037] = {.lex_state = 89}, [4038] = {.lex_state = 0}, [4039] = {.lex_state = 0}, [4040] = {.lex_state = 0}, - [4041] = {.lex_state = 85}, - [4042] = {.lex_state = 0}, - [4043] = {.lex_state = 0}, + [4041] = {.lex_state = 260}, + [4042] = {.lex_state = 85}, + [4043] = {.lex_state = 89}, [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 0}, - [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 0}, - [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 0}, + [4045] = {.lex_state = 96}, + [4046] = {.lex_state = 96}, + [4047] = {.lex_state = 89}, + [4048] = {.lex_state = 85}, + [4049] = {.lex_state = 85}, [4050] = {.lex_state = 0}, - [4051] = {.lex_state = 0}, + [4051] = {.lex_state = 85}, [4052] = {.lex_state = 0}, [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 89}, - [4055] = {.lex_state = 96}, + [4054] = {.lex_state = 0}, + [4055] = {.lex_state = 0}, [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 81}, + [4057] = {.lex_state = 0}, [4058] = {.lex_state = 0}, [4059] = {.lex_state = 0}, [4060] = {.lex_state = 0}, @@ -21756,18 +21809,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4063] = {.lex_state = 0}, [4064] = {.lex_state = 0}, [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 85}, + [4066] = {.lex_state = 0}, [4067] = {.lex_state = 0}, [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 85}, - [4074] = {.lex_state = 85}, + [4069] = {.lex_state = 96}, + [4070] = {.lex_state = 89}, + [4071] = {.lex_state = 85}, + [4072] = {.lex_state = 81}, + [4073] = {.lex_state = 0}, + [4074] = {.lex_state = 0}, [4075] = {.lex_state = 0}, [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 85}, + [4077] = {.lex_state = 0}, [4078] = {.lex_state = 0}, [4079] = {.lex_state = 0}, [4080] = {.lex_state = 0}, @@ -21775,7 +21828,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4082] = {.lex_state = 0}, [4083] = {.lex_state = 85}, [4084] = {.lex_state = 0}, - [4085] = {.lex_state = 0}, + [4085] = {.lex_state = 85}, [4086] = {.lex_state = 0}, [4087] = {.lex_state = 0}, [4088] = {.lex_state = 0}, @@ -21784,10 +21837,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4091] = {.lex_state = 0}, [4092] = {.lex_state = 0}, [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 0}, + [4094] = {.lex_state = 85}, [4095] = {.lex_state = 0}, [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 85}, + [4097] = {.lex_state = 0}, [4098] = {.lex_state = 0}, [4099] = {.lex_state = 0}, [4100] = {.lex_state = 0}, @@ -21800,19 +21853,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4107] = {.lex_state = 0}, [4108] = {.lex_state = 0}, [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 85}, + [4110] = {.lex_state = 0}, [4111] = {.lex_state = 0}, [4112] = {.lex_state = 0}, [4113] = {.lex_state = 0}, [4114] = {.lex_state = 0}, - [4115] = {.lex_state = 85}, - [4116] = {.lex_state = 0}, + [4115] = {.lex_state = 0}, + [4116] = {.lex_state = 85}, [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 0}, + [4118] = {.lex_state = 85}, [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 0}, + [4120] = {.lex_state = 85}, [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 0}, + [4122] = {.lex_state = 85}, [4123] = {.lex_state = 0}, [4124] = {.lex_state = 0}, [4125] = {.lex_state = 0}, @@ -21820,28 +21873,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4127] = {.lex_state = 0}, [4128] = {.lex_state = 0}, [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 85}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 0}, + [4130] = {.lex_state = 0}, + [4131] = {.lex_state = 85}, + [4132] = {.lex_state = 85}, [4133] = {.lex_state = 0}, [4134] = {.lex_state = 0}, [4135] = {.lex_state = 0}, - [4136] = {.lex_state = 85}, + [4136] = {.lex_state = 0}, [4137] = {.lex_state = 0}, [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 0}, + [4139] = {.lex_state = 85}, [4140] = {.lex_state = 0}, [4141] = {.lex_state = 0}, [4142] = {.lex_state = 0}, [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 0}, + [4144] = {.lex_state = 85}, [4145] = {.lex_state = 0}, [4146] = {.lex_state = 0}, [4147] = {.lex_state = 0}, [4148] = {.lex_state = 85}, - [4149] = {.lex_state = 85}, + [4149] = {.lex_state = 0}, [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, + [4151] = {.lex_state = 85}, [4152] = {.lex_state = 0}, [4153] = {.lex_state = 0}, [4154] = {.lex_state = 0}, @@ -21853,35 +21906,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4160] = {.lex_state = 0}, [4161] = {.lex_state = 0}, [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 0}, - [4165] = {.lex_state = 0}, + [4163] = {.lex_state = 85}, + [4164] = {.lex_state = 69}, + [4165] = {.lex_state = 85}, [4166] = {.lex_state = 0}, [4167] = {.lex_state = 0}, [4168] = {.lex_state = 0}, [4169] = {.lex_state = 0}, [4170] = {.lex_state = 0}, - [4171] = {.lex_state = 85}, + [4171] = {.lex_state = 0}, [4172] = {.lex_state = 0}, [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 85}, - [4175] = {.lex_state = 85}, - [4176] = {.lex_state = 69}, + [4174] = {.lex_state = 0}, + [4175] = {.lex_state = 0}, + [4176] = {.lex_state = 0}, [4177] = {.lex_state = 0}, [4178] = {.lex_state = 0}, - [4179] = {.lex_state = 0}, - [4180] = {.lex_state = 85}, - [4181] = {.lex_state = 0}, + [4179] = {.lex_state = 85}, + [4180] = {.lex_state = 0}, + [4181] = {.lex_state = 85}, [4182] = {.lex_state = 0}, [4183] = {.lex_state = 0}, [4184] = {.lex_state = 0}, [4185] = {.lex_state = 0}, [4186] = {.lex_state = 0}, [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 85}, + [4188] = {.lex_state = 0}, [4189] = {.lex_state = 0}, [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 85}, + [4191] = {.lex_state = 0}, [4192] = {.lex_state = 0}, [4193] = {.lex_state = 0}, [4194] = {.lex_state = 0}, @@ -21890,84 +21943,84 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4197] = {.lex_state = 0}, [4198] = {.lex_state = 0}, [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 0}, + [4200] = {.lex_state = 85}, [4201] = {.lex_state = 0}, [4202] = {.lex_state = 0}, [4203] = {.lex_state = 0}, [4204] = {.lex_state = 0}, [4205] = {.lex_state = 0}, [4206] = {.lex_state = 0}, - [4207] = {.lex_state = 85}, + [4207] = {.lex_state = 0}, [4208] = {.lex_state = 0}, [4209] = {.lex_state = 0}, [4210] = {.lex_state = 0}, [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 85}, + [4212] = {.lex_state = 0}, [4213] = {.lex_state = 0}, [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 85}, + [4215] = {.lex_state = 0}, [4216] = {.lex_state = 0}, [4217] = {.lex_state = 0}, [4218] = {.lex_state = 85}, [4219] = {.lex_state = 0}, - [4220] = {.lex_state = 0}, + [4220] = {.lex_state = 69}, [4221] = {.lex_state = 0}, - [4222] = {.lex_state = 85}, + [4222] = {.lex_state = 0}, [4223] = {.lex_state = 0}, [4224] = {.lex_state = 0}, [4225] = {.lex_state = 0}, [4226] = {.lex_state = 0}, - [4227] = {.lex_state = 85}, + [4227] = {.lex_state = 0}, [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 0}, + [4229] = {.lex_state = 85}, [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 = 85}, + [4238] = {.lex_state = 0}, [4239] = {.lex_state = 0}, [4240] = {.lex_state = 0}, [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 85}, + [4242] = {.lex_state = 0}, [4243] = {.lex_state = 0}, [4244] = {.lex_state = 0}, [4245] = {.lex_state = 0}, [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 69}, + [4247] = {.lex_state = 0}, [4248] = {.lex_state = 0}, [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 69}, + [4250] = {.lex_state = 85}, [4251] = {.lex_state = 0}, [4252] = {.lex_state = 0}, [4253] = {.lex_state = 0}, [4254] = {.lex_state = 0}, [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 85}, + [4256] = {.lex_state = 0}, [4257] = {.lex_state = 0}, [4258] = {.lex_state = 0}, [4259] = {.lex_state = 0}, [4260] = {.lex_state = 0}, [4261] = {.lex_state = 0}, [4262] = {.lex_state = 0}, - [4263] = {.lex_state = 0}, + [4263] = {.lex_state = 85}, [4264] = {.lex_state = 0}, - [4265] = {.lex_state = 85}, + [4265] = {.lex_state = 0}, [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 0}, + [4267] = {.lex_state = 85}, [4268] = {.lex_state = 0}, [4269] = {.lex_state = 0}, - [4270] = {.lex_state = 0}, + [4270] = {.lex_state = 85}, [4271] = {.lex_state = 0}, [4272] = {.lex_state = 0}, [4273] = {.lex_state = 0}, [4274] = {.lex_state = 0}, [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 0}, + [4276] = {.lex_state = 85}, + [4277] = {.lex_state = 85}, [4278] = {.lex_state = 0}, [4279] = {.lex_state = 0}, [4280] = {.lex_state = 0}, @@ -21977,26 +22030,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4284] = {.lex_state = 0}, [4285] = {.lex_state = 0}, [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 85}, + [4287] = {.lex_state = 260}, [4288] = {.lex_state = 0}, [4289] = {.lex_state = 0}, [4290] = {.lex_state = 0}, [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 0}, + [4292] = {.lex_state = 85}, [4293] = {.lex_state = 0}, [4294] = {.lex_state = 0}, [4295] = {.lex_state = 0}, [4296] = {.lex_state = 0}, - [4297] = {.lex_state = 85}, + [4297] = {.lex_state = 0}, [4298] = {.lex_state = 0}, [4299] = {.lex_state = 0}, [4300] = {.lex_state = 0}, [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 85}, + [4302] = {.lex_state = 85}, + [4303] = {.lex_state = 0}, [4304] = {.lex_state = 0}, - [4305] = {.lex_state = 85}, - [4306] = {.lex_state = 0}, + [4305] = {.lex_state = 0}, + [4306] = {.lex_state = 85}, [4307] = {.lex_state = 0}, [4308] = {.lex_state = 0}, [4309] = {.lex_state = 0}, @@ -22006,19 +22059,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4313] = {.lex_state = 0}, [4314] = {.lex_state = 0}, [4315] = {.lex_state = 0}, - [4316] = {.lex_state = 0}, + [4316] = {.lex_state = 85}, [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 0}, + [4318] = {.lex_state = 85}, [4319] = {.lex_state = 85}, [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 85}, + [4321] = {.lex_state = 0}, [4322] = {.lex_state = 0}, [4323] = {.lex_state = 0}, [4324] = {.lex_state = 0}, [4325] = {.lex_state = 0}, [4326] = {.lex_state = 0}, [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 0}, + [4328] = {.lex_state = 85}, [4329] = {.lex_state = 0}, [4330] = {.lex_state = 0}, [4331] = {.lex_state = 0}, @@ -22026,86 +22079,86 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4333] = {.lex_state = 0}, [4334] = {.lex_state = 0}, [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 85}, - [4337] = {.lex_state = 85}, + [4336] = {.lex_state = 0}, + [4337] = {.lex_state = 0}, [4338] = {.lex_state = 0}, [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 85}, - [4341] = {.lex_state = 85}, - [4342] = {.lex_state = 85}, + [4340] = {.lex_state = 0}, + [4341] = {.lex_state = 0}, + [4342] = {.lex_state = 0}, [4343] = {.lex_state = 0}, [4344] = {.lex_state = 0}, [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 85}, - [4347] = {.lex_state = 0}, + [4346] = {.lex_state = 0}, + [4347] = {.lex_state = 85}, [4348] = {.lex_state = 0}, [4349] = {.lex_state = 0}, - [4350] = {.lex_state = 0}, + [4350] = {.lex_state = 85}, [4351] = {.lex_state = 0}, [4352] = {.lex_state = 0}, [4353] = {.lex_state = 0}, [4354] = {.lex_state = 0}, [4355] = {.lex_state = 0}, [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 0}, + [4357] = {.lex_state = 85}, + [4358] = {.lex_state = 85}, [4359] = {.lex_state = 0}, [4360] = {.lex_state = 0}, [4361] = {.lex_state = 0}, [4362] = {.lex_state = 0}, - [4363] = {.lex_state = 85}, - [4364] = {.lex_state = 0}, + [4363] = {.lex_state = 0}, + [4364] = {.lex_state = 85}, [4365] = {.lex_state = 0}, - [4366] = {.lex_state = 0}, + [4366] = {.lex_state = 85}, [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 85}, + [4368] = {.lex_state = 0}, [4369] = {.lex_state = 0}, [4370] = {.lex_state = 0}, [4371] = {.lex_state = 85}, - [4372] = {.lex_state = 0}, + [4372] = {.lex_state = 85}, [4373] = {.lex_state = 0}, [4374] = {.lex_state = 0}, [4375] = {.lex_state = 0}, - [4376] = {.lex_state = 0}, + [4376] = {.lex_state = 85}, [4377] = {.lex_state = 0}, [4378] = {.lex_state = 0}, [4379] = {.lex_state = 0}, [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 0}, + [4381] = {.lex_state = 69}, [4382] = {.lex_state = 0}, - [4383] = {.lex_state = 85}, + [4383] = {.lex_state = 0}, [4384] = {.lex_state = 0}, [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 161}, - [4387] = {.lex_state = 0}, + [4386] = {.lex_state = 0}, + [4387] = {.lex_state = 85}, [4388] = {.lex_state = 0}, [4389] = {.lex_state = 0}, [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 161}, + [4391] = {.lex_state = 0}, [4392] = {.lex_state = 0}, [4393] = {.lex_state = 0}, [4394] = {.lex_state = 0}, [4395] = {.lex_state = 0}, [4396] = {.lex_state = 0}, [4397] = {.lex_state = 0}, - [4398] = {.lex_state = 0}, + [4398] = {.lex_state = 161}, [4399] = {.lex_state = 0}, [4400] = {.lex_state = 0}, [4401] = {.lex_state = 0}, [4402] = {.lex_state = 0}, [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, + [4404] = {.lex_state = 85}, + [4405] = {.lex_state = 85}, [4406] = {.lex_state = 0}, - [4407] = {.lex_state = 161}, - [4408] = {.lex_state = 0}, + [4407] = {.lex_state = 0}, + [4408] = {.lex_state = 161}, [4409] = {.lex_state = 0}, [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, + [4411] = {.lex_state = 85}, [4412] = {.lex_state = 85}, - [4413] = {.lex_state = 161}, + [4413] = {.lex_state = 0}, [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, + [4415] = {.lex_state = 41}, [4416] = {.lex_state = 0}, [4417] = {.lex_state = 0}, [4418] = {.lex_state = 0}, @@ -22116,59 +22169,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4423] = {.lex_state = 0}, [4424] = {.lex_state = 0}, [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 0}, + [4426] = {.lex_state = 161}, [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 161}, + [4428] = {.lex_state = 0}, [4429] = {.lex_state = 161}, - [4430] = {.lex_state = 85}, + [4430] = {.lex_state = 0}, [4431] = {.lex_state = 0}, [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 85}, - [4434] = {.lex_state = 85}, + [4433] = {.lex_state = 0}, + [4434] = {.lex_state = 0}, [4435] = {.lex_state = 0}, [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 85}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 0}, + [4437] = {.lex_state = 162}, + [4438] = {.lex_state = 0}, + [4439] = {.lex_state = 85}, + [4440] = {.lex_state = 85}, [4441] = {.lex_state = 0}, [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 85}, + [4443] = {.lex_state = 0}, [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 85}, - [4446] = {.lex_state = 41}, + [4445] = {.lex_state = 0}, + [4446] = {.lex_state = 85}, [4447] = {.lex_state = 0}, [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 161}, - [4450] = {.lex_state = 0}, + [4449] = {.lex_state = 0}, + [4450] = {.lex_state = 161}, [4451] = {.lex_state = 85}, [4452] = {.lex_state = 0}, - [4453] = {.lex_state = 0}, + [4453] = {.lex_state = 161}, [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 85}, + [4455] = {.lex_state = 0}, [4456] = {.lex_state = 0}, [4457] = {.lex_state = 0}, [4458] = {.lex_state = 0}, - [4459] = {.lex_state = 85}, + [4459] = {.lex_state = 0}, [4460] = {.lex_state = 0}, [4461] = {.lex_state = 0}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 0}, + [4462] = {.lex_state = 85}, + [4463] = {.lex_state = 85}, [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, + [4465] = {.lex_state = 85}, [4466] = {.lex_state = 0}, [4467] = {.lex_state = 0}, [4468] = {.lex_state = 0}, [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 161}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 0}, + [4470] = {.lex_state = 0}, + [4471] = {.lex_state = 161}, + [4472] = {.lex_state = 162}, [4473] = {.lex_state = 0}, [4474] = {.lex_state = 0}, - [4475] = {.lex_state = 161}, + [4475] = {.lex_state = 0}, [4476] = {.lex_state = 0}, [4477] = {.lex_state = 0}, - [4478] = {.lex_state = 0}, + [4478] = {.lex_state = 161}, [4479] = {.lex_state = 0}, [4480] = {.lex_state = 0}, [4481] = {.lex_state = 0}, @@ -22180,89 +22233,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4487] = {.lex_state = 0}, [4488] = {.lex_state = 0}, [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 41}, - [4491] = {.lex_state = 161}, - [4492] = {.lex_state = 0}, + [4490] = {.lex_state = 0}, + [4491] = {.lex_state = 0}, + [4492] = {.lex_state = 161}, [4493] = {.lex_state = 0}, [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, + [4495] = {.lex_state = 85}, [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 0}, + [4497] = {.lex_state = 41}, [4498] = {.lex_state = 0}, [4499] = {.lex_state = 0}, [4500] = {.lex_state = 0}, [4501] = {.lex_state = 0}, [4502] = {.lex_state = 0}, - [4503] = {.lex_state = 0}, + [4503] = {.lex_state = 41}, [4504] = {.lex_state = 0}, [4505] = {.lex_state = 0}, [4506] = {.lex_state = 0}, [4507] = {.lex_state = 0}, [4508] = {.lex_state = 0}, [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 0}, + [4510] = {.lex_state = 260}, [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 161}, - [4513] = {.lex_state = 0}, + [4512] = {.lex_state = 0}, + [4513] = {.lex_state = 161}, [4514] = {.lex_state = 0}, [4515] = {.lex_state = 0}, [4516] = {.lex_state = 0}, [4517] = {.lex_state = 0}, [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 69}, + [4519] = {.lex_state = 0}, [4520] = {.lex_state = 0}, - [4521] = {.lex_state = 85}, + [4521] = {.lex_state = 0}, [4522] = {.lex_state = 0}, [4523] = {.lex_state = 0}, [4524] = {.lex_state = 0}, [4525] = {.lex_state = 0}, - [4526] = {.lex_state = 162}, + [4526] = {.lex_state = 0}, [4527] = {.lex_state = 0}, [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 161}, - [4531] = {.lex_state = 85}, + [4529] = {.lex_state = 161}, + [4530] = {.lex_state = 0}, + [4531] = {.lex_state = 0}, [4532] = {.lex_state = 0}, [4533] = {.lex_state = 0}, - [4534] = {.lex_state = 0}, + [4534] = {.lex_state = 161}, [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 161}, + [4536] = {.lex_state = 0}, [4537] = {.lex_state = 0}, [4538] = {.lex_state = 0}, [4539] = {.lex_state = 0}, [4540] = {.lex_state = 0}, [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 41}, + [4542] = {.lex_state = 0}, [4543] = {.lex_state = 0}, - [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 0}, + [4544] = {.lex_state = 85}, + [4545] = {.lex_state = 85}, [4546] = {.lex_state = 0}, [4547] = {.lex_state = 0}, [4548] = {.lex_state = 0}, [4549] = {.lex_state = 0}, [4550] = {.lex_state = 0}, [4551] = {.lex_state = 0}, - [4552] = {.lex_state = 161}, + [4552] = {.lex_state = 0}, [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 0}, + [4554] = {.lex_state = 161}, [4555] = {.lex_state = 0}, [4556] = {.lex_state = 0}, [4557] = {.lex_state = 0}, [4558] = {.lex_state = 0}, - [4559] = {.lex_state = 0}, + [4559] = {.lex_state = 85}, [4560] = {.lex_state = 0}, [4561] = {.lex_state = 0}, [4562] = {.lex_state = 0}, [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 85}, + [4564] = {.lex_state = 0}, [4565] = {.lex_state = 0}, [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 85}, + [4567] = {.lex_state = 0}, [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 0}, + [4569] = {.lex_state = 85}, [4570] = {.lex_state = 0}, [4571] = {.lex_state = 0}, - [4572] = {.lex_state = 0}, + [4572] = {.lex_state = 85}, [4573] = {.lex_state = 0}, [4574] = {.lex_state = 0}, [4575] = {.lex_state = 0}, @@ -22301,17 +22354,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4608] = {.lex_state = 0}, [4609] = {.lex_state = 0}, [4610] = {.lex_state = 0}, - [4611] = {.lex_state = 85}, - [4612] = {.lex_state = 85}, + [4611] = {.lex_state = 0}, + [4612] = {.lex_state = 0}, [4613] = {.lex_state = 0}, - [4614] = {.lex_state = 85}, - [4615] = {.lex_state = 0}, + [4614] = {.lex_state = 0}, + [4615] = {.lex_state = 85}, [4616] = {.lex_state = 0}, [4617] = {.lex_state = 0}, [4618] = {.lex_state = 0}, [4619] = {.lex_state = 0}, [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 0}, + [4621] = {.lex_state = 69}, [4622] = {.lex_state = 0}, [4623] = {.lex_state = 0}, [4624] = {.lex_state = 0}, @@ -22331,26 +22384,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4638] = {.lex_state = 0}, [4639] = {.lex_state = 0}, [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, + [4641] = {.lex_state = 85}, [4642] = {.lex_state = 0}, [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 85}, + [4644] = {.lex_state = 0}, [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 162}, + [4646] = {.lex_state = 0}, [4647] = {.lex_state = 0}, [4648] = {.lex_state = 0}, [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 85}, + [4650] = {.lex_state = 0}, [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 0}, + [4652] = {.lex_state = 85}, + [4653] = {.lex_state = 85}, + [4654] = {.lex_state = 85}, [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}, @@ -22362,18 +22415,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4669] = {.lex_state = 0}, [4670] = {.lex_state = 85}, [4671] = {.lex_state = 0}, - [4672] = {.lex_state = 85}, + [4672] = {.lex_state = 0}, [4673] = {.lex_state = 0}, [4674] = {.lex_state = 0}, [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 85}, + [4676] = {.lex_state = 0}, [4677] = {.lex_state = 0}, [4678] = {.lex_state = 0}, [4679] = {.lex_state = 0}, [4680] = {.lex_state = 0}, [4681] = {.lex_state = 0}, [4682] = {.lex_state = 85}, - [4683] = {.lex_state = 85}, + [4683] = {.lex_state = 161}, [4684] = {.lex_state = 0}, [4685] = {.lex_state = 0}, [4686] = {.lex_state = 0}, @@ -22385,6 +22438,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4692] = {.lex_state = 0}, [4693] = {.lex_state = 0}, [4694] = {.lex_state = 0}, + [4695] = {.lex_state = 0}, + [4696] = {.lex_state = 0}, + [4697] = {.lex_state = 0}, + [4698] = {.lex_state = 0}, + [4699] = {.lex_state = 0}, + [4700] = {.lex_state = 0}, + [4701] = {.lex_state = 0}, + [4702] = {.lex_state = 0}, + [4703] = {.lex_state = 0}, + [4704] = {.lex_state = 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}, + [4711] = {.lex_state = 0}, + [4712] = {.lex_state = 0}, + [4713] = {.lex_state = 0}, + [4714] = {.lex_state = 0}, + [4715] = {.lex_state = 0}, + [4716] = {.lex_state = 0}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -22519,109 +22594,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(4630), - [sym_module_clause] = STATE(4), - [sym_import_list] = STATE(10), - [sym_import_declaration] = STATE(1551), - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_source_file] = STATE(4431), + [sym_module_clause] = STATE(3), + [sym_import_list] = STATE(9), + [sym_import_declaration] = STATE(1596), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3442), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_import_list_repeat1] = STATE(1551), - [aux_sym_attributes_repeat1] = STATE(3410), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3448), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(11), + [aux_sym_import_list_repeat1] = STATE(1596), + [aux_sym_attributes_repeat1] = STATE(3413), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_shebang] = ACTIONS(9), @@ -22694,108 +22769,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [2] = { - [sym_module_clause] = STATE(3), - [sym_import_list] = STATE(6), - [sym_import_declaration] = STATE(1551), - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_module_clause] = STATE(4), + [sym_import_list] = STATE(12), + [sym_import_declaration] = STATE(1596), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3442), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_import_list_repeat1] = STATE(1551), - [aux_sym_attributes_repeat1] = STATE(3410), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3448), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_import_list_repeat1] = STATE(1596), + [aux_sym_attributes_repeat1] = STATE(3413), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -22867,108 +22942,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [3] = { - [sym_import_list] = STATE(9), - [sym_import_declaration] = STATE(1551), - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_import_list] = STATE(12), + [sym_import_declaration] = STATE(1596), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_import_list_repeat1] = STATE(1551), - [aux_sym_attributes_repeat1] = STATE(3410), - [ts_builtin_sym_end] = ACTIONS(129), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_import_list_repeat1] = STATE(1596), + [aux_sym_attributes_repeat1] = STATE(3413), + [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_import] = ACTIONS(13), @@ -23038,108 +23113,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [4] = { - [sym_import_list] = STATE(6), - [sym_import_declaration] = STATE(1551), - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_import_list] = STATE(8), + [sym_import_declaration] = STATE(1596), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_import_list_repeat1] = STATE(1551), - [aux_sym_attributes_repeat1] = STATE(3410), - [ts_builtin_sym_end] = ACTIONS(125), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_import_list_repeat1] = STATE(1596), + [aux_sym_attributes_repeat1] = STATE(3413), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_import] = ACTIONS(13), @@ -23209,105 +23284,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [5] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_attributes_repeat1] = STATE(3410), - [ts_builtin_sym_end] = ACTIONS(131), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3413), + [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -23376,105 +23451,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [6] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_attributes_repeat1] = STATE(3410), - [ts_builtin_sym_end] = ACTIONS(129), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3413), + [ts_builtin_sym_end] = ACTIONS(131), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -23543,104 +23618,438 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [7] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_attributes_repeat1] = STATE(3410), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3413), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), + }, + [8] = { + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_attributes_repeat1] = STATE(3413), + [ts_builtin_sym_end] = ACTIONS(133), + [sym_identifier] = ACTIONS(7), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_const] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym___global] = ACTIONS(23), + [anon_sym_type] = ACTIONS(25), + [anon_sym_fn] = ACTIONS(27), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(33), + [anon_sym_union] = ACTIONS(35), + [anon_sym_pub] = ACTIONS(37), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_enum] = ACTIONS(41), + [anon_sym_interface] = ACTIONS(43), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(91), + [anon_sym_defer] = ACTIONS(93), + [anon_sym_goto] = ACTIONS(95), + [anon_sym_break] = ACTIONS(97), + [anon_sym_continue] = ACTIONS(99), + [anon_sym_return] = ACTIONS(101), + [anon_sym_DOLLARfor] = ACTIONS(103), + [anon_sym_for] = ACTIONS(105), + [anon_sym_POUND] = ACTIONS(127), + [anon_sym_asm] = ACTIONS(109), + [anon_sym_AT_LBRACK] = ACTIONS(111), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), + }, + [9] = { + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), + [sym__expression] = STATE(215), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_attributes_repeat1] = STATE(3413), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -23709,439 +24118,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [8] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), - [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_attributes_repeat1] = STATE(3410), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [9] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [10] = { + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3410), - [ts_builtin_sym_end] = ACTIONS(133), - [sym_identifier] = ACTIONS(7), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3413), + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(137), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_const] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym___global] = ACTIONS(23), - [anon_sym_type] = ACTIONS(25), - [anon_sym_fn] = ACTIONS(27), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(33), - [anon_sym_union] = ACTIONS(35), - [anon_sym_pub] = ACTIONS(37), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_enum] = ACTIONS(41), - [anon_sym_interface] = ACTIONS(43), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(55), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(91), - [anon_sym_defer] = ACTIONS(93), - [anon_sym_goto] = ACTIONS(95), - [anon_sym_break] = ACTIONS(97), - [anon_sym_continue] = ACTIONS(99), - [anon_sym_return] = ACTIONS(101), - [anon_sym_DOLLARfor] = ACTIONS(103), - [anon_sym_for] = ACTIONS(105), - [anon_sym_POUND] = ACTIONS(127), - [anon_sym_asm] = ACTIONS(109), - [anon_sym_AT_LBRACK] = ACTIONS(111), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [anon_sym_DOT] = ACTIONS(140), + [anon_sym_LBRACE] = ACTIONS(143), + [anon_sym_const] = ACTIONS(146), + [anon_sym_LPAREN] = ACTIONS(149), + [anon_sym___global] = ACTIONS(152), + [anon_sym_type] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(161), + [anon_sym_DASH] = ACTIONS(161), + [anon_sym_STAR] = ACTIONS(164), + [anon_sym_struct] = ACTIONS(167), + [anon_sym_union] = ACTIONS(170), + [anon_sym_pub] = ACTIONS(173), + [anon_sym_mut] = ACTIONS(176), + [anon_sym_enum] = ACTIONS(179), + [anon_sym_interface] = ACTIONS(182), + [anon_sym_QMARK] = ACTIONS(185), + [anon_sym_BANG] = ACTIONS(188), + [anon_sym_go] = ACTIONS(191), + [anon_sym_spawn] = ACTIONS(194), + [anon_sym_json_DOTdecode] = ACTIONS(197), + [anon_sym_LBRACK2] = ACTIONS(200), + [anon_sym_TILDE] = ACTIONS(161), + [anon_sym_CARET] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(203), + [anon_sym_LT_DASH] = ACTIONS(206), + [sym_none] = ACTIONS(209), + [sym_true] = ACTIONS(209), + [sym_false] = ACTIONS(209), + [sym_nil] = ACTIONS(209), + [anon_sym_if] = ACTIONS(212), + [anon_sym_DOLLARif] = ACTIONS(215), + [anon_sym_match] = ACTIONS(218), + [anon_sym_select] = ACTIONS(221), + [anon_sym_lock] = ACTIONS(224), + [anon_sym_rlock] = ACTIONS(224), + [anon_sym_unsafe] = ACTIONS(227), + [anon_sym_sql] = ACTIONS(230), + [sym_int_literal] = ACTIONS(209), + [sym_float_literal] = ACTIONS(233), + [sym_rune_literal] = ACTIONS(233), + [sym_pseudo_compile_time_identifier] = ACTIONS(236), + [anon_sym_shared] = ACTIONS(239), + [anon_sym_map_LBRACK] = ACTIONS(242), + [anon_sym_chan] = ACTIONS(245), + [anon_sym_thread] = ACTIONS(248), + [anon_sym_atomic] = ACTIONS(251), + [anon_sym_assert] = ACTIONS(254), + [anon_sym_defer] = ACTIONS(257), + [anon_sym_goto] = ACTIONS(260), + [anon_sym_break] = ACTIONS(263), + [anon_sym_continue] = ACTIONS(266), + [anon_sym_return] = ACTIONS(269), + [anon_sym_DOLLARfor] = ACTIONS(272), + [anon_sym_for] = ACTIONS(275), + [anon_sym_POUND] = ACTIONS(278), + [anon_sym_asm] = ACTIONS(281), + [anon_sym_AT_LBRACK] = ACTIONS(284), + [sym___double_quote] = ACTIONS(287), + [sym___single_quote] = ACTIONS(290), + [sym___c_double_quote] = ACTIONS(293), + [sym___c_single_quote] = ACTIONS(296), + [sym___r_double_quote] = ACTIONS(299), + [sym___r_single_quote] = ACTIONS(302), }, - [10] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [11] = { + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_attributes_repeat1] = STATE(3410), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_attributes_repeat1] = STATE(3413), [ts_builtin_sym_end] = ACTIONS(125), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -24210,272 +24452,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [11] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), - [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_attributes_repeat1] = STATE(3410), - [ts_builtin_sym_end] = ACTIONS(135), - [sym_identifier] = ACTIONS(137), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(140), - [anon_sym_LBRACE] = ACTIONS(143), - [anon_sym_const] = ACTIONS(146), - [anon_sym_LPAREN] = ACTIONS(149), - [anon_sym___global] = ACTIONS(152), - [anon_sym_type] = ACTIONS(155), - [anon_sym_fn] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(161), - [anon_sym_DASH] = ACTIONS(161), - [anon_sym_STAR] = ACTIONS(164), - [anon_sym_struct] = ACTIONS(167), - [anon_sym_union] = ACTIONS(170), - [anon_sym_pub] = ACTIONS(173), - [anon_sym_mut] = ACTIONS(176), - [anon_sym_enum] = ACTIONS(179), - [anon_sym_interface] = ACTIONS(182), - [anon_sym_QMARK] = ACTIONS(185), - [anon_sym_BANG] = ACTIONS(188), - [anon_sym_go] = ACTIONS(191), - [anon_sym_spawn] = ACTIONS(194), - [anon_sym_json_DOTdecode] = ACTIONS(197), - [anon_sym_LBRACK2] = ACTIONS(200), - [anon_sym_TILDE] = ACTIONS(161), - [anon_sym_CARET] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(203), - [anon_sym_LT_DASH] = ACTIONS(206), - [sym_none] = ACTIONS(209), - [sym_true] = ACTIONS(209), - [sym_false] = ACTIONS(209), - [sym_nil] = ACTIONS(209), - [anon_sym_if] = ACTIONS(212), - [anon_sym_DOLLARif] = ACTIONS(215), - [anon_sym_match] = ACTIONS(218), - [anon_sym_select] = ACTIONS(221), - [anon_sym_lock] = ACTIONS(224), - [anon_sym_rlock] = ACTIONS(224), - [anon_sym_unsafe] = ACTIONS(227), - [anon_sym_sql] = ACTIONS(230), - [sym_int_literal] = ACTIONS(209), - [sym_float_literal] = ACTIONS(233), - [sym_rune_literal] = ACTIONS(233), - [sym_pseudo_compile_time_identifier] = ACTIONS(236), - [anon_sym_shared] = ACTIONS(239), - [anon_sym_map_LBRACK] = ACTIONS(242), - [anon_sym_chan] = ACTIONS(245), - [anon_sym_thread] = ACTIONS(248), - [anon_sym_atomic] = ACTIONS(251), - [anon_sym_assert] = ACTIONS(254), - [anon_sym_defer] = ACTIONS(257), - [anon_sym_goto] = ACTIONS(260), - [anon_sym_break] = ACTIONS(263), - [anon_sym_continue] = ACTIONS(266), - [anon_sym_return] = ACTIONS(269), - [anon_sym_DOLLARfor] = ACTIONS(272), - [anon_sym_for] = ACTIONS(275), - [anon_sym_POUND] = ACTIONS(278), - [anon_sym_asm] = ACTIONS(281), - [anon_sym_AT_LBRACK] = ACTIONS(284), - [sym___double_quote] = ACTIONS(287), - [sym___single_quote] = ACTIONS(290), - [sym___c_double_quote] = ACTIONS(293), - [sym___c_single_quote] = ACTIONS(296), - [sym___r_double_quote] = ACTIONS(299), - [sym___r_single_quote] = ACTIONS(302), - }, [12] = { - [sym_const_declaration] = STATE(1517), - [sym_global_var_declaration] = STATE(1517), - [sym_type_declaration] = STATE(1517), - [sym_function_declaration] = STATE(1517), - [sym_static_method_declaration] = STATE(1517), - [sym_struct_declaration] = STATE(1517), - [sym_enum_declaration] = STATE(1517), - [sym_interface_declaration] = STATE(1517), + [sym_const_declaration] = STATE(1579), + [sym_global_var_declaration] = STATE(1579), + [sym_type_declaration] = STATE(1579), + [sym_function_declaration] = STATE(1579), + [sym_static_method_declaration] = STATE(1579), + [sym_struct_declaration] = STATE(1579), + [sym_enum_declaration] = STATE(1579), + [sym_interface_declaration] = STATE(1579), [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_visibility_modifiers] = STATE(3496), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1517), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), - [sym_attributes] = STATE(3446), - [sym_attribute] = STATE(3372), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_attributes_repeat1] = STATE(3410), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_visibility_modifiers] = STATE(3487), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1579), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), + [sym_attributes] = STATE(3454), + [sym_attribute] = STATE(3397), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_attributes_repeat1] = STATE(3413), [ts_builtin_sym_end] = ACTIONS(129), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), @@ -24545,95 +24620,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(123), }, [13] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4610), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4444), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4610), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4444), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -24695,95 +24770,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [14] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4411), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4639), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4411), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4639), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -24845,95 +24920,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [15] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4609), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4694), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4609), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4694), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -24995,95 +25070,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [16] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4444), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4444), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25145,95 +25220,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [17] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4411), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4597), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4411), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(259), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4597), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25295,95 +25370,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [18] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4633), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4601), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4633), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4601), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25445,95 +25520,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [19] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4610), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4629), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4610), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4629), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -25595,100 +25670,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [20] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4609), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4420), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4609), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4420), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -25745,100 +25820,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [21] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4599), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4601), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4599), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4601), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -25895,100 +25970,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [22] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4499), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4499), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(403), + [anon_sym_RBRACE] = ACTIONS(405), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -26045,100 +26120,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [23] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4609), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4601), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4609), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4601), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(399), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -26195,100 +26270,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [24] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4516), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4516), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(409), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -26345,100 +26420,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [25] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4633), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4499), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4633), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4499), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(407), + [anon_sym_RBRACE] = ACTIONS(411), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -26495,100 +26570,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [26] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4649), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4649), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(409), + [anon_sym_RBRACE] = ACTIONS(407), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -26645,100 +26720,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [27] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4622), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4550), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4622), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4550), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_RBRACE] = ACTIONS(413), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -26795,100 +26870,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [28] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4613), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4585), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4613), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(300), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4585), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(415), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -26945,100 +27020,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [29] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4411), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4629), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4411), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(248), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4629), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(415), + [anon_sym_RBRACE] = ACTIONS(417), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27095,100 +27170,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [30] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4520), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4413), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4520), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4413), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(417), + [anon_sym_RBRACE] = ACTIONS(419), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27245,100 +27320,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [31] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4422), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4485), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4422), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4485), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(292), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27395,100 +27470,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [32] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4541), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4413), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4541), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4413), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(292), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(423), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27545,100 +27620,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [33] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4613), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4413), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4613), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(248), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4413), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(273), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(413), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27695,100 +27770,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [34] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4541), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4541), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27845,100 +27920,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [35] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4516), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4485), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4516), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4485), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(257), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_RBRACE] = ACTIONS(421), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -27995,100 +28070,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [36] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4610), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4610), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(427), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -28145,95 +28220,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [37] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4422), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4420), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4422), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4420), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -28295,95 +28370,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [38] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4610), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4585), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4610), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4585), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -28445,95 +28520,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [39] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4400), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1637), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4638), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4400), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [aux_sym_map_init_expression_repeat1] = STATE(251), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4638), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [aux_sym_map_init_expression_repeat1] = STATE(263), [sym_identifier] = ACTIONS(305), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -28595,93 +28670,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [40] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4541), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4617), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4541), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4617), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -28743,93 +28818,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [41] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4422), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4595), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4422), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4595), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -28891,93 +28966,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [42] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4411), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4597), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4411), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4597), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -29039,93 +29114,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [43] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4662), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4585), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4662), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4585), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -29187,93 +29262,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [44] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4633), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4601), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4633), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4601), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -29335,93 +29410,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [45] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4520), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4499), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4520), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4499), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -29483,93 +29558,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [46] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4622), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4420), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4622), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4420), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -29631,93 +29706,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [47] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4410), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4639), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4410), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4639), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -29779,93 +29854,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [48] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4516), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4413), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4516), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4413), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -29927,93 +30002,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [49] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4610), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4550), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4610), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4550), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -30075,93 +30150,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [50] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4674), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4629), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4674), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4629), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -30223,93 +30298,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [51] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4620), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4698), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4620), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4698), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -30371,93 +30446,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [52] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4632), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4444), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4632), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4444), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -30519,93 +30594,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [53] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4694), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4694), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -30667,93 +30742,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [54] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4649), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4501), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4649), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4501), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -30815,93 +30890,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [55] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4609), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4485), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4609), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4485), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -30963,93 +31038,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [56] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4400), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4647), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4400), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4647), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -31111,93 +31186,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [57] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4599), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4596), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4599), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4596), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -31259,93 +31334,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [58] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4613), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4638), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4613), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4638), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -31407,93 +31482,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [59] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement_list] = STATE(4593), - [sym__statement] = STATE(3637), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement_list] = STATE(4667), + [sym__statement] = STATE(3646), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4593), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4667), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -31555,92 +31630,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [60] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(3795), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(3705), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4625), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4515), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -31702,92 +31777,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [61] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(3795), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(3705), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), [sym_label_definition] = STATE(62), - [sym_labeled_statement] = STATE(3700), - [sym_empty_labeled_statement] = STATE(4661), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym_labeled_statement] = STATE(3716), + [sym_empty_labeled_statement] = STATE(4645), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -31849,91 +31924,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [62] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(3760), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3700), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(3776), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3716), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -31995,91 +32070,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [63] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(3795), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3700), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(3776), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3716), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), [sym_identifier] = ACTIONS(435), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), @@ -32140,91 +32215,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(387), }, [64] = { + [sym__expression] = STATE(1639), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_strictly_expression_list] = STATE(3713), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(684), + [sym_mutable_expression] = STATE(3355), + [sym_expression_list] = STATE(3400), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(3705), + [sym_simple_statement] = STATE(3716), + [sym_assert_statement] = STATE(3716), + [sym_append_statement] = STATE(3716), + [sym_send_statement] = STATE(3716), + [sym_var_declaration] = STATE(3713), + [sym_assignment_statement] = STATE(3713), + [sym_block] = STATE(3716), + [sym_defer_statement] = STATE(3716), + [sym_goto_statement] = STATE(3716), + [sym_break_statement] = STATE(3716), + [sym_continue_statement] = STATE(3716), + [sym_return_statement] = STATE(3716), + [sym_label_definition] = STATE(63), + [sym_labeled_statement] = STATE(3716), + [sym_compile_time_for_statement] = STATE(3716), + [sym_for_statement] = STATE(3716), + [sym_hash_statement] = STATE(3716), + [sym_asm_statement] = STATE(3716), + [sym_identifier] = ACTIONS(435), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(309), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_assert] = ACTIONS(357), + [anon_sym_defer] = ACTIONS(359), + [anon_sym_goto] = ACTIONS(361), + [anon_sym_break] = ACTIONS(363), + [anon_sym_continue] = ACTIONS(365), + [anon_sym_return] = ACTIONS(367), + [anon_sym_DOLLARfor] = ACTIONS(369), + [anon_sym_for] = ACTIONS(371), + [anon_sym_POUND] = ACTIONS(373), + [anon_sym_asm] = ACTIONS(375), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), + }, + [65] = { [sym__expression] = STATE(215), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_strictly_expression_list] = STATE(1521), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(923), - [sym_mutable_expression] = STATE(3350), - [sym_expression_list] = STATE(3371), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(1546), - [sym_simple_statement] = STATE(1545), - [sym_assert_statement] = STATE(1545), - [sym_append_statement] = STATE(1545), - [sym_send_statement] = STATE(1545), - [sym_var_declaration] = STATE(1521), - [sym_assignment_statement] = STATE(1521), - [sym_block] = STATE(1545), - [sym_defer_statement] = STATE(1545), - [sym_goto_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_label_definition] = STATE(64), - [sym_labeled_statement] = STATE(1545), - [sym_compile_time_for_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_hash_statement] = STATE(1545), - [sym_asm_statement] = STATE(1545), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_strictly_expression_list] = STATE(1585), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(771), + [sym_mutable_expression] = STATE(3353), + [sym_expression_list] = STATE(3381), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__statement] = STATE(1563), + [sym_simple_statement] = STATE(1590), + [sym_assert_statement] = STATE(1590), + [sym_append_statement] = STATE(1590), + [sym_send_statement] = STATE(1590), + [sym_var_declaration] = STATE(1585), + [sym_assignment_statement] = STATE(1585), + [sym_block] = STATE(1590), + [sym_defer_statement] = STATE(1590), + [sym_goto_statement] = STATE(1590), + [sym_break_statement] = STATE(1590), + [sym_continue_statement] = STATE(1590), + [sym_return_statement] = STATE(1590), + [sym_label_definition] = STATE(65), + [sym_labeled_statement] = STATE(1590), + [sym_compile_time_for_statement] = STATE(1590), + [sym_for_statement] = STATE(1590), + [sym_hash_statement] = STATE(1590), + [sym_asm_statement] = STATE(1590), [sym_identifier] = ACTIONS(7), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), @@ -32284,217 +32504,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [65] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_strictly_expression_list] = STATE(3702), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(748), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3405), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__statement] = STATE(3760), - [sym_simple_statement] = STATE(3700), - [sym_assert_statement] = STATE(3700), - [sym_append_statement] = STATE(3700), - [sym_send_statement] = STATE(3700), - [sym_var_declaration] = STATE(3702), - [sym_assignment_statement] = STATE(3702), - [sym_block] = STATE(3700), - [sym_defer_statement] = STATE(3700), - [sym_goto_statement] = STATE(3700), - [sym_break_statement] = STATE(3700), - [sym_continue_statement] = STATE(3700), - [sym_return_statement] = STATE(3700), - [sym_label_definition] = STATE(65), - [sym_labeled_statement] = STATE(3700), - [sym_compile_time_for_statement] = STATE(3700), - [sym_for_statement] = STATE(3700), - [sym_hash_statement] = STATE(3700), - [sym_asm_statement] = STATE(3700), - [sym_identifier] = ACTIONS(435), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(309), - [anon_sym_LPAREN] = ACTIONS(313), - [anon_sym_fn] = ACTIONS(315), - [anon_sym_PLUS] = ACTIONS(317), - [anon_sym_DASH] = ACTIONS(317), - [anon_sym_STAR] = ACTIONS(319), - [anon_sym_struct] = ACTIONS(321), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(357), - [anon_sym_defer] = ACTIONS(359), - [anon_sym_goto] = ACTIONS(361), - [anon_sym_break] = ACTIONS(363), - [anon_sym_continue] = ACTIONS(365), - [anon_sym_return] = ACTIONS(367), - [anon_sym_DOLLARfor] = ACTIONS(369), - [anon_sym_for] = ACTIONS(371), - [anon_sym_POUND] = ACTIONS(373), - [anon_sym_asm] = ACTIONS(375), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), - }, [66] = { - [sym__expression] = STATE(974), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(953), + [sym__expression] = STATE(977), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(537), [sym_mutable_expression] = STATE(1436), - [sym_expression_list] = STATE(1561), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [sym_expression_list] = STATE(1572), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [ts_builtin_sym_end] = ACTIONS(489), [sym_identifier] = ACTIONS(491), [anon_sym_LF] = ACTIONS(493), @@ -32567,26 +32642,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(557), }, [67] = { - [sym_reference_expression] = STATE(4482), - [sym_type_reference_expression] = STATE(414), - [sym_plain_type] = STATE(832), - [sym__plain_type_without_special] = STATE(869), - [sym_anon_struct_type] = STATE(867), - [sym_multi_return_type] = STATE(869), - [sym_result_type] = STATE(869), - [sym_option_type] = STATE(869), - [sym_qualified_type] = STATE(414), - [sym_fixed_array_type] = STATE(867), - [sym_array_type] = STATE(867), - [sym_pointer_type] = STATE(867), - [sym_wrong_pointer_type] = STATE(867), - [sym_map_type] = STATE(867), - [sym_channel_type] = STATE(867), - [sym_shared_type] = STATE(867), - [sym_thread_type] = STATE(867), - [sym_atomic_type] = STATE(867), - [sym_generic_type] = STATE(867), - [sym_function_type] = STATE(867), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [ts_builtin_sym_end] = ACTIONS(559), [sym_identifier] = ACTIONS(561), [anon_sym_LF] = ACTIONS(563), @@ -32624,15 +32699,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(573), [anon_sym_go] = ACTIONS(563), [anon_sym_spawn] = ACTIONS(563), [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(577), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_TILDE] = ACTIONS(563), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(579), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), @@ -32676,11 +32751,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(563), [sym_rune_literal] = ACTIONS(563), [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(581), - [anon_sym_map_LBRACK] = ACTIONS(583), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(587), - [anon_sym_atomic] = ACTIONS(589), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), [anon_sym_assert] = ACTIONS(563), [anon_sym_defer] = ACTIONS(563), [anon_sym_goto] = ACTIONS(563), @@ -32700,614 +32775,612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(563), }, [68] = { - [sym_reference_expression] = STATE(4482), - [sym_type_reference_expression] = STATE(414), - [sym_plain_type] = STATE(738), - [sym__plain_type_without_special] = STATE(869), - [sym_anon_struct_type] = STATE(867), - [sym_multi_return_type] = STATE(869), - [sym_result_type] = STATE(869), - [sym_option_type] = STATE(869), - [sym_qualified_type] = STATE(414), - [sym_fixed_array_type] = STATE(867), - [sym_array_type] = STATE(867), - [sym_pointer_type] = STATE(867), - [sym_wrong_pointer_type] = STATE(867), - [sym_map_type] = STATE(867), - [sym_channel_type] = STATE(867), - [sym_shared_type] = STATE(867), - [sym_thread_type] = STATE(867), - [sym_atomic_type] = STATE(867), - [sym_generic_type] = STATE(867), - [sym_function_type] = STATE(867), - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), + [sym_reference_expression] = STATE(4484), + [sym_type_reference_expression] = STATE(404), + [sym_plain_type] = STATE(660), + [sym__plain_type_without_special] = STATE(879), + [sym_anon_struct_type] = STATE(878), + [sym_multi_return_type] = STATE(879), + [sym_result_type] = STATE(879), + [sym_option_type] = STATE(879), + [sym_qualified_type] = STATE(404), + [sym_fixed_array_type] = STATE(878), + [sym_array_type] = STATE(878), + [sym_pointer_type] = STATE(878), + [sym_wrong_pointer_type] = STATE(878), + [sym_map_type] = STATE(878), + [sym_channel_type] = STATE(878), + [sym_shared_type] = STATE(878), + [sym_thread_type] = STATE(878), + [sym_atomic_type] = STATE(878), + [sym_generic_type] = STATE(878), + [sym_function_type] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_identifier] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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(565), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym___global] = ACTIONS(593), - [anon_sym_type] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(569), - [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(591), - [anon_sym_struct] = ACTIONS(571), - [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(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(593), - [anon_sym_LBRACK2] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(579), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(581), - [anon_sym_map_LBRACK] = ACTIONS(583), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(587), - [anon_sym_atomic] = ACTIONS(589), - [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), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym___global] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_interface] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [sym_pseudo_compile_time_identifier] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(603), + [anon_sym_map_LBRACK] = ACTIONS(605), + [anon_sym_chan] = ACTIONS(607), + [anon_sym_thread] = ACTIONS(609), + [anon_sym_atomic] = ACTIONS(611), + [anon_sym_assert] = ACTIONS(585), + [anon_sym_defer] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_DOLLARfor] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_asm] = ACTIONS(585), + [anon_sym_AT_LBRACK] = ACTIONS(585), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, [69] = { - [sym_reference_expression] = STATE(4482), - [sym_type_reference_expression] = STATE(414), - [sym_plain_type] = STATE(750), - [sym__plain_type_without_special] = STATE(869), - [sym_anon_struct_type] = STATE(867), - [sym_multi_return_type] = STATE(869), - [sym_result_type] = STATE(869), - [sym_option_type] = STATE(869), - [sym_qualified_type] = STATE(414), - [sym_fixed_array_type] = STATE(867), - [sym_array_type] = STATE(867), - [sym_pointer_type] = STATE(867), - [sym_wrong_pointer_type] = STATE(867), - [sym_map_type] = STATE(867), - [sym_channel_type] = STATE(867), - [sym_shared_type] = STATE(867), - [sym_thread_type] = STATE(867), - [sym_atomic_type] = STATE(867), - [sym_generic_type] = STATE(867), - [sym_function_type] = STATE(867), - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(561), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(565), - [anon_sym_EQ] = ACTIONS(597), - [anon_sym___global] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(567), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(571), - [anon_sym_union] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_interface] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(573), - [anon_sym_BANG] = ACTIONS(575), - [anon_sym_go] = ACTIONS(597), - [anon_sym_spawn] = ACTIONS(597), - [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(577), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(579), - [anon_sym_LT_DASH] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_nil] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_select] = ACTIONS(597), - [anon_sym_STAR_EQ] = ACTIONS(597), - [anon_sym_SLASH_EQ] = ACTIONS(597), - [anon_sym_PERCENT_EQ] = ACTIONS(597), - [anon_sym_LT_LT_EQ] = ACTIONS(597), - [anon_sym_GT_GT_EQ] = ACTIONS(597), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), - [anon_sym_AMP_EQ] = ACTIONS(597), - [anon_sym_AMP_CARET_EQ] = ACTIONS(597), - [anon_sym_PLUS_EQ] = ACTIONS(597), - [anon_sym_DASH_EQ] = ACTIONS(597), - [anon_sym_PIPE_EQ] = ACTIONS(597), - [anon_sym_CARET_EQ] = ACTIONS(597), - [anon_sym_COLON_EQ] = ACTIONS(597), - [anon_sym_lock] = ACTIONS(597), - [anon_sym_rlock] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_sql] = ACTIONS(597), - [sym_int_literal] = ACTIONS(597), - [sym_float_literal] = ACTIONS(597), - [sym_rune_literal] = ACTIONS(597), - [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(581), - [anon_sym_map_LBRACK] = ACTIONS(583), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(587), - [anon_sym_atomic] = ACTIONS(589), - [anon_sym_assert] = ACTIONS(597), - [anon_sym_defer] = ACTIONS(597), - [anon_sym_goto] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_DOLLARfor] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_POUND] = ACTIONS(597), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_AT_LBRACK] = ACTIONS(597), - [sym___double_quote] = ACTIONS(597), - [sym___single_quote] = ACTIONS(597), - [sym___c_double_quote] = ACTIONS(597), - [sym___c_single_quote] = ACTIONS(597), - [sym___r_double_quote] = ACTIONS(597), - [sym___r_single_quote] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym___global] = ACTIONS(615), + [anon_sym_type] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_union] = ACTIONS(615), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_enum] = ACTIONS(615), + [anon_sym_interface] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [sym_pseudo_compile_time_identifier] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(615), + [anon_sym_map_LBRACK] = ACTIONS(615), + [anon_sym_chan] = ACTIONS(615), + [anon_sym_thread] = ACTIONS(615), + [anon_sym_atomic] = ACTIONS(615), + [anon_sym_assert] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_goto] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_DOLLARfor] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(615), + [anon_sym_asm] = ACTIONS(615), + [anon_sym_AT_LBRACK] = ACTIONS(615), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), }, [70] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(599), - [sym_identifier] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), + [sym_reference_expression] = STATE(4484), + [sym_type_reference_expression] = STATE(404), + [sym_plain_type] = STATE(711), + [sym__plain_type_without_special] = STATE(879), + [sym_anon_struct_type] = STATE(878), + [sym_multi_return_type] = STATE(879), + [sym_result_type] = STATE(879), + [sym_option_type] = STATE(879), + [sym_qualified_type] = STATE(404), + [sym_fixed_array_type] = STATE(878), + [sym_array_type] = STATE(878), + [sym_pointer_type] = STATE(878), + [sym_wrong_pointer_type] = STATE(878), + [sym_map_type] = STATE(878), + [sym_channel_type] = STATE(878), + [sym_shared_type] = STATE(878), + [sym_thread_type] = STATE(878), + [sym_atomic_type] = STATE(878), + [sym_generic_type] = STATE(878), + [sym_function_type] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym___global] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(601), - [anon_sym_spawn] = ACTIONS(601), - [anon_sym_json_DOTdecode] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym___global] = ACTIONS(619), + [anon_sym_type] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_interface] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_DASH] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [sym_none] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_nil] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_DOLLARif] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_match] = ACTIONS(601), - [anon_sym_select] = ACTIONS(601), - [anon_sym_STAR_EQ] = ACTIONS(601), - [anon_sym_SLASH_EQ] = ACTIONS(601), - [anon_sym_PERCENT_EQ] = ACTIONS(601), - [anon_sym_LT_LT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), - [anon_sym_AMP_EQ] = ACTIONS(601), - [anon_sym_AMP_CARET_EQ] = ACTIONS(601), - [anon_sym_PLUS_EQ] = ACTIONS(601), - [anon_sym_DASH_EQ] = ACTIONS(601), - [anon_sym_PIPE_EQ] = ACTIONS(601), - [anon_sym_CARET_EQ] = ACTIONS(601), - [anon_sym_COLON_EQ] = ACTIONS(601), - [anon_sym_lock] = ACTIONS(601), - [anon_sym_rlock] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_sql] = ACTIONS(601), - [sym_int_literal] = ACTIONS(601), - [sym_float_literal] = ACTIONS(601), - [sym_rune_literal] = ACTIONS(601), - [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(601), - [anon_sym_map_LBRACK] = ACTIONS(601), - [anon_sym_chan] = ACTIONS(601), - [anon_sym_thread] = ACTIONS(601), - [anon_sym_atomic] = ACTIONS(601), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_defer] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(601), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_DOLLARfor] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [anon_sym_POUND] = ACTIONS(601), - [anon_sym_asm] = ACTIONS(601), - [anon_sym_AT_LBRACK] = ACTIONS(601), - [sym___double_quote] = ACTIONS(601), - [sym___single_quote] = ACTIONS(601), - [sym___c_double_quote] = ACTIONS(601), - [sym___c_single_quote] = ACTIONS(601), - [sym___r_double_quote] = ACTIONS(601), - [sym___r_single_quote] = ACTIONS(601), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [sym_pseudo_compile_time_identifier] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(603), + [anon_sym_map_LBRACK] = ACTIONS(605), + [anon_sym_chan] = ACTIONS(607), + [anon_sym_thread] = ACTIONS(609), + [anon_sym_atomic] = ACTIONS(611), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_defer] = ACTIONS(619), + [anon_sym_goto] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_DOLLARfor] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_asm] = ACTIONS(619), + [anon_sym_AT_LBRACK] = ACTIONS(619), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), }, [71] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(603), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [sym_reference_expression] = STATE(4484), + [sym_type_reference_expression] = STATE(404), + [sym_plain_type] = STATE(840), + [sym__plain_type_without_special] = STATE(879), + [sym_anon_struct_type] = STATE(878), + [sym_multi_return_type] = STATE(879), + [sym_result_type] = STATE(879), + [sym_option_type] = STATE(879), + [sym_qualified_type] = STATE(404), + [sym_fixed_array_type] = STATE(878), + [sym_array_type] = STATE(878), + [sym_pointer_type] = STATE(878), + [sym_wrong_pointer_type] = STATE(878), + [sym_map_type] = STATE(878), + [sym_channel_type] = STATE(878), + [sym_shared_type] = STATE(878), + [sym_thread_type] = STATE(878), + [sym_atomic_type] = STATE(878), + [sym_generic_type] = STATE(878), + [sym_function_type] = STATE(878), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym___global] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_union] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_interface] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(617), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(607), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_AMP_CARET_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(607), - [sym_rune_literal] = ACTIONS(607), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(607), - [anon_sym_defer] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_asm] = ACTIONS(607), - [anon_sym_AT_LBRACK] = ACTIONS(607), - [sym___double_quote] = ACTIONS(607), - [sym___single_quote] = ACTIONS(607), - [sym___c_double_quote] = ACTIONS(607), - [sym___c_single_quote] = ACTIONS(607), - [sym___r_double_quote] = ACTIONS(607), - [sym___r_single_quote] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(589), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(591), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(593), + [anon_sym_union] = ACTIONS(623), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(595), + [anon_sym_BANG] = ACTIONS(597), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(599), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(601), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_AMP_CARET_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [sym_pseudo_compile_time_identifier] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(603), + [anon_sym_map_LBRACK] = ACTIONS(605), + [anon_sym_chan] = ACTIONS(607), + [anon_sym_thread] = ACTIONS(609), + [anon_sym_atomic] = ACTIONS(611), + [anon_sym_assert] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_goto] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_DOLLARfor] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(623), + [anon_sym_AT_LBRACK] = ACTIONS(623), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), }, [72] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4669), - [sym_short_element_list] = STATE(4689), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4557), + [sym_short_element_list] = STATE(4716), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -33362,82 +33435,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [73] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4580), - [sym_short_element_list] = STATE(4579), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4620), + [sym_short_element_list] = STATE(4618), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -33492,82 +33563,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [74] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4587), - [sym_short_element_list] = STATE(4688), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4606), + [sym_short_element_list] = STATE(4616), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -33622,82 +33691,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [75] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4656), - [sym_short_element_list] = STATE(4654), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4509), + [sym_short_element_list] = STATE(4514), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -33752,82 +33819,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [76] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4664), - [sym_short_element_list] = STATE(4665), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4644), + [sym_short_element_list] = STATE(4648), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -33882,82 +33947,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [77] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4483), - [sym_short_element_list] = STATE(4484), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4567), + [sym_short_element_list] = STATE(4568), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34012,82 +34075,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [78] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4457), - [sym_short_element_list] = STATE(4460), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4395), + [sym_short_element_list] = STATE(4396), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34142,82 +34203,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [79] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4452), - [sym_short_element_list] = STATE(4508), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4556), + [sym_short_element_list] = STATE(4552), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34272,82 +34331,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [80] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4507), - [sym_short_element_list] = STATE(4382), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4700), + [sym_short_element_list] = STATE(4696), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34402,82 +34459,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [81] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4524), - [sym_short_element_list] = STATE(4523), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4706), + [sym_short_element_list] = STATE(4707), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34532,82 +34587,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [82] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4473), - [sym_short_element_list] = STATE(4472), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4517), + [sym_short_element_list] = STATE(4518), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34662,82 +34715,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [83] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4533), - [sym_short_element_list] = STATE(4535), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4467), + [sym_short_element_list] = STATE(4464), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34792,82 +34843,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [84] = { - [sym_struct_field_scope] = STATE(3475), - [sym_struct_field_declaration] = STATE(3475), - [sym__struct_field_definition] = STATE(3472), - [sym_embedded_definition] = STATE(3470), - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4660), - [sym_short_element_list] = STATE(4657), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1182), - [sym_type_reference_expression] = STATE(3430), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3430), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(3443), - [sym_function_type] = STATE(2434), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym_struct_field_scope] = STATE(3483), + [sym_struct_field_declaration] = STATE(3483), + [sym__struct_field_definition] = STATE(3482), + [sym_embedded_definition] = STATE(3481), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4468), + [sym_short_element_list] = STATE(4473), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1233), + [sym_type_reference_expression] = STATE(3428), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3428), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(3458), + [sym_function_type] = STATE(2413), + [aux_sym__struct_body_repeat1] = STATE(3392), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), [sym_identifier] = ACTIONS(625), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), @@ -34922,80 +34971,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [85] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(128), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4643), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(128), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(147), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4690), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(147), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35048,80 +35097,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [86] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(144), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4388), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(144), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(137), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4710), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(137), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35174,80 +35223,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [87] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(145), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4487), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(145), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(129), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4410), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(129), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35300,80 +35349,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [88] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(143), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4514), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(143), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(145), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4435), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(145), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35426,80 +35475,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [89] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4629), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(139), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(111), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4619), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(111), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35552,80 +35601,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [90] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4629), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(139), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(134), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4649), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(134), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35678,80 +35727,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [91] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(144), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4388), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(144), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(113), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4549), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(113), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35804,80 +35853,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [92] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(132), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4464), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(132), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(134), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4649), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(134), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -35930,80 +35979,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [93] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(117), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4694), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(117), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(130), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4613), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(130), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -36056,80 +36105,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [94] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4629), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(139), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(111), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4619), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(111), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -36182,80 +36231,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [95] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(134), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4619), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(134), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(130), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4613), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(130), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -36308,80 +36357,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [96] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(145), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4487), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(145), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(143), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4658), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(143), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -36434,80 +36483,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [97] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(127), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4492), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(127), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(147), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4690), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(147), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -36560,85 +36609,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [98] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(128), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4643), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(128), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(113), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4549), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(113), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(771), + [anon_sym_RBRACE] = ACTIONS(787), [anon_sym_LPAREN] = ACTIONS(705), [anon_sym_fn] = ACTIONS(707), [anon_sym_PLUS] = ACTIONS(709), @@ -36686,85 +36735,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [99] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(113), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4577), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(113), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(147), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4690), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(147), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(787), + [anon_sym_RBRACE] = ACTIONS(771), [anon_sym_LPAREN] = ACTIONS(705), [anon_sym_fn] = ACTIONS(707), [anon_sym_PLUS] = ACTIONS(709), @@ -36812,80 +36861,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [100] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(126), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4518), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(126), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(145), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4435), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(145), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -36938,80 +36987,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [101] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(132), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4464), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(132), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(129), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4410), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(129), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -37064,80 +37113,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [102] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(127), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4492), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(127), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(138), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4519), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(138), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -37190,85 +37239,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [103] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(128), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4643), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(128), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(116), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4474), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(116), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(795), [anon_sym_LPAREN] = ACTIONS(705), [anon_sym_fn] = ACTIONS(707), [anon_sym_PLUS] = ACTIONS(709), @@ -37316,85 +37365,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [104] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(113), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4577), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(113), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(134), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4649), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(134), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(795), + [anon_sym_RBRACE] = ACTIONS(797), [anon_sym_LPAREN] = ACTIONS(705), [anon_sym_fn] = ACTIONS(707), [anon_sym_PLUS] = ACTIONS(709), @@ -37442,85 +37491,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [105] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(128), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4643), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(128), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(147), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4690), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(147), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), [anon_sym_LBRACE] = ACTIONS(701), - [anon_sym_RBRACE] = ACTIONS(797), + [anon_sym_RBRACE] = ACTIONS(775), [anon_sym_LPAREN] = ACTIONS(705), [anon_sym_fn] = ACTIONS(707), [anon_sym_PLUS] = ACTIONS(709), @@ -37568,80 +37617,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [106] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(110), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4673), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(110), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(120), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4573), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(120), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -37694,80 +37743,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [107] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(131), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4588), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [aux_sym_select_expression_repeat1] = STATE(131), + [sym__expression] = STATE(2641), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(128), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4520), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [aux_sym_select_expression_repeat1] = STATE(128), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -37820,80 +37869,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [108] = { - [sym__expression] = STATE(1696), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_strictly_expression_list] = STATE(4326), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(813), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_simple_statement] = STATE(4515), - [sym_var_declaration] = STATE(4326), - [sym_var_definition_list] = STATE(4519), - [sym_var_definition] = STATE(3886), - [sym_assignment_statement] = STATE(4326), - [sym_block] = STATE(1560), - [sym_range_clause] = STATE(4254), - [sym_for_clause] = STATE(4254), + [sym__expression] = STATE(1664), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_strictly_expression_list] = STATE(4143), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(496), + [sym_mutable_expression] = STATE(3358), + [sym_expression_list] = STATE(3379), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_simple_statement] = STATE(4598), + [sym_var_declaration] = STATE(4143), + [sym_var_definition_list] = STATE(4621), + [sym_var_definition] = STATE(3914), + [sym_assignment_statement] = STATE(4143), + [sym_block] = STATE(1516), + [sym_range_clause] = STATE(4191), + [sym_for_clause] = STATE(4191), [sym_identifier] = ACTIONS(803), [sym_comment] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(805), @@ -37945,80 +37994,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(867), }, [109] = { - [sym__expression] = STATE(1666), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_strictly_expression_list] = STATE(4326), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(813), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3380), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_simple_statement] = STATE(4515), - [sym_var_declaration] = STATE(4326), - [sym_var_definition_list] = STATE(4519), - [sym_var_definition] = STATE(3886), - [sym_assignment_statement] = STATE(4326), - [sym_block] = STATE(3750), - [sym_range_clause] = STATE(4070), - [sym_for_clause] = STATE(4070), + [sym__expression] = STATE(1668), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_strictly_expression_list] = STATE(4143), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(496), + [sym_mutable_expression] = STATE(3358), + [sym_expression_list] = STATE(3379), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_simple_statement] = STATE(4598), + [sym_var_declaration] = STATE(4143), + [sym_var_definition_list] = STATE(4621), + [sym_var_definition] = STATE(3914), + [sym_assignment_statement] = STATE(4143), + [sym_block] = STATE(3754), + [sym_range_clause] = STATE(4340), + [sym_for_clause] = STATE(4340), [sym_identifier] = ACTIONS(803), [sym_comment] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(805), @@ -38070,78 +38119,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(867), }, [110] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4602), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4688), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -38194,78 +38243,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [111] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4417), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4633), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -38318,78 +38367,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [112] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4586), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4493), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -38442,78 +38491,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [113] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4526), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -38566,78 +38615,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [114] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(116), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4558), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(116), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4548), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -38690,78 +38739,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [115] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4623), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(112), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4489), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(112), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -38814,78 +38863,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [116] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4556), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4488), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -38938,78 +38987,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [117] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4684), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(119), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4524), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(119), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39062,78 +39111,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [118] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(119), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4681), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(119), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4602), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39186,78 +39235,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [119] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4678), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4521), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39310,78 +39359,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [120] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4562), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4586), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39434,78 +39483,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [121] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(124), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4588), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(124), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39558,78 +39607,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [122] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(125), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4510), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(125), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4434), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39682,78 +39731,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [123] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(121), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4631), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(121), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4599), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39806,78 +39855,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [124] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(112), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4583), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(112), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4590), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -39930,78 +39979,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [125] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4527), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(122), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4433), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(122), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40054,78 +40103,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [126] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4624), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(118), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4603), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(118), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40178,78 +40227,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [127] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4509), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(123), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4593), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(123), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40302,78 +40351,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [128] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4627), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4592), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40426,78 +40475,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [129] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4416), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4425), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40550,78 +40599,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [130] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(120), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4498), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(120), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4604), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40674,78 +40723,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [131] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4605), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(132), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4635), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(132), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40798,78 +40847,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [132] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4441), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4636), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -40922,78 +40971,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [133] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(135), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4440), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(135), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4392), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41046,78 +41095,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [134] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4502), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4675), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41170,78 +41219,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [135] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4435), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(136), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4679), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(136), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41294,78 +41343,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [136] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(138), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4607), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(138), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4687), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41418,78 +41467,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [137] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4488), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4692), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41542,78 +41591,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [138] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4617), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4542), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41666,78 +41715,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [139] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4581), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(110), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4691), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(110), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41790,78 +41839,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [140] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4590), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(114), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4543), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(114), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -41914,78 +41963,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [141] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(140), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4601), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(140), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(133), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4575), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(133), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42038,78 +42087,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [142] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(137), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4485), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(137), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4659), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42162,78 +42211,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [143] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4480), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4577), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42286,78 +42335,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [144] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4403), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(142), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4663), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(142), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42410,78 +42459,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [145] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4425), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4442), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42534,78 +42583,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [146] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4626), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(115), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4438), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42658,78 +42707,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [147] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4404), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(129), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4665), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42782,78 +42831,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [148] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_select_else_arn_clause] = STATE(4421), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(111), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(146), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_select_else_arn_clause] = STATE(4441), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(146), [sym_identifier] = ACTIONS(697), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(699), @@ -42906,88 +42955,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(761), }, [149] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4454), - [sym_short_element_list] = STATE(4453), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), + [sym__expression] = STATE(2774), + [sym__expression_without_blocks] = STATE(1945), + [sym__expression_with_blocks] = STATE(2923), + [sym_inc_expression] = STATE(1945), + [sym_dec_expression] = STATE(1945), + [sym_or_block_expression] = STATE(1945), + [sym_option_propagation_expression] = STATE(1945), + [sym_result_propagation_expression] = STATE(1945), + [sym_anon_struct_value_expression] = STATE(2921), + [sym_go_expression] = STATE(1945), + [sym_spawn_expression] = STATE(1945), + [sym_parenthesized_expression] = STATE(1945), + [sym_call_expression] = STATE(1945), + [sym_type_initializer] = STATE(2921), + [sym_function_literal] = STATE(1945), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1945), + [sym_receive_expression] = STATE(1945), + [sym_binary_expression] = STATE(1945), + [sym_as_type_cast_expression] = STATE(1945), + [sym__max_group] = STATE(1945), + [sym_literal] = STATE(1945), + [sym_map_init_expression] = STATE(2921), + [sym_array_creation] = STATE(1945), + [sym_fixed_array_creation] = STATE(1945), + [sym_selector_expression] = STATE(1945), + [sym_index_expression] = STATE(1945), + [sym_slice_expression] = STATE(1945), + [sym_if_expression] = STATE(2921), + [sym_compile_time_if_expression] = STATE(2921), + [sym_is_expression] = STATE(1945), + [sym_not_is_expression] = STATE(1945), + [sym_in_expression] = STATE(1945), + [sym_not_in_expression] = STATE(1945), + [sym_enum_fetch] = STATE(1945), + [sym_match_expression] = STATE(2921), + [sym_select_expression] = STATE(2921), + [sym_select_arm] = STATE(149), + [sym_select_arm_statement] = STATE(4140), + [sym_select_var_declaration] = STATE(4634), + [sym_lock_expression] = STATE(2921), + [sym_unsafe_expression] = STATE(2921), + [sym_sql_expression] = STATE(2921), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(845), + [sym_mutable_identifier] = STATE(3977), + [sym_identifier_list] = STATE(4640), + [sym_expression_without_blocks_list] = STATE(3366), + [sym_plain_type] = STATE(4295), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_send_statement] = STATE(4634), + [aux_sym_select_expression_repeat1] = STATE(149), [sym_identifier] = ACTIONS(949), [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(955), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(975), + [anon_sym_QMARK] = ACTIONS(978), + [anon_sym_BANG] = ACTIONS(981), + [anon_sym_go] = ACTIONS(984), + [anon_sym_spawn] = ACTIONS(987), + [anon_sym_json_DOTdecode] = ACTIONS(990), + [anon_sym_LBRACK2] = ACTIONS(993), + [anon_sym_TILDE] = ACTIONS(966), + [anon_sym_CARET] = ACTIONS(966), + [anon_sym_AMP] = ACTIONS(996), + [anon_sym_LT_DASH] = ACTIONS(999), + [sym_none] = ACTIONS(1002), + [sym_true] = ACTIONS(1002), + [sym_false] = ACTIONS(1002), + [sym_nil] = ACTIONS(1002), + [anon_sym_if] = ACTIONS(1005), + [anon_sym_else] = ACTIONS(1008), + [anon_sym_DOLLARif] = ACTIONS(1010), + [anon_sym_match] = ACTIONS(1013), + [anon_sym_select] = ACTIONS(1016), + [anon_sym_lock] = ACTIONS(1019), + [anon_sym_rlock] = ACTIONS(1019), + [anon_sym_unsafe] = ACTIONS(1022), + [anon_sym_sql] = ACTIONS(1025), + [sym_int_literal] = ACTIONS(1002), + [sym_float_literal] = ACTIONS(1028), + [sym_rune_literal] = ACTIONS(1028), + [sym_pseudo_compile_time_identifier] = ACTIONS(1031), + [anon_sym_shared] = ACTIONS(1034), + [anon_sym_map_LBRACK] = ACTIONS(1037), + [anon_sym_chan] = ACTIONS(1040), + [anon_sym_thread] = ACTIONS(1043), + [anon_sym_atomic] = ACTIONS(1046), + [sym___double_quote] = ACTIONS(1049), + [sym___single_quote] = ACTIONS(1052), + [sym___c_double_quote] = ACTIONS(1055), + [sym___c_single_quote] = ACTIONS(1058), + [sym___r_double_quote] = ACTIONS(1061), + [sym___r_single_quote] = ACTIONS(1064), + }, + [150] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4476), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(196), + [sym_identifier] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(951), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1069), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -43028,335 +43199,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [150] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4570), - [sym_short_element_list] = STATE(4568), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [151] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4671), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1081), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [151] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4538), - [sym_short_element_list] = STATE(4592), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [152] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4666), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1141), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [152] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4456), - [sym_short_element_list] = STATE(4450), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [153] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4624), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(194), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(957), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -43397,212 +43565,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [153] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4687), - [sym_short_element_list] = STATE(4686), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [154] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4632), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1145), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [154] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4396), - [sym_short_element_list] = STATE(4397), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [155] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4530), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), + }, + [156] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4579), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(202), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(961), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1149), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -43643,89 +43931,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [155] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4638), - [sym_short_element_list] = STATE(4635), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [157] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4443), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1151), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), + }, + [158] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4461), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(204), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(963), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1153), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -43766,212 +44175,454 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [156] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(1938), - [sym__expression_with_blocks] = STATE(2895), - [sym_inc_expression] = STATE(1938), - [sym_dec_expression] = STATE(1938), - [sym_or_block_expression] = STATE(1938), - [sym_option_propagation_expression] = STATE(1938), - [sym_result_propagation_expression] = STATE(1938), - [sym_anon_struct_value_expression] = STATE(2899), - [sym_go_expression] = STATE(1938), - [sym_spawn_expression] = STATE(1938), - [sym_parenthesized_expression] = STATE(1938), - [sym_call_expression] = STATE(1938), - [sym_type_initializer] = STATE(2899), - [sym_function_literal] = STATE(1938), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1938), - [sym_receive_expression] = STATE(1938), - [sym_binary_expression] = STATE(1938), - [sym_as_type_cast_expression] = STATE(1938), - [sym__max_group] = STATE(1938), - [sym_literal] = STATE(1938), - [sym_map_init_expression] = STATE(2899), - [sym_array_creation] = STATE(1938), - [sym_fixed_array_creation] = STATE(1938), - [sym_selector_expression] = STATE(1938), - [sym_index_expression] = STATE(1938), - [sym_slice_expression] = STATE(1938), - [sym_if_expression] = STATE(2899), - [sym_compile_time_if_expression] = STATE(2899), - [sym_is_expression] = STATE(1938), - [sym_not_is_expression] = STATE(1938), - [sym_in_expression] = STATE(1938), - [sym_not_in_expression] = STATE(1938), - [sym_enum_fetch] = STATE(1938), - [sym_match_expression] = STATE(2899), - [sym_select_expression] = STATE(2899), - [sym_select_arm] = STATE(156), - [sym_select_arm_statement] = STATE(4255), - [sym_select_var_declaration] = STATE(4513), - [sym_lock_expression] = STATE(2899), - [sym_unsafe_expression] = STATE(2899), - [sym_sql_expression] = STATE(2899), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(496), - [sym_mutable_identifier] = STATE(3974), - [sym_identifier_list] = STATE(4517), - [sym_expression_without_blocks_list] = STATE(3356), - [sym_plain_type] = STATE(4128), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_send_statement] = STATE(4513), - [aux_sym_select_expression_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(965), + [159] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4587), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_fn] = ACTIONS(979), - [anon_sym_PLUS] = ACTIONS(982), - [anon_sym_DASH] = ACTIONS(982), - [anon_sym_STAR] = ACTIONS(985), - [anon_sym_struct] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(994), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_go] = ACTIONS(1000), - [anon_sym_spawn] = ACTIONS(1003), - [anon_sym_json_DOTdecode] = ACTIONS(1006), - [anon_sym_LBRACK2] = ACTIONS(1009), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_CARET] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(1012), - [anon_sym_LT_DASH] = ACTIONS(1015), - [sym_none] = ACTIONS(1018), - [sym_true] = ACTIONS(1018), - [sym_false] = ACTIONS(1018), - [sym_nil] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_else] = ACTIONS(1024), - [anon_sym_DOLLARif] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_select] = ACTIONS(1032), - [anon_sym_lock] = ACTIONS(1035), - [anon_sym_rlock] = ACTIONS(1035), - [anon_sym_unsafe] = ACTIONS(1038), - [anon_sym_sql] = ACTIONS(1041), - [sym_int_literal] = ACTIONS(1018), - [sym_float_literal] = ACTIONS(1044), - [sym_rune_literal] = ACTIONS(1044), - [sym_pseudo_compile_time_identifier] = ACTIONS(1047), - [anon_sym_shared] = ACTIONS(1050), - [anon_sym_map_LBRACK] = ACTIONS(1053), - [anon_sym_chan] = ACTIONS(1056), - [anon_sym_thread] = ACTIONS(1059), - [anon_sym_atomic] = ACTIONS(1062), - [sym___double_quote] = ACTIONS(1065), - [sym___single_quote] = ACTIONS(1068), - [sym___c_double_quote] = ACTIONS(1071), - [sym___c_single_quote] = ACTIONS(1074), - [sym___r_double_quote] = ACTIONS(1077), - [sym___r_single_quote] = ACTIONS(1080), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [157] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4637), - [sym_short_element_list] = STATE(4636), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [160] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4516), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1157), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), + }, + [161] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4486), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), + }, + [162] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4713), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(192), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1083), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1161), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -44012,89 +44663,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [158] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4500), - [sym_short_element_list] = STATE(4501), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [163] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4610), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(203), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1085), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1163), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -44135,89 +44785,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [159] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4571), - [sym_short_element_list] = STATE(4584), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [164] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4584), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1165), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), + }, + [165] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4623), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(199), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1087), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1167), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -44258,89 +45029,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [160] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4548), - [sym_short_element_list] = STATE(4555), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [166] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4684), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(193), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1089), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1169), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -44381,89 +45151,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [161] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4565), - [sym_short_element_list] = STATE(4561), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [167] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4695), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), + }, + [168] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4651), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(198), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1091), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1173), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -44504,89 +45395,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [162] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4595), - [sym_short_element_list] = STATE(4598), - [sym_element] = STATE(2090), - [sym_keyed_element] = STATE(3468), - [sym_field_name] = STATE(4466), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1180), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(3468), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_element_list_repeat1] = STATE(3465), - [aux_sym_short_element_list_repeat1] = STATE(249), - [sym_identifier] = ACTIONS(949), + [169] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4457), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(200), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1093), [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1071), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -44627,1673 +45517,939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [163] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4603), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1101), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [164] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4528), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [165] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4442), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [166] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4560), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [167] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4628), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [168] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4401), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [169] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4432), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, [170] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4685), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4523), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(195), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1177), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [171] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4504), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4541), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1175), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [172] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4608), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4423), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1177), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [173] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4616), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_short_lambda] = STATE(4416), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(201), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1183), + [anon_sym_PIPE] = ACTIONS(1071), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [174] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4399), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arms] = STATE(4605), + [sym_match_arm] = STATE(181), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(181), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), + [aux_sym_match_arms_repeat1] = STATE(181), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1181), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [175] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arms] = STATE(4578), - [sym_match_arm] = STATE(188), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(188), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(188), - [sym_identifier] = ACTIONS(1095), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2667), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2860), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4627), + [sym_attribute_expression] = STATE(4019), + [sym_if_attribute] = STATE(4111), + [sym__plain_attribute] = STATE(4111), + [sym_literal_attribute] = STATE(4111), + [sym_value_attribute] = STATE(4038), + [sym_key_value_attribute] = STATE(4111), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1219), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1229), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [176] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(199), - [sym_identifier] = ACTIONS(949), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(3926), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1251), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1254), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1260), + [anon_sym_LPAREN] = ACTIONS(1262), + [anon_sym_fn] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1268), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1277), + [anon_sym_QMARK] = ACTIONS(1280), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_go] = ACTIONS(1286), + [anon_sym_spawn] = ACTIONS(1289), + [anon_sym_json_DOTdecode] = ACTIONS(1292), + [anon_sym_LBRACK2] = ACTIONS(1295), + [anon_sym_TILDE] = ACTIONS(1268), + [anon_sym_CARET] = ACTIONS(1268), + [anon_sym_AMP] = ACTIONS(1298), + [anon_sym_LT_DASH] = ACTIONS(1301), + [sym_none] = ACTIONS(1304), + [sym_true] = ACTIONS(1304), + [sym_false] = ACTIONS(1304), + [sym_nil] = ACTIONS(1304), + [anon_sym_if] = ACTIONS(1307), + [anon_sym_else] = ACTIONS(1310), + [anon_sym_DOLLARif] = ACTIONS(1313), + [anon_sym_match] = ACTIONS(1316), + [anon_sym_select] = ACTIONS(1319), + [anon_sym_lock] = ACTIONS(1322), + [anon_sym_rlock] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1325), + [anon_sym_sql] = ACTIONS(1328), + [sym_int_literal] = ACTIONS(1304), + [sym_float_literal] = ACTIONS(1331), + [sym_rune_literal] = ACTIONS(1331), + [sym_pseudo_compile_time_identifier] = ACTIONS(1334), + [anon_sym_shared] = ACTIONS(1337), + [anon_sym_map_LBRACK] = ACTIONS(1340), + [anon_sym_chan] = ACTIONS(1343), + [anon_sym_thread] = ACTIONS(1346), + [anon_sym_atomic] = ACTIONS(1349), + [sym___double_quote] = ACTIONS(1352), + [sym___single_quote] = ACTIONS(1355), + [sym___c_double_quote] = ACTIONS(1358), + [sym___c_single_quote] = ACTIONS(1361), + [sym___r_double_quote] = ACTIONS(1364), + [sym___r_single_quote] = ACTIONS(1367), + }, + [177] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4419), + [sym_short_element_list] = STATE(4421), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1370), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1185), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -46334,87 +46490,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [177] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(200), - [sym_identifier] = ACTIONS(949), + [178] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4539), + [sym_short_element_list] = STATE(4540), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1372), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1189), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -46455,87 +46611,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [178] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [179] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4661), + [sym_short_element_list] = STATE(4662), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1374), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1191), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -46576,208 +46732,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [179] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arm] = STATE(179), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(179), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [180] = { + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1350), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1420), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_attribute_expression] = STATE(4019), + [sym_if_attribute] = STATE(4111), + [sym__plain_attribute] = STATE(4111), + [sym_literal_attribute] = STATE(4111), + [sym_value_attribute] = STATE(4038), + [sym_key_value_attribute] = STATE(4111), + [aux_sym__array_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1410), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1420), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), + }, + [181] = { + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2635), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2635), + [sym_dec_expression] = STATE(2635), + [sym_or_block_expression] = STATE(2635), + [sym_option_propagation_expression] = STATE(2635), + [sym_result_propagation_expression] = STATE(2635), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2635), + [sym_spawn_expression] = STATE(2635), + [sym_parenthesized_expression] = STATE(2635), + [sym_call_expression] = STATE(2635), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2635), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2635), + [sym_receive_expression] = STATE(2635), + [sym_binary_expression] = STATE(2635), + [sym_as_type_cast_expression] = STATE(2635), + [sym__max_group] = STATE(2635), + [sym_literal] = STATE(2635), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2635), + [sym_fixed_array_creation] = STATE(2635), + [sym_selector_expression] = STATE(2635), + [sym_index_expression] = STATE(2635), + [sym_slice_expression] = STATE(2635), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2635), + [sym_not_is_expression] = STATE(2635), + [sym_in_expression] = STATE(2635), + [sym_not_in_expression] = STATE(2635), + [sym_enum_fetch] = STATE(2635), + [sym_match_expression] = STATE(2816), + [sym_match_arm] = STATE(176), + [sym_match_expression_list] = STATE(4208), + [sym_match_arm_type] = STATE(3939), + [sym_match_else_arm_clause] = STATE(176), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(1193), + [aux_sym_match_arms_repeat1] = STATE(176), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1199), - [anon_sym_RBRACE] = ACTIONS(1202), - [anon_sym_LPAREN] = ACTIONS(1204), - [anon_sym_fn] = ACTIONS(1207), - [anon_sym_PLUS] = ACTIONS(1210), - [anon_sym_DASH] = ACTIONS(1210), - [anon_sym_STAR] = ACTIONS(1213), - [anon_sym_struct] = ACTIONS(1216), - [anon_sym_mut] = ACTIONS(1219), - [anon_sym_QMARK] = ACTIONS(1222), - [anon_sym_BANG] = ACTIONS(1225), - [anon_sym_go] = ACTIONS(1228), - [anon_sym_spawn] = ACTIONS(1231), - [anon_sym_json_DOTdecode] = ACTIONS(1234), - [anon_sym_LBRACK2] = ACTIONS(1237), - [anon_sym_TILDE] = ACTIONS(1210), - [anon_sym_CARET] = ACTIONS(1210), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_LT_DASH] = ACTIONS(1243), - [sym_none] = ACTIONS(1246), - [sym_true] = ACTIONS(1246), - [sym_false] = ACTIONS(1246), - [sym_nil] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1249), - [anon_sym_else] = ACTIONS(1252), - [anon_sym_DOLLARif] = ACTIONS(1255), - [anon_sym_match] = ACTIONS(1258), - [anon_sym_select] = ACTIONS(1261), - [anon_sym_lock] = ACTIONS(1264), - [anon_sym_rlock] = ACTIONS(1264), - [anon_sym_unsafe] = ACTIONS(1267), - [anon_sym_sql] = ACTIONS(1270), - [sym_int_literal] = ACTIONS(1246), - [sym_float_literal] = ACTIONS(1273), - [sym_rune_literal] = ACTIONS(1273), - [sym_pseudo_compile_time_identifier] = ACTIONS(1276), - [anon_sym_shared] = ACTIONS(1279), - [anon_sym_map_LBRACK] = ACTIONS(1282), - [anon_sym_chan] = ACTIONS(1285), - [anon_sym_thread] = ACTIONS(1288), - [anon_sym_atomic] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1294), - [sym___single_quote] = ACTIONS(1297), - [sym___c_double_quote] = ACTIONS(1300), - [sym___c_single_quote] = ACTIONS(1303), - [sym___r_double_quote] = ACTIONS(1306), - [sym___r_single_quote] = ACTIONS(1309), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_RBRACE] = ACTIONS(1442), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_else] = ACTIONS(1111), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(1127), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [180] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [182] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4705), + [sym_short_element_list] = STATE(4703), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1444), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1312), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -46818,87 +47095,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [181] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [183] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4676), + [sym_short_element_list] = STATE(4674), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1446), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1314), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -46939,87 +47216,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [182] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(195), - [sym_identifier] = ACTIONS(949), + [184] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4537), + [sym_short_element_list] = STATE(4536), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1448), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1316), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -47060,87 +47337,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [183] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(203), - [sym_identifier] = ACTIONS(949), + [185] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4560), + [sym_short_element_list] = STATE(4565), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1450), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1318), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -47181,87 +47458,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [184] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [186] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4591), + [sym_short_element_list] = STATE(4582), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1452), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1320), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -47302,87 +47579,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [185] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(184), - [sym_identifier] = ACTIONS(949), + [187] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4678), + [sym_short_element_list] = STATE(4672), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1454), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1322), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -47423,87 +47700,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [186] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(181), - [sym_identifier] = ACTIONS(949), + [188] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4452), + [sym_short_element_list] = STATE(4447), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1456), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1324), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -47544,87 +47821,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [187] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(180), - [sym_identifier] = ACTIONS(949), + [189] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4628), + [sym_short_element_list] = STATE(4631), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1458), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1326), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -47665,329 +47942,328 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [188] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2639), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2639), - [sym_dec_expression] = STATE(2639), - [sym_or_block_expression] = STATE(2639), - [sym_option_propagation_expression] = STATE(2639), - [sym_result_propagation_expression] = STATE(2639), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2639), - [sym_spawn_expression] = STATE(2639), - [sym_parenthesized_expression] = STATE(2639), - [sym_call_expression] = STATE(2639), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2639), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2639), - [sym_receive_expression] = STATE(2639), - [sym_binary_expression] = STATE(2639), - [sym_as_type_cast_expression] = STATE(2639), - [sym__max_group] = STATE(2639), - [sym_literal] = STATE(2639), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2639), - [sym_fixed_array_creation] = STATE(2639), - [sym_selector_expression] = STATE(2639), - [sym_index_expression] = STATE(2639), - [sym_slice_expression] = STATE(2639), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2639), - [sym_not_is_expression] = STATE(2639), - [sym_in_expression] = STATE(2639), - [sym_not_in_expression] = STATE(2639), - [sym_enum_fetch] = STATE(2639), - [sym_match_expression] = STATE(2778), - [sym_match_arm] = STATE(179), - [sym_match_expression_list] = STATE(4374), - [sym_match_arm_type] = STATE(3929), - [sym_match_else_arm_clause] = STATE(179), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(3926), - [aux_sym_match_arms_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(1095), + [190] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4608), + [sym_short_element_list] = STATE(4607), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1460), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_else] = ACTIONS(1131), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(1147), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [189] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1377), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1416), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_attribute_expression] = STATE(3877), - [sym_if_attribute] = STATE(4223), - [sym__plain_attribute] = STATE(4223), - [sym_literal_attribute] = STATE(4223), - [sym_value_attribute] = STATE(3878), - [sym_key_value_attribute] = STATE(4223), - [aux_sym__array_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1330), + [191] = { + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_element_list] = STATE(4482), + [sym_short_element_list] = STATE(4483), + [sym_keyed_element] = STATE(3475), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1210), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(3475), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_element_list_repeat1] = STATE(3498), + [aux_sym_short_element_list_repeat1] = STATE(358), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(1462), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(643), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1364), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1374), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [190] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(193), - [sym_identifier] = ACTIONS(949), + [192] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1396), + [anon_sym_RPAREN] = ACTIONS(1464), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -48028,87 +48304,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [191] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(178), - [sym_identifier] = ACTIONS(949), + [193] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_RPAREN] = ACTIONS(1466), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -48149,87 +48424,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [192] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [194] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1400), + [anon_sym_RPAREN] = ACTIONS(1468), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -48270,87 +48544,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [193] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [195] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1402), + [anon_sym_RPAREN] = ACTIONS(1470), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -48391,87 +48664,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [194] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(202), - [sym_identifier] = ACTIONS(949), + [196] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1404), + [anon_sym_RPAREN] = ACTIONS(1472), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -48512,87 +48784,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [195] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [197] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1474), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1480), + [anon_sym_LPAREN] = ACTIONS(1483), + [anon_sym_RPAREN] = ACTIONS(1486), + [anon_sym_fn] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1491), + [anon_sym_DASH] = ACTIONS(1491), + [anon_sym_STAR] = ACTIONS(1494), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), + [anon_sym_struct] = ACTIONS(1500), + [anon_sym_mut] = ACTIONS(1503), + [anon_sym_QMARK] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1509), + [anon_sym_go] = ACTIONS(1512), + [anon_sym_spawn] = ACTIONS(1515), + [anon_sym_json_DOTdecode] = ACTIONS(1518), + [anon_sym_LBRACK2] = ACTIONS(1521), + [anon_sym_TILDE] = ACTIONS(1491), + [anon_sym_CARET] = ACTIONS(1491), + [anon_sym_AMP] = ACTIONS(1524), + [anon_sym_LT_DASH] = ACTIONS(1527), + [sym_none] = ACTIONS(1530), + [sym_true] = ACTIONS(1530), + [sym_false] = ACTIONS(1530), + [sym_nil] = ACTIONS(1530), + [anon_sym_if] = ACTIONS(1533), + [anon_sym_DOLLARif] = ACTIONS(1536), + [anon_sym_match] = ACTIONS(1539), + [anon_sym_select] = ACTIONS(1542), + [anon_sym_lock] = ACTIONS(1545), + [anon_sym_rlock] = ACTIONS(1545), + [anon_sym_unsafe] = ACTIONS(1548), + [anon_sym_sql] = ACTIONS(1551), + [sym_int_literal] = ACTIONS(1530), + [sym_float_literal] = ACTIONS(1554), + [sym_rune_literal] = ACTIONS(1554), + [sym_pseudo_compile_time_identifier] = ACTIONS(1557), + [anon_sym_shared] = ACTIONS(1560), + [anon_sym_map_LBRACK] = ACTIONS(1563), + [anon_sym_chan] = ACTIONS(1566), + [anon_sym_thread] = ACTIONS(1569), + [anon_sym_atomic] = ACTIONS(1572), + [sym___double_quote] = ACTIONS(1575), + [sym___single_quote] = ACTIONS(1578), + [sym___c_double_quote] = ACTIONS(1581), + [sym___c_single_quote] = ACTIONS(1584), + [sym___r_double_quote] = ACTIONS(1587), + [sym___r_single_quote] = ACTIONS(1590), + }, + [198] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_RPAREN] = ACTIONS(1593), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -48633,571 +49024,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [196] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2697), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2874), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4477), - [sym_attribute_expression] = STATE(3877), - [sym_if_attribute] = STATE(4223), - [sym__plain_attribute] = STATE(4223), - [sym_literal_attribute] = STATE(4223), - [sym_value_attribute] = STATE(3878), - [sym_key_value_attribute] = STATE(4223), - [sym_identifier] = ACTIONS(1408), + [199] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_RPAREN] = ACTIONS(1595), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1440), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1450), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [197] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [200] = { + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1472), + [anon_sym_RPAREN] = ACTIONS(1597), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [198] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(1474), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_fn] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1491), - [anon_sym_DASH] = ACTIONS(1491), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1497), - [anon_sym_struct] = ACTIONS(1500), - [anon_sym_mut] = ACTIONS(1503), - [anon_sym_QMARK] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1509), - [anon_sym_go] = ACTIONS(1512), - [anon_sym_spawn] = ACTIONS(1515), - [anon_sym_json_DOTdecode] = ACTIONS(1518), - [anon_sym_LBRACK2] = ACTIONS(1521), - [anon_sym_TILDE] = ACTIONS(1491), - [anon_sym_CARET] = ACTIONS(1491), - [anon_sym_AMP] = ACTIONS(1524), - [anon_sym_LT_DASH] = ACTIONS(1527), - [sym_none] = ACTIONS(1530), - [sym_true] = ACTIONS(1530), - [sym_false] = ACTIONS(1530), - [sym_nil] = ACTIONS(1530), - [anon_sym_if] = ACTIONS(1533), - [anon_sym_DOLLARif] = ACTIONS(1536), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_select] = ACTIONS(1542), - [anon_sym_lock] = ACTIONS(1545), - [anon_sym_rlock] = ACTIONS(1545), - [anon_sym_unsafe] = ACTIONS(1548), - [anon_sym_sql] = ACTIONS(1551), - [sym_int_literal] = ACTIONS(1530), - [sym_float_literal] = ACTIONS(1554), - [sym_rune_literal] = ACTIONS(1554), - [sym_pseudo_compile_time_identifier] = ACTIONS(1557), - [anon_sym_shared] = ACTIONS(1560), - [anon_sym_map_LBRACK] = ACTIONS(1563), - [anon_sym_chan] = ACTIONS(1566), - [anon_sym_thread] = ACTIONS(1569), - [anon_sym_atomic] = ACTIONS(1572), - [sym___double_quote] = ACTIONS(1575), - [sym___single_quote] = ACTIONS(1578), - [sym___c_double_quote] = ACTIONS(1581), - [sym___c_single_quote] = ACTIONS(1584), - [sym___r_double_quote] = ACTIONS(1587), - [sym___r_single_quote] = ACTIONS(1590), - }, - [199] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1593), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(645), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [200] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -49239,86 +49265,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [201] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [aux_sym_argument_list_repeat1] = STATE(197), - [sym_identifier] = ACTIONS(949), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1599), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -49360,86 +49385,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [202] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1601), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -49481,86 +49505,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [203] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(198), - [sym_identifier] = ACTIONS(949), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1601), + [anon_sym_RPAREN] = ACTIONS(1603), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -49602,86 +49625,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [204] = { - [sym__expression] = STATE(1143), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_argument] = STATE(1943), - [sym_type_initializer] = STATE(1176), - [sym_keyed_element] = STATE(1941), - [sym_field_name] = STATE(4545), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1215), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_spread_expression] = STATE(1941), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(833), - [sym_mutable_expression] = STATE(1941), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_argument_list_repeat1] = STATE(192), - [sym_identifier] = ACTIONS(949), + [sym__expression] = STATE(1154), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_argument] = STATE(1944), + [sym_type_initializer] = STATE(1205), + [sym_keyed_element] = STATE(1943), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1254), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_spread_expression] = STATE(1943), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(705), + [sym_mutable_expression] = STATE(1943), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_argument_list_repeat1] = STATE(197), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_RPAREN] = ACTIONS(1603), + [anon_sym_RPAREN] = ACTIONS(1605), [anon_sym_fn] = ACTIONS(637), [anon_sym_PLUS] = ACTIONS(639), [anon_sym_DASH] = ACTIONS(639), [anon_sym_STAR] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1073), [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), @@ -49723,317 +49745,555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(695), }, [205] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(603), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [sym_reference_expression] = STATE(4403), + [sym_type_reference_expression] = STATE(1014), + [sym_plain_type] = STATE(1061), + [sym__plain_type_without_special] = STATE(1097), + [sym_anon_struct_type] = STATE(1096), + [sym_multi_return_type] = STATE(1097), + [sym_result_type] = STATE(1097), + [sym_option_type] = STATE(1097), + [sym_qualified_type] = STATE(1014), + [sym_fixed_array_type] = STATE(1096), + [sym_array_type] = STATE(1096), + [sym_pointer_type] = STATE(1096), + [sym_wrong_pointer_type] = STATE(1096), + [sym_map_type] = STATE(1096), + [sym_channel_type] = STATE(1096), + [sym_shared_type] = STATE(1096), + [sym_thread_type] = STATE(1096), + [sym_atomic_type] = STATE(1096), + [sym_generic_type] = STATE(1096), + [sym_function_type] = STATE(1096), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_identifier] = ACTIONS(1607), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_const] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym___global] = ACTIONS(607), - [anon_sym_type] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_union] = ACTIONS(607), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_enum] = ACTIONS(607), - [anon_sym_interface] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(1605), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(607), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(607), - [sym_rune_literal] = ACTIONS(607), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_assert] = ACTIONS(607), - [anon_sym_defer] = ACTIONS(607), - [anon_sym_goto] = ACTIONS(607), - [anon_sym_break] = ACTIONS(607), - [anon_sym_continue] = ACTIONS(607), - [anon_sym_return] = ACTIONS(607), - [anon_sym_DOLLARfor] = ACTIONS(607), - [anon_sym_for] = ACTIONS(607), - [anon_sym_POUND] = ACTIONS(607), - [anon_sym_asm] = ACTIONS(607), - [anon_sym_AT_LBRACK] = ACTIONS(607), - [sym___double_quote] = ACTIONS(607), - [sym___single_quote] = ACTIONS(607), - [sym___c_double_quote] = ACTIONS(607), - [sym___c_single_quote] = ACTIONS(607), - [sym___r_double_quote] = ACTIONS(607), - [sym___r_single_quote] = ACTIONS(607), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym___global] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_interface] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [sym_pseudo_compile_time_identifier] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(1625), + [anon_sym_map_LBRACK] = ACTIONS(1627), + [anon_sym_chan] = ACTIONS(1629), + [anon_sym_thread] = ACTIONS(1631), + [anon_sym_atomic] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(585), + [anon_sym_defer] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_DOLLARfor] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_asm] = ACTIONS(585), + [anon_sym_AT_LBRACK] = ACTIONS(585), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, [206] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_strictly_expression_list] = STATE(4326), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(813), - [sym_mutable_expression] = STATE(3346), - [sym_expression_list] = STATE(3384), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_simple_statement] = STATE(4615), - [sym_var_declaration] = STATE(4326), - [sym_assignment_statement] = STATE(4326), + [sym_reference_expression] = STATE(4403), + [sym_type_reference_expression] = STATE(1014), + [sym_plain_type] = STATE(1076), + [sym__plain_type_without_special] = STATE(1097), + [sym_anon_struct_type] = STATE(1096), + [sym_multi_return_type] = STATE(1097), + [sym_result_type] = STATE(1097), + [sym_option_type] = STATE(1097), + [sym_qualified_type] = STATE(1014), + [sym_fixed_array_type] = STATE(1096), + [sym_array_type] = STATE(1096), + [sym_pointer_type] = STATE(1096), + [sym_wrong_pointer_type] = STATE(1096), + [sym_map_type] = STATE(1096), + [sym_channel_type] = STATE(1096), + [sym_shared_type] = STATE(1096), + [sym_thread_type] = STATE(1096), + [sym_atomic_type] = STATE(1096), + [sym_generic_type] = STATE(1096), + [sym_function_type] = STATE(1096), + [ts_builtin_sym_end] = ACTIONS(617), [sym_identifier] = ACTIONS(1607), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1609), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym___global] = ACTIONS(619), + [anon_sym_type] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_interface] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [sym_pseudo_compile_time_identifier] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(1625), + [anon_sym_map_LBRACK] = ACTIONS(1627), + [anon_sym_chan] = ACTIONS(1629), + [anon_sym_thread] = ACTIONS(1631), + [anon_sym_atomic] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_defer] = ACTIONS(619), + [anon_sym_goto] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_DOLLARfor] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_asm] = ACTIONS(619), + [anon_sym_AT_LBRACK] = ACTIONS(619), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), + }, + [207] = { + [sym__expression] = STATE(2319), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(608), + [sym_mutable_expression] = STATE(3517), + [sym_expression_list] = STATE(3750), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [anon_sym_LF] = ACTIONS(493), + [anon_sym_CR] = ACTIONS(493), + [anon_sym_CR_LF] = ACTIONS(493), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(1639), + [anon_sym_RBRACE] = ACTIONS(493), + [anon_sym_LPAREN] = ACTIONS(1641), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(1651), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(1657), + [anon_sym_LBRACK2] = ACTIONS(1659), + [anon_sym_TILDE] = ACTIONS(1645), + [anon_sym_CARET] = ACTIONS(1645), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_LT_DASH] = ACTIONS(1663), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(1665), + [sym_rune_literal] = ACTIONS(1665), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1683), + [sym___single_quote] = ACTIONS(1685), + [sym___c_double_quote] = ACTIONS(1687), + [sym___c_single_quote] = ACTIONS(1689), + [sym___r_double_quote] = ACTIONS(1691), + [sym___r_single_quote] = ACTIONS(1693), }, - [207] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_strictly_expression_list] = STATE(4326), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(813), - [sym_mutable_expression] = STATE(3346), - [sym_expression_list] = STATE(3384), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_simple_statement] = STATE(4463), - [sym_var_declaration] = STATE(4326), - [sym_assignment_statement] = STATE(4326), + [208] = { + [sym_reference_expression] = STATE(4403), + [sym_type_reference_expression] = STATE(1014), + [sym_plain_type] = STATE(1090), + [sym__plain_type_without_special] = STATE(1097), + [sym_anon_struct_type] = STATE(1096), + [sym_multi_return_type] = STATE(1097), + [sym_result_type] = STATE(1097), + [sym_option_type] = STATE(1097), + [sym_qualified_type] = STATE(1014), + [sym_fixed_array_type] = STATE(1096), + [sym_array_type] = STATE(1096), + [sym_pointer_type] = STATE(1096), + [sym_wrong_pointer_type] = STATE(1096), + [sym_map_type] = STATE(1096), + [sym_channel_type] = STATE(1096), + [sym_shared_type] = STATE(1096), + [sym_thread_type] = STATE(1096), + [sym_atomic_type] = STATE(1096), + [sym_generic_type] = STATE(1096), + [sym_function_type] = STATE(1096), + [ts_builtin_sym_end] = ACTIONS(621), [sym_identifier] = ACTIONS(1607), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(1609), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(1611), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(1613), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(1615), + [anon_sym_union] = ACTIONS(623), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(1617), + [anon_sym_BANG] = ACTIONS(1619), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(1621), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(1623), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [sym_pseudo_compile_time_identifier] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(1625), + [anon_sym_map_LBRACK] = ACTIONS(1627), + [anon_sym_chan] = ACTIONS(1629), + [anon_sym_thread] = ACTIONS(1631), + [anon_sym_atomic] = ACTIONS(1633), + [anon_sym_assert] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_goto] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_DOLLARfor] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(623), + [anon_sym_AT_LBRACK] = ACTIONS(623), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), + }, + [209] = { + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_strictly_expression_list] = STATE(4143), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(496), + [sym_mutable_expression] = STATE(3356), + [sym_expression_list] = STATE(3402), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_simple_statement] = STATE(4494), + [sym_var_declaration] = STATE(4143), + [sym_assignment_statement] = STATE(4143), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1611), + [anon_sym_LBRACE] = ACTIONS(1697), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), [anon_sym_PLUS] = ACTIONS(815), @@ -50079,80 +50339,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [208] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_strictly_expression_list] = STATE(4326), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(813), - [sym_mutable_expression] = STATE(3346), - [sym_expression_list] = STATE(3384), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_simple_statement] = STATE(4471), - [sym_var_declaration] = STATE(4326), - [sym_assignment_statement] = STATE(4326), - [sym_identifier] = ACTIONS(1607), + [210] = { + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_strictly_expression_list] = STATE(4143), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(496), + [sym_mutable_expression] = STATE(3356), + [sym_expression_list] = STATE(3402), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_simple_statement] = STATE(4397), + [sym_var_declaration] = STATE(4143), + [sym_assignment_statement] = STATE(4143), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1613), + [anon_sym_LBRACE] = ACTIONS(1699), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), [anon_sym_PLUS] = ACTIONS(815), @@ -50198,80 +50458,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [209] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_strictly_expression_list] = STATE(4326), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(813), - [sym_mutable_expression] = STATE(3346), - [sym_expression_list] = STATE(3384), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_simple_statement] = STATE(4474), - [sym_var_declaration] = STATE(4326), - [sym_assignment_statement] = STATE(4326), - [sym_identifier] = ACTIONS(1607), + [211] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [ts_builtin_sym_end] = ACTIONS(613), + [sym_identifier] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_const] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym___global] = ACTIONS(615), + [anon_sym_type] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_union] = ACTIONS(615), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_enum] = ACTIONS(615), + [anon_sym_interface] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [sym_pseudo_compile_time_identifier] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(615), + [anon_sym_map_LBRACK] = ACTIONS(615), + [anon_sym_chan] = ACTIONS(615), + [anon_sym_thread] = ACTIONS(615), + [anon_sym_atomic] = ACTIONS(615), + [anon_sym_assert] = ACTIONS(615), + [anon_sym_defer] = ACTIONS(615), + [anon_sym_goto] = ACTIONS(615), + [anon_sym_break] = ACTIONS(615), + [anon_sym_continue] = ACTIONS(615), + [anon_sym_return] = ACTIONS(615), + [anon_sym_DOLLARfor] = ACTIONS(615), + [anon_sym_for] = ACTIONS(615), + [anon_sym_POUND] = ACTIONS(615), + [anon_sym_asm] = ACTIONS(615), + [anon_sym_AT_LBRACK] = ACTIONS(615), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), + }, + [212] = { + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_strictly_expression_list] = STATE(4143), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(496), + [sym_mutable_expression] = STATE(3356), + [sym_expression_list] = STATE(3402), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_simple_statement] = STATE(4571), + [sym_var_declaration] = STATE(4143), + [sym_assignment_statement] = STATE(4143), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1615), + [anon_sym_LBRACE] = ACTIONS(1701), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), [anon_sym_PLUS] = ACTIONS(815), @@ -50317,386 +50696,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [210] = { - [sym_reference_expression] = STATE(4537), - [sym_type_reference_expression] = STATE(1005), - [sym_plain_type] = STATE(1107), - [sym__plain_type_without_special] = STATE(1035), - [sym_anon_struct_type] = STATE(1039), - [sym_multi_return_type] = STATE(1035), - [sym_result_type] = STATE(1035), - [sym_option_type] = STATE(1035), - [sym_qualified_type] = STATE(1005), - [sym_fixed_array_type] = STATE(1039), - [sym_array_type] = STATE(1039), - [sym_pointer_type] = STATE(1039), - [sym_wrong_pointer_type] = STATE(1039), - [sym_map_type] = STATE(1039), - [sym_channel_type] = STATE(1039), - [sym_shared_type] = STATE(1039), - [sym_thread_type] = STATE(1039), - [sym_atomic_type] = STATE(1039), - [sym_generic_type] = STATE(1039), - [sym_function_type] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(495), - [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(1619), - [anon_sym___global] = ACTIONS(593), - [anon_sym_type] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(1623), - [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(591), - [anon_sym_struct] = ACTIONS(1625), - [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(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(593), - [anon_sym_LBRACK2] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(1633), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(1635), - [anon_sym_map_LBRACK] = ACTIONS(1637), - [anon_sym_chan] = ACTIONS(1639), - [anon_sym_thread] = ACTIONS(1641), - [anon_sym_atomic] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(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), - }, - [211] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [ts_builtin_sym_end] = ACTIONS(599), - [sym_identifier] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym___global] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_union] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_interface] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(601), - [anon_sym_spawn] = ACTIONS(601), - [anon_sym_json_DOTdecode] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_DASH] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [sym_none] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_nil] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_DOLLARif] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_match] = ACTIONS(601), - [anon_sym_select] = ACTIONS(601), - [anon_sym_lock] = ACTIONS(601), - [anon_sym_rlock] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_sql] = ACTIONS(601), - [sym_int_literal] = ACTIONS(601), - [sym_float_literal] = ACTIONS(601), - [sym_rune_literal] = ACTIONS(601), - [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(601), - [anon_sym_map_LBRACK] = ACTIONS(601), - [anon_sym_chan] = ACTIONS(601), - [anon_sym_thread] = ACTIONS(601), - [anon_sym_atomic] = ACTIONS(601), - [anon_sym_assert] = ACTIONS(601), - [anon_sym_defer] = ACTIONS(601), - [anon_sym_goto] = ACTIONS(601), - [anon_sym_break] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_DOLLARfor] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [anon_sym_POUND] = ACTIONS(601), - [anon_sym_asm] = ACTIONS(601), - [anon_sym_AT_LBRACK] = ACTIONS(601), - [sym___double_quote] = ACTIONS(601), - [sym___single_quote] = ACTIONS(601), - [sym___c_double_quote] = ACTIONS(601), - [sym___c_single_quote] = ACTIONS(601), - [sym___r_double_quote] = ACTIONS(601), - [sym___r_single_quote] = ACTIONS(601), - }, - [212] = { - [sym__expression] = STATE(2318), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3525), - [sym_expression_list] = STATE(3748), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LF] = ACTIONS(493), - [anon_sym_CR] = ACTIONS(493), - [anon_sym_CR_LF] = ACTIONS(493), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(493), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(1655), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_STAR] = ACTIONS(1657), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(1661), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(1667), - [anon_sym_LBRACK2] = ACTIONS(1669), - [anon_sym_TILDE] = ACTIONS(1655), - [anon_sym_CARET] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1671), - [anon_sym_LT_DASH] = ACTIONS(1673), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(1675), - [sym_rune_literal] = ACTIONS(1675), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1693), - [sym___single_quote] = ACTIONS(1695), - [sym___c_double_quote] = ACTIONS(1697), - [sym___c_single_quote] = ACTIONS(1699), - [sym___r_double_quote] = ACTIONS(1701), - [sym___r_single_quote] = ACTIONS(1703), - }, [213] = { - [sym_reference_expression] = STATE(4537), - [sym_type_reference_expression] = STATE(1005), - [sym_plain_type] = STATE(1050), - [sym__plain_type_without_special] = STATE(1035), - [sym_anon_struct_type] = STATE(1039), - [sym_multi_return_type] = STATE(1035), - [sym_result_type] = STATE(1035), - [sym_option_type] = STATE(1035), - [sym_qualified_type] = STATE(1005), - [sym_fixed_array_type] = STATE(1039), - [sym_array_type] = STATE(1039), - [sym_pointer_type] = STATE(1039), - [sym_wrong_pointer_type] = STATE(1039), - [sym_map_type] = STATE(1039), - [sym_channel_type] = STATE(1039), - [sym_shared_type] = STATE(1039), - [sym_thread_type] = STATE(1039), - [sym_atomic_type] = STATE(1039), - [sym_generic_type] = STATE(1039), - [sym_function_type] = STATE(1039), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [ts_builtin_sym_end] = ACTIONS(559), - [sym_identifier] = ACTIONS(1617), + [sym_identifier] = ACTIONS(561), [anon_sym_LF] = ACTIONS(563), [anon_sym_CR] = ACTIONS(563), [anon_sym_CR_LF] = ACTIONS(563), @@ -50706,14 +50728,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_const] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(1619), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym___global] = ACTIONS(563), [anon_sym_type] = ACTIONS(563), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(1621), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(1623), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(563), @@ -50723,7 +50745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(563), [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(1625), + [anon_sym_struct] = ACTIONS(571), [anon_sym_union] = ACTIONS(563), [anon_sym_pub] = ACTIONS(563), [anon_sym_mut] = ACTIONS(563), @@ -50731,15 +50753,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(1703), [anon_sym_go] = ACTIONS(563), [anon_sym_spawn] = ACTIONS(563), [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(1631), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_TILDE] = ACTIONS(563), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(1633), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), @@ -50770,11 +50792,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(563), [sym_rune_literal] = ACTIONS(563), [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(1635), - [anon_sym_map_LBRACK] = ACTIONS(1637), - [anon_sym_chan] = ACTIONS(1639), - [anon_sym_thread] = ACTIONS(1641), - [anon_sym_atomic] = ACTIONS(1643), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), [anon_sym_assert] = ACTIONS(563), [anon_sym_defer] = ACTIONS(563), [anon_sym_goto] = ACTIONS(563), @@ -50794,22475 +50816,22473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(563), }, [214] = { - [sym_reference_expression] = STATE(4537), - [sym_type_reference_expression] = STATE(1005), - [sym_plain_type] = STATE(1088), - [sym__plain_type_without_special] = STATE(1035), - [sym_anon_struct_type] = STATE(1039), - [sym_multi_return_type] = STATE(1035), - [sym_result_type] = STATE(1035), - [sym_option_type] = STATE(1035), - [sym_qualified_type] = STATE(1005), - [sym_fixed_array_type] = STATE(1039), - [sym_array_type] = STATE(1039), - [sym_pointer_type] = STATE(1039), - [sym_wrong_pointer_type] = STATE(1039), - [sym_map_type] = STATE(1039), - [sym_channel_type] = STATE(1039), - [sym_shared_type] = STATE(1039), - [sym_thread_type] = STATE(1039), - [sym_atomic_type] = STATE(1039), - [sym_generic_type] = STATE(1039), - [sym_function_type] = STATE(1039), - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(1617), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(1619), - [anon_sym___global] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(1621), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(1623), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(1625), - [anon_sym_union] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_interface] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(1627), - [anon_sym_BANG] = ACTIONS(1629), - [anon_sym_go] = ACTIONS(597), - [anon_sym_spawn] = ACTIONS(597), - [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(1631), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(1633), - [anon_sym_LT_DASH] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_nil] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_select] = ACTIONS(597), - [anon_sym_lock] = ACTIONS(597), - [anon_sym_rlock] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_sql] = ACTIONS(597), - [sym_int_literal] = ACTIONS(597), - [sym_float_literal] = ACTIONS(597), - [sym_rune_literal] = ACTIONS(597), - [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(1635), - [anon_sym_map_LBRACK] = ACTIONS(1637), - [anon_sym_chan] = ACTIONS(1639), - [anon_sym_thread] = ACTIONS(1641), - [anon_sym_atomic] = ACTIONS(1643), - [anon_sym_assert] = ACTIONS(597), - [anon_sym_defer] = ACTIONS(597), - [anon_sym_goto] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_DOLLARfor] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_POUND] = ACTIONS(597), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_AT_LBRACK] = ACTIONS(597), - [sym___double_quote] = ACTIONS(597), - [sym___single_quote] = ACTIONS(597), - [sym___c_double_quote] = ACTIONS(597), - [sym___c_single_quote] = ACTIONS(597), - [sym___r_double_quote] = ACTIONS(597), - [sym___r_single_quote] = ACTIONS(597), + [sym__expression] = STATE(1798), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_strictly_expression_list] = STATE(4143), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(496), + [sym_mutable_expression] = STATE(3356), + [sym_expression_list] = STATE(3402), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_simple_statement] = STATE(4402), + [sym_var_declaration] = STATE(4143), + [sym_assignment_statement] = STATE(4143), + [sym_identifier] = ACTIONS(1695), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [215] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [aux_sym_strictly_expression_list_repeat1] = STATE(3353), - [ts_builtin_sym_end] = ACTIONS(1705), - [sym_identifier] = ACTIONS(1707), - [anon_sym_LF] = ACTIONS(1707), - [anon_sym_CR] = ACTIONS(1707), - [anon_sym_CR_LF] = ACTIONS(1707), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [aux_sym_strictly_expression_list_repeat1] = STATE(3359), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_LF] = ACTIONS(1709), + [anon_sym_CR] = ACTIONS(1709), + [anon_sym_CR_LF] = ACTIONS(1709), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_COMMA] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(1717), - [anon_sym___global] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_pub] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_interface] = ACTIONS(1707), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(1707), - [anon_sym_spawn] = ACTIONS(1707), - [anon_sym_json_DOTdecode] = ACTIONS(1707), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(1737), - [anon_sym_LT_LT] = ACTIONS(1739), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1707), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_nil] = ACTIONS(1707), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_DOLLARif] = ACTIONS(1707), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_select] = ACTIONS(1707), - [anon_sym_STAR_EQ] = ACTIONS(1717), - [anon_sym_SLASH_EQ] = ACTIONS(1717), - [anon_sym_PERCENT_EQ] = ACTIONS(1717), - [anon_sym_LT_LT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1717), - [anon_sym_AMP_EQ] = ACTIONS(1717), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1717), - [anon_sym_PLUS_EQ] = ACTIONS(1717), - [anon_sym_DASH_EQ] = ACTIONS(1717), - [anon_sym_PIPE_EQ] = ACTIONS(1717), - [anon_sym_CARET_EQ] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(1717), - [anon_sym_lock] = ACTIONS(1707), - [anon_sym_rlock] = ACTIONS(1707), - [anon_sym_unsafe] = ACTIONS(1707), - [anon_sym_sql] = ACTIONS(1707), - [sym_int_literal] = ACTIONS(1707), - [sym_float_literal] = ACTIONS(1707), - [sym_rune_literal] = ACTIONS(1707), - [sym_pseudo_compile_time_identifier] = ACTIONS(1707), - [anon_sym_shared] = ACTIONS(1707), - [anon_sym_map_LBRACK] = ACTIONS(1707), - [anon_sym_chan] = ACTIONS(1707), - [anon_sym_thread] = ACTIONS(1707), - [anon_sym_atomic] = ACTIONS(1707), - [anon_sym_assert] = ACTIONS(1707), - [anon_sym_defer] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_DOLLARfor] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(1707), - [anon_sym_asm] = ACTIONS(1707), - [anon_sym_AT_LBRACK] = ACTIONS(1707), - [sym___double_quote] = ACTIONS(1707), - [sym___single_quote] = ACTIONS(1707), - [sym___c_double_quote] = ACTIONS(1707), - [sym___c_single_quote] = ACTIONS(1707), - [sym___r_double_quote] = ACTIONS(1707), - [sym___r_single_quote] = ACTIONS(1707), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1715), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1719), + [anon_sym___global] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1709), + [anon_sym_union] = ACTIONS(1709), + [anon_sym_pub] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [anon_sym_interface] = ACTIONS(1709), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1709), + [anon_sym_json_DOTdecode] = ACTIONS(1709), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1739), + [anon_sym_LT_LT] = ACTIONS(1741), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1745), + [anon_sym_or] = ACTIONS(1747), + [sym_none] = ACTIONS(1709), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_nil] = ACTIONS(1709), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_DOLLARif] = ACTIONS(1709), + [anon_sym_is] = ACTIONS(1749), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_select] = ACTIONS(1709), + [anon_sym_STAR_EQ] = ACTIONS(1719), + [anon_sym_SLASH_EQ] = ACTIONS(1719), + [anon_sym_PERCENT_EQ] = ACTIONS(1719), + [anon_sym_LT_LT_EQ] = ACTIONS(1719), + [anon_sym_GT_GT_EQ] = ACTIONS(1719), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1719), + [anon_sym_AMP_EQ] = ACTIONS(1719), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1719), + [anon_sym_PLUS_EQ] = ACTIONS(1719), + [anon_sym_DASH_EQ] = ACTIONS(1719), + [anon_sym_PIPE_EQ] = ACTIONS(1719), + [anon_sym_CARET_EQ] = ACTIONS(1719), + [anon_sym_COLON_EQ] = ACTIONS(1719), + [anon_sym_lock] = ACTIONS(1709), + [anon_sym_rlock] = ACTIONS(1709), + [anon_sym_unsafe] = ACTIONS(1709), + [anon_sym_sql] = ACTIONS(1709), + [sym_int_literal] = ACTIONS(1709), + [sym_float_literal] = ACTIONS(1709), + [sym_rune_literal] = ACTIONS(1709), + [sym_pseudo_compile_time_identifier] = ACTIONS(1709), + [anon_sym_shared] = ACTIONS(1709), + [anon_sym_map_LBRACK] = ACTIONS(1709), + [anon_sym_chan] = ACTIONS(1709), + [anon_sym_thread] = ACTIONS(1709), + [anon_sym_atomic] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(1709), + [anon_sym_defer] = ACTIONS(1709), + [anon_sym_goto] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_DOLLARfor] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(1709), + [anon_sym_asm] = ACTIONS(1709), + [anon_sym_AT_LBRACK] = ACTIONS(1709), + [sym___double_quote] = ACTIONS(1709), + [sym___single_quote] = ACTIONS(1709), + [sym___c_double_quote] = ACTIONS(1709), + [sym___c_single_quote] = ACTIONS(1709), + [sym___r_double_quote] = ACTIONS(1709), + [sym___r_single_quote] = ACTIONS(1709), }, [216] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [aux_sym_strictly_expression_list_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [aux_sym_strictly_expression_list_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1759), + [anon_sym_CR] = ACTIONS(1759), + [anon_sym_CR_LF] = ACTIONS(1759), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(1757), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_STAR_EQ] = ACTIONS(1759), - [anon_sym_SLASH_EQ] = ACTIONS(1759), - [anon_sym_PERCENT_EQ] = ACTIONS(1759), - [anon_sym_LT_LT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_AMP_EQ] = ACTIONS(1759), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1759), - [anon_sym_PLUS_EQ] = ACTIONS(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), - [anon_sym_PIPE_EQ] = ACTIONS(1759), - [anon_sym_CARET_EQ] = ACTIONS(1759), - [anon_sym_COLON_EQ] = ACTIONS(1759), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), - [sym___double_quote] = ACTIONS(1757), - [sym___single_quote] = ACTIONS(1757), - [sym___c_double_quote] = ACTIONS(1757), - [sym___c_single_quote] = ACTIONS(1757), - [sym___r_double_quote] = ACTIONS(1757), - [sym___r_single_quote] = ACTIONS(1757), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1761), + [anon_sym___global] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_mut] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1759), + [anon_sym_spawn] = ACTIONS(1759), + [anon_sym_json_DOTdecode] = ACTIONS(1759), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1759), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1745), + [anon_sym_or] = ACTIONS(1747), + [sym_none] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_nil] = ACTIONS(1759), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_DOLLARif] = ACTIONS(1759), + [anon_sym_is] = ACTIONS(1749), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_select] = ACTIONS(1759), + [anon_sym_STAR_EQ] = ACTIONS(1761), + [anon_sym_SLASH_EQ] = ACTIONS(1761), + [anon_sym_PERCENT_EQ] = ACTIONS(1761), + [anon_sym_LT_LT_EQ] = ACTIONS(1761), + [anon_sym_GT_GT_EQ] = ACTIONS(1761), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1761), + [anon_sym_AMP_EQ] = ACTIONS(1761), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1761), + [anon_sym_PLUS_EQ] = ACTIONS(1761), + [anon_sym_DASH_EQ] = ACTIONS(1761), + [anon_sym_PIPE_EQ] = ACTIONS(1761), + [anon_sym_CARET_EQ] = ACTIONS(1761), + [anon_sym_COLON_EQ] = ACTIONS(1761), + [anon_sym_lock] = ACTIONS(1759), + [anon_sym_rlock] = ACTIONS(1759), + [anon_sym_unsafe] = ACTIONS(1759), + [anon_sym_sql] = ACTIONS(1759), + [sym_int_literal] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), + [sym_rune_literal] = ACTIONS(1759), + [sym_pseudo_compile_time_identifier] = ACTIONS(1759), + [anon_sym_shared] = ACTIONS(1759), + [anon_sym_map_LBRACK] = ACTIONS(1759), + [anon_sym_chan] = ACTIONS(1759), + [anon_sym_thread] = ACTIONS(1759), + [anon_sym_atomic] = ACTIONS(1759), + [anon_sym_assert] = ACTIONS(1759), + [anon_sym_defer] = ACTIONS(1759), + [anon_sym_goto] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_DOLLARfor] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_asm] = ACTIONS(1759), + [anon_sym_AT_LBRACK] = ACTIONS(1759), + [sym___double_quote] = ACTIONS(1759), + [sym___single_quote] = ACTIONS(1759), + [sym___c_double_quote] = ACTIONS(1759), + [sym___c_single_quote] = ACTIONS(1759), + [sym___r_double_quote] = ACTIONS(1759), + [sym___r_single_quote] = ACTIONS(1759), }, [217] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(244), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1290), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym___rcbr] = STATE(3773), + [aux_sym_string_interpolation_repeat1] = STATE(284), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1761), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [218] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(221), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [219] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4067), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2421), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(220), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [220] = { - [sym__expression] = STATE(2380), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4123), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1795), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [221] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4099), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2902), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1793), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [222] = { - [sym__expression] = STATE(1286), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym___rcbr] = STATE(3798), - [aux_sym_string_interpolation_repeat1] = STATE(274), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4185), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2219), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [223] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4166), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(1332), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(233), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [224] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(225), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1821), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [225] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4273), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(1078), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [226] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(224), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4137), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2788), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1825), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [227] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4309), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2508), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4236), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(1854), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [228] = { - [sym__expression] = STATE(2453), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4230), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4223), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(1066), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [229] = { - [sym__expression] = STATE(1285), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym___rcbr] = STATE(3774), - [aux_sym_string_interpolation_repeat1] = STATE(247), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4087), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2014), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [230] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4239), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(769), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1291), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym___rcbr] = STATE(3761), + [aux_sym_string_interpolation_repeat1] = STATE(288), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [231] = { - [sym__expression] = STATE(2399), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4339), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(234), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [232] = { - [sym__expression] = STATE(2387), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2645), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4165), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [233] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_LF] = ACTIONS(1835), - [anon_sym_CR] = ACTIONS(1835), - [anon_sym_CR_LF] = ACTIONS(1835), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(1835), - [anon_sym___global] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_pub] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(1835), - [anon_sym_spawn] = ACTIONS(1835), - [anon_sym_json_DOTdecode] = ACTIONS(1835), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_nil] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_DOLLARif] = ACTIONS(1835), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_STAR_EQ] = ACTIONS(1835), - [anon_sym_SLASH_EQ] = ACTIONS(1835), - [anon_sym_PERCENT_EQ] = ACTIONS(1835), - [anon_sym_LT_LT_EQ] = ACTIONS(1835), - [anon_sym_GT_GT_EQ] = ACTIONS(1835), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1835), - [anon_sym_AMP_EQ] = ACTIONS(1835), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1835), - [anon_sym_PLUS_EQ] = ACTIONS(1835), - [anon_sym_DASH_EQ] = ACTIONS(1835), - [anon_sym_PIPE_EQ] = ACTIONS(1835), - [anon_sym_CARET_EQ] = ACTIONS(1835), - [anon_sym_COLON_EQ] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1835), - [anon_sym_rlock] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1835), - [sym_int_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1835), - [sym_rune_literal] = ACTIONS(1835), - [sym_pseudo_compile_time_identifier] = ACTIONS(1835), - [anon_sym_shared] = ACTIONS(1835), - [anon_sym_map_LBRACK] = ACTIONS(1835), - [anon_sym_chan] = ACTIONS(1835), - [anon_sym_thread] = ACTIONS(1835), - [anon_sym_atomic] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_defer] = ACTIONS(1835), - [anon_sym_goto] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_DOLLARfor] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(1835), - [anon_sym_asm] = ACTIONS(1835), - [anon_sym_AT_LBRACK] = ACTIONS(1835), - [sym___double_quote] = ACTIONS(1835), - [sym___single_quote] = ACTIONS(1835), - [sym___c_double_quote] = ACTIONS(1835), - [sym___c_single_quote] = ACTIONS(1835), - [sym___r_double_quote] = ACTIONS(1835), - [sym___r_single_quote] = ACTIONS(1835), - }, - [234] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1839), - [anon_sym_CR] = ACTIONS(1839), - [anon_sym_CR_LF] = ACTIONS(1839), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(1839), - [anon_sym___global] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_pub] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_interface] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(1839), - [anon_sym_spawn] = ACTIONS(1839), - [anon_sym_json_DOTdecode] = ACTIONS(1839), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_nil] = ACTIONS(1839), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_is] = ACTIONS(1747), - [anon_sym_BANGis] = ACTIONS(1749), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_select] = ACTIONS(1839), - [anon_sym_STAR_EQ] = ACTIONS(1839), - [anon_sym_SLASH_EQ] = ACTIONS(1839), - [anon_sym_PERCENT_EQ] = ACTIONS(1839), - [anon_sym_LT_LT_EQ] = ACTIONS(1839), - [anon_sym_GT_GT_EQ] = ACTIONS(1839), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1839), - [anon_sym_AMP_EQ] = ACTIONS(1839), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1839), - [anon_sym_PLUS_EQ] = ACTIONS(1839), - [anon_sym_DASH_EQ] = ACTIONS(1839), - [anon_sym_PIPE_EQ] = ACTIONS(1839), - [anon_sym_CARET_EQ] = ACTIONS(1839), - [anon_sym_COLON_EQ] = ACTIONS(1839), - [anon_sym_lock] = ACTIONS(1839), - [anon_sym_rlock] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1839), - [sym_int_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), - [sym_rune_literal] = ACTIONS(1839), - [sym_pseudo_compile_time_identifier] = ACTIONS(1839), - [anon_sym_shared] = ACTIONS(1839), - [anon_sym_map_LBRACK] = ACTIONS(1839), - [anon_sym_chan] = ACTIONS(1839), - [anon_sym_thread] = ACTIONS(1839), - [anon_sym_atomic] = ACTIONS(1839), - [anon_sym_assert] = ACTIONS(1839), - [anon_sym_defer] = ACTIONS(1839), - [anon_sym_goto] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_DOLLARfor] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_asm] = ACTIONS(1839), - [anon_sym_AT_LBRACK] = ACTIONS(1839), - [sym___double_quote] = ACTIONS(1839), - [sym___single_quote] = ACTIONS(1839), - [sym___c_double_quote] = ACTIONS(1839), - [sym___c_single_quote] = ACTIONS(1839), - [sym___r_double_quote] = ACTIONS(1839), - [sym___r_single_quote] = ACTIONS(1839), - }, - [235] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4361), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2017), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1841), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [236] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4309), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2508), - [sym_identifier] = ACTIONS(1769), + [234] = { + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1843), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [235] = { + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1849), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1745), + [anon_sym_or] = ACTIONS(1747), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(1749), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_STAR_EQ] = ACTIONS(1849), + [anon_sym_SLASH_EQ] = ACTIONS(1849), + [anon_sym_PERCENT_EQ] = ACTIONS(1849), + [anon_sym_LT_LT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1849), + [anon_sym_AMP_EQ] = ACTIONS(1849), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1849), + [anon_sym_PLUS_EQ] = ACTIONS(1849), + [anon_sym_DASH_EQ] = ACTIONS(1849), + [anon_sym_PIPE_EQ] = ACTIONS(1849), + [anon_sym_CARET_EQ] = ACTIONS(1849), + [anon_sym_COLON_EQ] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), + }, + [236] = { + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LF] = ACTIONS(1853), + [anon_sym_CR] = ACTIONS(1853), + [anon_sym_CR_LF] = ACTIONS(1853), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1853), + [anon_sym___global] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_pub] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_LT_DASH] = ACTIONS(1853), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1853), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_AMP_CARET] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_or] = ACTIONS(1853), + [sym_none] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_nil] = ACTIONS(1853), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_is] = ACTIONS(1853), + [anon_sym_BANGis] = ACTIONS(1853), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_BANGin] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_select] = ACTIONS(1853), + [anon_sym_STAR_EQ] = ACTIONS(1853), + [anon_sym_SLASH_EQ] = ACTIONS(1853), + [anon_sym_PERCENT_EQ] = ACTIONS(1853), + [anon_sym_LT_LT_EQ] = ACTIONS(1853), + [anon_sym_GT_GT_EQ] = ACTIONS(1853), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1853), + [anon_sym_AMP_EQ] = ACTIONS(1853), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1853), + [anon_sym_PLUS_EQ] = ACTIONS(1853), + [anon_sym_DASH_EQ] = ACTIONS(1853), + [anon_sym_PIPE_EQ] = ACTIONS(1853), + [anon_sym_CARET_EQ] = ACTIONS(1853), + [anon_sym_COLON_EQ] = ACTIONS(1853), + [anon_sym_lock] = ACTIONS(1853), + [anon_sym_rlock] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_sql] = ACTIONS(1853), + [sym_int_literal] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1853), + [sym_rune_literal] = ACTIONS(1853), + [sym_pseudo_compile_time_identifier] = ACTIONS(1853), + [anon_sym_shared] = ACTIONS(1853), + [anon_sym_map_LBRACK] = ACTIONS(1853), + [anon_sym_chan] = ACTIONS(1853), + [anon_sym_thread] = ACTIONS(1853), + [anon_sym_atomic] = ACTIONS(1853), + [anon_sym_assert] = ACTIONS(1853), + [anon_sym_defer] = ACTIONS(1853), + [anon_sym_goto] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_DOLLARfor] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_asm] = ACTIONS(1853), + [anon_sym_AT_LBRACK] = ACTIONS(1853), + [sym___double_quote] = ACTIONS(1853), + [sym___single_quote] = ACTIONS(1853), + [sym___c_double_quote] = ACTIONS(1853), + [sym___c_single_quote] = ACTIONS(1853), + [sym___r_double_quote] = ACTIONS(1853), + [sym___r_single_quote] = ACTIONS(1853), }, [237] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4170), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2185), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4157), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(1334), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1845), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [238] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4330), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2765), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(292), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1847), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [239] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(259), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2348), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2631), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4156), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1849), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [240] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4332), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(1835), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1851), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_LF] = ACTIONS(1861), + [anon_sym_CR] = ACTIONS(1861), + [anon_sym_CR_LF] = ACTIONS(1861), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1861), + [anon_sym___global] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_interface] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1861), + [anon_sym_spawn] = ACTIONS(1861), + [anon_sym_json_DOTdecode] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1861), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1745), + [anon_sym_or] = ACTIONS(1747), + [sym_none] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_nil] = ACTIONS(1861), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_DOLLARif] = ACTIONS(1861), + [anon_sym_is] = ACTIONS(1749), + [anon_sym_BANGis] = ACTIONS(1751), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_select] = ACTIONS(1861), + [anon_sym_STAR_EQ] = ACTIONS(1861), + [anon_sym_SLASH_EQ] = ACTIONS(1861), + [anon_sym_PERCENT_EQ] = ACTIONS(1861), + [anon_sym_LT_LT_EQ] = ACTIONS(1861), + [anon_sym_GT_GT_EQ] = ACTIONS(1861), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1861), + [anon_sym_AMP_EQ] = ACTIONS(1861), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1861), + [anon_sym_PLUS_EQ] = ACTIONS(1861), + [anon_sym_DASH_EQ] = ACTIONS(1861), + [anon_sym_PIPE_EQ] = ACTIONS(1861), + [anon_sym_CARET_EQ] = ACTIONS(1861), + [anon_sym_COLON_EQ] = ACTIONS(1861), + [anon_sym_lock] = ACTIONS(1861), + [anon_sym_rlock] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_sql] = ACTIONS(1861), + [sym_int_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1861), + [sym_rune_literal] = ACTIONS(1861), + [sym_pseudo_compile_time_identifier] = ACTIONS(1861), + [anon_sym_shared] = ACTIONS(1861), + [anon_sym_map_LBRACK] = ACTIONS(1861), + [anon_sym_chan] = ACTIONS(1861), + [anon_sym_thread] = ACTIONS(1861), + [anon_sym_atomic] = ACTIONS(1861), + [anon_sym_assert] = ACTIONS(1861), + [anon_sym_defer] = ACTIONS(1861), + [anon_sym_goto] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_DOLLARfor] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_asm] = ACTIONS(1861), + [anon_sym_AT_LBRACK] = ACTIONS(1861), + [sym___double_quote] = ACTIONS(1861), + [sym___single_quote] = ACTIONS(1861), + [sym___c_double_quote] = ACTIONS(1861), + [sym___c_single_quote] = ACTIONS(1861), + [sym___r_double_quote] = ACTIONS(1861), + [sym___r_single_quote] = ACTIONS(1861), }, [241] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4202), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(1269), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_LF] = ACTIONS(1865), + [anon_sym_CR] = ACTIONS(1865), + [anon_sym_CR_LF] = ACTIONS(1865), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1865), + [anon_sym___global] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_LT_EQ] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_mut] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_interface] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1865), + [anon_sym_spawn] = ACTIONS(1865), + [anon_sym_json_DOTdecode] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1865), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1865), + [anon_sym_PIPE_PIPE] = ACTIONS(1865), + [anon_sym_or] = ACTIONS(1865), + [sym_none] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_nil] = ACTIONS(1865), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1865), + [anon_sym_is] = ACTIONS(1865), + [anon_sym_BANGis] = ACTIONS(1865), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_BANGin] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_select] = ACTIONS(1865), + [anon_sym_STAR_EQ] = ACTIONS(1865), + [anon_sym_SLASH_EQ] = ACTIONS(1865), + [anon_sym_PERCENT_EQ] = ACTIONS(1865), + [anon_sym_LT_LT_EQ] = ACTIONS(1865), + [anon_sym_GT_GT_EQ] = ACTIONS(1865), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1865), + [anon_sym_AMP_EQ] = ACTIONS(1865), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1865), + [anon_sym_PLUS_EQ] = ACTIONS(1865), + [anon_sym_DASH_EQ] = ACTIONS(1865), + [anon_sym_PIPE_EQ] = ACTIONS(1865), + [anon_sym_CARET_EQ] = ACTIONS(1865), + [anon_sym_COLON_EQ] = ACTIONS(1865), + [anon_sym_lock] = ACTIONS(1865), + [anon_sym_rlock] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1865), + [sym_int_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1865), + [sym_rune_literal] = ACTIONS(1865), + [sym_pseudo_compile_time_identifier] = ACTIONS(1865), + [anon_sym_shared] = ACTIONS(1865), + [anon_sym_map_LBRACK] = ACTIONS(1865), + [anon_sym_chan] = ACTIONS(1865), + [anon_sym_thread] = ACTIONS(1865), + [anon_sym_atomic] = ACTIONS(1865), + [anon_sym_assert] = ACTIONS(1865), + [anon_sym_defer] = ACTIONS(1865), + [anon_sym_goto] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_DOLLARfor] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_asm] = ACTIONS(1865), + [anon_sym_AT_LBRACK] = ACTIONS(1865), + [sym___double_quote] = ACTIONS(1865), + [sym___single_quote] = ACTIONS(1865), + [sym___c_double_quote] = ACTIONS(1865), + [sym___c_single_quote] = ACTIONS(1865), + [sym___r_double_quote] = ACTIONS(1865), + [sym___r_single_quote] = ACTIONS(1865), }, [242] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1855), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_identifier] = ACTIONS(1869), + [anon_sym_LF] = ACTIONS(1869), + [anon_sym_CR] = ACTIONS(1869), + [anon_sym_CR_LF] = ACTIONS(1869), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1869), + [anon_sym___global] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_PERCENT] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(1869), + [anon_sym_GT_EQ] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_pub] = ACTIONS(1869), + [anon_sym_mut] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_interface] = ACTIONS(1869), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1869), + [anon_sym_spawn] = ACTIONS(1869), + [anon_sym_json_DOTdecode] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_LT_DASH] = ACTIONS(1869), + [anon_sym_LT_LT] = ACTIONS(1869), + [anon_sym_GT_GT] = ACTIONS(1869), + [anon_sym_GT_GT_GT] = ACTIONS(1869), + [anon_sym_AMP_CARET] = ACTIONS(1869), + [anon_sym_AMP_AMP] = ACTIONS(1869), + [anon_sym_PIPE_PIPE] = ACTIONS(1869), + [anon_sym_or] = ACTIONS(1869), + [sym_none] = ACTIONS(1869), + [sym_true] = ACTIONS(1869), + [sym_false] = ACTIONS(1869), + [sym_nil] = ACTIONS(1869), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_DOLLARif] = ACTIONS(1869), + [anon_sym_is] = ACTIONS(1869), + [anon_sym_BANGis] = ACTIONS(1869), + [anon_sym_in] = ACTIONS(1869), + [anon_sym_BANGin] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_select] = ACTIONS(1869), + [anon_sym_STAR_EQ] = ACTIONS(1869), + [anon_sym_SLASH_EQ] = ACTIONS(1869), + [anon_sym_PERCENT_EQ] = ACTIONS(1869), + [anon_sym_LT_LT_EQ] = ACTIONS(1869), + [anon_sym_GT_GT_EQ] = ACTIONS(1869), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1869), + [anon_sym_AMP_EQ] = ACTIONS(1869), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1869), + [anon_sym_PLUS_EQ] = ACTIONS(1869), + [anon_sym_DASH_EQ] = ACTIONS(1869), + [anon_sym_PIPE_EQ] = ACTIONS(1869), + [anon_sym_CARET_EQ] = ACTIONS(1869), + [anon_sym_COLON_EQ] = ACTIONS(1869), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_sql] = ACTIONS(1869), + [sym_int_literal] = ACTIONS(1869), + [sym_float_literal] = ACTIONS(1869), + [sym_rune_literal] = ACTIONS(1869), + [sym_pseudo_compile_time_identifier] = ACTIONS(1869), + [anon_sym_shared] = ACTIONS(1869), + [anon_sym_map_LBRACK] = ACTIONS(1869), + [anon_sym_chan] = ACTIONS(1869), + [anon_sym_thread] = ACTIONS(1869), + [anon_sym_atomic] = ACTIONS(1869), + [anon_sym_assert] = ACTIONS(1869), + [anon_sym_defer] = ACTIONS(1869), + [anon_sym_goto] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_DOLLARfor] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym_AT_LBRACK] = ACTIONS(1869), + [sym___double_quote] = ACTIONS(1869), + [sym___single_quote] = ACTIONS(1869), + [sym___c_double_quote] = ACTIONS(1869), + [sym___c_single_quote] = ACTIONS(1869), + [sym___r_double_quote] = ACTIONS(1869), + [sym___r_single_quote] = ACTIONS(1869), }, [243] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(242), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2394), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4360), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1857), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [244] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(245), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1859), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [245] = { - [sym__expression] = STATE(2398), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4184), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [246] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4067), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2421), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2377), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2631), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4161), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [247] = { - [sym__expression] = STATE(1330), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym___rcbr] = STATE(3694), - [aux_sym_string_interpolation_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4278), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2919), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1829), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [248] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_LF] = ACTIONS(1879), + [anon_sym_CR] = ACTIONS(1879), + [anon_sym_CR_LF] = ACTIONS(1879), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym___global] = ACTIONS(1879), + [anon_sym_type] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1879), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1879), + [anon_sym_union] = ACTIONS(1879), + [anon_sym_pub] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1879), + [anon_sym_spawn] = ACTIONS(1879), + [anon_sym_json_DOTdecode] = ACTIONS(1879), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1879), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_LT_DASH] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1881), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_AMP_CARET] = ACTIONS(1881), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1879), + [sym_true] = ACTIONS(1879), + [sym_false] = ACTIONS(1879), + [sym_nil] = ACTIONS(1879), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_DOLLARif] = ACTIONS(1879), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_select] = ACTIONS(1879), + [anon_sym_STAR_EQ] = ACTIONS(1881), + [anon_sym_SLASH_EQ] = ACTIONS(1881), + [anon_sym_PERCENT_EQ] = ACTIONS(1881), + [anon_sym_LT_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_AMP_EQ] = ACTIONS(1881), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), + [anon_sym_PLUS_EQ] = ACTIONS(1881), + [anon_sym_DASH_EQ] = ACTIONS(1881), + [anon_sym_PIPE_EQ] = ACTIONS(1881), + [anon_sym_CARET_EQ] = ACTIONS(1881), + [anon_sym_COLON_EQ] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1879), + [anon_sym_rlock] = ACTIONS(1879), + [anon_sym_unsafe] = ACTIONS(1879), + [anon_sym_sql] = ACTIONS(1879), + [sym_int_literal] = ACTIONS(1879), + [sym_float_literal] = ACTIONS(1879), + [sym_rune_literal] = ACTIONS(1879), + [sym_pseudo_compile_time_identifier] = ACTIONS(1879), + [anon_sym_shared] = ACTIONS(1879), + [anon_sym_map_LBRACK] = ACTIONS(1879), + [anon_sym_chan] = ACTIONS(1879), + [anon_sym_thread] = ACTIONS(1879), + [anon_sym_atomic] = ACTIONS(1879), + [anon_sym_assert] = ACTIONS(1879), + [anon_sym_defer] = ACTIONS(1879), + [anon_sym_goto] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_DOLLARfor] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1879), + [anon_sym_asm] = ACTIONS(1879), + [anon_sym_AT_LBRACK] = ACTIONS(1879), + [sym___double_quote] = ACTIONS(1879), + [sym___single_quote] = ACTIONS(1879), + [sym___c_double_quote] = ACTIONS(1879), + [sym___c_single_quote] = ACTIONS(1879), + [sym___r_double_quote] = ACTIONS(1879), + [sym___r_single_quote] = ACTIONS(1879), }, [249] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element] = STATE(2090), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_short_element_list_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(949), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4077), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2420), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [250] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4361), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2017), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4157), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(1334), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1867), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [251] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4223), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(1066), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1869), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [252] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(267), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4310), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2087), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1871), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1889), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [253] = { - [sym__expression] = STATE(2410), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4168), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(263), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1891), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [254] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(291), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4383), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2527), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [255] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(218), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4185), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2219), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1875), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [256] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_LF] = ACTIONS(1879), - [anon_sym_CR] = ACTIONS(1879), - [anon_sym_CR_LF] = ACTIONS(1879), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(1879), - [anon_sym___global] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_fn] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_pub] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_interface] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(1879), - [anon_sym_spawn] = ACTIONS(1879), - [anon_sym_json_DOTdecode] = ACTIONS(1879), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_LT_DASH] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_GT_GT_GT] = ACTIONS(1879), - [anon_sym_AMP_CARET] = ACTIONS(1879), - [anon_sym_AMP_AMP] = ACTIONS(1879), - [anon_sym_PIPE_PIPE] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1879), - [sym_none] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_nil] = ACTIONS(1879), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_DOLLARif] = ACTIONS(1879), - [anon_sym_is] = ACTIONS(1879), - [anon_sym_BANGis] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_BANGin] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_STAR_EQ] = ACTIONS(1879), - [anon_sym_SLASH_EQ] = ACTIONS(1879), - [anon_sym_PERCENT_EQ] = ACTIONS(1879), - [anon_sym_LT_LT_EQ] = ACTIONS(1879), - [anon_sym_GT_GT_EQ] = ACTIONS(1879), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1879), - [anon_sym_AMP_EQ] = ACTIONS(1879), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1879), - [anon_sym_PLUS_EQ] = ACTIONS(1879), - [anon_sym_DASH_EQ] = ACTIONS(1879), - [anon_sym_PIPE_EQ] = ACTIONS(1879), - [anon_sym_CARET_EQ] = ACTIONS(1879), - [anon_sym_COLON_EQ] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1879), - [anon_sym_rlock] = ACTIONS(1879), - [anon_sym_unsafe] = ACTIONS(1879), - [anon_sym_sql] = ACTIONS(1879), - [sym_int_literal] = ACTIONS(1879), - [sym_float_literal] = ACTIONS(1879), - [sym_rune_literal] = ACTIONS(1879), - [sym_pseudo_compile_time_identifier] = ACTIONS(1879), - [anon_sym_shared] = ACTIONS(1879), - [anon_sym_map_LBRACK] = ACTIONS(1879), - [anon_sym_chan] = ACTIONS(1879), - [anon_sym_thread] = ACTIONS(1879), - [anon_sym_atomic] = ACTIONS(1879), - [anon_sym_assert] = ACTIONS(1879), - [anon_sym_defer] = ACTIONS(1879), - [anon_sym_goto] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_DOLLARfor] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(1879), - [anon_sym_asm] = ACTIONS(1879), - [anon_sym_AT_LBRACK] = ACTIONS(1879), - [sym___double_quote] = ACTIONS(1879), - [sym___single_quote] = ACTIONS(1879), - [sym___c_double_quote] = ACTIONS(1879), - [sym___c_single_quote] = ACTIONS(1879), - [sym___r_double_quote] = ACTIONS(1879), - [sym___r_single_quote] = ACTIONS(1879), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4137), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2788), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [257] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4067), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2421), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1881), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [258] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(300), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2377), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4161), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1883), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [259] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(260), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(1885), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [260] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4330), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2765), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1887), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [261] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4116), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2146), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(232), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1889), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [262] = { - [sym__expression] = STATE(2418), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4272), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4335), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(1188), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [263] = { - [sym__expression] = STATE(1156), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_element] = STATE(2090), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_short_element_list_repeat1] = STATE(263), - [sym_identifier] = ACTIONS(1891), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1894), - [anon_sym_LBRACE] = ACTIONS(1897), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_fn] = ACTIONS(1905), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_STAR] = ACTIONS(1911), - [anon_sym_struct] = ACTIONS(1914), - [anon_sym_mut] = ACTIONS(1917), - [anon_sym_QMARK] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1923), - [anon_sym_go] = ACTIONS(1926), - [anon_sym_spawn] = ACTIONS(1929), - [anon_sym_json_DOTdecode] = ACTIONS(1932), - [anon_sym_LBRACK2] = ACTIONS(1935), - [anon_sym_TILDE] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1908), - [anon_sym_AMP] = ACTIONS(1938), - [anon_sym_LT_DASH] = ACTIONS(1941), - [sym_none] = ACTIONS(1944), - [sym_true] = ACTIONS(1944), - [sym_false] = ACTIONS(1944), - [sym_nil] = ACTIONS(1944), - [anon_sym_if] = ACTIONS(1947), - [anon_sym_DOLLARif] = ACTIONS(1950), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_select] = ACTIONS(1956), - [anon_sym_lock] = ACTIONS(1959), - [anon_sym_rlock] = ACTIONS(1959), - [anon_sym_unsafe] = ACTIONS(1962), - [anon_sym_sql] = ACTIONS(1965), - [sym_int_literal] = ACTIONS(1944), - [sym_float_literal] = ACTIONS(1968), - [sym_rune_literal] = ACTIONS(1968), - [sym_pseudo_compile_time_identifier] = ACTIONS(1971), - [anon_sym_shared] = ACTIONS(1974), - [anon_sym_map_LBRACK] = ACTIONS(1977), - [anon_sym_chan] = ACTIONS(1980), - [anon_sym_thread] = ACTIONS(1983), - [anon_sym_atomic] = ACTIONS(1986), - [sym___double_quote] = ACTIONS(1989), - [sym___single_quote] = ACTIONS(1992), - [sym___c_double_quote] = ACTIONS(1995), - [sym___c_single_quote] = ACTIONS(1998), - [sym___r_double_quote] = ACTIONS(2001), - [sym___r_single_quote] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [264] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4169), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(1729), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4077), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2420), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [265] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_STAR_EQ] = ACTIONS(2011), - [anon_sym_SLASH_EQ] = ACTIONS(2011), - [anon_sym_PERCENT_EQ] = ACTIONS(2011), - [anon_sym_LT_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_AMP_EQ] = ACTIONS(2011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2011), - [anon_sym_PLUS_EQ] = ACTIONS(2011), - [anon_sym_DASH_EQ] = ACTIONS(2011), - [anon_sym_PIPE_EQ] = ACTIONS(2011), - [anon_sym_CARET_EQ] = ACTIONS(2011), - [anon_sym_COLON_EQ] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4077), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2420), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [266] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(248), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4137), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2788), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [267] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2368), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4221), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [268] = { - [sym__expression] = STATE(2412), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4181), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4077), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2420), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [269] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_STAR_EQ] = ACTIONS(2011), - [anon_sym_SLASH_EQ] = ACTIONS(2011), - [anon_sym_PERCENT_EQ] = ACTIONS(2011), - [anon_sym_LT_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_AMP_EQ] = ACTIONS(2011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2011), - [anon_sym_PLUS_EQ] = ACTIONS(2011), - [anon_sym_DASH_EQ] = ACTIONS(2011), - [anon_sym_PIPE_EQ] = ACTIONS(2011), - [anon_sym_CARET_EQ] = ACTIONS(2011), - [anon_sym_COLON_EQ] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [sym__expression] = STATE(2391), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4309), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [270] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_STAR_EQ] = ACTIONS(2011), - [anon_sym_SLASH_EQ] = ACTIONS(2011), - [anon_sym_PERCENT_EQ] = ACTIONS(2011), - [anon_sym_LT_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_AMP_EQ] = ACTIONS(2011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2011), - [anon_sym_PLUS_EQ] = ACTIONS(2011), - [anon_sym_DASH_EQ] = ACTIONS(2011), - [anon_sym_PIPE_EQ] = ACTIONS(2011), - [anon_sym_CARET_EQ] = ACTIONS(2011), - [anon_sym_COLON_EQ] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [sym__expression] = STATE(2348), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4156), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [271] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4067), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2421), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2405), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4379), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [272] = { - [sym__expression] = STATE(2398), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2645), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4184), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(257), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [273] = { - [sym__expression] = STATE(2406), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4214), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [274] = { - [sym__expression] = STATE(1330), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym___rcbr] = STATE(3813), - [aux_sym_string_interpolation_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2417), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4338), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [275] = { - [sym__expression] = STATE(2436), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4358), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4352), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(1743), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [276] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4166), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(1332), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(277), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [277] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4170), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2185), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [278] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(287), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4383), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2527), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [279] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4273), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(1078), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2452), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4279), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [280] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2029), - [anon_sym_CR] = ACTIONS(2029), - [anon_sym_CR_LF] = ACTIONS(2029), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2029), - [anon_sym___global] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_pub] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_interface] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(1727), - [anon_sym_DASH_DASH] = ACTIONS(1729), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2029), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2029), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(2029), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(1743), - [anon_sym_or] = ACTIONS(1745), - [sym_none] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_nil] = ACTIONS(2029), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_DOLLARif] = ACTIONS(2029), - [anon_sym_is] = ACTIONS(2031), - [anon_sym_BANGis] = ACTIONS(2033), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_STAR_EQ] = ACTIONS(2029), - [anon_sym_SLASH_EQ] = ACTIONS(2029), - [anon_sym_PERCENT_EQ] = ACTIONS(2029), - [anon_sym_LT_LT_EQ] = ACTIONS(2029), - [anon_sym_GT_GT_EQ] = ACTIONS(2029), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2029), - [anon_sym_AMP_EQ] = ACTIONS(2029), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2029), - [anon_sym_PLUS_EQ] = ACTIONS(2029), - [anon_sym_DASH_EQ] = ACTIONS(2029), - [anon_sym_PIPE_EQ] = ACTIONS(2029), - [anon_sym_CARET_EQ] = ACTIONS(2029), - [anon_sym_COLON_EQ] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(2029), - [anon_sym_rlock] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_sql] = ACTIONS(2029), - [sym_int_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), - [sym_rune_literal] = ACTIONS(2029), - [sym_pseudo_compile_time_identifier] = ACTIONS(2029), - [anon_sym_shared] = ACTIONS(2029), - [anon_sym_map_LBRACK] = ACTIONS(2029), - [anon_sym_chan] = ACTIONS(2029), - [anon_sym_thread] = ACTIONS(2029), - [anon_sym_atomic] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_defer] = ACTIONS(2029), - [anon_sym_goto] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_DOLLARfor] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2029), - [anon_sym_asm] = ACTIONS(2029), - [anon_sym_AT_LBRACK] = ACTIONS(2029), - [sym___double_quote] = ACTIONS(2029), - [sym___single_quote] = ACTIONS(2029), - [sym___c_double_quote] = ACTIONS(2029), - [sym___c_single_quote] = ACTIONS(2029), - [sym___r_double_quote] = ACTIONS(2029), - [sym___r_single_quote] = ACTIONS(2029), - }, - [281] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2453), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4239), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [282] = { - [sym__expression] = STATE(2420), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4107), - [sym_identifier] = ACTIONS(1769), + [281] = { + [sym__expression] = STATE(2372), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4187), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [282] = { + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_CR] = ACTIONS(1933), + [anon_sym_CR_LF] = ACTIONS(1933), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1933), + [anon_sym___global] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_interface] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_DASH_DASH] = ACTIONS(1731), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1933), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1933), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1745), + [anon_sym_or] = ACTIONS(1747), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(1935), + [anon_sym_BANGis] = ACTIONS(1937), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_STAR_EQ] = ACTIONS(1933), + [anon_sym_SLASH_EQ] = ACTIONS(1933), + [anon_sym_PERCENT_EQ] = ACTIONS(1933), + [anon_sym_LT_LT_EQ] = ACTIONS(1933), + [anon_sym_GT_GT_EQ] = ACTIONS(1933), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1933), + [anon_sym_AMP_EQ] = ACTIONS(1933), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1933), + [anon_sym_PLUS_EQ] = ACTIONS(1933), + [anon_sym_DASH_EQ] = ACTIONS(1933), + [anon_sym_PIPE_EQ] = ACTIONS(1933), + [anon_sym_CARET_EQ] = ACTIONS(1933), + [anon_sym_COLON_EQ] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), + [sym_rune_literal] = ACTIONS(1933), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1933), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [anon_sym_assert] = ACTIONS(1933), + [anon_sym_defer] = ACTIONS(1933), + [anon_sym_goto] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_DOLLARfor] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_asm] = ACTIONS(1933), + [anon_sym_AT_LBRACK] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1933), + [sym___single_quote] = ACTIONS(1933), + [sym___c_double_quote] = ACTIONS(1933), + [sym___c_single_quote] = ACTIONS(1933), + [sym___r_double_quote] = ACTIONS(1933), + [sym___r_single_quote] = ACTIONS(1933), }, [283] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(281), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2430), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4141), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2037), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [284] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_CR] = ACTIONS(2041), - [anon_sym_CR_LF] = ACTIONS(2041), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2041), - [anon_sym___global] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2041), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2041), - [anon_sym_AMP_CARET] = ACTIONS(2041), - [anon_sym_AMP_AMP] = ACTIONS(2041), - [anon_sym_PIPE_PIPE] = ACTIONS(2041), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2041), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_STAR_EQ] = ACTIONS(2041), - [anon_sym_SLASH_EQ] = ACTIONS(2041), - [anon_sym_PERCENT_EQ] = ACTIONS(2041), - [anon_sym_LT_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_GT_EQ] = ACTIONS(2041), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2041), - [anon_sym_AMP_EQ] = ACTIONS(2041), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2041), - [anon_sym_PLUS_EQ] = ACTIONS(2041), - [anon_sym_DASH_EQ] = ACTIONS(2041), - [anon_sym_PIPE_EQ] = ACTIONS(2041), - [anon_sym_CARET_EQ] = ACTIONS(2041), - [anon_sym_COLON_EQ] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), - [sym_rune_literal] = ACTIONS(2041), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2041), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), - [anon_sym_assert] = ACTIONS(2041), - [anon_sym_defer] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_DOLLARfor] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2041), - [anon_sym_asm] = ACTIONS(2041), - [anon_sym_AT_LBRACK] = ACTIONS(2041), - [sym___double_quote] = ACTIONS(2041), - [sym___single_quote] = ACTIONS(2041), - [sym___c_double_quote] = ACTIONS(2041), - [sym___c_single_quote] = ACTIONS(2041), - [sym___r_double_quote] = ACTIONS(2041), - [sym___r_single_quote] = ACTIONS(2041), - }, - [285] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2045), - [anon_sym_LF] = ACTIONS(2045), - [anon_sym_CR] = ACTIONS(2045), - [anon_sym_CR_LF] = ACTIONS(2045), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2045), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym___global] = ACTIONS(2045), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2045), - [anon_sym_PLUS] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2045), - [anon_sym_STAR] = ACTIONS(2045), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_pub] = ACTIONS(2045), - [anon_sym_mut] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_interface] = ACTIONS(2045), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2045), - [anon_sym_spawn] = ACTIONS(2045), - [anon_sym_json_DOTdecode] = ACTIONS(2045), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2045), - [anon_sym_CARET] = ACTIONS(2045), - [anon_sym_AMP] = ACTIONS(2045), - [anon_sym_LT_DASH] = ACTIONS(2045), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2045), - [sym_true] = ACTIONS(2045), - [sym_false] = ACTIONS(2045), - [sym_nil] = ACTIONS(2045), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_DOLLARif] = ACTIONS(2045), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_select] = ACTIONS(2045), - [anon_sym_STAR_EQ] = ACTIONS(2011), - [anon_sym_SLASH_EQ] = ACTIONS(2011), - [anon_sym_PERCENT_EQ] = ACTIONS(2011), - [anon_sym_LT_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_AMP_EQ] = ACTIONS(2011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2011), - [anon_sym_PLUS_EQ] = ACTIONS(2011), - [anon_sym_DASH_EQ] = ACTIONS(2011), - [anon_sym_PIPE_EQ] = ACTIONS(2011), - [anon_sym_CARET_EQ] = ACTIONS(2011), - [anon_sym_COLON_EQ] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2045), - [anon_sym_rlock] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_sql] = ACTIONS(2045), - [sym_int_literal] = ACTIONS(2045), - [sym_float_literal] = ACTIONS(2045), - [sym_rune_literal] = ACTIONS(2045), - [sym_pseudo_compile_time_identifier] = ACTIONS(2045), - [anon_sym_shared] = ACTIONS(2045), - [anon_sym_map_LBRACK] = ACTIONS(2045), - [anon_sym_chan] = ACTIONS(2045), - [anon_sym_thread] = ACTIONS(2045), - [anon_sym_atomic] = ACTIONS(2045), - [anon_sym_assert] = ACTIONS(2045), - [anon_sym_defer] = ACTIONS(2045), - [anon_sym_goto] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_DOLLARfor] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_POUND] = ACTIONS(2045), - [anon_sym_asm] = ACTIONS(2045), - [anon_sym_AT_LBRACK] = ACTIONS(2045), - [sym___double_quote] = ACTIONS(2045), - [sym___single_quote] = ACTIONS(2045), - [sym___c_double_quote] = ACTIONS(2045), - [sym___c_single_quote] = ACTIONS(2045), - [sym___r_double_quote] = ACTIONS(2045), - [sym___r_single_quote] = ACTIONS(2045), - }, - [286] = { - [sym__expression] = STATE(2387), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4165), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1328), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym___rcbr] = STATE(3756), + [aux_sym_string_interpolation_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [287] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [285] = { + [sym__expression] = STATE(2399), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4088), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [288] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_STAR_EQ] = ACTIONS(2011), - [anon_sym_SLASH_EQ] = ACTIONS(2011), - [anon_sym_PERCENT_EQ] = ACTIONS(2011), - [anon_sym_LT_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_AMP_EQ] = ACTIONS(2011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2011), - [anon_sym_PLUS_EQ] = ACTIONS(2011), - [anon_sym_DASH_EQ] = ACTIONS(2011), - [anon_sym_PIPE_EQ] = ACTIONS(2011), - [anon_sym_CARET_EQ] = ACTIONS(2011), - [anon_sym_COLON_EQ] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [289] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4330), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_block] = STATE(2765), - [sym_identifier] = ACTIONS(1769), + [286] = { + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4095), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(658), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2049), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [290] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(299), - [sym_identifier] = ACTIONS(1408), + [287] = { + [sym__expression] = STATE(2398), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(4068), + [sym_expression_list] = STATE(4714), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_var_declaration] = STATE(4080), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [291] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [288] = { + [sym__expression] = STATE(1328), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym___rcbr] = STATE(3770), + [aux_sym_string_interpolation_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2053), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [292] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [289] = { + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2011), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_GT] = ACTIONS(1723), - [anon_sym_EQ_EQ] = ACTIONS(1723), - [anon_sym_BANG_EQ] = ACTIONS(1723), - [anon_sym_LT_EQ] = ACTIONS(1723), - [anon_sym_GT_EQ] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(1741), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(1751), - [anon_sym_BANGin] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_STAR_EQ] = ACTIONS(2011), - [anon_sym_SLASH_EQ] = ACTIONS(2011), - [anon_sym_PERCENT_EQ] = ACTIONS(2011), - [anon_sym_LT_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2011), - [anon_sym_AMP_EQ] = ACTIONS(2011), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2011), - [anon_sym_PLUS_EQ] = ACTIONS(2011), - [anon_sym_DASH_EQ] = ACTIONS(2011), - [anon_sym_PIPE_EQ] = ACTIONS(2011), - [anon_sym_CARET_EQ] = ACTIONS(2011), - [anon_sym_COLON_EQ] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_STAR_EQ] = ACTIONS(1881), + [anon_sym_SLASH_EQ] = ACTIONS(1881), + [anon_sym_PERCENT_EQ] = ACTIONS(1881), + [anon_sym_LT_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_AMP_EQ] = ACTIONS(1881), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), + [anon_sym_PLUS_EQ] = ACTIONS(1881), + [anon_sym_DASH_EQ] = ACTIONS(1881), + [anon_sym_PIPE_EQ] = ACTIONS(1881), + [anon_sym_CARET_EQ] = ACTIONS(1881), + [anon_sym_COLON_EQ] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, + [290] = { + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_RBRACE] = ACTIONS(1952), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_fn] = ACTIONS(1957), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1963), + [anon_sym_struct] = ACTIONS(1966), + [anon_sym_mut] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1972), + [anon_sym_BANG] = ACTIONS(1975), + [anon_sym_go] = ACTIONS(1978), + [anon_sym_spawn] = ACTIONS(1981), + [anon_sym_json_DOTdecode] = ACTIONS(1984), + [anon_sym_LBRACK2] = ACTIONS(1987), + [anon_sym_TILDE] = ACTIONS(1960), + [anon_sym_CARET] = ACTIONS(1960), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_LT_DASH] = ACTIONS(1993), + [sym_none] = ACTIONS(1996), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_nil] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1999), + [anon_sym_DOLLARif] = ACTIONS(2002), + [anon_sym_match] = ACTIONS(2005), + [anon_sym_select] = ACTIONS(2008), [anon_sym_lock] = ACTIONS(2011), [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_unsafe] = ACTIONS(2014), + [anon_sym_sql] = ACTIONS(2017), + [sym_int_literal] = ACTIONS(1996), + [sym_float_literal] = ACTIONS(2020), + [sym_rune_literal] = ACTIONS(2020), + [sym_pseudo_compile_time_identifier] = ACTIONS(2023), + [anon_sym_shared] = ACTIONS(2026), + [anon_sym_map_LBRACK] = ACTIONS(2029), + [anon_sym_chan] = ACTIONS(2032), + [anon_sym_thread] = ACTIONS(2035), + [anon_sym_atomic] = ACTIONS(2038), + [sym___double_quote] = ACTIONS(2041), + [sym___single_quote] = ACTIONS(2044), + [sym___c_double_quote] = ACTIONS(2047), + [sym___c_single_quote] = ACTIONS(2050), + [sym___r_double_quote] = ACTIONS(2053), + [sym___r_single_quote] = ACTIONS(2056), }, - [293] = { - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4312), - [sym_identifier] = ACTIONS(1769), + [291] = { + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(273), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [294] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(251), - [sym_identifier] = ACTIONS(1408), + [292] = { + [sym__expression] = STATE(2755), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_map_keyed_element] = STATE(2127), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_map_init_expression_repeat1] = STATE(290), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [295] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2059), - [anon_sym___global] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_or] = ACTIONS(2059), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(2059), - [anon_sym_BANGis] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_BANGin] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_STAR_EQ] = ACTIONS(2059), - [anon_sym_SLASH_EQ] = ACTIONS(2059), - [anon_sym_PERCENT_EQ] = ACTIONS(2059), - [anon_sym_LT_LT_EQ] = ACTIONS(2059), - [anon_sym_GT_GT_EQ] = ACTIONS(2059), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2059), - [anon_sym_AMP_EQ] = ACTIONS(2059), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2059), - [anon_sym_PLUS_EQ] = ACTIONS(2059), - [anon_sym_DASH_EQ] = ACTIONS(2059), - [anon_sym_PIPE_EQ] = ACTIONS(2059), - [anon_sym_CARET_EQ] = ACTIONS(2059), - [anon_sym_COLON_EQ] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), - [anon_sym_AT_LBRACK] = ACTIONS(2059), - [sym___double_quote] = ACTIONS(2059), - [sym___single_quote] = ACTIONS(2059), - [sym___c_double_quote] = ACTIONS(2059), - [sym___c_single_quote] = ACTIONS(2059), - [sym___r_double_quote] = ACTIONS(2059), - [sym___r_single_quote] = ACTIONS(2059), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [296] = { - [sym__expression] = STATE(2442), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3879), - [sym_expression_list] = STATE(4540), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_var_declaration] = STATE(4183), - [sym_identifier] = ACTIONS(1769), + [293] = { + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4310), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_block] = STATE(2087), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [294] = { + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1725), + [anon_sym_GT] = ACTIONS(1725), + [anon_sym_EQ_EQ] = ACTIONS(1725), + [anon_sym_BANG_EQ] = ACTIONS(1725), + [anon_sym_LT_EQ] = ACTIONS(1725), + [anon_sym_GT_EQ] = ACTIONS(1725), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1743), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1753), + [anon_sym_BANGin] = ACTIONS(1755), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_STAR_EQ] = ACTIONS(1881), + [anon_sym_SLASH_EQ] = ACTIONS(1881), + [anon_sym_PERCENT_EQ] = ACTIONS(1881), + [anon_sym_LT_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_AMP_EQ] = ACTIONS(1881), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), + [anon_sym_PLUS_EQ] = ACTIONS(1881), + [anon_sym_DASH_EQ] = ACTIONS(1881), + [anon_sym_PIPE_EQ] = ACTIONS(1881), + [anon_sym_CARET_EQ] = ACTIONS(1881), + [anon_sym_COLON_EQ] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, + [295] = { + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_STAR_EQ] = ACTIONS(1881), + [anon_sym_SLASH_EQ] = ACTIONS(1881), + [anon_sym_PERCENT_EQ] = ACTIONS(1881), + [anon_sym_LT_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_AMP_EQ] = ACTIONS(1881), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), + [anon_sym_PLUS_EQ] = ACTIONS(1881), + [anon_sym_DASH_EQ] = ACTIONS(1881), + [anon_sym_PIPE_EQ] = ACTIONS(1881), + [anon_sym_CARET_EQ] = ACTIONS(1881), + [anon_sym_COLON_EQ] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, + [296] = { + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1881), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_AMP_CARET] = ACTIONS(1881), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_STAR_EQ] = ACTIONS(1881), + [anon_sym_SLASH_EQ] = ACTIONS(1881), + [anon_sym_PERCENT_EQ] = ACTIONS(1881), + [anon_sym_LT_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_AMP_EQ] = ACTIONS(1881), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), + [anon_sym_PLUS_EQ] = ACTIONS(1881), + [anon_sym_DASH_EQ] = ACTIONS(1881), + [anon_sym_PIPE_EQ] = ACTIONS(1881), + [anon_sym_CARET_EQ] = ACTIONS(1881), + [anon_sym_COLON_EQ] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [297] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(2061), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2070), - [anon_sym_LPAREN] = ACTIONS(2072), - [anon_sym_fn] = ACTIONS(2075), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2084), - [anon_sym_mut] = ACTIONS(2087), - [anon_sym_QMARK] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_go] = ACTIONS(2096), - [anon_sym_spawn] = ACTIONS(2099), - [anon_sym_json_DOTdecode] = ACTIONS(2102), - [anon_sym_LBRACK2] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_CARET] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_LT_DASH] = ACTIONS(2111), - [sym_none] = ACTIONS(2114), - [sym_true] = ACTIONS(2114), - [sym_false] = ACTIONS(2114), - [sym_nil] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_DOLLARif] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2123), - [anon_sym_select] = ACTIONS(2126), - [anon_sym_lock] = ACTIONS(2129), - [anon_sym_rlock] = ACTIONS(2129), - [anon_sym_unsafe] = ACTIONS(2132), - [anon_sym_sql] = ACTIONS(2135), - [sym_int_literal] = ACTIONS(2114), - [sym_float_literal] = ACTIONS(2138), - [sym_rune_literal] = ACTIONS(2138), - [sym_pseudo_compile_time_identifier] = ACTIONS(2141), - [anon_sym_shared] = ACTIONS(2144), - [anon_sym_map_LBRACK] = ACTIONS(2147), - [anon_sym_chan] = ACTIONS(2150), - [anon_sym_thread] = ACTIONS(2153), - [anon_sym_atomic] = ACTIONS(2156), - [sym___double_quote] = ACTIONS(2159), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2165), - [sym___c_single_quote] = ACTIONS(2168), - [sym___r_double_quote] = ACTIONS(2171), - [sym___r_single_quote] = ACTIONS(2174), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(1881), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_STAR_EQ] = ACTIONS(1881), + [anon_sym_SLASH_EQ] = ACTIONS(1881), + [anon_sym_PERCENT_EQ] = ACTIONS(1881), + [anon_sym_LT_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1881), + [anon_sym_AMP_EQ] = ACTIONS(1881), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1881), + [anon_sym_PLUS_EQ] = ACTIONS(1881), + [anon_sym_DASH_EQ] = ACTIONS(1881), + [anon_sym_PIPE_EQ] = ACTIONS(1881), + [anon_sym_CARET_EQ] = ACTIONS(1881), + [anon_sym_COLON_EQ] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [298] = { - [sym_type_parameters] = STATE(4300), - [sym_argument_list] = STATE(683), - [sym_or_block] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [anon_sym_CR] = ACTIONS(2179), - [anon_sym_CR_LF] = ACTIONS(2179), + [sym_type_parameters] = STATE(4299), + [sym_argument_list] = STATE(933), + [sym_or_block] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LF] = ACTIONS(2067), + [anon_sym_CR] = ACTIONS(2067), + [anon_sym_CR_LF] = ACTIONS(2067), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1709), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_EQ] = ACTIONS(2179), - [anon_sym___global] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(1719), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1721), - [anon_sym_SLASH] = ACTIONS(1721), - [anon_sym_PERCENT] = ACTIONS(1721), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_GT] = ACTIONS(2179), - [anon_sym_EQ_EQ] = ACTIONS(2179), - [anon_sym_BANG_EQ] = ACTIONS(2179), - [anon_sym_LT_EQ] = ACTIONS(2179), - [anon_sym_GT_EQ] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_interface] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1733), - [anon_sym_go] = ACTIONS(2179), - [anon_sym_spawn] = ACTIONS(2179), - [anon_sym_json_DOTdecode] = ACTIONS(2179), - [anon_sym_LBRACK2] = ACTIONS(1735), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_CARET] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1721), - [anon_sym_LT_DASH] = ACTIONS(2179), - [anon_sym_LT_LT] = ACTIONS(1721), - [anon_sym_GT_GT] = ACTIONS(1721), - [anon_sym_GT_GT_GT] = ACTIONS(1721), - [anon_sym_AMP_CARET] = ACTIONS(1721), - [anon_sym_AMP_AMP] = ACTIONS(2179), - [anon_sym_PIPE_PIPE] = ACTIONS(2179), - [anon_sym_or] = ACTIONS(2179), - [sym_none] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_nil] = ACTIONS(2179), - [anon_sym_QMARK_DOT] = ACTIONS(1709), - [anon_sym_POUND_LBRACK] = ACTIONS(1735), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_DOLLARif] = ACTIONS(2179), - [anon_sym_is] = ACTIONS(2179), - [anon_sym_BANGis] = ACTIONS(2179), - [anon_sym_in] = ACTIONS(2179), - [anon_sym_BANGin] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_select] = ACTIONS(2179), - [anon_sym_STAR_EQ] = ACTIONS(2179), - [anon_sym_SLASH_EQ] = ACTIONS(2179), - [anon_sym_PERCENT_EQ] = ACTIONS(2179), - [anon_sym_LT_LT_EQ] = ACTIONS(2179), - [anon_sym_GT_GT_EQ] = ACTIONS(2179), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2179), - [anon_sym_AMP_EQ] = ACTIONS(2179), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2179), - [anon_sym_PLUS_EQ] = ACTIONS(2179), - [anon_sym_DASH_EQ] = ACTIONS(2179), - [anon_sym_PIPE_EQ] = ACTIONS(2179), - [anon_sym_CARET_EQ] = ACTIONS(2179), - [anon_sym_COLON_EQ] = ACTIONS(2179), - [anon_sym_lock] = ACTIONS(2179), - [anon_sym_rlock] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_sql] = ACTIONS(2179), - [sym_int_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_rune_literal] = ACTIONS(2179), - [sym_pseudo_compile_time_identifier] = ACTIONS(2179), - [anon_sym_shared] = ACTIONS(2179), - [anon_sym_map_LBRACK] = ACTIONS(2179), - [anon_sym_chan] = ACTIONS(2179), - [anon_sym_thread] = ACTIONS(2179), - [anon_sym_atomic] = ACTIONS(2179), - [anon_sym_assert] = ACTIONS(2179), - [anon_sym_defer] = ACTIONS(2179), - [anon_sym_goto] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_DOLLARfor] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_POUND] = ACTIONS(2179), - [anon_sym_asm] = ACTIONS(2179), - [anon_sym_AT_LBRACK] = ACTIONS(2179), - [sym___double_quote] = ACTIONS(2179), - [sym___single_quote] = ACTIONS(2179), - [sym___c_double_quote] = ACTIONS(2179), - [sym___c_single_quote] = ACTIONS(2179), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(1711), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(1717), + [anon_sym_EQ] = ACTIONS(2067), + [anon_sym___global] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(1721), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(1721), + [anon_sym_DASH] = ACTIONS(1721), + [anon_sym_STAR] = ACTIONS(1723), + [anon_sym_SLASH] = ACTIONS(1723), + [anon_sym_PERCENT] = ACTIONS(1723), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_union] = ACTIONS(2067), + [anon_sym_pub] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_QMARK] = ACTIONS(1733), + [anon_sym_BANG] = ACTIONS(1735), + [anon_sym_go] = ACTIONS(2067), + [anon_sym_spawn] = ACTIONS(2067), + [anon_sym_json_DOTdecode] = ACTIONS(2067), + [anon_sym_LBRACK2] = ACTIONS(1737), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(1721), + [anon_sym_AMP] = ACTIONS(1723), + [anon_sym_LT_DASH] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(1723), + [anon_sym_GT_GT] = ACTIONS(1723), + [anon_sym_GT_GT_GT] = ACTIONS(1723), + [anon_sym_AMP_CARET] = ACTIONS(1723), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_or] = ACTIONS(2067), + [sym_none] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_nil] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(1711), + [anon_sym_POUND_LBRACK] = ACTIONS(1737), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_DOLLARif] = ACTIONS(2067), + [anon_sym_is] = ACTIONS(2067), + [anon_sym_BANGis] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_BANGin] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_select] = ACTIONS(2067), + [anon_sym_STAR_EQ] = ACTIONS(2067), + [anon_sym_SLASH_EQ] = ACTIONS(2067), + [anon_sym_PERCENT_EQ] = ACTIONS(2067), + [anon_sym_LT_LT_EQ] = ACTIONS(2067), + [anon_sym_GT_GT_EQ] = ACTIONS(2067), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2067), + [anon_sym_AMP_EQ] = ACTIONS(2067), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2067), + [anon_sym_PLUS_EQ] = ACTIONS(2067), + [anon_sym_DASH_EQ] = ACTIONS(2067), + [anon_sym_PIPE_EQ] = ACTIONS(2067), + [anon_sym_CARET_EQ] = ACTIONS(2067), + [anon_sym_COLON_EQ] = ACTIONS(2067), + [anon_sym_lock] = ACTIONS(2067), + [anon_sym_rlock] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_sql] = ACTIONS(2067), + [sym_int_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), + [sym_rune_literal] = ACTIONS(2067), + [sym_pseudo_compile_time_identifier] = ACTIONS(2067), + [anon_sym_shared] = ACTIONS(2067), + [anon_sym_map_LBRACK] = ACTIONS(2067), + [anon_sym_chan] = ACTIONS(2067), + [anon_sym_thread] = ACTIONS(2067), + [anon_sym_atomic] = ACTIONS(2067), + [anon_sym_assert] = ACTIONS(2067), + [anon_sym_defer] = ACTIONS(2067), + [anon_sym_goto] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_DOLLARfor] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_asm] = ACTIONS(2067), + [anon_sym_AT_LBRACK] = ACTIONS(2067), + [sym___double_quote] = ACTIONS(2067), + [sym___single_quote] = ACTIONS(2067), + [sym___c_double_quote] = ACTIONS(2067), + [sym___c_single_quote] = ACTIONS(2067), + [sym___r_double_quote] = ACTIONS(2067), + [sym___r_single_quote] = ACTIONS(2067), }, [299] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4547), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [300] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_map_keyed_element] = STATE(2048), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_map_init_expression_repeat1] = STATE(297), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2319), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(608), + [sym_mutable_expression] = STATE(3517), + [sym_expression_list] = STATE(3763), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, [301] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4477), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [302] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3625), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(315), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [303] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2744), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2744), - [sym_dec_expression] = STATE(2744), - [sym_or_block_expression] = STATE(2744), - [sym_option_propagation_expression] = STATE(2744), - [sym_result_propagation_expression] = STATE(2744), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2744), - [sym_spawn_expression] = STATE(2744), - [sym_parenthesized_expression] = STATE(2744), - [sym_call_expression] = STATE(2744), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2744), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2744), - [sym_receive_expression] = STATE(2744), - [sym_binary_expression] = STATE(2744), - [sym_as_type_cast_expression] = STATE(2744), - [sym__max_group] = STATE(2744), - [sym_literal] = STATE(2744), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2744), - [sym_fixed_array_creation] = STATE(2744), - [sym_selector_expression] = STATE(2744), - [sym_index_expression] = STATE(2744), - [sym_slice_expression] = STATE(2744), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2744), - [sym_not_is_expression] = STATE(2744), - [sym_in_expression] = STATE(2744), - [sym_not_in_expression] = STATE(2744), - [sym_enum_fetch] = STATE(2744), - [sym_match_expression] = STATE(2778), - [sym_match_arm_type] = STATE(4320), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3928), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(4333), - [sym_identifier] = ACTIONS(1095), + [sym__expression] = STATE(977), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(537), + [sym_mutable_expression] = STATE(1436), + [sym_expression_list] = STATE(1513), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(1137), - [anon_sym_lock] = ACTIONS(1139), - [anon_sym_rlock] = ACTIONS(1139), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [304] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(379), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(977), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(537), + [sym_mutable_expression] = STATE(1436), + [sym_expression_list] = STATE(1514), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [305] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4499), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_short_element_list_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(2137), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_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(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(2140), + [anon_sym_LBRACE] = ACTIONS(2143), + [anon_sym_RBRACE] = ACTIONS(2146), + [anon_sym_LPAREN] = ACTIONS(2148), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2154), + [anon_sym_DASH] = ACTIONS(2154), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_struct] = ACTIONS(2160), + [anon_sym_mut] = ACTIONS(2163), + [anon_sym_QMARK] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2169), + [anon_sym_go] = ACTIONS(2172), + [anon_sym_spawn] = ACTIONS(2175), + [anon_sym_json_DOTdecode] = ACTIONS(2178), + [anon_sym_LBRACK2] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2154), + [anon_sym_CARET] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_LT_DASH] = ACTIONS(2187), + [sym_none] = ACTIONS(2190), + [sym_true] = ACTIONS(2190), + [sym_false] = ACTIONS(2190), + [sym_nil] = ACTIONS(2190), + [anon_sym_if] = ACTIONS(2193), + [anon_sym_DOLLARif] = ACTIONS(2196), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_select] = ACTIONS(2202), + [anon_sym_lock] = ACTIONS(2205), + [anon_sym_rlock] = ACTIONS(2205), + [anon_sym_unsafe] = ACTIONS(2208), + [anon_sym_sql] = ACTIONS(2211), + [sym_int_literal] = ACTIONS(2190), + [sym_float_literal] = ACTIONS(2214), + [sym_rune_literal] = ACTIONS(2214), + [sym_pseudo_compile_time_identifier] = ACTIONS(2217), + [anon_sym_shared] = ACTIONS(2220), + [anon_sym_map_LBRACK] = ACTIONS(2223), + [anon_sym_chan] = ACTIONS(2226), + [anon_sym_thread] = ACTIONS(2229), + [anon_sym_atomic] = ACTIONS(2232), + [sym___double_quote] = ACTIONS(2235), + [sym___single_quote] = ACTIONS(2238), + [sym___c_double_quote] = ACTIONS(2241), + [sym___c_single_quote] = ACTIONS(2244), + [sym___r_double_quote] = ACTIONS(2247), + [sym___r_single_quote] = ACTIONS(2250), }, [306] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4499), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4491), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [307] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4414), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(308), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2197), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2255), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [308] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4553), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2257), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [309] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(387), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4512), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2259), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [310] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4113), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4512), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [311] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4469), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2644), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4711), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [312] = { - [sym__expression] = STATE(2526), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(490), - [sym_mutable_expression] = STATE(3833), - [sym_expression_list] = STATE(4105), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [313] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4381), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(301), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2265), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [314] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4392), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4528), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2267), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [315] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2231), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2269), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [316] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(381), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4512), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2271), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [317] = { - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4390), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2273), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [318] = { - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4390), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(1328), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_string_interpolation_repeat1] = STATE(318), + [sym_identifier] = ACTIONS(2275), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_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(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(2278), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_fn] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2295), + [anon_sym_struct] = ACTIONS(2298), + [anon_sym_mut] = ACTIONS(2301), + [anon_sym_QMARK] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2307), + [anon_sym_go] = ACTIONS(2310), + [anon_sym_spawn] = ACTIONS(2313), + [anon_sym_json_DOTdecode] = ACTIONS(2316), + [anon_sym_LBRACK2] = ACTIONS(2319), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_CARET] = ACTIONS(2292), + [anon_sym_AMP] = ACTIONS(2322), + [anon_sym_LT_DASH] = ACTIONS(2325), + [sym_none] = ACTIONS(2328), + [sym_true] = ACTIONS(2328), + [sym_false] = ACTIONS(2328), + [sym_nil] = ACTIONS(2328), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_DOLLARif] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2337), + [anon_sym_select] = ACTIONS(2340), + [anon_sym_lock] = ACTIONS(2343), + [anon_sym_rlock] = ACTIONS(2343), + [anon_sym_unsafe] = ACTIONS(2346), + [anon_sym_sql] = ACTIONS(2349), + [sym_int_literal] = ACTIONS(2328), + [sym_float_literal] = ACTIONS(2352), + [sym_rune_literal] = ACTIONS(2352), + [sym_pseudo_compile_time_identifier] = ACTIONS(2355), + [anon_sym_shared] = ACTIONS(2358), + [anon_sym_map_LBRACK] = ACTIONS(2361), + [anon_sym_chan] = ACTIONS(2364), + [anon_sym_thread] = ACTIONS(2367), + [anon_sym_atomic] = ACTIONS(2370), + [sym___double_quote] = ACTIONS(2373), + [sym___single_quote] = ACTIONS(2376), + [sym___c_double_quote] = ACTIONS(2379), + [sym___c_single_quote] = ACTIONS(2382), + [sym___r_double_quote] = ACTIONS(2385), + [sym___r_single_quote] = ACTIONS(2388), }, [319] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4381), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [320] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4476), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2644), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4711), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [321] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4491), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2239), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2401), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [322] = { - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4594), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(312), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2403), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [323] = { - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4594), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4407), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [324] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4506), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2407), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [325] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4381), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2409), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [326] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4470), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [327] = { - [sym__expression] = STATE(2652), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4458), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2632), + [sym__expression_without_blocks] = STATE(2773), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2773), + [sym_dec_expression] = STATE(2773), + [sym_or_block_expression] = STATE(2773), + [sym_option_propagation_expression] = STATE(2773), + [sym_result_propagation_expression] = STATE(2773), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2773), + [sym_spawn_expression] = STATE(2773), + [sym_parenthesized_expression] = STATE(2773), + [sym_call_expression] = STATE(2773), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2773), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2773), + [sym_receive_expression] = STATE(2773), + [sym_binary_expression] = STATE(2773), + [sym_as_type_cast_expression] = STATE(2773), + [sym__max_group] = STATE(2773), + [sym_literal] = STATE(2773), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2773), + [sym_fixed_array_creation] = STATE(2773), + [sym_selector_expression] = STATE(2773), + [sym_index_expression] = STATE(2773), + [sym_slice_expression] = STATE(2773), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2773), + [sym_not_is_expression] = STATE(2773), + [sym_in_expression] = STATE(2773), + [sym_not_in_expression] = STATE(2773), + [sym_enum_fetch] = STATE(2773), + [sym_match_expression] = STATE(2816), + [sym_match_arm_type] = STATE(4297), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3933), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(4296), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(1117), + [anon_sym_lock] = ACTIONS(1119), + [anon_sym_rlock] = ACTIONS(1119), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2413), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [328] = { - [sym__expression] = STATE(2652), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4458), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2415), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [329] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2510), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(913), + [sym_mutable_expression] = STATE(4061), + [sym_expression_list] = STATE(4079), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2247), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [330] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4476), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4103), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [331] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4469), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4430), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2439), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [332] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4385), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(317), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2441), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [333] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4456), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2443), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [334] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4392), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2445), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [335] = { - [sym__expression] = STATE(2648), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4640), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4449), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2447), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [336] = { - [sym__expression] = STATE(2648), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4640), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2449), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [337] = { - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4600), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(324), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2451), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [338] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4105), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(334), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2453), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [339] = { - [sym__expression] = STATE(2526), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(490), - [sym_mutable_expression] = STATE(3833), - [sym_expression_list] = STATE(4113), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4699), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2455), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [340] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4573), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2457), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [341] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4573), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(2642), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4657), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [342] = { - [sym__expression] = STATE(1330), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym_string_interpolation_repeat1] = STATE(342), - [sym_identifier] = ACTIONS(2259), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_struct] = ACTIONS(2282), - [anon_sym_mut] = ACTIONS(2285), - [anon_sym_QMARK] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_go] = ACTIONS(2294), - [anon_sym_spawn] = ACTIONS(2297), - [anon_sym_json_DOTdecode] = ACTIONS(2300), - [anon_sym_LBRACK2] = ACTIONS(2303), - [anon_sym_TILDE] = ACTIONS(2276), - [anon_sym_CARET] = ACTIONS(2276), - [anon_sym_AMP] = ACTIONS(2306), - [anon_sym_LT_DASH] = ACTIONS(2309), - [sym_none] = ACTIONS(2312), - [sym_true] = ACTIONS(2312), - [sym_false] = ACTIONS(2312), - [sym_nil] = ACTIONS(2312), - [anon_sym_if] = ACTIONS(2315), - [anon_sym_DOLLARif] = ACTIONS(2318), - [anon_sym_match] = ACTIONS(2321), - [anon_sym_select] = ACTIONS(2324), - [anon_sym_lock] = ACTIONS(2327), - [anon_sym_rlock] = ACTIONS(2327), - [anon_sym_unsafe] = ACTIONS(2330), - [anon_sym_sql] = ACTIONS(2333), - [sym_int_literal] = ACTIONS(2312), - [sym_float_literal] = ACTIONS(2336), - [sym_rune_literal] = ACTIONS(2336), - [sym_pseudo_compile_time_identifier] = ACTIONS(2339), - [anon_sym_shared] = ACTIONS(2342), - [anon_sym_map_LBRACK] = ACTIONS(2345), - [anon_sym_chan] = ACTIONS(2348), - [anon_sym_thread] = ACTIONS(2351), - [anon_sym_atomic] = ACTIONS(2354), - [sym___double_quote] = ACTIONS(2357), - [sym___single_quote] = ACTIONS(2360), - [sym___c_double_quote] = ACTIONS(2363), - [sym___c_single_quote] = ACTIONS(2366), - [sym___r_double_quote] = ACTIONS(2369), - [sym___r_single_quote] = ACTIONS(2372), - }, - [343] = { - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4600), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(328), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2459), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [344] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2375), - [anon_sym_struct] = ACTIONS(1346), + [343] = { + [sym__expression] = STATE(2642), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4657), + [sym_identifier] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [344] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3661), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2393), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [345] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4448), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(336), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2461), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [346] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4431), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4479), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2379), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2463), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [347] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4627), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2381), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [348] = { - [sym__expression] = STATE(974), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(953), - [sym_mutable_expression] = STATE(1436), - [sym_expression_list] = STATE(1512), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [sym__expression] = STATE(2663), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4627), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [349] = { - [sym__expression] = STATE(974), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(953), - [sym_mutable_expression] = STATE(1436), - [sym_expression_list] = STATE(1511), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4079), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [350] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2510), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(913), + [sym_mutable_expression] = STATE(4061), + [sym_expression_list] = STATE(4103), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2415), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [351] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4428), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2417), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [352] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4385), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4580), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [353] = { - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4563), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4555), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2467), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [354] = { - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4563), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2469), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [355] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2625), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4580), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2421), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [356] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4414), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2664), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4547), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [357] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4479), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2425), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [358] = { - [sym__expression] = STATE(2626), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4639), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1165), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym_short_element_list_repeat1] = STATE(305), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, [359] = { - [sym__expression] = STATE(2626), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4639), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(340), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(1390), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [360] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4406), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2638), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4680), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [361] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(351), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3661), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2429), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [362] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4476), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(377), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2489), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [363] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(355), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4407), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1344), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [364] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2638), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4680), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2433), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [365] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4431), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2634), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [366] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4477), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4456), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [367] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3625), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4609), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [368] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2662), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4609), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2451), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [369] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4427), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2634), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4531), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2453), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [370] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(315), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4479), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2455), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [371] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(387), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2319), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(608), + [sym_mutable_expression] = STATE(3517), + [sym_expression_list] = STATE(3762), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2457), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, [372] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(347), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(308), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2459), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2497), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [373] = { - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4546), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2626), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4538), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [374] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(321), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2626), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4538), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2461), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [375] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4479), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2463), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2499), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [376] = { - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4549), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2627), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4454), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [377] = { - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4546), - [sym_identifier] = ACTIONS(2185), + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2501), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, [378] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1428), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1425), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(326), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2627), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4454), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2465), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1378), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [379] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym_else_branch] = STATE(601), + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2505), + [anon_sym_LF] = ACTIONS(2505), + [anon_sym_CR] = ACTIONS(2505), + [anon_sym_CR_LF] = ACTIONS(2505), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2505), + [anon_sym___global] = ACTIONS(2505), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_SLASH] = ACTIONS(2505), + [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_GT] = ACTIONS(2505), + [anon_sym_EQ_EQ] = ACTIONS(2505), + [anon_sym_BANG_EQ] = ACTIONS(2505), + [anon_sym_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_EQ] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_pub] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_QMARK] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_go] = ACTIONS(2505), + [anon_sym_spawn] = ACTIONS(2505), + [anon_sym_json_DOTdecode] = ACTIONS(2505), + [anon_sym_LBRACK2] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_CARET] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_LT_DASH] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_GT_GT] = ACTIONS(2505), + [anon_sym_GT_GT_GT] = ACTIONS(2505), + [anon_sym_AMP_CARET] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_PIPE_PIPE] = ACTIONS(2505), + [anon_sym_or] = ACTIONS(2505), + [sym_none] = ACTIONS(2505), + [sym_true] = ACTIONS(2505), + [sym_false] = ACTIONS(2505), + [sym_nil] = ACTIONS(2505), + [anon_sym_QMARK_DOT] = ACTIONS(2505), + [anon_sym_POUND_LBRACK] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_DOLLARif] = ACTIONS(2505), + [anon_sym_is] = ACTIONS(2505), + [anon_sym_BANGis] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2505), + [anon_sym_BANGin] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_select] = ACTIONS(2505), + [anon_sym_STAR_EQ] = ACTIONS(2505), + [anon_sym_SLASH_EQ] = ACTIONS(2505), + [anon_sym_PERCENT_EQ] = ACTIONS(2505), + [anon_sym_LT_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_GT_EQ] = ACTIONS(2505), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2505), + [anon_sym_AMP_EQ] = ACTIONS(2505), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2505), + [anon_sym_PLUS_EQ] = ACTIONS(2505), + [anon_sym_DASH_EQ] = ACTIONS(2505), + [anon_sym_PIPE_EQ] = ACTIONS(2505), + [anon_sym_CARET_EQ] = ACTIONS(2505), + [anon_sym_COLON_EQ] = ACTIONS(2505), + [anon_sym_lock] = ACTIONS(2505), + [anon_sym_rlock] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_sql] = ACTIONS(2505), + [sym_int_literal] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2505), + [sym_rune_literal] = ACTIONS(2505), + [sym_pseudo_compile_time_identifier] = ACTIONS(2505), + [anon_sym_shared] = ACTIONS(2505), + [anon_sym_map_LBRACK] = ACTIONS(2505), + [anon_sym_chan] = ACTIONS(2505), + [anon_sym_thread] = ACTIONS(2505), + [anon_sym_atomic] = ACTIONS(2505), + [anon_sym_assert] = ACTIONS(2505), + [anon_sym_defer] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_DOLLARfor] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2505), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym_AT_LBRACK] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2505), + [sym___single_quote] = ACTIONS(2505), + [sym___c_double_quote] = ACTIONS(2505), + [sym___c_single_quote] = ACTIONS(2505), + [sym___r_double_quote] = ACTIONS(2505), + [sym___r_single_quote] = ACTIONS(2505), + }, + [380] = { + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4430), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2467), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [380] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4476), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [381] = { + [sym__expression] = STATE(2637), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4418), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2469), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [381] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [382] = { + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1429), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1424), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(354), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2471), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_RBRACK] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [382] = { - [sym__expression] = STATE(2519), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(4000), - [sym_expression_list] = STATE(4534), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [383] = { + [sym__expression] = STATE(2637), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4418), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2473), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [383] = { - [sym__expression] = STATE(2318), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3525), - [sym_expression_list] = STATE(3768), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [384] = { + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2513), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [384] = { - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3634), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_range] = STATE(4549), - [sym_identifier] = ACTIONS(2185), + [385] = { + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3631), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4477), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(1458), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [385] = { - [sym_else_branch] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_CR] = ACTIONS(2509), - [anon_sym_CR_LF] = ACTIONS(2509), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_COMMA] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_EQ] = ACTIONS(2509), - [anon_sym___global] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2509), - [anon_sym_BANG_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_union] = ACTIONS(2509), - [anon_sym_pub] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2509), - [anon_sym_AMP_CARET] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_PIPE_PIPE] = ACTIONS(2509), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2509), - [anon_sym_POUND_LBRACK] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_STAR_EQ] = ACTIONS(2509), - [anon_sym_SLASH_EQ] = ACTIONS(2509), - [anon_sym_PERCENT_EQ] = ACTIONS(2509), - [anon_sym_LT_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_GT_EQ] = ACTIONS(2509), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2509), - [anon_sym_AMP_EQ] = ACTIONS(2509), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2509), - [anon_sym_PLUS_EQ] = ACTIONS(2509), - [anon_sym_DASH_EQ] = ACTIONS(2509), - [anon_sym_PIPE_EQ] = ACTIONS(2509), - [anon_sym_CARET_EQ] = ACTIONS(2509), - [anon_sym_COLON_EQ] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [anon_sym_assert] = ACTIONS(2509), - [anon_sym_defer] = ACTIONS(2509), - [anon_sym_goto] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_DOLLARfor] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2509), - [anon_sym_AT_LBRACK] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2509), - [sym___single_quote] = ACTIONS(2509), - [sym___c_double_quote] = ACTIONS(2509), - [sym___c_single_quote] = ACTIONS(2509), - [sym___r_double_quote] = ACTIONS(2509), - [sym___r_single_quote] = ACTIONS(2509), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [386] = { - [sym_else_branch] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LF] = ACTIONS(2515), - [anon_sym_CR] = ACTIONS(2515), - [anon_sym_CR_LF] = ACTIONS(2515), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_COMMA] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym___global] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2515), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), - [anon_sym_EQ_EQ] = ACTIONS(2515), - [anon_sym_BANG_EQ] = ACTIONS(2515), - [anon_sym_LT_EQ] = ACTIONS(2515), - [anon_sym_GT_EQ] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_pub] = ACTIONS(2515), - [anon_sym_mut] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_interface] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_QMARK] = ACTIONS(2515), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_go] = ACTIONS(2515), - [anon_sym_spawn] = ACTIONS(2515), - [anon_sym_json_DOTdecode] = ACTIONS(2515), - [anon_sym_LBRACK2] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_CARET] = ACTIONS(2515), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_LT_DASH] = ACTIONS(2515), - [anon_sym_LT_LT] = ACTIONS(2515), - [anon_sym_GT_GT] = ACTIONS(2515), - [anon_sym_GT_GT_GT] = ACTIONS(2515), - [anon_sym_AMP_CARET] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2515), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_or] = ACTIONS(2515), - [sym_none] = ACTIONS(2515), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_nil] = ACTIONS(2515), - [anon_sym_QMARK_DOT] = ACTIONS(2515), - [anon_sym_POUND_LBRACK] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(2511), - [anon_sym_DOLLARif] = ACTIONS(2515), - [anon_sym_is] = ACTIONS(2515), - [anon_sym_BANGis] = ACTIONS(2515), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_BANGin] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_select] = ACTIONS(2515), - [anon_sym_STAR_EQ] = ACTIONS(2515), - [anon_sym_SLASH_EQ] = ACTIONS(2515), - [anon_sym_PERCENT_EQ] = ACTIONS(2515), - [anon_sym_LT_LT_EQ] = ACTIONS(2515), - [anon_sym_GT_GT_EQ] = ACTIONS(2515), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2515), - [anon_sym_AMP_EQ] = ACTIONS(2515), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2515), - [anon_sym_PLUS_EQ] = ACTIONS(2515), - [anon_sym_DASH_EQ] = ACTIONS(2515), - [anon_sym_PIPE_EQ] = ACTIONS(2515), - [anon_sym_CARET_EQ] = ACTIONS(2515), - [anon_sym_COLON_EQ] = ACTIONS(2515), - [anon_sym_lock] = ACTIONS(2515), - [anon_sym_rlock] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_sql] = ACTIONS(2515), - [sym_int_literal] = ACTIONS(2515), - [sym_float_literal] = ACTIONS(2515), - [sym_rune_literal] = ACTIONS(2515), - [sym_pseudo_compile_time_identifier] = ACTIONS(2515), - [anon_sym_shared] = ACTIONS(2515), - [anon_sym_map_LBRACK] = ACTIONS(2515), - [anon_sym_chan] = ACTIONS(2515), - [anon_sym_thread] = ACTIONS(2515), - [anon_sym_atomic] = ACTIONS(2515), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_defer] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_DOLLARfor] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(2515), - [anon_sym_asm] = ACTIONS(2515), - [anon_sym_AT_LBRACK] = ACTIONS(2515), - [sym___double_quote] = ACTIONS(2515), - [sym___single_quote] = ACTIONS(2515), - [sym___c_double_quote] = ACTIONS(2515), - [sym___c_single_quote] = ACTIONS(2515), - [sym___r_double_quote] = ACTIONS(2515), - [sym___r_single_quote] = ACTIONS(2515), - }, - [387] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(1330), + [sym__expression] = STATE(2640), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_range] = STATE(4477), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(2517), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [388] = { - [sym__expression] = STATE(1294), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [aux_sym__array_repeat1] = STATE(388), - [sym_identifier] = ACTIONS(2519), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2522), - [anon_sym_LBRACE] = ACTIONS(2525), - [anon_sym_LPAREN] = ACTIONS(2528), - [anon_sym_fn] = ACTIONS(2531), - [anon_sym_PLUS] = ACTIONS(2534), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2537), - [anon_sym_RBRACK] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2542), - [anon_sym_mut] = ACTIONS(2545), - [anon_sym_QMARK] = ACTIONS(2548), - [anon_sym_BANG] = ACTIONS(2551), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2557), - [anon_sym_json_DOTdecode] = ACTIONS(2560), - [anon_sym_LBRACK2] = ACTIONS(2563), - [anon_sym_TILDE] = ACTIONS(2534), - [anon_sym_CARET] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_LT_DASH] = ACTIONS(2569), - [sym_none] = ACTIONS(2572), - [sym_true] = ACTIONS(2572), - [sym_false] = ACTIONS(2572), - [sym_nil] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2575), - [anon_sym_DOLLARif] = ACTIONS(2578), - [anon_sym_match] = ACTIONS(2581), - [anon_sym_select] = ACTIONS(2584), - [anon_sym_lock] = ACTIONS(2587), - [anon_sym_rlock] = ACTIONS(2587), - [anon_sym_unsafe] = ACTIONS(2590), - [anon_sym_sql] = ACTIONS(2593), - [sym_int_literal] = ACTIONS(2572), - [sym_float_literal] = ACTIONS(2596), - [sym_rune_literal] = ACTIONS(2596), - [sym_pseudo_compile_time_identifier] = ACTIONS(2599), - [anon_sym_shared] = ACTIONS(2602), - [anon_sym_map_LBRACK] = ACTIONS(2605), - [anon_sym_chan] = ACTIONS(2608), - [anon_sym_thread] = ACTIONS(2611), - [anon_sym_atomic] = ACTIONS(2614), - [sym___double_quote] = ACTIONS(2617), - [sym___single_quote] = ACTIONS(2620), - [sym___c_double_quote] = ACTIONS(2623), - [sym___c_single_quote] = ACTIONS(2626), - [sym___r_double_quote] = ACTIONS(2629), - [sym___r_single_quote] = ACTIONS(2632), + [anon_sym_DOT_DOT] = ACTIONS(1237), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [389] = { - [sym__expression] = STATE(2318), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3525), - [sym_expression_list] = STATE(3725), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [387] = { + [sym__expression] = STATE(2603), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3887), + [sym_expression_list] = STATE(4399), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(2515), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [390] = { - [sym__expression] = STATE(2549), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym__definite_range] = STATE(4569), - [sym_identifier] = ACTIONS(1769), + [388] = { + [sym__expression] = STATE(1312), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [aux_sym__array_repeat1] = STATE(388), + [sym_identifier] = ACTIONS(2517), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(2520), + [anon_sym_LBRACE] = ACTIONS(2523), + [anon_sym_LPAREN] = ACTIONS(2526), + [anon_sym_fn] = ACTIONS(2529), + [anon_sym_PLUS] = ACTIONS(2532), + [anon_sym_DASH] = ACTIONS(2532), + [anon_sym_STAR] = ACTIONS(2535), + [anon_sym_RBRACK] = ACTIONS(2538), + [anon_sym_struct] = ACTIONS(2540), + [anon_sym_mut] = ACTIONS(2543), + [anon_sym_QMARK] = ACTIONS(2546), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_go] = ACTIONS(2552), + [anon_sym_spawn] = ACTIONS(2555), + [anon_sym_json_DOTdecode] = ACTIONS(2558), + [anon_sym_LBRACK2] = ACTIONS(2561), + [anon_sym_TILDE] = ACTIONS(2532), + [anon_sym_CARET] = ACTIONS(2532), + [anon_sym_AMP] = ACTIONS(2564), + [anon_sym_LT_DASH] = ACTIONS(2567), + [sym_none] = ACTIONS(2570), + [sym_true] = ACTIONS(2570), + [sym_false] = ACTIONS(2570), + [sym_nil] = ACTIONS(2570), + [anon_sym_if] = ACTIONS(2573), + [anon_sym_DOLLARif] = ACTIONS(2576), + [anon_sym_match] = ACTIONS(2579), + [anon_sym_select] = ACTIONS(2582), + [anon_sym_lock] = ACTIONS(2585), + [anon_sym_rlock] = ACTIONS(2585), + [anon_sym_unsafe] = ACTIONS(2588), + [anon_sym_sql] = ACTIONS(2591), + [sym_int_literal] = ACTIONS(2570), + [sym_float_literal] = ACTIONS(2594), + [sym_rune_literal] = ACTIONS(2594), + [sym_pseudo_compile_time_identifier] = ACTIONS(2597), + [anon_sym_shared] = ACTIONS(2600), + [anon_sym_map_LBRACK] = ACTIONS(2603), + [anon_sym_chan] = ACTIONS(2606), + [anon_sym_thread] = ACTIONS(2609), + [anon_sym_atomic] = ACTIONS(2612), + [sym___double_quote] = ACTIONS(2615), + [sym___single_quote] = ACTIONS(2618), + [sym___c_double_quote] = ACTIONS(2621), + [sym___c_single_quote] = ACTIONS(2624), + [sym___r_double_quote] = ACTIONS(2627), + [sym___r_single_quote] = ACTIONS(2630), + }, + [389] = { + [sym_else_branch] = STATE(600), + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2635), + [anon_sym_LF] = ACTIONS(2635), + [anon_sym_CR] = ACTIONS(2635), + [anon_sym_CR_LF] = ACTIONS(2635), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_as] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2635), + [anon_sym___global] = ACTIONS(2635), + [anon_sym_type] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), [anon_sym_PLUS] = ACTIONS(2635), [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_pub] = ACTIONS(2635), + [anon_sym_mut] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_interface] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_QMARK] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_go] = ACTIONS(2635), + [anon_sym_spawn] = ACTIONS(2635), + [anon_sym_json_DOTdecode] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), [anon_sym_TILDE] = ACTIONS(2635), [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_AMP_CARET] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [sym_none] = ACTIONS(2635), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_nil] = ACTIONS(2635), + [anon_sym_QMARK_DOT] = ACTIONS(2635), + [anon_sym_POUND_LBRACK] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(2507), + [anon_sym_DOLLARif] = ACTIONS(2635), + [anon_sym_is] = ACTIONS(2635), + [anon_sym_BANGis] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_BANGin] = ACTIONS(2635), + [anon_sym_match] = ACTIONS(2635), + [anon_sym_select] = ACTIONS(2635), + [anon_sym_STAR_EQ] = ACTIONS(2635), + [anon_sym_SLASH_EQ] = ACTIONS(2635), + [anon_sym_PERCENT_EQ] = ACTIONS(2635), + [anon_sym_LT_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_GT_EQ] = ACTIONS(2635), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2635), + [anon_sym_AMP_EQ] = ACTIONS(2635), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2635), + [anon_sym_PLUS_EQ] = ACTIONS(2635), + [anon_sym_DASH_EQ] = ACTIONS(2635), + [anon_sym_PIPE_EQ] = ACTIONS(2635), + [anon_sym_CARET_EQ] = ACTIONS(2635), + [anon_sym_COLON_EQ] = ACTIONS(2635), + [anon_sym_lock] = ACTIONS(2635), + [anon_sym_rlock] = ACTIONS(2635), + [anon_sym_unsafe] = ACTIONS(2635), + [anon_sym_sql] = ACTIONS(2635), + [sym_int_literal] = ACTIONS(2635), + [sym_float_literal] = ACTIONS(2635), + [sym_rune_literal] = ACTIONS(2635), + [sym_pseudo_compile_time_identifier] = ACTIONS(2635), + [anon_sym_shared] = ACTIONS(2635), + [anon_sym_map_LBRACK] = ACTIONS(2635), + [anon_sym_chan] = ACTIONS(2635), + [anon_sym_thread] = ACTIONS(2635), + [anon_sym_atomic] = ACTIONS(2635), + [anon_sym_assert] = ACTIONS(2635), + [anon_sym_defer] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_DOLLARfor] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_asm] = ACTIONS(2635), + [anon_sym_AT_LBRACK] = ACTIONS(2635), + [sym___double_quote] = ACTIONS(2635), + [sym___single_quote] = ACTIONS(2635), + [sym___c_double_quote] = ACTIONS(2635), + [sym___c_single_quote] = ACTIONS(2635), + [sym___r_double_quote] = ACTIONS(2635), + [sym___r_single_quote] = ACTIONS(2635), + }, + [390] = { + [sym__expression] = STATE(2606), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(770), + [sym_mutable_expression] = STATE(3349), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [391] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2954), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(3003), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), [sym_selector_expression] = STATE(2975), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2655), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2637), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2657), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2639), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [392] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2956), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2969), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2628), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(533), + [sym_mutable_expression] = STATE(3349), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2659), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2661), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [393] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2978), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2982), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2663), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2665), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2643), + [anon_sym_LF] = ACTIONS(2643), + [anon_sym_CR] = ACTIONS(2643), + [anon_sym_CR_LF] = ACTIONS(2643), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym___global] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_pub] = ACTIONS(2643), + [anon_sym_mut] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_interface] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_QMARK] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_go] = ACTIONS(2643), + [anon_sym_spawn] = ACTIONS(2643), + [anon_sym_json_DOTdecode] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_AMP_CARET] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [sym_none] = ACTIONS(2643), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_nil] = ACTIONS(2643), + [anon_sym_QMARK_DOT] = ACTIONS(2643), + [anon_sym_POUND_LBRACK] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_DOLLARif] = ACTIONS(2643), + [anon_sym_DOLLARelse] = ACTIONS(2645), + [anon_sym_is] = ACTIONS(2643), + [anon_sym_BANGis] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_BANGin] = ACTIONS(2643), + [anon_sym_match] = ACTIONS(2643), + [anon_sym_select] = ACTIONS(2643), + [anon_sym_STAR_EQ] = ACTIONS(2643), + [anon_sym_SLASH_EQ] = ACTIONS(2643), + [anon_sym_PERCENT_EQ] = ACTIONS(2643), + [anon_sym_LT_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_GT_EQ] = ACTIONS(2643), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2643), + [anon_sym_AMP_EQ] = ACTIONS(2643), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2643), + [anon_sym_PLUS_EQ] = ACTIONS(2643), + [anon_sym_DASH_EQ] = ACTIONS(2643), + [anon_sym_PIPE_EQ] = ACTIONS(2643), + [anon_sym_CARET_EQ] = ACTIONS(2643), + [anon_sym_COLON_EQ] = ACTIONS(2643), + [anon_sym_lock] = ACTIONS(2643), + [anon_sym_rlock] = ACTIONS(2643), + [anon_sym_unsafe] = ACTIONS(2643), + [anon_sym_sql] = ACTIONS(2643), + [sym_int_literal] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2643), + [sym_rune_literal] = ACTIONS(2643), + [sym_pseudo_compile_time_identifier] = ACTIONS(2643), + [anon_sym_shared] = ACTIONS(2643), + [anon_sym_map_LBRACK] = ACTIONS(2643), + [anon_sym_chan] = ACTIONS(2643), + [anon_sym_thread] = ACTIONS(2643), + [anon_sym_atomic] = ACTIONS(2643), + [anon_sym_assert] = ACTIONS(2643), + [anon_sym_defer] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_DOLLARfor] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_asm] = ACTIONS(2643), + [anon_sym_AT_LBRACK] = ACTIONS(2643), + [sym___double_quote] = ACTIONS(2643), + [sym___single_quote] = ACTIONS(2643), + [sym___c_double_quote] = ACTIONS(2643), + [sym___c_single_quote] = ACTIONS(2643), + [sym___r_double_quote] = ACTIONS(2643), + [sym___r_single_quote] = ACTIONS(2643), }, [394] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LF] = ACTIONS(2669), - [anon_sym_CR] = ACTIONS(2669), - [anon_sym_CR_LF] = ACTIONS(2669), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym___global] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_pub] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2677), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_STAR_EQ] = ACTIONS(2669), - [anon_sym_SLASH_EQ] = ACTIONS(2669), - [anon_sym_PERCENT_EQ] = ACTIONS(2669), - [anon_sym_LT_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_GT_EQ] = ACTIONS(2669), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2669), - [anon_sym_AMP_EQ] = ACTIONS(2669), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2669), - [anon_sym_PLUS_EQ] = ACTIONS(2669), - [anon_sym_DASH_EQ] = ACTIONS(2669), - [anon_sym_PIPE_EQ] = ACTIONS(2669), - [anon_sym_CARET_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [anon_sym_assert] = ACTIONS(2669), - [anon_sym_defer] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_DOLLARfor] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym_AT_LBRACK] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_AMP_CARET] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2651), + [anon_sym_POUND_LBRACK] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2651), + [anon_sym_BANGis] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_BANGin] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_STAR_EQ] = ACTIONS(2651), + [anon_sym_SLASH_EQ] = ACTIONS(2651), + [anon_sym_PERCENT_EQ] = ACTIONS(2651), + [anon_sym_LT_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_GT_EQ] = ACTIONS(2651), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2651), + [anon_sym_AMP_EQ] = ACTIONS(2651), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2651), + [anon_sym_PLUS_EQ] = ACTIONS(2651), + [anon_sym_DASH_EQ] = ACTIONS(2651), + [anon_sym_PIPE_EQ] = ACTIONS(2651), + [anon_sym_CARET_EQ] = ACTIONS(2651), + [anon_sym_COLON_EQ] = ACTIONS(2651), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), }, [395] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2681), - [anon_sym_CR] = ACTIONS(2681), - [anon_sym_CR_LF] = ACTIONS(2681), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_as] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_COMMA] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_EQ] = ACTIONS(2681), - [anon_sym___global] = ACTIONS(2681), - [anon_sym_type] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_pub] = ACTIONS(2681), - [anon_sym_mut] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_interface] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_go] = ACTIONS(2681), - [anon_sym_spawn] = ACTIONS(2681), - [anon_sym_json_DOTdecode] = ACTIONS(2681), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_AMP_CARET] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [sym_none] = ACTIONS(2681), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_nil] = ACTIONS(2681), - [anon_sym_QMARK_DOT] = ACTIONS(2681), - [anon_sym_POUND_LBRACK] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_DOLLARif] = ACTIONS(2681), - [anon_sym_DOLLARelse] = ACTIONS(2683), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_BANGis] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_BANGin] = ACTIONS(2681), - [anon_sym_match] = ACTIONS(2681), - [anon_sym_select] = ACTIONS(2681), - [anon_sym_STAR_EQ] = ACTIONS(2681), - [anon_sym_SLASH_EQ] = ACTIONS(2681), - [anon_sym_PERCENT_EQ] = ACTIONS(2681), - [anon_sym_LT_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_GT_EQ] = ACTIONS(2681), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2681), - [anon_sym_AMP_EQ] = ACTIONS(2681), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2681), - [anon_sym_PLUS_EQ] = ACTIONS(2681), - [anon_sym_DASH_EQ] = ACTIONS(2681), - [anon_sym_PIPE_EQ] = ACTIONS(2681), - [anon_sym_CARET_EQ] = ACTIONS(2681), - [anon_sym_COLON_EQ] = ACTIONS(2681), - [anon_sym_lock] = ACTIONS(2681), - [anon_sym_rlock] = ACTIONS(2681), - [anon_sym_unsafe] = ACTIONS(2681), - [anon_sym_sql] = ACTIONS(2681), - [sym_int_literal] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), - [sym_rune_literal] = ACTIONS(2681), - [sym_pseudo_compile_time_identifier] = ACTIONS(2681), - [anon_sym_shared] = ACTIONS(2681), - [anon_sym_map_LBRACK] = ACTIONS(2681), - [anon_sym_chan] = ACTIONS(2681), - [anon_sym_thread] = ACTIONS(2681), - [anon_sym_atomic] = ACTIONS(2681), - [anon_sym_assert] = ACTIONS(2681), - [anon_sym_defer] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_DOLLARfor] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(2681), - [anon_sym_asm] = ACTIONS(2681), - [anon_sym_AT_LBRACK] = ACTIONS(2681), - [sym___double_quote] = ACTIONS(2681), - [sym___single_quote] = ACTIONS(2681), - [sym___c_double_quote] = ACTIONS(2681), - [sym___c_single_quote] = ACTIONS(2681), - [sym___r_double_quote] = ACTIONS(2681), - [sym___r_single_quote] = ACTIONS(2681), - }, - [396] = { - [sym__expression] = STATE(2805), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4405), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1786), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(494), + [sym_mutable_expression] = STATE(3350), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), + }, + [396] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_DOLLARelse] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_STAR_EQ] = ACTIONS(2649), + [anon_sym_SLASH_EQ] = ACTIONS(2649), + [anon_sym_PERCENT_EQ] = ACTIONS(2649), + [anon_sym_LT_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_GT_EQ] = ACTIONS(2649), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2649), + [anon_sym_AMP_EQ] = ACTIONS(2649), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2649), + [anon_sym_PLUS_EQ] = ACTIONS(2649), + [anon_sym_DASH_EQ] = ACTIONS(2649), + [anon_sym_PIPE_EQ] = ACTIONS(2649), + [anon_sym_CARET_EQ] = ACTIONS(2649), + [anon_sym_COLON_EQ] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), }, [397] = { - [sym__expression] = STATE(2789), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4384), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2949), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2953), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2681), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [398] = { - [sym__expression] = STATE(216), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(928), - [sym_mutable_expression] = STATE(1128), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [399] = { - [sym__expression] = STATE(2698), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4394), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2685), + [anon_sym_CR] = ACTIONS(2685), + [anon_sym_CR_LF] = ACTIONS(2685), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym___global] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), [anon_sym_PLUS] = ACTIONS(2685), [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2685), + [anon_sym_LBRACK2] = ACTIONS(2685), [anon_sym_TILDE] = ACTIONS(2685), [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2685), + [anon_sym_AMP_CARET] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2685), + [anon_sym_POUND_LBRACK] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_DOLLARelse] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2685), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_STAR_EQ] = ACTIONS(2685), + [anon_sym_SLASH_EQ] = ACTIONS(2685), + [anon_sym_PERCENT_EQ] = ACTIONS(2685), + [anon_sym_LT_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_GT_EQ] = ACTIONS(2685), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2685), + [anon_sym_AMP_EQ] = ACTIONS(2685), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2685), + [anon_sym_PLUS_EQ] = ACTIONS(2685), + [anon_sym_DASH_EQ] = ACTIONS(2685), + [anon_sym_PIPE_EQ] = ACTIONS(2685), + [anon_sym_CARET_EQ] = ACTIONS(2685), + [anon_sym_COLON_EQ] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2685), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_defer] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_DOLLARfor] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_asm] = ACTIONS(2685), + [anon_sym_AT_LBRACK] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2685), + [sym___single_quote] = ACTIONS(2685), + [sym___c_double_quote] = ACTIONS(2685), + [sym___c_single_quote] = ACTIONS(2685), + [sym___r_double_quote] = ACTIONS(2685), + [sym___r_single_quote] = ACTIONS(2685), }, - [400] = { - [sym__expression] = STATE(2828), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4380), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [399] = { + [sym__expression] = STATE(2725), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4527), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [401] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1095), + [400] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2974), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2946), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2705), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2707), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [401] = { + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2685), + [anon_sym_CR] = ACTIONS(2685), + [anon_sym_CR_LF] = ACTIONS(2685), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym___global] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2685), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2685), + [anon_sym_AMP_CARET] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2685), + [anon_sym_POUND_LBRACK] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2685), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_STAR_EQ] = ACTIONS(2685), + [anon_sym_SLASH_EQ] = ACTIONS(2685), + [anon_sym_PERCENT_EQ] = ACTIONS(2685), + [anon_sym_LT_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_GT_EQ] = ACTIONS(2685), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2685), + [anon_sym_AMP_EQ] = ACTIONS(2685), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2685), + [anon_sym_PLUS_EQ] = ACTIONS(2685), + [anon_sym_DASH_EQ] = ACTIONS(2685), + [anon_sym_PIPE_EQ] = ACTIONS(2685), + [anon_sym_CARET_EQ] = ACTIONS(2685), + [anon_sym_COLON_EQ] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2685), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_defer] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_DOLLARfor] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_asm] = ACTIONS(2685), + [anon_sym_AT_LBRACK] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2685), + [sym___single_quote] = ACTIONS(2685), + [sym___c_double_quote] = ACTIONS(2685), + [sym___c_single_quote] = ACTIONS(2685), + [sym___r_double_quote] = ACTIONS(2685), + [sym___r_single_quote] = ACTIONS(2685), }, [402] = { - [sym__expression] = STATE(2647), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(942), - [sym_mutable_expression] = STATE(3345), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2992), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2991), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2709), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2711), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [403] = { - [sym__expression] = STATE(2775), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4415), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(984), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(537), + [sym_mutable_expression] = STATE(1450), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [404] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2999), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2998), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2711), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2713), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym_type_parameters] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_STAR_EQ] = ACTIONS(2715), + [anon_sym_SLASH_EQ] = ACTIONS(2715), + [anon_sym_PERCENT_EQ] = ACTIONS(2715), + [anon_sym_LT_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_AMP_EQ] = ACTIONS(2715), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2715), + [anon_sym_PLUS_EQ] = ACTIONS(2715), + [anon_sym_DASH_EQ] = ACTIONS(2715), + [anon_sym_PIPE_EQ] = ACTIONS(2715), + [anon_sym_CARET_EQ] = ACTIONS(2715), + [anon_sym_COLON_EQ] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), }, [405] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2965), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2980), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2983), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(3006), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2715), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2717), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2717), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2719), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [406] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2957), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2983), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2981), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2980), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2719), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2721), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2721), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2723), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [407] = { - [sym__expression] = STATE(2771), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4436), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_COLON] = ACTIONS(2735), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_interface] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_STAR_EQ] = ACTIONS(2727), + [anon_sym_SLASH_EQ] = ACTIONS(2727), + [anon_sym_PERCENT_EQ] = ACTIONS(2727), + [anon_sym_LT_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_AMP_EQ] = ACTIONS(2727), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2727), + [anon_sym_PLUS_EQ] = ACTIONS(2727), + [anon_sym_DASH_EQ] = ACTIONS(2727), + [anon_sym_PIPE_EQ] = ACTIONS(2727), + [anon_sym_CARET_EQ] = ACTIONS(2727), + [anon_sym_COLON_EQ] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_defer] = ACTIONS(2727), + [anon_sym_goto] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_DOLLARfor] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_asm] = ACTIONS(2727), + [anon_sym_AT_LBRACK] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), }, [408] = { - [sym__expression] = STATE(1803), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(800), - [sym_mutable_expression] = STATE(3341), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [sym__expression] = STATE(1788), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(838), + [sym_mutable_expression] = STATE(3346), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -73270,9 +73290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -73292,8970 +73312,5693 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(867), }, [409] = { - [sym__expression] = STATE(2826), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4426), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1656), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(767), + [sym_mutable_expression] = STATE(3336), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, [410] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2991), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2948), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_STAR_EQ] = ACTIONS(2649), + [anon_sym_SLASH_EQ] = ACTIONS(2649), + [anon_sym_PERCENT_EQ] = ACTIONS(2649), + [anon_sym_LT_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_GT_EQ] = ACTIONS(2649), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2649), + [anon_sym_AMP_EQ] = ACTIONS(2649), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2649), + [anon_sym_PLUS_EQ] = ACTIONS(2649), + [anon_sym_DASH_EQ] = ACTIONS(2649), + [anon_sym_PIPE_EQ] = ACTIONS(2649), + [anon_sym_CARET_EQ] = ACTIONS(2649), + [anon_sym_COLON_EQ] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [411] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2944), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2955), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2747), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2799), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2749), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2801), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [411] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2966), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2985), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [412] = { + [sym__expression] = STATE(2691), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4702), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2751), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2753), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [412] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_EQ] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_else] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_STAR_EQ] = ACTIONS(2757), - [anon_sym_SLASH_EQ] = ACTIONS(2757), - [anon_sym_PERCENT_EQ] = ACTIONS(2757), - [anon_sym_LT_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_GT_EQ] = ACTIONS(2757), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2757), - [anon_sym_AMP_EQ] = ACTIONS(2757), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2757), - [anon_sym_PLUS_EQ] = ACTIONS(2757), - [anon_sym_DASH_EQ] = ACTIONS(2757), - [anon_sym_PIPE_EQ] = ACTIONS(2757), - [anon_sym_CARET_EQ] = ACTIONS(2757), - [anon_sym_COLON_EQ] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [413] = { - [sym__expression] = STATE(2769), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4478), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2935), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2939), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2803), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2805), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [414] = { - [sym_type_parameters] = STATE(554), - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_EQ] = ACTIONS(2761), - [anon_sym___global] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2761), - [anon_sym_BANG_EQ] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_EQ] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_pub] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2761), - [anon_sym_AMP_CARET] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_PIPE_PIPE] = ACTIONS(2761), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2761), - [anon_sym_POUND_LBRACK] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2761), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_STAR_EQ] = ACTIONS(2761), - [anon_sym_SLASH_EQ] = ACTIONS(2761), - [anon_sym_PERCENT_EQ] = ACTIONS(2761), - [anon_sym_LT_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_GT_EQ] = ACTIONS(2761), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2761), - [anon_sym_AMP_EQ] = ACTIONS(2761), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2761), - [anon_sym_PLUS_EQ] = ACTIONS(2761), - [anon_sym_DASH_EQ] = ACTIONS(2761), - [anon_sym_PIPE_EQ] = ACTIONS(2761), - [anon_sym_CARET_EQ] = ACTIONS(2761), - [anon_sym_COLON_EQ] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [anon_sym_assert] = ACTIONS(2761), - [anon_sym_defer] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_DOLLARfor] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_POUND] = ACTIONS(2761), - [anon_sym_asm] = ACTIONS(2761), - [anon_sym_AT_LBRACK] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2978), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2942), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2807), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2809), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [415] = { - [sym__expression] = STATE(2839), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4447), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2713), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(2811), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [416] = { - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(728), - [sym_mutable_expression] = STATE(3345), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [sym__expression] = STATE(2581), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym__definite_range] = STATE(4574), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [417] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2945), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2974), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1936), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(496), + [sym_mutable_expression] = STATE(3349), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2763), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2765), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, [418] = { - [sym__expression] = STATE(2557), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(490), - [sym_mutable_expression] = STATE(3345), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2936), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2938), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2833), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2835), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [419] = { - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4489), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2823), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2837), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [420] = { - [sym__expression] = STATE(2337), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(885), - [sym_mutable_expression] = STATE(3626), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2979), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2971), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2839), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2841), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [421] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2989), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2988), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(216), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(939), + [sym_mutable_expression] = STATE(1131), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2767), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2769), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, [422] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2929), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2953), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3973), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2771), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2773), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [423] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2941), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2933), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2687), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(2851), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2777), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [424] = { - [sym__expression] = STATE(2728), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2989), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2987), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2779), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2853), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2855), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [425] = { - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2977), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2968), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2781), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2857), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2859), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [426] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2937), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2942), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2419), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(608), + [sym_mutable_expression] = STATE(3651), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2783), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2785), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, [427] = { - [sym__expression] = STATE(2795), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2956), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(3004), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2787), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2861), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2863), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [428] = { - [sym__expression] = STATE(2756), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2861), + [sym__expression_without_blocks] = STATE(2863), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2863), + [sym_dec_expression] = STATE(2863), + [sym_or_block_expression] = STATE(2863), + [sym_option_propagation_expression] = STATE(2863), + [sym_result_propagation_expression] = STATE(2863), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2863), + [sym_spawn_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_call_expression] = STATE(2863), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2863), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2863), + [sym_receive_expression] = STATE(2863), + [sym_binary_expression] = STATE(2863), + [sym_as_type_cast_expression] = STATE(2863), + [sym__max_group] = STATE(2863), + [sym_literal] = STATE(2863), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2863), + [sym_fixed_array_creation] = STATE(2863), + [sym_selector_expression] = STATE(2863), + [sym_index_expression] = STATE(2863), + [sym_slice_expression] = STATE(2863), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2863), + [sym_not_is_expression] = STATE(2863), + [sym_in_expression] = STATE(2863), + [sym_not_in_expression] = STATE(2863), + [sym_enum_fetch] = STATE(2863), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_expression_without_blocks_list] = STATE(4393), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2789), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(2865), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [429] = { - [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(953), - [sym_mutable_expression] = STATE(1455), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2988), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2984), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2867), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2869), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [430] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(3340), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [sym__expression] = STATE(2861), + [sym__expression_without_blocks] = STATE(2863), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2863), + [sym_dec_expression] = STATE(2863), + [sym_or_block_expression] = STATE(2863), + [sym_option_propagation_expression] = STATE(2863), + [sym_result_propagation_expression] = STATE(2863), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2863), + [sym_spawn_expression] = STATE(2863), + [sym_parenthesized_expression] = STATE(2863), + [sym_call_expression] = STATE(2863), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2863), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2863), + [sym_receive_expression] = STATE(2863), + [sym_binary_expression] = STATE(2863), + [sym_as_type_cast_expression] = STATE(2863), + [sym__max_group] = STATE(2863), + [sym_literal] = STATE(2863), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2863), + [sym_fixed_array_creation] = STATE(2863), + [sym_selector_expression] = STATE(2863), + [sym_index_expression] = STATE(2863), + [sym_slice_expression] = STATE(2863), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2863), + [sym_not_is_expression] = STATE(2863), + [sym_in_expression] = STATE(2863), + [sym_not_in_expression] = STATE(2863), + [sym_enum_fetch] = STATE(2863), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_expression_without_blocks_list] = STATE(4394), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(2865), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [431] = { - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(787), - [sym_mutable_expression] = STATE(3330), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [sym__expression] = STATE(2811), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4558), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [432] = { - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_EQ] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_DOLLARelse] = ACTIONS(2857), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_STAR_EQ] = ACTIONS(2855), - [anon_sym_SLASH_EQ] = ACTIONS(2855), - [anon_sym_PERCENT_EQ] = ACTIONS(2855), - [anon_sym_LT_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2855), - [anon_sym_AMP_EQ] = ACTIONS(2855), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2855), - [anon_sym_PLUS_EQ] = ACTIONS(2855), - [anon_sym_DASH_EQ] = ACTIONS(2855), - [anon_sym_PIPE_EQ] = ACTIONS(2855), - [anon_sym_CARET_EQ] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), - [sym___double_quote] = ACTIONS(2855), - [sym___single_quote] = ACTIONS(2855), - [sym___c_double_quote] = ACTIONS(2855), - [sym___c_single_quote] = ACTIONS(2855), - [sym___r_double_quote] = ACTIONS(2855), - [sym___r_single_quote] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_EQ] = ACTIONS(2873), + [anon_sym___global] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_union] = ACTIONS(2873), + [anon_sym_pub] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_DOLLARelse] = ACTIONS(2875), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_STAR_EQ] = ACTIONS(2873), + [anon_sym_SLASH_EQ] = ACTIONS(2873), + [anon_sym_PERCENT_EQ] = ACTIONS(2873), + [anon_sym_LT_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_GT_EQ] = ACTIONS(2873), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2873), + [anon_sym_AMP_EQ] = ACTIONS(2873), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2873), + [anon_sym_PLUS_EQ] = ACTIONS(2873), + [anon_sym_DASH_EQ] = ACTIONS(2873), + [anon_sym_PIPE_EQ] = ACTIONS(2873), + [anon_sym_CARET_EQ] = ACTIONS(2873), + [anon_sym_COLON_EQ] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_defer] = ACTIONS(2873), + [anon_sym_goto] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_DOLLARfor] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_asm] = ACTIONS(2873), + [anon_sym_AT_LBRACK] = ACTIONS(2873), + [sym___double_quote] = ACTIONS(2873), + [sym___single_quote] = ACTIONS(2873), + [sym___c_double_quote] = ACTIONS(2873), + [sym___c_single_quote] = ACTIONS(2873), + [sym___r_double_quote] = ACTIONS(2873), + [sym___r_single_quote] = ACTIONS(2873), }, [433] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2947), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2950), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2998), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2997), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2859), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2877), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2861), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(2879), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [434] = { - [sym__expression] = STATE(1935), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(813), - [sym_mutable_expression] = STATE(3345), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [sym__expression] = STATE(2606), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(913), + [sym_mutable_expression] = STATE(3349), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [435] = { - [sym__expression] = STATE(2835), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4468), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2782), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4481), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [436] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_EQ] = ACTIONS(2865), - [anon_sym___global] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_DOLLARelse] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_STAR_EQ] = ACTIONS(2865), - [anon_sym_SLASH_EQ] = ACTIONS(2865), - [anon_sym_PERCENT_EQ] = ACTIONS(2865), - [anon_sym_LT_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_GT_EQ] = ACTIONS(2865), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2865), - [anon_sym_AMP_EQ] = ACTIONS(2865), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2865), - [anon_sym_PLUS_EQ] = ACTIONS(2865), - [anon_sym_DASH_EQ] = ACTIONS(2865), - [anon_sym_PIPE_EQ] = ACTIONS(2865), - [anon_sym_CARET_EQ] = ACTIONS(2865), - [anon_sym_COLON_EQ] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), - [anon_sym_AT_LBRACK] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2865), - [sym___single_quote] = ACTIONS(2865), - [sym___c_double_quote] = ACTIONS(2865), - [sym___c_single_quote] = ACTIONS(2865), - [sym___r_double_quote] = ACTIONS(2865), - [sym___r_single_quote] = ACTIONS(2865), - }, - [437] = { - [sym__expression] = STATE(2844), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4505), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2819), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4459), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [438] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_EQ] = ACTIONS(2865), - [anon_sym___global] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_STAR_EQ] = ACTIONS(2865), - [anon_sym_SLASH_EQ] = ACTIONS(2865), - [anon_sym_PERCENT_EQ] = ACTIONS(2865), - [anon_sym_LT_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_GT_EQ] = ACTIONS(2865), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2865), - [anon_sym_AMP_EQ] = ACTIONS(2865), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2865), - [anon_sym_PLUS_EQ] = ACTIONS(2865), - [anon_sym_DASH_EQ] = ACTIONS(2865), - [anon_sym_PIPE_EQ] = ACTIONS(2865), - [anon_sym_CARET_EQ] = ACTIONS(2865), - [anon_sym_COLON_EQ] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), - [anon_sym_AT_LBRACK] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2865), - [sym___single_quote] = ACTIONS(2865), - [sym___c_double_quote] = ACTIONS(2865), - [sym___c_single_quote] = ACTIONS(2865), - [sym___r_double_quote] = ACTIONS(2865), - [sym___r_single_quote] = ACTIONS(2865), - }, - [439] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_EQ] = ACTIONS(2867), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2867), - [anon_sym_GT_GT_GT] = ACTIONS(2867), - [anon_sym_AMP_CARET] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_or] = ACTIONS(2867), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2867), - [anon_sym_POUND_LBRACK] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2867), - [anon_sym_BANGis] = ACTIONS(2867), - [anon_sym_in] = ACTIONS(2867), - [anon_sym_BANGin] = ACTIONS(2867), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_STAR_EQ] = ACTIONS(2867), - [anon_sym_SLASH_EQ] = ACTIONS(2867), - [anon_sym_PERCENT_EQ] = ACTIONS(2867), - [anon_sym_LT_LT_EQ] = ACTIONS(2867), - [anon_sym_GT_GT_EQ] = ACTIONS(2867), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2867), - [anon_sym_AMP_EQ] = ACTIONS(2867), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2867), - [anon_sym_PLUS_EQ] = ACTIONS(2867), - [anon_sym_DASH_EQ] = ACTIONS(2867), - [anon_sym_PIPE_EQ] = ACTIONS(2867), - [anon_sym_CARET_EQ] = ACTIONS(2867), - [anon_sym_COLON_EQ] = ACTIONS(2867), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [440] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2878), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2878), - [sym_dec_expression] = STATE(2878), - [sym_or_block_expression] = STATE(2878), - [sym_option_propagation_expression] = STATE(2878), - [sym_result_propagation_expression] = STATE(2878), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2878), - [sym_spawn_expression] = STATE(2878), - [sym_parenthesized_expression] = STATE(2878), - [sym_call_expression] = STATE(2878), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2878), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2878), - [sym_receive_expression] = STATE(2878), - [sym_binary_expression] = STATE(2878), - [sym_as_type_cast_expression] = STATE(2878), - [sym__max_group] = STATE(2878), - [sym_literal] = STATE(2878), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2878), - [sym_fixed_array_creation] = STATE(2878), - [sym_selector_expression] = STATE(2878), - [sym_index_expression] = STATE(2878), - [sym_slice_expression] = STATE(2878), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2878), - [sym_not_is_expression] = STATE(2878), - [sym_in_expression] = STATE(2878), - [sym_not_in_expression] = STATE(2878), - [sym_enum_fetch] = STATE(2878), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_expression_without_blocks_list] = STATE(4496), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [437] = { + [sym__expression] = STATE(2821), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4432), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [441] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_EQ] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_DOLLARelse] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_STAR_EQ] = ACTIONS(2757), - [anon_sym_SLASH_EQ] = ACTIONS(2757), - [anon_sym_PERCENT_EQ] = ACTIONS(2757), - [anon_sym_LT_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_GT_EQ] = ACTIONS(2757), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2757), - [anon_sym_AMP_EQ] = ACTIONS(2757), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2757), - [anon_sym_PLUS_EQ] = ACTIONS(2757), - [anon_sym_DASH_EQ] = ACTIONS(2757), - [anon_sym_PIPE_EQ] = ACTIONS(2757), - [anon_sym_CARET_EQ] = ACTIONS(2757), - [anon_sym_COLON_EQ] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [442] = { - [sym__expression] = STATE(2671), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(906), - [sym_mutable_expression] = STATE(4554), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [438] = { + [sym__expression] = STATE(2827), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4400), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [443] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2878), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2878), - [sym_dec_expression] = STATE(2878), - [sym_or_block_expression] = STATE(2878), - [sym_option_propagation_expression] = STATE(2878), - [sym_result_propagation_expression] = STATE(2878), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2878), - [sym_spawn_expression] = STATE(2878), - [sym_parenthesized_expression] = STATE(2878), - [sym_call_expression] = STATE(2878), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2878), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2878), - [sym_receive_expression] = STATE(2878), - [sym_binary_expression] = STATE(2878), - [sym_as_type_cast_expression] = STATE(2878), - [sym__max_group] = STATE(2878), - [sym_literal] = STATE(2878), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2878), - [sym_fixed_array_creation] = STATE(2878), - [sym_selector_expression] = STATE(2878), - [sym_index_expression] = STATE(2878), - [sym_slice_expression] = STATE(2878), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2878), - [sym_not_is_expression] = STATE(2878), - [sym_in_expression] = STATE(2878), - [sym_not_in_expression] = STATE(2878), - [sym_enum_fetch] = STATE(2878), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_expression_without_blocks_list] = STATE(4494), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [439] = { + [sym__expression] = STATE(2834), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4406), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [444] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2943), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2940), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [440] = { + [sym__expression] = STATE(2842), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4427), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2873), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2875), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [445] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2955), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2960), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [441] = { + [sym__expression] = STATE(2706), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(2877), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_RBRACK] = ACTIONS(2881), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(2879), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [446] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [442] = { + [sym__expression] = STATE(2851), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4448), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [447] = { - [sym__expression] = STATE(1637), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [443] = { + [sym__expression] = STATE(2852), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4469), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [448] = { - [sym__expression] = STATE(2622), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [444] = { + [sym__expression] = STATE(2767), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4490), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [449] = { - [sym__expression] = STATE(1797), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), + [445] = { + [sym__expression] = STATE(2752), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(457), + [sym_mutable_expression] = STATE(4511), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [450] = { - [sym__expression] = STATE(2616), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [446] = { + [sym__expression] = STATE(1683), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, - [451] = { - [sym__expression] = STATE(1796), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), + [447] = { + [sym__expression] = STATE(2789), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [452] = { - [sym__expression] = STATE(1808), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), + [448] = { + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_EQ] = ACTIONS(2891), + [anon_sym___global] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [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(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_STAR_EQ] = ACTIONS(2891), + [anon_sym_SLASH_EQ] = ACTIONS(2891), + [anon_sym_PERCENT_EQ] = ACTIONS(2891), + [anon_sym_LT_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_GT_EQ] = ACTIONS(2891), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2891), + [anon_sym_AMP_EQ] = ACTIONS(2891), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2891), + [anon_sym_PLUS_EQ] = ACTIONS(2891), + [anon_sym_DASH_EQ] = ACTIONS(2891), + [anon_sym_PIPE_EQ] = ACTIONS(2891), + [anon_sym_CARET_EQ] = ACTIONS(2891), + [anon_sym_COLON_EQ] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + [anon_sym_assert] = ACTIONS(2891), + [anon_sym_defer] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_DOLLARfor] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_POUND] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym_AT_LBRACK] = ACTIONS(2891), + [sym___double_quote] = ACTIONS(2891), + [sym___single_quote] = ACTIONS(2891), + [sym___c_double_quote] = ACTIONS(2891), + [sym___c_single_quote] = ACTIONS(2891), + [sym___r_double_quote] = ACTIONS(2891), + [sym___r_single_quote] = ACTIONS(2891), }, - [453] = { - [sym__expression] = STATE(2585), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [449] = { + [sym__expression] = STATE(2690), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [450] = { + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_CR] = ACTIONS(2895), + [anon_sym_CR_LF] = ACTIONS(2895), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2895), + [anon_sym_as] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_COMMA] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2895), + [anon_sym___global] = ACTIONS(2895), + [anon_sym_type] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [anon_sym_LT_EQ] = ACTIONS(2895), + [anon_sym_GT_EQ] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_pub] = ACTIONS(2895), + [anon_sym_mut] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_interface] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2895), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2895), + [anon_sym_go] = ACTIONS(2895), + [anon_sym_spawn] = ACTIONS(2895), + [anon_sym_json_DOTdecode] = ACTIONS(2895), + [anon_sym_LBRACK2] = ACTIONS(2895), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_LT_DASH] = ACTIONS(2895), + [anon_sym_LT_LT] = ACTIONS(2895), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_GT_GT_GT] = ACTIONS(2895), + [anon_sym_AMP_CARET] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_or] = ACTIONS(2895), + [sym_none] = ACTIONS(2895), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_nil] = ACTIONS(2895), + [anon_sym_QMARK_DOT] = ACTIONS(2895), + [anon_sym_POUND_LBRACK] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_is] = ACTIONS(2895), + [anon_sym_BANGis] = ACTIONS(2895), + [anon_sym_in] = ACTIONS(2895), + [anon_sym_BANGin] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2895), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_STAR_EQ] = ACTIONS(2895), + [anon_sym_SLASH_EQ] = ACTIONS(2895), + [anon_sym_PERCENT_EQ] = ACTIONS(2895), + [anon_sym_LT_LT_EQ] = ACTIONS(2895), + [anon_sym_GT_GT_EQ] = ACTIONS(2895), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2895), + [anon_sym_AMP_EQ] = ACTIONS(2895), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2895), + [anon_sym_PLUS_EQ] = ACTIONS(2895), + [anon_sym_DASH_EQ] = ACTIONS(2895), + [anon_sym_PIPE_EQ] = ACTIONS(2895), + [anon_sym_CARET_EQ] = ACTIONS(2895), + [anon_sym_COLON_EQ] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2895), + [anon_sym_rlock] = ACTIONS(2895), + [anon_sym_unsafe] = ACTIONS(2895), + [anon_sym_sql] = ACTIONS(2895), + [sym_int_literal] = ACTIONS(2895), + [sym_float_literal] = ACTIONS(2895), + [sym_rune_literal] = ACTIONS(2895), + [sym_pseudo_compile_time_identifier] = ACTIONS(2895), + [anon_sym_shared] = ACTIONS(2895), + [anon_sym_map_LBRACK] = ACTIONS(2895), + [anon_sym_chan] = ACTIONS(2895), + [anon_sym_thread] = ACTIONS(2895), + [anon_sym_atomic] = ACTIONS(2895), + [anon_sym_assert] = ACTIONS(2895), + [anon_sym_defer] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_DOLLARfor] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_POUND] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym_AT_LBRACK] = ACTIONS(2895), + [sym___double_quote] = ACTIONS(2895), + [sym___single_quote] = ACTIONS(2895), + [sym___c_double_quote] = ACTIONS(2895), + [sym___c_single_quote] = ACTIONS(2895), + [sym___r_double_quote] = ACTIONS(2895), + [sym___r_single_quote] = ACTIONS(2895), + }, + [451] = { + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_LF] = ACTIONS(2899), + [anon_sym_CR] = ACTIONS(2899), + [anon_sym_CR_LF] = ACTIONS(2899), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2899), + [anon_sym_as] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_COMMA] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_EQ] = ACTIONS(2899), + [anon_sym___global] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_PIPE] = ACTIONS(2899), + [anon_sym_fn] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2899), + [anon_sym_PERCENT] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2899), + [anon_sym_GT] = ACTIONS(2899), + [anon_sym_EQ_EQ] = ACTIONS(2899), + [anon_sym_BANG_EQ] = ACTIONS(2899), + [anon_sym_LT_EQ] = ACTIONS(2899), + [anon_sym_GT_EQ] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2899), + [anon_sym_pub] = ACTIONS(2899), + [anon_sym_mut] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), + [anon_sym_interface] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_QMARK] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_go] = ACTIONS(2899), + [anon_sym_spawn] = ACTIONS(2899), + [anon_sym_json_DOTdecode] = ACTIONS(2899), + [anon_sym_LBRACK2] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_LT_DASH] = ACTIONS(2899), + [anon_sym_LT_LT] = ACTIONS(2899), + [anon_sym_GT_GT] = ACTIONS(2899), + [anon_sym_GT_GT_GT] = ACTIONS(2899), + [anon_sym_AMP_CARET] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2899), + [anon_sym_PIPE_PIPE] = ACTIONS(2899), + [anon_sym_or] = ACTIONS(2899), + [sym_none] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_nil] = ACTIONS(2899), + [anon_sym_QMARK_DOT] = ACTIONS(2899), + [anon_sym_POUND_LBRACK] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_DOLLARif] = ACTIONS(2899), + [anon_sym_is] = ACTIONS(2899), + [anon_sym_BANGis] = ACTIONS(2899), + [anon_sym_in] = ACTIONS(2899), + [anon_sym_BANGin] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_STAR_EQ] = ACTIONS(2899), + [anon_sym_SLASH_EQ] = ACTIONS(2899), + [anon_sym_PERCENT_EQ] = ACTIONS(2899), + [anon_sym_LT_LT_EQ] = ACTIONS(2899), + [anon_sym_GT_GT_EQ] = ACTIONS(2899), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2899), + [anon_sym_AMP_EQ] = ACTIONS(2899), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2899), + [anon_sym_PLUS_EQ] = ACTIONS(2899), + [anon_sym_DASH_EQ] = ACTIONS(2899), + [anon_sym_PIPE_EQ] = ACTIONS(2899), + [anon_sym_CARET_EQ] = ACTIONS(2899), + [anon_sym_COLON_EQ] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2899), + [anon_sym_rlock] = ACTIONS(2899), + [anon_sym_unsafe] = ACTIONS(2899), + [anon_sym_sql] = ACTIONS(2899), + [sym_int_literal] = ACTIONS(2899), + [sym_float_literal] = ACTIONS(2899), + [sym_rune_literal] = ACTIONS(2899), + [sym_pseudo_compile_time_identifier] = ACTIONS(2899), + [anon_sym_shared] = ACTIONS(2899), + [anon_sym_map_LBRACK] = ACTIONS(2899), + [anon_sym_chan] = ACTIONS(2899), + [anon_sym_thread] = ACTIONS(2899), + [anon_sym_atomic] = ACTIONS(2899), + [anon_sym_assert] = ACTIONS(2899), + [anon_sym_defer] = ACTIONS(2899), + [anon_sym_goto] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_DOLLARfor] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_POUND] = ACTIONS(2899), + [anon_sym_asm] = ACTIONS(2899), + [anon_sym_AT_LBRACK] = ACTIONS(2899), + [sym___double_quote] = ACTIONS(2899), + [sym___single_quote] = ACTIONS(2899), + [sym___c_double_quote] = ACTIONS(2899), + [sym___c_single_quote] = ACTIONS(2899), + [sym___r_double_quote] = ACTIONS(2899), + [sym___r_single_quote] = ACTIONS(2899), + }, + [452] = { + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_CR] = ACTIONS(2903), + [anon_sym_CR_LF] = ACTIONS(2903), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_as] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_COMMA] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2903), + [anon_sym___global] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2903), + [anon_sym_fn] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_PERCENT] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_pub] = ACTIONS(2903), + [anon_sym_mut] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_interface] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_QMARK] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2903), + [anon_sym_json_DOTdecode] = ACTIONS(2903), + [anon_sym_LBRACK2] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_LT_DASH] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_GT_GT_GT] = ACTIONS(2903), + [anon_sym_AMP_CARET] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [sym_none] = ACTIONS(2903), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_nil] = ACTIONS(2903), + [anon_sym_QMARK_DOT] = ACTIONS(2903), + [anon_sym_POUND_LBRACK] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_DOLLARif] = ACTIONS(2903), + [anon_sym_is] = ACTIONS(2903), + [anon_sym_BANGis] = ACTIONS(2903), + [anon_sym_in] = ACTIONS(2903), + [anon_sym_BANGin] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_select] = ACTIONS(2903), + [anon_sym_STAR_EQ] = ACTIONS(2903), + [anon_sym_SLASH_EQ] = ACTIONS(2903), + [anon_sym_PERCENT_EQ] = ACTIONS(2903), + [anon_sym_LT_LT_EQ] = ACTIONS(2903), + [anon_sym_GT_GT_EQ] = ACTIONS(2903), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2903), + [anon_sym_AMP_EQ] = ACTIONS(2903), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2903), + [anon_sym_PLUS_EQ] = ACTIONS(2903), + [anon_sym_DASH_EQ] = ACTIONS(2903), + [anon_sym_PIPE_EQ] = ACTIONS(2903), + [anon_sym_CARET_EQ] = ACTIONS(2903), + [anon_sym_COLON_EQ] = ACTIONS(2903), + [anon_sym_lock] = ACTIONS(2903), + [anon_sym_rlock] = ACTIONS(2903), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2903), + [sym_int_literal] = ACTIONS(2903), + [sym_float_literal] = ACTIONS(2903), + [sym_rune_literal] = ACTIONS(2903), + [sym_pseudo_compile_time_identifier] = ACTIONS(2903), + [anon_sym_shared] = ACTIONS(2903), + [anon_sym_map_LBRACK] = ACTIONS(2903), + [anon_sym_chan] = ACTIONS(2903), + [anon_sym_thread] = ACTIONS(2903), + [anon_sym_atomic] = ACTIONS(2903), + [anon_sym_assert] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_DOLLARfor] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_POUND] = ACTIONS(2903), + [anon_sym_asm] = ACTIONS(2903), + [anon_sym_AT_LBRACK] = ACTIONS(2903), + [sym___double_quote] = ACTIONS(2903), + [sym___single_quote] = ACTIONS(2903), + [sym___c_double_quote] = ACTIONS(2903), + [sym___c_single_quote] = ACTIONS(2903), + [sym___r_double_quote] = ACTIONS(2903), + [sym___r_single_quote] = ACTIONS(2903), + }, + [453] = { + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2907), + [anon_sym_CR] = ACTIONS(2907), + [anon_sym_CR_LF] = ACTIONS(2907), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2907), + [anon_sym_as] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(2907), + [anon_sym___global] = ACTIONS(2907), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_BANG_EQ] = ACTIONS(2907), + [anon_sym_LT_EQ] = ACTIONS(2907), + [anon_sym_GT_EQ] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_pub] = ACTIONS(2907), + [anon_sym_mut] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_interface] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2907), + [anon_sym_spawn] = ACTIONS(2907), + [anon_sym_json_DOTdecode] = ACTIONS(2907), + [anon_sym_LBRACK2] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_CARET] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2907), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2907), + [anon_sym_GT_GT_GT] = ACTIONS(2907), + [anon_sym_AMP_CARET] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_PIPE_PIPE] = ACTIONS(2907), + [anon_sym_or] = ACTIONS(2907), + [sym_none] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_nil] = ACTIONS(2907), + [anon_sym_QMARK_DOT] = ACTIONS(2907), + [anon_sym_POUND_LBRACK] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_DOLLARif] = ACTIONS(2907), + [anon_sym_is] = ACTIONS(2907), + [anon_sym_BANGis] = ACTIONS(2907), + [anon_sym_in] = ACTIONS(2907), + [anon_sym_BANGin] = ACTIONS(2907), + [anon_sym_match] = ACTIONS(2907), + [anon_sym_select] = ACTIONS(2907), + [anon_sym_STAR_EQ] = ACTIONS(2907), + [anon_sym_SLASH_EQ] = ACTIONS(2907), + [anon_sym_PERCENT_EQ] = ACTIONS(2907), + [anon_sym_LT_LT_EQ] = ACTIONS(2907), + [anon_sym_GT_GT_EQ] = ACTIONS(2907), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2907), + [anon_sym_AMP_EQ] = ACTIONS(2907), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2907), + [anon_sym_PLUS_EQ] = ACTIONS(2907), + [anon_sym_DASH_EQ] = ACTIONS(2907), + [anon_sym_PIPE_EQ] = ACTIONS(2907), + [anon_sym_CARET_EQ] = ACTIONS(2907), + [anon_sym_COLON_EQ] = ACTIONS(2907), + [anon_sym_lock] = ACTIONS(2907), + [anon_sym_rlock] = ACTIONS(2907), + [anon_sym_unsafe] = ACTIONS(2907), + [anon_sym_sql] = ACTIONS(2907), + [sym_int_literal] = ACTIONS(2907), + [sym_float_literal] = ACTIONS(2907), + [sym_rune_literal] = ACTIONS(2907), + [sym_pseudo_compile_time_identifier] = ACTIONS(2907), + [anon_sym_shared] = ACTIONS(2907), + [anon_sym_map_LBRACK] = ACTIONS(2907), + [anon_sym_chan] = ACTIONS(2907), + [anon_sym_thread] = ACTIONS(2907), + [anon_sym_atomic] = ACTIONS(2907), + [anon_sym_assert] = ACTIONS(2907), + [anon_sym_defer] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_DOLLARfor] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_POUND] = ACTIONS(2907), + [anon_sym_asm] = ACTIONS(2907), + [anon_sym_AT_LBRACK] = ACTIONS(2907), + [sym___double_quote] = ACTIONS(2907), + [sym___single_quote] = ACTIONS(2907), + [sym___c_double_quote] = ACTIONS(2907), + [sym___c_single_quote] = ACTIONS(2907), + [sym___r_double_quote] = ACTIONS(2907), + [sym___r_single_quote] = ACTIONS(2907), }, [454] = { - [sym__expression] = STATE(2579), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LF] = ACTIONS(2911), + [anon_sym_CR] = ACTIONS(2911), + [anon_sym_CR_LF] = ACTIONS(2911), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2911), + [anon_sym_as] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_COMMA] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_EQ] = ACTIONS(2911), + [anon_sym___global] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_PIPE] = ACTIONS(2911), + [anon_sym_fn] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_PERCENT] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_GT] = ACTIONS(2911), + [anon_sym_EQ_EQ] = ACTIONS(2911), + [anon_sym_BANG_EQ] = ACTIONS(2911), + [anon_sym_LT_EQ] = ACTIONS(2911), + [anon_sym_GT_EQ] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_pub] = ACTIONS(2911), + [anon_sym_mut] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_interface] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_go] = ACTIONS(2911), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(2911), + [anon_sym_LBRACK2] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_CARET] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_LT_DASH] = ACTIONS(2911), + [anon_sym_LT_LT] = ACTIONS(2911), + [anon_sym_GT_GT] = ACTIONS(2911), + [anon_sym_GT_GT_GT] = ACTIONS(2911), + [anon_sym_AMP_CARET] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_PIPE_PIPE] = ACTIONS(2911), + [anon_sym_or] = ACTIONS(2911), + [sym_none] = ACTIONS(2911), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_nil] = ACTIONS(2911), + [anon_sym_QMARK_DOT] = ACTIONS(2911), + [anon_sym_POUND_LBRACK] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_DOLLARif] = ACTIONS(2911), + [anon_sym_is] = ACTIONS(2911), + [anon_sym_BANGis] = ACTIONS(2911), + [anon_sym_in] = ACTIONS(2911), + [anon_sym_BANGin] = ACTIONS(2911), + [anon_sym_match] = ACTIONS(2911), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_STAR_EQ] = ACTIONS(2911), + [anon_sym_SLASH_EQ] = ACTIONS(2911), + [anon_sym_PERCENT_EQ] = ACTIONS(2911), + [anon_sym_LT_LT_EQ] = ACTIONS(2911), + [anon_sym_GT_GT_EQ] = ACTIONS(2911), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2911), + [anon_sym_AMP_EQ] = ACTIONS(2911), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2911), + [anon_sym_PLUS_EQ] = ACTIONS(2911), + [anon_sym_DASH_EQ] = ACTIONS(2911), + [anon_sym_PIPE_EQ] = ACTIONS(2911), + [anon_sym_CARET_EQ] = ACTIONS(2911), + [anon_sym_COLON_EQ] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2911), + [anon_sym_rlock] = ACTIONS(2911), + [anon_sym_unsafe] = ACTIONS(2911), + [anon_sym_sql] = ACTIONS(2911), + [sym_int_literal] = ACTIONS(2911), + [sym_float_literal] = ACTIONS(2911), + [sym_rune_literal] = ACTIONS(2911), + [sym_pseudo_compile_time_identifier] = ACTIONS(2911), + [anon_sym_shared] = ACTIONS(2911), + [anon_sym_map_LBRACK] = ACTIONS(2911), + [anon_sym_chan] = ACTIONS(2911), + [anon_sym_thread] = ACTIONS(2911), + [anon_sym_atomic] = ACTIONS(2911), + [anon_sym_assert] = ACTIONS(2911), + [anon_sym_defer] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_DOLLARfor] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_POUND] = ACTIONS(2911), + [anon_sym_asm] = ACTIONS(2911), + [anon_sym_AT_LBRACK] = ACTIONS(2911), + [sym___double_quote] = ACTIONS(2911), + [sym___single_quote] = ACTIONS(2911), + [sym___c_double_quote] = ACTIONS(2911), + [sym___c_single_quote] = ACTIONS(2911), + [sym___r_double_quote] = ACTIONS(2911), + [sym___r_single_quote] = ACTIONS(2911), + }, + [455] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4378), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [455] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), + [456] = { + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2915), + [anon_sym_CR] = ACTIONS(2915), + [anon_sym_CR_LF] = ACTIONS(2915), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_EQ] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_STAR_EQ] = ACTIONS(2909), - [anon_sym_SLASH_EQ] = ACTIONS(2909), - [anon_sym_PERCENT_EQ] = ACTIONS(2909), - [anon_sym_LT_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_AMP_EQ] = ACTIONS(2909), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2909), - [anon_sym_PLUS_EQ] = ACTIONS(2909), - [anon_sym_DASH_EQ] = ACTIONS(2909), - [anon_sym_PIPE_EQ] = ACTIONS(2909), - [anon_sym_CARET_EQ] = ACTIONS(2909), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), - }, - [456] = { - [sym__expression] = STATE(2569), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), + [sym_pseudo_compile_time_identifier] = ACTIONS(2915), + [anon_sym_shared] = ACTIONS(2915), + [anon_sym_map_LBRACK] = ACTIONS(2915), + [anon_sym_chan] = ACTIONS(2915), + [anon_sym_thread] = ACTIONS(2915), + [anon_sym_atomic] = ACTIONS(2915), + [anon_sym_assert] = ACTIONS(2915), + [anon_sym_defer] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_DOLLARfor] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_POUND] = ACTIONS(2915), + [anon_sym_asm] = ACTIONS(2915), + [anon_sym_AT_LBRACK] = ACTIONS(2915), + [sym___double_quote] = ACTIONS(2915), + [sym___single_quote] = ACTIONS(2915), + [sym___c_double_quote] = ACTIONS(2915), + [sym___c_single_quote] = ACTIONS(2915), + [sym___r_double_quote] = ACTIONS(2915), + [sym___r_single_quote] = ACTIONS(2915), }, [457] = { - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_EQ] = ACTIONS(2913), - [anon_sym___global] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_pub] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_interface] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_STAR_EQ] = ACTIONS(2913), - [anon_sym_SLASH_EQ] = ACTIONS(2913), - [anon_sym_PERCENT_EQ] = ACTIONS(2913), - [anon_sym_LT_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_GT_EQ] = ACTIONS(2913), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2913), - [anon_sym_AMP_EQ] = ACTIONS(2913), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2913), - [anon_sym_PLUS_EQ] = ACTIONS(2913), - [anon_sym_DASH_EQ] = ACTIONS(2913), - [anon_sym_PIPE_EQ] = ACTIONS(2913), - [anon_sym_CARET_EQ] = ACTIONS(2913), - [anon_sym_COLON_EQ] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [anon_sym_assert] = ACTIONS(2913), - [anon_sym_defer] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_DOLLARfor] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_POUND] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym_AT_LBRACK] = ACTIONS(2913), - [sym___double_quote] = ACTIONS(2913), - [sym___single_quote] = ACTIONS(2913), - [sym___c_double_quote] = ACTIONS(2913), - [sym___c_single_quote] = ACTIONS(2913), - [sym___r_double_quote] = ACTIONS(2913), - [sym___r_single_quote] = ACTIONS(2913), - }, - [458] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [459] = { - [sym__expression] = STATE(2568), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [sym__expression] = STATE(2847), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [460] = { - [ts_builtin_sym_end] = ACTIONS(2915), + [458] = { + [sym__expression] = STATE(2304), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [sym_identifier] = ACTIONS(2917), - [anon_sym_LF] = ACTIONS(2917), - [anon_sym_CR] = ACTIONS(2917), - [anon_sym_CR_LF] = ACTIONS(2917), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_EQ] = ACTIONS(2917), - [anon_sym___global] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_pub] = ACTIONS(2917), - [anon_sym_mut] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_go] = ACTIONS(2917), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2917), - [anon_sym_LBRACK2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_GT_GT_GT] = ACTIONS(2917), - [anon_sym_AMP_CARET] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2917), - [sym_none] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_nil] = ACTIONS(2917), - [anon_sym_QMARK_DOT] = ACTIONS(2917), - [anon_sym_POUND_LBRACK] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_DOLLARif] = ACTIONS(2917), - [anon_sym_is] = ACTIONS(2917), - [anon_sym_BANGis] = ACTIONS(2917), - [anon_sym_in] = ACTIONS(2917), - [anon_sym_BANGin] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_select] = ACTIONS(2917), - [anon_sym_STAR_EQ] = ACTIONS(2917), - [anon_sym_SLASH_EQ] = ACTIONS(2917), - [anon_sym_PERCENT_EQ] = ACTIONS(2917), - [anon_sym_LT_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_GT_EQ] = ACTIONS(2917), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2917), - [anon_sym_AMP_EQ] = ACTIONS(2917), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2917), - [anon_sym_PLUS_EQ] = ACTIONS(2917), - [anon_sym_DASH_EQ] = ACTIONS(2917), - [anon_sym_PIPE_EQ] = ACTIONS(2917), - [anon_sym_CARET_EQ] = ACTIONS(2917), - [anon_sym_COLON_EQ] = ACTIONS(2917), - [anon_sym_lock] = ACTIONS(2917), - [anon_sym_rlock] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_sql] = ACTIONS(2917), - [sym_int_literal] = ACTIONS(2917), - [sym_float_literal] = ACTIONS(2917), - [sym_rune_literal] = ACTIONS(2917), - [sym_pseudo_compile_time_identifier] = ACTIONS(2917), - [anon_sym_shared] = ACTIONS(2917), - [anon_sym_map_LBRACK] = ACTIONS(2917), - [anon_sym_chan] = ACTIONS(2917), - [anon_sym_thread] = ACTIONS(2917), - [anon_sym_atomic] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_defer] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_DOLLARfor] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_POUND] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym_AT_LBRACK] = ACTIONS(2917), - [sym___double_quote] = ACTIONS(2917), - [sym___single_quote] = ACTIONS(2917), - [sym___c_double_quote] = ACTIONS(2917), - [sym___c_single_quote] = ACTIONS(2917), - [sym___r_double_quote] = ACTIONS(2917), - [sym___r_single_quote] = ACTIONS(2917), - }, - [461] = { - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2921), - [anon_sym_CR] = ACTIONS(2921), - [anon_sym_CR_LF] = ACTIONS(2921), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_EQ] = ACTIONS(2921), - [anon_sym___global] = ACTIONS(2921), - [anon_sym_type] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [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(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_pub] = ACTIONS(2921), - [anon_sym_mut] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_interface] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_go] = ACTIONS(2921), - [anon_sym_spawn] = ACTIONS(2921), - [anon_sym_json_DOTdecode] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [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(2921), - [sym_none] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_nil] = ACTIONS(2921), - [anon_sym_QMARK_DOT] = ACTIONS(2921), - [anon_sym_POUND_LBRACK] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_DOLLARif] = ACTIONS(2921), - [anon_sym_is] = ACTIONS(2921), - [anon_sym_BANGis] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_BANGin] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [anon_sym_STAR_EQ] = ACTIONS(2921), - [anon_sym_SLASH_EQ] = ACTIONS(2921), - [anon_sym_PERCENT_EQ] = ACTIONS(2921), - [anon_sym_LT_LT_EQ] = ACTIONS(2921), - [anon_sym_GT_GT_EQ] = ACTIONS(2921), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2921), - [anon_sym_AMP_EQ] = ACTIONS(2921), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2921), - [anon_sym_PLUS_EQ] = ACTIONS(2921), - [anon_sym_DASH_EQ] = ACTIONS(2921), - [anon_sym_PIPE_EQ] = ACTIONS(2921), - [anon_sym_CARET_EQ] = ACTIONS(2921), - [anon_sym_COLON_EQ] = ACTIONS(2921), - [anon_sym_lock] = ACTIONS(2921), - [anon_sym_rlock] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_sql] = ACTIONS(2921), - [sym_int_literal] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2921), - [sym_rune_literal] = ACTIONS(2921), - [sym_pseudo_compile_time_identifier] = ACTIONS(2921), - [anon_sym_shared] = ACTIONS(2921), - [anon_sym_map_LBRACK] = ACTIONS(2921), - [anon_sym_chan] = ACTIONS(2921), - [anon_sym_thread] = ACTIONS(2921), - [anon_sym_atomic] = ACTIONS(2921), - [anon_sym_assert] = ACTIONS(2921), - [anon_sym_defer] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_DOLLARfor] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_POUND] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym_AT_LBRACK] = ACTIONS(2921), - [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), - }, - [462] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2938), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2939), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [463] = { - [sym__expression] = STATE(2800), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [464] = { - [sym__expression] = STATE(1809), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [465] = { - [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(495), - [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_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_STAR_EQ] = ACTIONS(2931), - [anon_sym_SLASH_EQ] = ACTIONS(2931), - [anon_sym_PERCENT_EQ] = ACTIONS(2931), - [anon_sym_LT_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_AMP_EQ] = ACTIONS(2931), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2931), - [anon_sym_PLUS_EQ] = ACTIONS(2931), - [anon_sym_DASH_EQ] = ACTIONS(2931), - [anon_sym_PIPE_EQ] = ACTIONS(2931), - [anon_sym_CARET_EQ] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), - }, - [466] = { - [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(495), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_STAR_EQ] = ACTIONS(2935), - [anon_sym_SLASH_EQ] = ACTIONS(2935), - [anon_sym_PERCENT_EQ] = ACTIONS(2935), - [anon_sym_LT_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_GT_EQ] = ACTIONS(2935), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2935), - [anon_sym_AMP_EQ] = ACTIONS(2935), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2935), - [anon_sym_PLUS_EQ] = ACTIONS(2935), - [anon_sym_DASH_EQ] = ACTIONS(2935), - [anon_sym_PIPE_EQ] = ACTIONS(2935), - [anon_sym_CARET_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [sym_pseudo_compile_time_identifier] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), - }, - [467] = { - [sym__expression] = STATE(256), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4204), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), - }, - [468] = { - [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(495), - [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_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [469] = { - [sym__expression] = STATE(986), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [470] = { - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [471] = { - [sym__expression] = STATE(1798), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [472] = { - [sym__expression] = STATE(976), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [473] = { - [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [474] = { - [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(495), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym___global] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_pub] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_interface] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_STAR_EQ] = ACTIONS(2943), - [anon_sym_SLASH_EQ] = ACTIONS(2943), - [anon_sym_PERCENT_EQ] = ACTIONS(2943), - [anon_sym_LT_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_GT_EQ] = ACTIONS(2943), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2943), - [anon_sym_AMP_EQ] = ACTIONS(2943), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2943), - [anon_sym_PLUS_EQ] = ACTIONS(2943), - [anon_sym_DASH_EQ] = ACTIONS(2943), - [anon_sym_PIPE_EQ] = ACTIONS(2943), - [anon_sym_CARET_EQ] = ACTIONS(2943), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [anon_sym_assert] = ACTIONS(2943), - [anon_sym_defer] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_DOLLARfor] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym_AT_LBRACK] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), - }, - [475] = { - [ts_builtin_sym_end] = ACTIONS(2945), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LF] = ACTIONS(2947), - [anon_sym_CR] = ACTIONS(2947), - [anon_sym_CR_LF] = ACTIONS(2947), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_EQ] = ACTIONS(2947), - [anon_sym___global] = ACTIONS(2947), - [anon_sym_type] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_EQ] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_pub] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2947), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_CARET] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), + [anon_sym_LT_DASH] = ACTIONS(2945), [sym_none] = ACTIONS(2947), [sym_true] = ACTIONS(2947), [sym_false] = ACTIONS(2947), [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2947), - [anon_sym_POUND_LBRACK] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_STAR_EQ] = ACTIONS(2947), - [anon_sym_SLASH_EQ] = ACTIONS(2947), - [anon_sym_PERCENT_EQ] = ACTIONS(2947), - [anon_sym_LT_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_GT_EQ] = ACTIONS(2947), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2947), - [anon_sym_AMP_EQ] = ACTIONS(2947), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2947), - [anon_sym_PLUS_EQ] = ACTIONS(2947), - [anon_sym_DASH_EQ] = ACTIONS(2947), - [anon_sym_PIPE_EQ] = ACTIONS(2947), - [anon_sym_CARET_EQ] = ACTIONS(2947), - [anon_sym_COLON_EQ] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), - [anon_sym_assert] = ACTIONS(2947), - [anon_sym_defer] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_DOLLARfor] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym_AT_LBRACK] = ACTIONS(2947), - [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), - }, - [476] = { - [ts_builtin_sym_end] = ACTIONS(2949), - [sym_identifier] = ACTIONS(2951), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_CR] = ACTIONS(2951), - [anon_sym_CR_LF] = ACTIONS(2951), - [sym_comment] = ACTIONS(495), - [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(2949), - [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_if] = ACTIONS(2949), [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [477] = { - [ts_builtin_sym_end] = ACTIONS(2953), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LF] = ACTIONS(2955), - [anon_sym_CR] = ACTIONS(2955), - [anon_sym_CR_LF] = ACTIONS(2955), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_COMMA] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2955), - [anon_sym_EQ] = ACTIONS(2955), - [anon_sym___global] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_fn] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_EQ_EQ] = ACTIONS(2955), - [anon_sym_BANG_EQ] = ACTIONS(2955), - [anon_sym_LT_EQ] = ACTIONS(2955), - [anon_sym_GT_EQ] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_pub] = ACTIONS(2955), - [anon_sym_mut] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_interface] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_go] = ACTIONS(2955), - [anon_sym_spawn] = ACTIONS(2955), - [anon_sym_json_DOTdecode] = ACTIONS(2955), - [anon_sym_LBRACK2] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_CARET] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_DASH] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2955), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2955), - [anon_sym_AMP_CARET] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2955), - [sym_none] = ACTIONS(2955), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_nil] = ACTIONS(2955), - [anon_sym_QMARK_DOT] = ACTIONS(2955), - [anon_sym_POUND_LBRACK] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_DOLLARif] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_BANGis] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2955), - [anon_sym_BANGin] = ACTIONS(2955), - [anon_sym_match] = ACTIONS(2955), + [anon_sym_match] = ACTIONS(2953), [anon_sym_select] = ACTIONS(2955), - [anon_sym_STAR_EQ] = ACTIONS(2955), - [anon_sym_SLASH_EQ] = ACTIONS(2955), - [anon_sym_PERCENT_EQ] = ACTIONS(2955), - [anon_sym_LT_LT_EQ] = ACTIONS(2955), - [anon_sym_GT_GT_EQ] = ACTIONS(2955), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2955), - [anon_sym_AMP_EQ] = ACTIONS(2955), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2955), - [anon_sym_PLUS_EQ] = ACTIONS(2955), - [anon_sym_DASH_EQ] = ACTIONS(2955), - [anon_sym_PIPE_EQ] = ACTIONS(2955), - [anon_sym_CARET_EQ] = ACTIONS(2955), - [anon_sym_COLON_EQ] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2955), - [anon_sym_rlock] = ACTIONS(2955), - [anon_sym_unsafe] = ACTIONS(2955), - [anon_sym_sql] = ACTIONS(2955), - [sym_int_literal] = ACTIONS(2955), - [sym_float_literal] = ACTIONS(2955), - [sym_rune_literal] = ACTIONS(2955), - [sym_pseudo_compile_time_identifier] = ACTIONS(2955), - [anon_sym_shared] = ACTIONS(2955), - [anon_sym_map_LBRACK] = ACTIONS(2955), - [anon_sym_chan] = ACTIONS(2955), - [anon_sym_thread] = ACTIONS(2955), - [anon_sym_atomic] = ACTIONS(2955), - [anon_sym_assert] = ACTIONS(2955), - [anon_sym_defer] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_DOLLARfor] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym_AT_LBRACK] = ACTIONS(2955), - [sym___double_quote] = ACTIONS(2955), - [sym___single_quote] = ACTIONS(2955), - [sym___c_double_quote] = ACTIONS(2955), - [sym___c_single_quote] = ACTIONS(2955), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2955), - }, - [478] = { - [sym__expression] = STATE(2623), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [479] = { - [sym__expression] = STATE(2843), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [480] = { - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [481] = { - [sym__expression] = STATE(1782), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [482] = { - [sym__expression] = STATE(981), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [483] = { - [sym__expression] = STATE(980), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [484] = { - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_CR] = ACTIONS(2977), - [anon_sym_CR_LF] = ACTIONS(2977), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2977), - [anon_sym___global] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_EQ] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_pub] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_interface] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2977), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2977), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2977), - [anon_sym_AMP_CARET] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2977), - [anon_sym_POUND_LBRACK] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2977), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_STAR_EQ] = ACTIONS(2977), - [anon_sym_SLASH_EQ] = ACTIONS(2977), - [anon_sym_PERCENT_EQ] = ACTIONS(2977), - [anon_sym_LT_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_GT_EQ] = ACTIONS(2977), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2977), - [anon_sym_AMP_EQ] = ACTIONS(2977), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2977), - [anon_sym_PLUS_EQ] = ACTIONS(2977), - [anon_sym_DASH_EQ] = ACTIONS(2977), - [anon_sym_PIPE_EQ] = ACTIONS(2977), - [anon_sym_CARET_EQ] = ACTIONS(2977), - [anon_sym_COLON_EQ] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2977), - [sym_rune_literal] = ACTIONS(2977), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2977), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_defer] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_DOLLARfor] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_POUND] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym_AT_LBRACK] = ACTIONS(2977), - [sym___double_quote] = ACTIONS(2977), - [sym___single_quote] = ACTIONS(2977), - [sym___c_double_quote] = ACTIONS(2977), - [sym___c_single_quote] = ACTIONS(2977), - [sym___r_double_quote] = ACTIONS(2977), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), [sym___r_single_quote] = ACTIONS(2977), }, - [485] = { - [sym__expression] = STATE(991), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [486] = { - [sym__expression] = STATE(975), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [487] = { - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [488] = { + [459] = { [ts_builtin_sym_end] = ACTIONS(2979), [sym_identifier] = ACTIONS(2981), [anon_sym_LF] = ACTIONS(2981), @@ -82368,1769 +79111,2786 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2981), [sym___r_single_quote] = ACTIONS(2981), }, - [489] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [460] = { + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_EQ] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_STAR_EQ] = ACTIONS(2985), + [anon_sym_SLASH_EQ] = ACTIONS(2985), + [anon_sym_PERCENT_EQ] = ACTIONS(2985), + [anon_sym_LT_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), + [anon_sym_AMP_EQ] = ACTIONS(2985), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2985), + [anon_sym_PLUS_EQ] = ACTIONS(2985), + [anon_sym_DASH_EQ] = ACTIONS(2985), + [anon_sym_PIPE_EQ] = ACTIONS(2985), + [anon_sym_CARET_EQ] = ACTIONS(2985), + [anon_sym_COLON_EQ] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2985), + [sym___single_quote] = ACTIONS(2985), + [sym___c_double_quote] = ACTIONS(2985), + [sym___c_single_quote] = ACTIONS(2985), + [sym___r_double_quote] = ACTIONS(2985), + [sym___r_single_quote] = ACTIONS(2985), + }, + [461] = { + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [490] = { - [sym__expression] = STATE(2628), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [462] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3654), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [491] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [463] = { + [sym__expression] = STATE(2837), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [492] = { - [ts_builtin_sym_end] = ACTIONS(2989), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LF] = ACTIONS(2991), - [anon_sym_CR] = ACTIONS(2991), - [anon_sym_CR_LF] = ACTIONS(2991), + [464] = { + [sym__expression] = STATE(2333), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), + }, + [465] = { + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_EQ] = ACTIONS(2991), - [anon_sym___global] = ACTIONS(2991), - [anon_sym_type] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_fn] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2991), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2991), - [anon_sym_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2991), - [anon_sym_union] = ACTIONS(2991), - [anon_sym_pub] = ACTIONS(2991), - [anon_sym_mut] = ACTIONS(2991), - [anon_sym_enum] = ACTIONS(2991), - [anon_sym_interface] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_go] = ACTIONS(2991), - [anon_sym_spawn] = ACTIONS(2991), - [anon_sym_json_DOTdecode] = ACTIONS(2991), - [anon_sym_LBRACK2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_LT_DASH] = ACTIONS(2991), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2991), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_AMP_CARET] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [sym_none] = ACTIONS(2991), - [sym_true] = ACTIONS(2991), - [sym_false] = ACTIONS(2991), - [sym_nil] = ACTIONS(2991), - [anon_sym_QMARK_DOT] = ACTIONS(2991), - [anon_sym_POUND_LBRACK] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_BANGis] = ACTIONS(2991), - [anon_sym_in] = ACTIONS(2991), - [anon_sym_BANGin] = ACTIONS(2991), - [anon_sym_match] = ACTIONS(2991), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_STAR_EQ] = ACTIONS(2991), - [anon_sym_SLASH_EQ] = ACTIONS(2991), - [anon_sym_PERCENT_EQ] = ACTIONS(2991), - [anon_sym_LT_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_GT_EQ] = ACTIONS(2991), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2991), - [anon_sym_AMP_EQ] = ACTIONS(2991), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2991), - [anon_sym_PLUS_EQ] = ACTIONS(2991), - [anon_sym_DASH_EQ] = ACTIONS(2991), - [anon_sym_PIPE_EQ] = ACTIONS(2991), - [anon_sym_CARET_EQ] = ACTIONS(2991), - [anon_sym_COLON_EQ] = ACTIONS(2991), - [anon_sym_lock] = ACTIONS(2991), - [anon_sym_rlock] = ACTIONS(2991), - [anon_sym_unsafe] = ACTIONS(2991), - [anon_sym_sql] = ACTIONS(2991), - [sym_int_literal] = ACTIONS(2991), - [sym_float_literal] = ACTIONS(2991), - [sym_rune_literal] = ACTIONS(2991), - [sym_pseudo_compile_time_identifier] = ACTIONS(2991), - [anon_sym_shared] = ACTIONS(2991), - [anon_sym_map_LBRACK] = ACTIONS(2991), - [anon_sym_chan] = ACTIONS(2991), - [anon_sym_thread] = ACTIONS(2991), - [anon_sym_atomic] = ACTIONS(2991), - [anon_sym_assert] = ACTIONS(2991), - [anon_sym_defer] = ACTIONS(2991), - [anon_sym_goto] = ACTIONS(2991), - [anon_sym_break] = ACTIONS(2991), - [anon_sym_continue] = ACTIONS(2991), - [anon_sym_return] = ACTIONS(2991), - [anon_sym_DOLLARfor] = ACTIONS(2991), - [anon_sym_for] = ACTIONS(2991), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_asm] = ACTIONS(2991), - [anon_sym_AT_LBRACK] = ACTIONS(2991), - [sym___double_quote] = ACTIONS(2991), - [sym___single_quote] = ACTIONS(2991), - [sym___c_double_quote] = ACTIONS(2991), - [sym___c_single_quote] = ACTIONS(2991), - [sym___r_double_quote] = ACTIONS(2991), - [sym___r_single_quote] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_EQ] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_pub] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_STAR_EQ] = ACTIONS(2989), + [anon_sym_SLASH_EQ] = ACTIONS(2989), + [anon_sym_PERCENT_EQ] = ACTIONS(2989), + [anon_sym_LT_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_GT_EQ] = ACTIONS(2989), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2989), + [anon_sym_AMP_EQ] = ACTIONS(2989), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2989), + [anon_sym_PLUS_EQ] = ACTIONS(2989), + [anon_sym_DASH_EQ] = ACTIONS(2989), + [anon_sym_PIPE_EQ] = ACTIONS(2989), + [anon_sym_CARET_EQ] = ACTIONS(2989), + [anon_sym_COLON_EQ] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_assert] = ACTIONS(2989), + [anon_sym_defer] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_DOLLARfor] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym_AT_LBRACK] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2989), + [sym___single_quote] = ACTIONS(2989), + [sym___c_double_quote] = ACTIONS(2989), + [sym___c_single_quote] = ACTIONS(2989), + [sym___r_double_quote] = ACTIONS(2989), + [sym___r_single_quote] = ACTIONS(2989), }, - [493] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3953), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [466] = { + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_EQ] = ACTIONS(2993), + [anon_sym___global] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_pub] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_interface] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_STAR_EQ] = ACTIONS(2993), + [anon_sym_SLASH_EQ] = ACTIONS(2993), + [anon_sym_PERCENT_EQ] = ACTIONS(2993), + [anon_sym_LT_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_GT_EQ] = ACTIONS(2993), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2993), + [anon_sym_AMP_EQ] = ACTIONS(2993), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2993), + [anon_sym_PLUS_EQ] = ACTIONS(2993), + [anon_sym_DASH_EQ] = ACTIONS(2993), + [anon_sym_PIPE_EQ] = ACTIONS(2993), + [anon_sym_CARET_EQ] = ACTIONS(2993), + [anon_sym_COLON_EQ] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_defer] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_DOLLARfor] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym_AT_LBRACK] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2993), + [sym___single_quote] = ACTIONS(2993), + [sym___c_double_quote] = ACTIONS(2993), + [sym___c_single_quote] = ACTIONS(2993), + [sym___r_double_quote] = ACTIONS(2993), + [sym___r_single_quote] = ACTIONS(2993), + }, + [467] = { + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym___global] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_pub] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_STAR_EQ] = ACTIONS(2997), + [anon_sym_SLASH_EQ] = ACTIONS(2997), + [anon_sym_PERCENT_EQ] = ACTIONS(2997), + [anon_sym_LT_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2997), + [anon_sym_AMP_EQ] = ACTIONS(2997), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2997), + [anon_sym_PLUS_EQ] = ACTIONS(2997), + [anon_sym_DASH_EQ] = ACTIONS(2997), + [anon_sym_PIPE_EQ] = ACTIONS(2997), + [anon_sym_CARET_EQ] = ACTIONS(2997), + [anon_sym_COLON_EQ] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_defer] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_DOLLARfor] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym_AT_LBRACK] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2997), + [sym___single_quote] = ACTIONS(2997), + [sym___c_double_quote] = ACTIONS(2997), + [sym___c_single_quote] = ACTIONS(2997), + [sym___r_double_quote] = ACTIONS(2997), + [sym___r_single_quote] = ACTIONS(2997), + }, + [468] = { + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym___global] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_STAR_EQ] = ACTIONS(3001), + [anon_sym_SLASH_EQ] = ACTIONS(3001), + [anon_sym_PERCENT_EQ] = ACTIONS(3001), + [anon_sym_LT_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), + [anon_sym_AMP_EQ] = ACTIONS(3001), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), + [anon_sym_PLUS_EQ] = ACTIONS(3001), + [anon_sym_DASH_EQ] = ACTIONS(3001), + [anon_sym_PIPE_EQ] = ACTIONS(3001), + [anon_sym_CARET_EQ] = ACTIONS(3001), + [anon_sym_COLON_EQ] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym_AT_LBRACK] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(3001), + [sym___single_quote] = ACTIONS(3001), + [sym___c_double_quote] = ACTIONS(3001), + [sym___c_single_quote] = ACTIONS(3001), + [sym___r_double_quote] = ACTIONS(3001), + [sym___r_single_quote] = ACTIONS(3001), + }, + [469] = { + [sym__expression] = STATE(2301), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [494] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [470] = { + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym___global] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_pub] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_STAR_EQ] = ACTIONS(3005), + [anon_sym_SLASH_EQ] = ACTIONS(3005), + [anon_sym_PERCENT_EQ] = ACTIONS(3005), + [anon_sym_LT_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_GT_EQ] = ACTIONS(3005), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3005), + [anon_sym_AMP_EQ] = ACTIONS(3005), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3005), + [anon_sym_PLUS_EQ] = ACTIONS(3005), + [anon_sym_DASH_EQ] = ACTIONS(3005), + [anon_sym_PIPE_EQ] = ACTIONS(3005), + [anon_sym_CARET_EQ] = ACTIONS(3005), + [anon_sym_COLON_EQ] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_defer] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_DOLLARfor] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym_AT_LBRACK] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), + }, + [471] = { + [sym__expression] = STATE(2822), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [495] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3946), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [472] = { + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3009), + [anon_sym___global] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_pub] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3009), + [anon_sym_SLASH_EQ] = ACTIONS(3009), + [anon_sym_PERCENT_EQ] = ACTIONS(3009), + [anon_sym_LT_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_GT_EQ] = ACTIONS(3009), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3009), + [anon_sym_AMP_EQ] = ACTIONS(3009), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3009), + [anon_sym_PLUS_EQ] = ACTIONS(3009), + [anon_sym_DASH_EQ] = ACTIONS(3009), + [anon_sym_PIPE_EQ] = ACTIONS(3009), + [anon_sym_CARET_EQ] = ACTIONS(3009), + [anon_sym_COLON_EQ] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_defer] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_DOLLARfor] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym_AT_LBRACK] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3009), + [sym___single_quote] = ACTIONS(3009), + [sym___c_double_quote] = ACTIONS(3009), + [sym___c_single_quote] = ACTIONS(3009), + [sym___r_double_quote] = ACTIONS(3009), + [sym___r_single_quote] = ACTIONS(3009), + }, + [473] = { + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym___global] = ACTIONS(3013), + [anon_sym_type] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_pub] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_STAR_EQ] = ACTIONS(3013), + [anon_sym_SLASH_EQ] = ACTIONS(3013), + [anon_sym_PERCENT_EQ] = ACTIONS(3013), + [anon_sym_LT_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_GT_EQ] = ACTIONS(3013), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3013), + [anon_sym_AMP_EQ] = ACTIONS(3013), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3013), + [anon_sym_PLUS_EQ] = ACTIONS(3013), + [anon_sym_DASH_EQ] = ACTIONS(3013), + [anon_sym_PIPE_EQ] = ACTIONS(3013), + [anon_sym_CARET_EQ] = ACTIONS(3013), + [anon_sym_COLON_EQ] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_defer] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_DOLLARfor] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym_AT_LBRACK] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), + }, + [474] = { + [sym__expression] = STATE(2769), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [496] = { - [sym__expression] = STATE(2864), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2993), + [475] = { + [sym__expression] = STATE(2871), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [497] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [476] = { + [sym__expression] = STATE(2877), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [498] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4258), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [477] = { + [sym__expression] = STATE(2854), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [499] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3953), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1095), + [478] = { + [sym__expression] = STATE(2880), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [500] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4261), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [479] = { + [sym__expression] = STATE(2764), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [501] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3946), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1095), + [480] = { + [sym__expression] = STATE(2874), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(1109), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1113), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(1123), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [502] = { - [sym__expression] = STATE(2461), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [481] = { + [sym__expression] = STATE(2856), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [503] = { - [sym__expression] = STATE(1000), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [482] = { + [sym__expression] = STATE(2881), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [504] = { - [sym__expression] = STATE(256), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [483] = { + [sym__expression] = STATE(2866), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [484] = { + [sym__expression] = STATE(295), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2845), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), @@ -84176,8329 +81936,4600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [505] = { - [sym__expression] = STATE(995), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [485] = { + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [506] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4158), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [486] = { + [ts_builtin_sym_end] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3017), + [anon_sym_LF] = ACTIONS(3017), + [anon_sym_CR] = ACTIONS(3017), + [anon_sym_CR_LF] = ACTIONS(3017), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_as] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_COMMA] = ACTIONS(3017), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym___global] = ACTIONS(3017), + [anon_sym_type] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_fn] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_LT_EQ] = ACTIONS(3017), + [anon_sym_GT_EQ] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_union] = ACTIONS(3017), + [anon_sym_pub] = ACTIONS(3017), + [anon_sym_mut] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_interface] = ACTIONS(3017), + [anon_sym_PLUS_PLUS] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_go] = ACTIONS(3017), + [anon_sym_spawn] = ACTIONS(3017), + [anon_sym_json_DOTdecode] = ACTIONS(3017), + [anon_sym_LBRACK2] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_CARET] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(3017), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_GT_GT_GT] = ACTIONS(3017), + [anon_sym_AMP_CARET] = ACTIONS(3017), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3017), + [sym_none] = ACTIONS(3017), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_nil] = ACTIONS(3017), + [anon_sym_QMARK_DOT] = ACTIONS(3017), + [anon_sym_POUND_LBRACK] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_DOLLARif] = ACTIONS(3017), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_BANGin] = ACTIONS(3017), + [anon_sym_match] = ACTIONS(3017), + [anon_sym_select] = ACTIONS(3017), + [anon_sym_STAR_EQ] = ACTIONS(3017), + [anon_sym_SLASH_EQ] = ACTIONS(3017), + [anon_sym_PERCENT_EQ] = ACTIONS(3017), + [anon_sym_LT_LT_EQ] = ACTIONS(3017), + [anon_sym_GT_GT_EQ] = ACTIONS(3017), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3017), + [anon_sym_AMP_EQ] = ACTIONS(3017), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3017), + [anon_sym_PLUS_EQ] = ACTIONS(3017), + [anon_sym_DASH_EQ] = ACTIONS(3017), + [anon_sym_PIPE_EQ] = ACTIONS(3017), + [anon_sym_CARET_EQ] = ACTIONS(3017), + [anon_sym_COLON_EQ] = ACTIONS(3017), + [anon_sym_lock] = ACTIONS(3017), + [anon_sym_rlock] = ACTIONS(3017), + [anon_sym_unsafe] = ACTIONS(3017), + [anon_sym_sql] = ACTIONS(3017), + [sym_int_literal] = ACTIONS(3017), + [sym_float_literal] = ACTIONS(3017), + [sym_rune_literal] = ACTIONS(3017), + [sym_pseudo_compile_time_identifier] = ACTIONS(3017), + [anon_sym_shared] = ACTIONS(3017), + [anon_sym_map_LBRACK] = ACTIONS(3017), + [anon_sym_chan] = ACTIONS(3017), + [anon_sym_thread] = ACTIONS(3017), + [anon_sym_atomic] = ACTIONS(3017), + [anon_sym_assert] = ACTIONS(3017), + [anon_sym_defer] = ACTIONS(3017), + [anon_sym_goto] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_DOLLARfor] = ACTIONS(3017), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_POUND] = ACTIONS(3017), + [anon_sym_asm] = ACTIONS(3017), + [anon_sym_AT_LBRACK] = ACTIONS(3017), + [sym___double_quote] = ACTIONS(3017), + [sym___single_quote] = ACTIONS(3017), + [sym___c_double_quote] = ACTIONS(3017), + [sym___c_single_quote] = ACTIONS(3017), + [sym___r_double_quote] = ACTIONS(3017), + [sym___r_single_quote] = ACTIONS(3017), + }, + [487] = { + [sym__expression] = STATE(242), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [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), }, - [507] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4154), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [488] = { + [sym__expression] = STATE(2868), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [508] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4138), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [489] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3654), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [509] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_CR] = ACTIONS(3059), - [anon_sym_CR_LF] = ACTIONS(3059), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3059), - [anon_sym_as] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_const] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_EQ] = ACTIONS(3059), - [anon_sym___global] = ACTIONS(3059), - [anon_sym_type] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_fn] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3059), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_union] = ACTIONS(3059), - [anon_sym_pub] = ACTIONS(3059), - [anon_sym_mut] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_interface] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_go] = ACTIONS(3059), - [anon_sym_spawn] = ACTIONS(3059), - [anon_sym_json_DOTdecode] = ACTIONS(3059), - [anon_sym_LBRACK2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_GT_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_CARET] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_or] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_nil] = ACTIONS(3059), - [anon_sym_QMARK_DOT] = ACTIONS(3059), - [anon_sym_POUND_LBRACK] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_DOLLARif] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_BANGis] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3059), - [anon_sym_BANGin] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3059), - [anon_sym_select] = ACTIONS(3059), - [anon_sym_STAR_EQ] = ACTIONS(3059), - [anon_sym_SLASH_EQ] = ACTIONS(3059), - [anon_sym_PERCENT_EQ] = ACTIONS(3059), - [anon_sym_LT_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_GT_EQ] = ACTIONS(3059), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3059), - [anon_sym_AMP_EQ] = ACTIONS(3059), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3059), - [anon_sym_PLUS_EQ] = ACTIONS(3059), - [anon_sym_DASH_EQ] = ACTIONS(3059), - [anon_sym_PIPE_EQ] = ACTIONS(3059), - [anon_sym_CARET_EQ] = ACTIONS(3059), - [anon_sym_COLON_EQ] = ACTIONS(3059), - [anon_sym_lock] = ACTIONS(3059), - [anon_sym_rlock] = ACTIONS(3059), - [anon_sym_unsafe] = ACTIONS(3059), - [anon_sym_sql] = ACTIONS(3059), - [sym_int_literal] = ACTIONS(3059), - [sym_float_literal] = ACTIONS(3059), - [sym_rune_literal] = ACTIONS(3059), - [sym_pseudo_compile_time_identifier] = ACTIONS(3059), - [anon_sym_shared] = ACTIONS(3059), - [anon_sym_map_LBRACK] = ACTIONS(3059), - [anon_sym_chan] = ACTIONS(3059), - [anon_sym_thread] = ACTIONS(3059), - [anon_sym_atomic] = ACTIONS(3059), - [anon_sym_assert] = ACTIONS(3059), - [anon_sym_defer] = ACTIONS(3059), - [anon_sym_goto] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_DOLLARfor] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_POUND] = ACTIONS(3059), - [anon_sym_asm] = ACTIONS(3059), - [anon_sym_AT_LBRACK] = ACTIONS(3059), - [sym___double_quote] = ACTIONS(3059), - [sym___single_quote] = ACTIONS(3059), - [sym___c_double_quote] = ACTIONS(3059), - [sym___c_single_quote] = ACTIONS(3059), - [sym___r_double_quote] = ACTIONS(3059), - [sym___r_single_quote] = ACTIONS(3059), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [510] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [490] = { + [sym__expression] = STATE(242), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4198), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [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), }, - [511] = { - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [491] = { + [sym__expression] = STATE(2473), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [512] = { - [ts_builtin_sym_end] = ACTIONS(3061), - [sym_identifier] = ACTIONS(3063), - [anon_sym_LF] = ACTIONS(3063), - [anon_sym_CR] = ACTIONS(3063), - [anon_sym_CR_LF] = ACTIONS(3063), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3063), - [anon_sym_as] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_EQ] = ACTIONS(3063), - [anon_sym___global] = ACTIONS(3063), - [anon_sym_type] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_fn] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3063), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3063), - [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(3061), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_pub] = ACTIONS(3063), - [anon_sym_mut] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_interface] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3063), - [anon_sym_json_DOTdecode] = ACTIONS(3063), - [anon_sym_LBRACK2] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_LT_DASH] = ACTIONS(3063), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3063), - [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(3063), - [sym_none] = ACTIONS(3063), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [sym_nil] = ACTIONS(3063), - [anon_sym_QMARK_DOT] = ACTIONS(3063), - [anon_sym_POUND_LBRACK] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_DOLLARif] = ACTIONS(3063), - [anon_sym_is] = ACTIONS(3063), - [anon_sym_BANGis] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_BANGin] = ACTIONS(3063), - [anon_sym_match] = ACTIONS(3063), - [anon_sym_select] = ACTIONS(3063), - [anon_sym_STAR_EQ] = ACTIONS(3063), - [anon_sym_SLASH_EQ] = ACTIONS(3063), - [anon_sym_PERCENT_EQ] = ACTIONS(3063), - [anon_sym_LT_LT_EQ] = ACTIONS(3063), - [anon_sym_GT_GT_EQ] = ACTIONS(3063), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3063), - [anon_sym_AMP_EQ] = ACTIONS(3063), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3063), - [anon_sym_PLUS_EQ] = ACTIONS(3063), - [anon_sym_DASH_EQ] = ACTIONS(3063), - [anon_sym_PIPE_EQ] = ACTIONS(3063), - [anon_sym_CARET_EQ] = ACTIONS(3063), - [anon_sym_COLON_EQ] = ACTIONS(3063), - [anon_sym_lock] = ACTIONS(3063), - [anon_sym_rlock] = ACTIONS(3063), - [anon_sym_unsafe] = ACTIONS(3063), - [anon_sym_sql] = ACTIONS(3063), - [sym_int_literal] = ACTIONS(3063), - [sym_float_literal] = ACTIONS(3063), - [sym_rune_literal] = ACTIONS(3063), - [sym_pseudo_compile_time_identifier] = ACTIONS(3063), - [anon_sym_shared] = ACTIONS(3063), - [anon_sym_map_LBRACK] = ACTIONS(3063), - [anon_sym_chan] = ACTIONS(3063), - [anon_sym_thread] = ACTIONS(3063), - [anon_sym_atomic] = ACTIONS(3063), - [anon_sym_assert] = ACTIONS(3063), - [anon_sym_defer] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_DOLLARfor] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_POUND] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym_AT_LBRACK] = ACTIONS(3063), - [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), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [513] = { - [sym__expression] = STATE(2754), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [492] = { + [sym__expression] = STATE(2873), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [514] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [493] = { + [sym__expression] = STATE(2472), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [515] = { - [sym__expression] = STATE(2472), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [494] = { + [sym__expression] = STATE(1836), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [516] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4294), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [495] = { + [sym__expression] = STATE(2859), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [517] = { - [sym__expression] = STATE(2458), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [496] = { + [sym__expression] = STATE(1941), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [518] = { - [sym__expression] = STATE(2468), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [497] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3634), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [519] = { - [sym__expression] = STATE(2457), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [498] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [520] = { - [sym__expression] = STATE(2467), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [499] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [521] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4293), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [500] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3975), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [522] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4288), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [501] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3973), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [523] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [502] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3968), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [524] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4323), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [503] = { + [sym__expression] = STATE(2483), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [525] = { - [sym__expression] = STATE(2456), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [504] = { + [sym__expression] = STATE(2594), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [526] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [505] = { + [sym__expression] = STATE(2624), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), - }, - [527] = { - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_EQ] = ACTIONS(3087), - [anon_sym___global] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_pub] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_STAR_EQ] = ACTIONS(3087), - [anon_sym_SLASH_EQ] = ACTIONS(3087), - [anon_sym_PERCENT_EQ] = ACTIONS(3087), - [anon_sym_LT_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3087), - [anon_sym_AMP_EQ] = ACTIONS(3087), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3087), - [anon_sym_PLUS_EQ] = ACTIONS(3087), - [anon_sym_DASH_EQ] = ACTIONS(3087), - [anon_sym_PIPE_EQ] = ACTIONS(3087), - [anon_sym_CARET_EQ] = ACTIONS(3087), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_defer] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_DOLLARfor] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_POUND] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym_AT_LBRACK] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), - }, - [528] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_CR] = ACTIONS(3091), - [anon_sym_CR_LF] = ACTIONS(3091), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3091), - [anon_sym___global] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3091), - [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(3096), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_pub] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_interface] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3091), - [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(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [anon_sym_STAR_EQ] = ACTIONS(3091), - [anon_sym_SLASH_EQ] = ACTIONS(3091), - [anon_sym_PERCENT_EQ] = ACTIONS(3091), - [anon_sym_LT_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_GT_EQ] = ACTIONS(3091), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3091), - [anon_sym_AMP_EQ] = ACTIONS(3091), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3091), - [anon_sym_PLUS_EQ] = ACTIONS(3091), - [anon_sym_DASH_EQ] = ACTIONS(3091), - [anon_sym_PIPE_EQ] = ACTIONS(3091), - [anon_sym_CARET_EQ] = ACTIONS(3091), - [anon_sym_COLON_EQ] = ACTIONS(3091), - [anon_sym_lock] = ACTIONS(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), - [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_defer] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_DOLLARfor] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym_AT_LBRACK] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), - }, - [529] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3106), - [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(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [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), - [sym_pseudo_compile_time_identifier] = 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___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [530] = { - [sym__expression] = STATE(2372), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [506] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [531] = { - [sym__expression] = STATE(2379), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [507] = { + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [532] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4313), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [508] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3654), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [533] = { - [sym__expression] = STATE(2157), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [509] = { + [sym__expression] = STATE(2797), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [534] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3627), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2185), + [510] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [535] = { - [sym__expression] = STATE(2304), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [511] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [536] = { - [sym__expression] = STATE(2295), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [512] = { + [sym__expression] = STATE(1145), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [537] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [513] = { + [sym__expression] = STATE(2796), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [538] = { + [514] = { [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2185), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3661), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2189), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [539] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [515] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3634), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [540] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [516] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [541] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [517] = { + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [542] = { - [sym__expression] = STATE(2251), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [518] = { + [sym__expression] = STATE(1287), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [543] = { - [sym__expression] = STATE(2157), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [519] = { + [sym__expression] = STATE(2158), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [544] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_STAR_EQ] = ACTIONS(3129), - [anon_sym_SLASH_EQ] = ACTIONS(3129), - [anon_sym_PERCENT_EQ] = ACTIONS(3129), - [anon_sym_LT_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_GT_EQ] = ACTIONS(3129), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3129), - [anon_sym_AMP_EQ] = ACTIONS(3129), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3129), - [anon_sym_PLUS_EQ] = ACTIONS(3129), - [anon_sym_DASH_EQ] = ACTIONS(3129), - [anon_sym_PIPE_EQ] = ACTIONS(3129), - [anon_sym_CARET_EQ] = ACTIONS(3129), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [sym_pseudo_compile_time_identifier] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [545] = { - [sym__expression] = STATE(1673), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [520] = { + [sym__expression] = STATE(1317), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [546] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4108), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), + [521] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4153), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [547] = { - [sym__expression] = STATE(1656), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [522] = { + [sym__expression] = STATE(1318), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [548] = { - [sym__expression] = STATE(1657), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [523] = { + [sym__expression] = STATE(1294), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [549] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4114), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), + [524] = { + [sym__expression] = STATE(1297), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [550] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4118), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), + [525] = { + [sym__expression] = STATE(1138), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [551] = { - [sym__expression] = STATE(1658), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), - }, - [552] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_EQ] = 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_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_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [sym_pseudo_compile_time_identifier] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), - }, - [553] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_EQ] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_STAR_EQ] = ACTIONS(2909), - [anon_sym_SLASH_EQ] = ACTIONS(2909), - [anon_sym_PERCENT_EQ] = ACTIONS(2909), - [anon_sym_LT_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2909), - [anon_sym_AMP_EQ] = ACTIONS(2909), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2909), - [anon_sym_PLUS_EQ] = ACTIONS(2909), - [anon_sym_DASH_EQ] = ACTIONS(2909), - [anon_sym_PIPE_EQ] = ACTIONS(2909), - [anon_sym_CARET_EQ] = ACTIONS(2909), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), - }, - [554] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_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_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_STAR_EQ] = ACTIONS(3137), - [anon_sym_SLASH_EQ] = ACTIONS(3137), - [anon_sym_PERCENT_EQ] = ACTIONS(3137), - [anon_sym_LT_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_AMP_EQ] = ACTIONS(3137), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3137), - [anon_sym_PLUS_EQ] = ACTIONS(3137), - [anon_sym_DASH_EQ] = ACTIONS(3137), - [anon_sym_PIPE_EQ] = ACTIONS(3137), - [anon_sym_CARET_EQ] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [sym_pseudo_compile_time_identifier] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [555] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4138), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [556] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_EQ] = 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_STAR_EQ] = ACTIONS(3141), - [anon_sym_SLASH_EQ] = ACTIONS(3141), - [anon_sym_PERCENT_EQ] = ACTIONS(3141), - [anon_sym_LT_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_GT_EQ] = ACTIONS(3141), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3141), - [anon_sym_AMP_EQ] = ACTIONS(3141), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3141), - [anon_sym_PLUS_EQ] = ACTIONS(3141), - [anon_sym_DASH_EQ] = ACTIONS(3141), - [anon_sym_PIPE_EQ] = ACTIONS(3141), - [anon_sym_CARET_EQ] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [sym_pseudo_compile_time_identifier] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), - }, - [557] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), - }, - [558] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4154), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [559] = { - [sym__expression] = STATE(1291), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [560] = { - [sym__expression] = STATE(2159), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4158), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [561] = { - [sym__expression] = STATE(2686), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [562] = { - [sym__expression] = STATE(2646), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [563] = { - [sym__expression] = STATE(1292), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [564] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [anon_sym_assert] = ACTIONS(3149), - [anon_sym_defer] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_DOLLARfor] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym_AT_LBRACK] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), - }, - [565] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_defer] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_DOLLARfor] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_POUND] = ACTIONS(3153), - [anon_sym_asm] = ACTIONS(3153), - [anon_sym_AT_LBRACK] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), - }, - [566] = { - [sym__expression] = STATE(1293), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [567] = { - [sym__expression] = STATE(2690), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [568] = { - [sym__expression] = STATE(2294), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [569] = { - [sym__expression] = STATE(1295), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [570] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2959), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2962), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [571] = { - [sym__expression] = STATE(1320), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [572] = { - [sym__expression] = STATE(2692), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [573] = { - [sym__expression] = STATE(1804), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [574] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(3627), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [575] = { - [sym__expression] = STATE(1280), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [576] = { - [sym__expression] = STATE(1318), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [577] = { - [sym__expression] = STATE(1802), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [578] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), [anon_sym_BANG] = ACTIONS(651), @@ -92538,410 +86569,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [579] = { - [sym__expression] = STATE(1801), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), - }, - [580] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(3625), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [526] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4146), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [581] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [527] = { + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2651), + [anon_sym_CR] = ACTIONS(2651), + [anon_sym_CR_LF] = ACTIONS(2651), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_as] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_EQ] = ACTIONS(2651), + [anon_sym___global] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_pub] = ACTIONS(2651), + [anon_sym_mut] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_interface] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2651), + [anon_sym_spawn] = ACTIONS(2651), + [anon_sym_json_DOTdecode] = ACTIONS(2651), + [anon_sym_LBRACK2] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_AMP_CARET] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [sym_none] = ACTIONS(2651), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_nil] = ACTIONS(2651), + [anon_sym_QMARK_DOT] = ACTIONS(2651), + [anon_sym_POUND_LBRACK] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_DOLLARif] = ACTIONS(2651), + [anon_sym_is] = ACTIONS(2651), + [anon_sym_BANGis] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_BANGin] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_select] = ACTIONS(2651), + [anon_sym_STAR_EQ] = ACTIONS(2651), + [anon_sym_SLASH_EQ] = ACTIONS(2651), + [anon_sym_PERCENT_EQ] = ACTIONS(2651), + [anon_sym_LT_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_GT_EQ] = ACTIONS(2651), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2651), + [anon_sym_AMP_EQ] = ACTIONS(2651), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2651), + [anon_sym_PLUS_EQ] = ACTIONS(2651), + [anon_sym_DASH_EQ] = ACTIONS(2651), + [anon_sym_PIPE_EQ] = ACTIONS(2651), + [anon_sym_CARET_EQ] = ACTIONS(2651), + [anon_sym_COLON_EQ] = ACTIONS(2651), + [anon_sym_lock] = ACTIONS(2651), + [anon_sym_rlock] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_sql] = ACTIONS(2651), + [sym_int_literal] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2651), + [sym_rune_literal] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(2651), + [anon_sym_shared] = ACTIONS(2651), + [anon_sym_map_LBRACK] = ACTIONS(2651), + [anon_sym_chan] = ACTIONS(2651), + [anon_sym_thread] = ACTIONS(2651), + [anon_sym_atomic] = ACTIONS(2651), + [anon_sym_assert] = ACTIONS(2651), + [anon_sym_defer] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_DOLLARfor] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_asm] = ACTIONS(2651), + [anon_sym_AT_LBRACK] = ACTIONS(2651), + [sym___double_quote] = ACTIONS(2651), + [sym___single_quote] = ACTIONS(2651), + [sym___c_double_quote] = ACTIONS(2651), + [sym___c_single_quote] = ACTIONS(2651), + [sym___r_double_quote] = ACTIONS(2651), + [sym___r_single_quote] = ACTIONS(2651), }, - [582] = { - [sym__expression] = STATE(1132), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [528] = { + [sym__expression] = STATE(1135), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -92990,71 +86908,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [583] = { - [sym__expression] = STATE(1142), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [529] = { + [sym__expression] = STATE(1141), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -93103,410 +87021,749 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [584] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(1974), - [sym__expression_with_blocks] = STATE(1974), - [sym_inc_expression] = STATE(1974), - [sym_dec_expression] = STATE(1974), - [sym_or_block_expression] = STATE(1974), - [sym_option_propagation_expression] = STATE(1974), - [sym_result_propagation_expression] = STATE(1974), - [sym_anon_struct_value_expression] = STATE(1973), - [sym_go_expression] = STATE(1974), - [sym_spawn_expression] = STATE(1974), - [sym_parenthesized_expression] = STATE(1974), - [sym_call_expression] = STATE(1974), - [sym_type_initializer] = STATE(1973), - [sym_function_literal] = STATE(1974), - [sym_reference_expression] = STATE(2112), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1974), - [sym_receive_expression] = STATE(1974), - [sym_binary_expression] = STATE(1974), - [sym_as_type_cast_expression] = STATE(1974), - [sym__max_group] = STATE(1974), - [sym_literal] = STATE(1974), - [sym_map_init_expression] = STATE(1973), - [sym_array_creation] = STATE(1974), - [sym_fixed_array_creation] = STATE(1974), - [sym_selector_expression] = STATE(1974), - [sym_index_expression] = STATE(1974), - [sym_slice_expression] = STATE(1974), - [sym_if_expression] = STATE(1973), - [sym_compile_time_if_expression] = STATE(1973), - [sym_is_expression] = STATE(1974), - [sym_not_is_expression] = STATE(1974), - [sym_in_expression] = STATE(1974), - [sym_not_in_expression] = STATE(1974), - [sym_enum_fetch] = STATE(1974), - [sym_match_expression] = STATE(1973), - [sym_select_expression] = STATE(1973), - [sym_lock_expression] = STATE(1973), - [sym_unsafe_expression] = STATE(1973), - [sym_sql_expression] = STATE(1973), - [sym_c_string_literal] = STATE(2013), - [sym_raw_string_literal] = STATE(2013), - [sym_interpreted_string_literal] = STATE(2013), - [sym_mutability_modifiers] = STATE(647), - [sym_plain_type] = STATE(4359), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2885), + [530] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4153), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(705), - [anon_sym_fn] = ACTIONS(707), - [anon_sym_PLUS] = ACTIONS(709), - [anon_sym_DASH] = ACTIONS(709), - [anon_sym_STAR] = ACTIONS(711), - [anon_sym_struct] = ACTIONS(2889), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(715), - [anon_sym_go] = ACTIONS(717), - [anon_sym_spawn] = ACTIONS(719), - [anon_sym_json_DOTdecode] = ACTIONS(721), - [anon_sym_LBRACK2] = ACTIONS(723), - [anon_sym_TILDE] = ACTIONS(709), - [anon_sym_CARET] = ACTIONS(709), - [anon_sym_AMP] = ACTIONS(725), - [anon_sym_LT_DASH] = ACTIONS(727), - [sym_none] = ACTIONS(729), - [sym_true] = ACTIONS(729), - [sym_false] = ACTIONS(729), - [sym_nil] = ACTIONS(729), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2897), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2901), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(729), - [sym_float_literal] = ACTIONS(747), - [sym_rune_literal] = ACTIONS(747), - [sym_pseudo_compile_time_identifier] = ACTIONS(2905), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(751), - [sym___single_quote] = ACTIONS(753), - [sym___c_double_quote] = ACTIONS(755), - [sym___c_single_quote] = ACTIONS(757), - [sym___r_double_quote] = ACTIONS(759), - [sym___r_single_quote] = ACTIONS(761), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [585] = { - [sym__expression] = STATE(2635), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [531] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4138), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [586] = { - [sym__expression] = STATE(1783), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [532] = { + [sym__expression] = STATE(1286), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [587] = { - [sym__expression] = STATE(1135), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [533] = { + [sym__expression] = STATE(2646), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [534] = { + [sym__expression] = STATE(1287), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), + }, + [535] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3654), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [536] = { + [sym__expression] = STATE(1136), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -93555,297 +87812,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [588] = { - [sym__expression] = STATE(2817), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [537] = { + [sym__expression] = STATE(987), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [589] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_defer] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_DOLLARfor] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_POUND] = ACTIONS(3157), - [anon_sym_asm] = ACTIONS(3157), - [anon_sym_AT_LBRACK] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [590] = { - [sym__expression] = STATE(1140), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [538] = { + [sym__expression] = STATE(1143), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -93894,882 +88038,1221 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [591] = { - [sym__expression] = STATE(2293), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [539] = { + [sym__expression] = STATE(2295), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [592] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [540] = { + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3027), + [anon_sym___global] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_interface] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_STAR_EQ] = ACTIONS(3027), + [anon_sym_SLASH_EQ] = ACTIONS(3027), + [anon_sym_PERCENT_EQ] = ACTIONS(3027), + [anon_sym_LT_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_GT_EQ] = ACTIONS(3027), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3027), + [anon_sym_AMP_EQ] = ACTIONS(3027), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3027), + [anon_sym_PLUS_EQ] = ACTIONS(3027), + [anon_sym_DASH_EQ] = ACTIONS(3027), + [anon_sym_PIPE_EQ] = ACTIONS(3027), + [anon_sym_CARET_EQ] = ACTIONS(3027), + [anon_sym_COLON_EQ] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_defer] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_DOLLARfor] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym_AT_LBRACK] = ACTIONS(3027), + [sym___double_quote] = ACTIONS(3027), + [sym___single_quote] = ACTIONS(3027), + [sym___c_double_quote] = ACTIONS(3027), + [sym___c_single_quote] = ACTIONS(3027), + [sym___r_double_quote] = ACTIONS(3027), + [sym___r_single_quote] = ACTIONS(3027), + }, + [541] = { + [sym__expression] = STATE(2793), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [593] = { - [sym__expression] = STATE(2726), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [542] = { + [sym__expression] = STATE(1002), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [594] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(3000), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2996), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [543] = { + [sym__expression] = STATE(2790), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [595] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [544] = { + [sym__expression] = STATE(2787), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [596] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [545] = { + [sym__expression] = STATE(2786), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [597] = { - [sym__expression] = STATE(2727), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [546] = { + [sym__expression] = STATE(2781), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [598] = { - [sym__expression] = STATE(1784), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [547] = { + [sym__expression] = STATE(2302), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [548] = { + [sym__expression] = STATE(2780), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [549] = { + [sym__expression] = STATE(1899), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -94777,9 +89260,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -94798,1108 +89281,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [599] = { - [sym__expression] = STATE(2651), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [550] = { + [sym__expression] = STATE(1921), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [600] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [601] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_STAR_EQ] = ACTIONS(3173), - [anon_sym_SLASH_EQ] = ACTIONS(3173), - [anon_sym_PERCENT_EQ] = ACTIONS(3173), - [anon_sym_LT_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_AMP_EQ] = ACTIONS(3173), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3173), - [anon_sym_PLUS_EQ] = ACTIONS(3173), - [anon_sym_DASH_EQ] = ACTIONS(3173), - [anon_sym_PIPE_EQ] = ACTIONS(3173), - [anon_sym_CARET_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [sym_pseudo_compile_time_identifier] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [602] = { - [sym__expression] = STATE(1139), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [551] = { + [sym__expression] = STATE(1934), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [603] = { - [sym__expression] = STATE(2743), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [552] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3661), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [604] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_STAR_EQ] = ACTIONS(3177), - [anon_sym_SLASH_EQ] = ACTIONS(3177), - [anon_sym_PERCENT_EQ] = ACTIONS(3177), - [anon_sym_LT_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_AMP_EQ] = ACTIONS(3177), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3177), - [anon_sym_PLUS_EQ] = ACTIONS(3177), - [anon_sym_DASH_EQ] = ACTIONS(3177), - [anon_sym_PIPE_EQ] = ACTIONS(3177), - [anon_sym_CARET_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [605] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2990), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2986), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [553] = { + [sym__expression] = STATE(298), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [606] = { - [sym__expression] = STATE(2750), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [554] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3634), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [607] = { - [sym__expression] = STATE(2655), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [555] = { + [sym__expression] = STATE(1932), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [608] = { - [sym__expression] = STATE(1785), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [556] = { + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_const] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_EQ] = ACTIONS(3049), + [anon_sym___global] = ACTIONS(3049), + [anon_sym_type] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(3049), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_STAR_EQ] = ACTIONS(3049), + [anon_sym_SLASH_EQ] = ACTIONS(3049), + [anon_sym_PERCENT_EQ] = ACTIONS(3049), + [anon_sym_LT_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_GT_EQ] = ACTIONS(3049), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), + [anon_sym_AMP_EQ] = ACTIONS(3049), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), + [anon_sym_PLUS_EQ] = ACTIONS(3049), + [anon_sym_DASH_EQ] = ACTIONS(3049), + [anon_sym_PIPE_EQ] = ACTIONS(3049), + [anon_sym_CARET_EQ] = ACTIONS(3049), + [anon_sym_COLON_EQ] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), + [anon_sym_AT_LBRACK] = ACTIONS(3049), + [sym___double_quote] = ACTIONS(3049), + [sym___single_quote] = ACTIONS(3049), + [sym___c_double_quote] = ACTIONS(3049), + [sym___c_single_quote] = ACTIONS(3049), + [sym___r_double_quote] = ACTIONS(3049), + [sym___r_single_quote] = ACTIONS(3049), + }, + [557] = { + [ts_builtin_sym_end] = ACTIONS(3051), + [sym_identifier] = ACTIONS(3053), + [anon_sym_LF] = ACTIONS(3053), + [anon_sym_CR] = ACTIONS(3053), + [anon_sym_CR_LF] = ACTIONS(3053), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_as] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_COMMA] = ACTIONS(3053), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_EQ] = ACTIONS(3053), + [anon_sym___global] = ACTIONS(3053), + [anon_sym_type] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_fn] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_SLASH] = ACTIONS(3053), + [anon_sym_PERCENT] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_EQ_EQ] = ACTIONS(3053), + [anon_sym_BANG_EQ] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3053), + [anon_sym_union] = ACTIONS(3053), + [anon_sym_pub] = ACTIONS(3053), + [anon_sym_mut] = ACTIONS(3053), + [anon_sym_enum] = ACTIONS(3053), + [anon_sym_interface] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_QMARK] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_go] = ACTIONS(3053), + [anon_sym_spawn] = ACTIONS(3053), + [anon_sym_json_DOTdecode] = ACTIONS(3053), + [anon_sym_LBRACK2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_CARET] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT_DASH] = ACTIONS(3053), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(3053), + [anon_sym_GT_GT_GT] = ACTIONS(3053), + [anon_sym_AMP_CARET] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_PIPE_PIPE] = ACTIONS(3053), + [anon_sym_or] = ACTIONS(3053), + [sym_none] = ACTIONS(3053), + [sym_true] = ACTIONS(3053), + [sym_false] = ACTIONS(3053), + [sym_nil] = ACTIONS(3053), + [anon_sym_QMARK_DOT] = ACTIONS(3053), + [anon_sym_POUND_LBRACK] = ACTIONS(3053), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_DOLLARif] = ACTIONS(3053), + [anon_sym_is] = ACTIONS(3053), + [anon_sym_BANGis] = ACTIONS(3053), + [anon_sym_in] = ACTIONS(3053), + [anon_sym_BANGin] = ACTIONS(3053), + [anon_sym_match] = ACTIONS(3053), + [anon_sym_select] = ACTIONS(3053), + [anon_sym_STAR_EQ] = ACTIONS(3053), + [anon_sym_SLASH_EQ] = ACTIONS(3053), + [anon_sym_PERCENT_EQ] = ACTIONS(3053), + [anon_sym_LT_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_GT_EQ] = ACTIONS(3053), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3053), + [anon_sym_AMP_EQ] = ACTIONS(3053), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3053), + [anon_sym_PLUS_EQ] = ACTIONS(3053), + [anon_sym_DASH_EQ] = ACTIONS(3053), + [anon_sym_PIPE_EQ] = ACTIONS(3053), + [anon_sym_CARET_EQ] = ACTIONS(3053), + [anon_sym_COLON_EQ] = ACTIONS(3053), + [anon_sym_lock] = ACTIONS(3053), + [anon_sym_rlock] = ACTIONS(3053), + [anon_sym_unsafe] = ACTIONS(3053), + [anon_sym_sql] = ACTIONS(3053), + [sym_int_literal] = ACTIONS(3053), + [sym_float_literal] = ACTIONS(3053), + [sym_rune_literal] = ACTIONS(3053), + [sym_pseudo_compile_time_identifier] = ACTIONS(3053), + [anon_sym_shared] = ACTIONS(3053), + [anon_sym_map_LBRACK] = ACTIONS(3053), + [anon_sym_chan] = ACTIONS(3053), + [anon_sym_thread] = ACTIONS(3053), + [anon_sym_atomic] = ACTIONS(3053), + [anon_sym_assert] = ACTIONS(3053), + [anon_sym_defer] = ACTIONS(3053), + [anon_sym_goto] = ACTIONS(3053), + [anon_sym_break] = ACTIONS(3053), + [anon_sym_continue] = ACTIONS(3053), + [anon_sym_return] = ACTIONS(3053), + [anon_sym_DOLLARfor] = ACTIONS(3053), + [anon_sym_for] = ACTIONS(3053), + [anon_sym_POUND] = ACTIONS(3053), + [anon_sym_asm] = ACTIONS(3053), + [anon_sym_AT_LBRACK] = ACTIONS(3053), + [sym___double_quote] = ACTIONS(3053), + [sym___single_quote] = ACTIONS(3053), + [sym___c_double_quote] = ACTIONS(3053), + [sym___c_single_quote] = ACTIONS(3053), + [sym___r_double_quote] = ACTIONS(3053), + [sym___r_single_quote] = ACTIONS(3053), + }, + [558] = { + [sym__expression] = STATE(1929), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -95907,9 +90277,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -95928,636 +90298,636 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [609] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [559] = { + [sym__expression] = STATE(1800), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [610] = { - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4208), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [560] = { + [sym__expression] = STATE(1927), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [611] = { - [sym__expression] = STATE(2523), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [561] = { + [sym__expression] = STATE(2551), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [612] = { - [sym__expression] = STATE(2524), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [562] = { + [sym__expression] = STATE(2553), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [613] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2930), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2964), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [563] = { + [sym__expression] = STATE(2554), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [614] = { - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4211), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [564] = { + [sym__expression] = STATE(1134), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -96606,71 +90976,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [615] = { - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4217), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [565] = { + [ts_builtin_sym_end] = ACTIONS(3055), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LF] = ACTIONS(3057), + [anon_sym_CR] = ACTIONS(3057), + [anon_sym_CR_LF] = ACTIONS(3057), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3057), + [anon_sym_as] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_COMMA] = ACTIONS(3057), + [anon_sym_const] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym___global] = ACTIONS(3057), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_PIPE] = ACTIONS(3057), + [anon_sym_fn] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_SLASH] = ACTIONS(3057), + [anon_sym_PERCENT] = ACTIONS(3057), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_LT_EQ] = ACTIONS(3057), + [anon_sym_GT_EQ] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3057), + [anon_sym_union] = ACTIONS(3057), + [anon_sym_pub] = ACTIONS(3057), + [anon_sym_mut] = ACTIONS(3057), + [anon_sym_enum] = ACTIONS(3057), + [anon_sym_interface] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_go] = ACTIONS(3057), + [anon_sym_spawn] = ACTIONS(3057), + [anon_sym_json_DOTdecode] = ACTIONS(3057), + [anon_sym_LBRACK2] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_CARET] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_LT_DASH] = ACTIONS(3057), + [anon_sym_LT_LT] = ACTIONS(3057), + [anon_sym_GT_GT] = ACTIONS(3057), + [anon_sym_GT_GT_GT] = ACTIONS(3057), + [anon_sym_AMP_CARET] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_PIPE_PIPE] = ACTIONS(3057), + [anon_sym_or] = ACTIONS(3057), + [sym_none] = ACTIONS(3057), + [sym_true] = ACTIONS(3057), + [sym_false] = ACTIONS(3057), + [sym_nil] = ACTIONS(3057), + [anon_sym_QMARK_DOT] = ACTIONS(3057), + [anon_sym_POUND_LBRACK] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_DOLLARif] = ACTIONS(3057), + [anon_sym_is] = ACTIONS(3057), + [anon_sym_BANGis] = ACTIONS(3057), + [anon_sym_in] = ACTIONS(3057), + [anon_sym_BANGin] = ACTIONS(3057), + [anon_sym_match] = ACTIONS(3057), + [anon_sym_select] = ACTIONS(3057), + [anon_sym_STAR_EQ] = ACTIONS(3057), + [anon_sym_SLASH_EQ] = ACTIONS(3057), + [anon_sym_PERCENT_EQ] = ACTIONS(3057), + [anon_sym_LT_LT_EQ] = ACTIONS(3057), + [anon_sym_GT_GT_EQ] = ACTIONS(3057), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3057), + [anon_sym_AMP_EQ] = ACTIONS(3057), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3057), + [anon_sym_PLUS_EQ] = ACTIONS(3057), + [anon_sym_DASH_EQ] = ACTIONS(3057), + [anon_sym_PIPE_EQ] = ACTIONS(3057), + [anon_sym_CARET_EQ] = ACTIONS(3057), + [anon_sym_COLON_EQ] = ACTIONS(3057), + [anon_sym_lock] = ACTIONS(3057), + [anon_sym_rlock] = ACTIONS(3057), + [anon_sym_unsafe] = ACTIONS(3057), + [anon_sym_sql] = ACTIONS(3057), + [sym_int_literal] = ACTIONS(3057), + [sym_float_literal] = ACTIONS(3057), + [sym_rune_literal] = ACTIONS(3057), + [sym_pseudo_compile_time_identifier] = ACTIONS(3057), + [anon_sym_shared] = ACTIONS(3057), + [anon_sym_map_LBRACK] = ACTIONS(3057), + [anon_sym_chan] = ACTIONS(3057), + [anon_sym_thread] = ACTIONS(3057), + [anon_sym_atomic] = ACTIONS(3057), + [anon_sym_assert] = ACTIONS(3057), + [anon_sym_defer] = ACTIONS(3057), + [anon_sym_goto] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_DOLLARfor] = ACTIONS(3057), + [anon_sym_for] = ACTIONS(3057), + [anon_sym_POUND] = ACTIONS(3057), + [anon_sym_asm] = ACTIONS(3057), + [anon_sym_AT_LBRACK] = ACTIONS(3057), + [sym___double_quote] = ACTIONS(3057), + [sym___single_quote] = ACTIONS(3057), + [sym___c_double_quote] = ACTIONS(3057), + [sym___c_single_quote] = ACTIONS(3057), + [sym___r_double_quote] = ACTIONS(3057), + [sym___r_single_quote] = ACTIONS(3057), + }, + [566] = { + [ts_builtin_sym_end] = ACTIONS(3059), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym___global] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_union] = ACTIONS(3061), + [anon_sym_pub] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_STAR_EQ] = ACTIONS(3061), + [anon_sym_SLASH_EQ] = ACTIONS(3061), + [anon_sym_PERCENT_EQ] = ACTIONS(3061), + [anon_sym_LT_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_GT_EQ] = ACTIONS(3061), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3061), + [anon_sym_AMP_EQ] = ACTIONS(3061), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3061), + [anon_sym_PLUS_EQ] = ACTIONS(3061), + [anon_sym_DASH_EQ] = ACTIONS(3061), + [anon_sym_PIPE_EQ] = ACTIONS(3061), + [anon_sym_CARET_EQ] = ACTIONS(3061), + [anon_sym_COLON_EQ] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_defer] = ACTIONS(3061), + [anon_sym_goto] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_DOLLARfor] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3061), + [anon_sym_asm] = ACTIONS(3061), + [anon_sym_AT_LBRACK] = ACTIONS(3061), + [sym___double_quote] = ACTIONS(3061), + [sym___single_quote] = ACTIONS(3061), + [sym___c_double_quote] = ACTIONS(3061), + [sym___c_single_quote] = ACTIONS(3061), + [sym___r_double_quote] = ACTIONS(3061), + [sym___r_single_quote] = ACTIONS(3061), + }, + [567] = { + [sym__expression] = STATE(2555), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), + }, + [568] = { + [sym__expression] = STATE(2303), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [569] = { + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -96719,2720 +91541,3850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [616] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [570] = { + [sym__expression] = STATE(2556), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [617] = { - [sym__expression] = STATE(2856), - [sym__expression_without_blocks] = STATE(2156), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2156), - [sym_dec_expression] = STATE(2156), - [sym_or_block_expression] = STATE(2156), - [sym_option_propagation_expression] = STATE(2156), - [sym_result_propagation_expression] = STATE(2156), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2156), - [sym_spawn_expression] = STATE(2156), - [sym_parenthesized_expression] = STATE(2156), - [sym_call_expression] = STATE(2156), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2156), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2156), - [sym_receive_expression] = STATE(2156), - [sym_binary_expression] = STATE(2156), - [sym_as_type_cast_expression] = STATE(2156), - [sym__max_group] = STATE(2156), - [sym_literal] = STATE(2156), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2156), - [sym_fixed_array_creation] = STATE(2156), - [sym_selector_expression] = STATE(2156), - [sym_index_expression] = STATE(2156), - [sym_slice_expression] = STATE(2156), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2156), - [sym_not_is_expression] = STATE(2156), - [sym_in_expression] = STATE(2156), - [sym_not_in_expression] = STATE(2156), - [sym_enum_fetch] = STATE(2156), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [571] = { + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [618] = { - [sym__expression] = STATE(2786), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [572] = { + [sym__expression] = STATE(2557), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [619] = { - [sym__expression] = STATE(1786), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [573] = { + [sym__expression] = STATE(2585), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), - }, - [620] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [anon_sym_assert] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_DOLLARfor] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_POUND] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym_AT_LBRACK] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [621] = { - [sym__expression] = STATE(1794), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [574] = { + [sym__expression] = STATE(2587), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [622] = { - [sym__expression] = STATE(1807), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [575] = { + [sym__expression] = STATE(2588), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [623] = { - [sym__expression] = STATE(993), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [576] = { + [sym__expression] = STATE(2396), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [624] = { - [sym__expression] = STATE(2664), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [577] = { + [sym__expression] = STATE(2589), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [625] = { - [sym__expression] = STATE(1806), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [578] = { + [sym__expression] = STATE(2325), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [626] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_EQ] = ACTIONS(3187), - [anon_sym___global] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_union] = ACTIONS(3187), - [anon_sym_pub] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_STAR_EQ] = ACTIONS(3187), - [anon_sym_SLASH_EQ] = ACTIONS(3187), - [anon_sym_PERCENT_EQ] = ACTIONS(3187), - [anon_sym_LT_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_GT_EQ] = ACTIONS(3187), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3187), - [anon_sym_AMP_EQ] = ACTIONS(3187), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3187), - [anon_sym_PLUS_EQ] = ACTIONS(3187), - [anon_sym_DASH_EQ] = ACTIONS(3187), - [anon_sym_PIPE_EQ] = ACTIONS(3187), - [anon_sym_CARET_EQ] = ACTIONS(3187), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [anon_sym_assert] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_DOLLARfor] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_POUND] = ACTIONS(3187), - [anon_sym_asm] = ACTIONS(3187), - [anon_sym_AT_LBRACK] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [579] = { + [sym__expression] = STATE(2591), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [627] = { - [sym__expression] = STATE(2812), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [580] = { + [sym__expression] = STATE(2302), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [628] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [anon_sym_assert] = ACTIONS(3191), - [anon_sym_defer] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_DOLLARfor] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_POUND] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym_AT_LBRACK] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), + [581] = { + [sym__expression] = STATE(2271), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [629] = { - [sym__expression] = STATE(990), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [582] = { + [sym__expression] = STATE(2400), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [630] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2932), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2934), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [583] = { + [sym__expression] = STATE(2403), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [631] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_EQ] = ACTIONS(3195), - [anon_sym___global] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_pub] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_STAR_EQ] = ACTIONS(3195), - [anon_sym_SLASH_EQ] = ACTIONS(3195), - [anon_sym_PERCENT_EQ] = ACTIONS(3195), - [anon_sym_LT_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_GT_EQ] = ACTIONS(3195), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3195), - [anon_sym_AMP_EQ] = ACTIONS(3195), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3195), - [anon_sym_PLUS_EQ] = ACTIONS(3195), - [anon_sym_DASH_EQ] = ACTIONS(3195), - [anon_sym_PIPE_EQ] = ACTIONS(3195), - [anon_sym_CARET_EQ] = ACTIONS(3195), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_DOLLARfor] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_POUND] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym_AT_LBRACK] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), + [584] = { + [sym__expression] = STATE(2592), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [632] = { - [sym__expression] = STATE(2823), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [585] = { + [sym__expression] = STATE(2279), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [586] = { + [sym__expression] = STATE(2283), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [587] = { + [sym__expression] = STATE(2404), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [633] = { - [sym__expression] = STATE(2701), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [588] = { + [sym__expression] = STATE(2840), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [634] = { - [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), + [589] = { + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3083), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_CR] = ACTIONS(3083), + [anon_sym_CR_LF] = ACTIONS(3083), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_EQ] = ACTIONS(3199), - [anon_sym___global] = ACTIONS(3199), - [anon_sym_type] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_pub] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_STAR_EQ] = ACTIONS(3199), - [anon_sym_SLASH_EQ] = ACTIONS(3199), - [anon_sym_PERCENT_EQ] = ACTIONS(3199), - [anon_sym_LT_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_GT_EQ] = ACTIONS(3199), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3199), - [anon_sym_AMP_EQ] = ACTIONS(3199), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3199), - [anon_sym_PLUS_EQ] = ACTIONS(3199), - [anon_sym_DASH_EQ] = ACTIONS(3199), - [anon_sym_PIPE_EQ] = ACTIONS(3199), - [anon_sym_CARET_EQ] = ACTIONS(3199), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [anon_sym_assert] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_DOLLARfor] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym_AT_LBRACK] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [anon_sym_DOT] = ACTIONS(3083), + [anon_sym_as] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3083), + [anon_sym___global] = ACTIONS(3083), + [anon_sym_type] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3083), + [anon_sym_fn] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_SLASH] = ACTIONS(3083), + [anon_sym_PERCENT] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_LT_EQ] = ACTIONS(3083), + [anon_sym_GT_EQ] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_mut] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_interface] = ACTIONS(3083), + [anon_sym_PLUS_PLUS] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3083), + [anon_sym_QMARK] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3083), + [anon_sym_go] = ACTIONS(3083), + [anon_sym_spawn] = ACTIONS(3083), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3083), + [anon_sym_TILDE] = ACTIONS(3083), + [anon_sym_CARET] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_LT_DASH] = ACTIONS(3083), + [anon_sym_LT_LT] = ACTIONS(3083), + [anon_sym_GT_GT] = ACTIONS(3083), + [anon_sym_GT_GT_GT] = ACTIONS(3083), + [anon_sym_AMP_CARET] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3083), + [sym_none] = ACTIONS(3083), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [sym_nil] = ACTIONS(3083), + [anon_sym_QMARK_DOT] = ACTIONS(3083), + [anon_sym_POUND_LBRACK] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_DOLLARif] = ACTIONS(3083), + [anon_sym_is] = ACTIONS(3083), + [anon_sym_BANGis] = ACTIONS(3083), + [anon_sym_in] = ACTIONS(3083), + [anon_sym_BANGin] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_select] = ACTIONS(3083), + [anon_sym_STAR_EQ] = ACTIONS(3083), + [anon_sym_SLASH_EQ] = ACTIONS(3083), + [anon_sym_PERCENT_EQ] = ACTIONS(3083), + [anon_sym_LT_LT_EQ] = ACTIONS(3083), + [anon_sym_GT_GT_EQ] = ACTIONS(3083), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3083), + [anon_sym_AMP_EQ] = ACTIONS(3083), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3083), + [anon_sym_PLUS_EQ] = ACTIONS(3083), + [anon_sym_DASH_EQ] = ACTIONS(3083), + [anon_sym_PIPE_EQ] = ACTIONS(3083), + [anon_sym_CARET_EQ] = ACTIONS(3083), + [anon_sym_COLON_EQ] = ACTIONS(3083), + [anon_sym_lock] = ACTIONS(3083), + [anon_sym_rlock] = ACTIONS(3083), + [anon_sym_unsafe] = ACTIONS(3083), + [anon_sym_sql] = ACTIONS(3083), + [sym_int_literal] = ACTIONS(3083), + [sym_float_literal] = ACTIONS(3083), + [sym_rune_literal] = ACTIONS(3083), + [sym_pseudo_compile_time_identifier] = ACTIONS(3083), + [anon_sym_shared] = ACTIONS(3083), + [anon_sym_map_LBRACK] = ACTIONS(3083), + [anon_sym_chan] = ACTIONS(3083), + [anon_sym_thread] = ACTIONS(3083), + [anon_sym_atomic] = ACTIONS(3083), + [anon_sym_assert] = ACTIONS(3083), + [anon_sym_defer] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_DOLLARfor] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_POUND] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym_AT_LBRACK] = ACTIONS(3083), + [sym___double_quote] = ACTIONS(3083), + [sym___single_quote] = ACTIONS(3083), + [sym___c_double_quote] = ACTIONS(3083), + [sym___c_single_quote] = ACTIONS(3083), + [sym___r_double_quote] = ACTIONS(3083), + [sym___r_single_quote] = ACTIONS(3083), }, - [635] = { - [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), + [590] = { + [sym__expression] = STATE(2274), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [591] = { + [sym__expression] = STATE(2427), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), + }, + [592] = { + [sym__expression] = STATE(2294), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [593] = { + [sym__expression] = STATE(2158), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [594] = { + [sym__expression] = STATE(2292), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [595] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [596] = { + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3087), + [anon_sym_LF] = ACTIONS(3087), + [anon_sym_CR] = ACTIONS(3087), + [anon_sym_CR_LF] = ACTIONS(3087), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_EQ] = ACTIONS(3203), - [anon_sym___global] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_pub] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_STAR_EQ] = ACTIONS(3203), - [anon_sym_SLASH_EQ] = ACTIONS(3203), - [anon_sym_PERCENT_EQ] = ACTIONS(3203), - [anon_sym_LT_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_GT_EQ] = ACTIONS(3203), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3203), - [anon_sym_AMP_EQ] = ACTIONS(3203), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3203), - [anon_sym_PLUS_EQ] = ACTIONS(3203), - [anon_sym_DASH_EQ] = ACTIONS(3203), - [anon_sym_PIPE_EQ] = ACTIONS(3203), - [anon_sym_CARET_EQ] = ACTIONS(3203), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [anon_sym_assert] = ACTIONS(3203), - [anon_sym_defer] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_DOLLARfor] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_POUND] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym_AT_LBRACK] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [anon_sym_DOT] = ACTIONS(3087), + [anon_sym_as] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3087), + [anon_sym___global] = ACTIONS(3087), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_fn] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_GT] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3087), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_LT_EQ] = ACTIONS(3087), + [anon_sym_GT_EQ] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_pub] = ACTIONS(3087), + [anon_sym_mut] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_interface] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_go] = ACTIONS(3087), + [anon_sym_spawn] = ACTIONS(3087), + [anon_sym_json_DOTdecode] = ACTIONS(3087), + [anon_sym_LBRACK2] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_CARET] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3087), + [anon_sym_LT_LT] = ACTIONS(3087), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_GT_GT_GT] = ACTIONS(3087), + [anon_sym_AMP_CARET] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3087), + [sym_none] = ACTIONS(3087), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_nil] = ACTIONS(3087), + [anon_sym_QMARK_DOT] = ACTIONS(3087), + [anon_sym_POUND_LBRACK] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_DOLLARif] = ACTIONS(3087), + [anon_sym_is] = ACTIONS(3087), + [anon_sym_BANGis] = ACTIONS(3087), + [anon_sym_in] = ACTIONS(3087), + [anon_sym_BANGin] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(3087), + [anon_sym_select] = ACTIONS(3087), + [anon_sym_STAR_EQ] = ACTIONS(3087), + [anon_sym_SLASH_EQ] = ACTIONS(3087), + [anon_sym_PERCENT_EQ] = ACTIONS(3087), + [anon_sym_LT_LT_EQ] = ACTIONS(3087), + [anon_sym_GT_GT_EQ] = ACTIONS(3087), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3087), + [anon_sym_AMP_EQ] = ACTIONS(3087), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3087), + [anon_sym_PLUS_EQ] = ACTIONS(3087), + [anon_sym_DASH_EQ] = ACTIONS(3087), + [anon_sym_PIPE_EQ] = ACTIONS(3087), + [anon_sym_CARET_EQ] = ACTIONS(3087), + [anon_sym_COLON_EQ] = ACTIONS(3087), + [anon_sym_lock] = ACTIONS(3087), + [anon_sym_rlock] = ACTIONS(3087), + [anon_sym_unsafe] = ACTIONS(3087), + [anon_sym_sql] = ACTIONS(3087), + [sym_int_literal] = ACTIONS(3087), + [sym_float_literal] = ACTIONS(3087), + [sym_rune_literal] = ACTIONS(3087), + [sym_pseudo_compile_time_identifier] = ACTIONS(3087), + [anon_sym_shared] = ACTIONS(3087), + [anon_sym_map_LBRACK] = ACTIONS(3087), + [anon_sym_chan] = ACTIONS(3087), + [anon_sym_thread] = ACTIONS(3087), + [anon_sym_atomic] = ACTIONS(3087), + [anon_sym_assert] = ACTIONS(3087), + [anon_sym_defer] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_DOLLARfor] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_POUND] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym_AT_LBRACK] = ACTIONS(3087), + [sym___double_quote] = ACTIONS(3087), + [sym___single_quote] = ACTIONS(3087), + [sym___c_double_quote] = ACTIONS(3087), + [sym___c_single_quote] = ACTIONS(3087), + [sym___r_double_quote] = ACTIONS(3087), + [sym___r_single_quote] = ACTIONS(3087), }, - [636] = { - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [597] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(3634), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [637] = { - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), + [598] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(3661), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [599] = { + [sym__expression] = STATE(2600), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [600] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_CR] = ACTIONS(3091), + [anon_sym_CR_LF] = ACTIONS(3091), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_EQ] = ACTIONS(3207), - [anon_sym___global] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_EQ] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_pub] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3207), - [anon_sym_AMP_CARET] = ACTIONS(3207), - [anon_sym_AMP_AMP] = ACTIONS(3207), - [anon_sym_PIPE_PIPE] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_STAR_EQ] = ACTIONS(3207), - [anon_sym_SLASH_EQ] = ACTIONS(3207), - [anon_sym_PERCENT_EQ] = ACTIONS(3207), - [anon_sym_LT_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_GT_EQ] = ACTIONS(3207), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3207), - [anon_sym_AMP_EQ] = ACTIONS(3207), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3207), - [anon_sym_PLUS_EQ] = ACTIONS(3207), - [anon_sym_DASH_EQ] = ACTIONS(3207), - [anon_sym_PIPE_EQ] = ACTIONS(3207), - [anon_sym_CARET_EQ] = ACTIONS(3207), - [anon_sym_COLON_EQ] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [anon_sym_assert] = ACTIONS(3207), - [anon_sym_defer] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_DOLLARfor] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_POUND] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym_AT_LBRACK] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3207), - [sym___single_quote] = ACTIONS(3207), - [sym___c_double_quote] = ACTIONS(3207), - [sym___c_single_quote] = ACTIONS(3207), - [sym___r_double_quote] = ACTIONS(3207), - [sym___r_single_quote] = ACTIONS(3207), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_as] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3091), + [anon_sym___global] = ACTIONS(3091), + [anon_sym_type] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_fn] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_SLASH] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_pub] = ACTIONS(3091), + [anon_sym_mut] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_interface] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_go] = ACTIONS(3091), + [anon_sym_spawn] = ACTIONS(3091), + [anon_sym_json_DOTdecode] = ACTIONS(3091), + [anon_sym_LBRACK2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_CARET] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_GT_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_CARET] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_or] = ACTIONS(3091), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_QMARK_DOT] = ACTIONS(3091), + [anon_sym_POUND_LBRACK] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_DOLLARif] = ACTIONS(3091), + [anon_sym_is] = ACTIONS(3091), + [anon_sym_BANGis] = ACTIONS(3091), + [anon_sym_in] = ACTIONS(3091), + [anon_sym_BANGin] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_select] = ACTIONS(3091), + [anon_sym_STAR_EQ] = ACTIONS(3091), + [anon_sym_SLASH_EQ] = ACTIONS(3091), + [anon_sym_PERCENT_EQ] = ACTIONS(3091), + [anon_sym_LT_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_GT_EQ] = ACTIONS(3091), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3091), + [anon_sym_AMP_EQ] = ACTIONS(3091), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3091), + [anon_sym_PLUS_EQ] = ACTIONS(3091), + [anon_sym_DASH_EQ] = ACTIONS(3091), + [anon_sym_PIPE_EQ] = ACTIONS(3091), + [anon_sym_CARET_EQ] = ACTIONS(3091), + [anon_sym_COLON_EQ] = ACTIONS(3091), + [anon_sym_lock] = ACTIONS(3091), + [anon_sym_rlock] = ACTIONS(3091), + [anon_sym_unsafe] = ACTIONS(3091), + [anon_sym_sql] = ACTIONS(3091), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3091), + [sym_rune_literal] = ACTIONS(3091), + [sym_pseudo_compile_time_identifier] = ACTIONS(3091), + [anon_sym_shared] = ACTIONS(3091), + [anon_sym_map_LBRACK] = ACTIONS(3091), + [anon_sym_chan] = ACTIONS(3091), + [anon_sym_thread] = ACTIONS(3091), + [anon_sym_atomic] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_defer] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_DOLLARfor] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_POUND] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym_AT_LBRACK] = ACTIONS(3091), + [sym___double_quote] = ACTIONS(3091), + [sym___single_quote] = ACTIONS(3091), + [sym___c_double_quote] = ACTIONS(3091), + [sym___c_single_quote] = ACTIONS(3091), + [sym___r_double_quote] = ACTIONS(3091), + [sym___r_single_quote] = ACTIONS(3091), }, - [638] = { - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3211), - [anon_sym_LF] = ACTIONS(3211), - [anon_sym_CR] = ACTIONS(3211), - [anon_sym_CR_LF] = ACTIONS(3211), + [601] = { + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_CR] = ACTIONS(3095), + [anon_sym_CR_LF] = ACTIONS(3095), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_EQ] = ACTIONS(3211), - [anon_sym___global] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3211), - [anon_sym_BANG_EQ] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_pub] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3211), - [anon_sym_LT_LT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3211), - [anon_sym_AMP_CARET] = ACTIONS(3211), - [anon_sym_AMP_AMP] = ACTIONS(3211), - [anon_sym_PIPE_PIPE] = ACTIONS(3211), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3211), - [anon_sym_POUND_LBRACK] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_STAR_EQ] = ACTIONS(3211), - [anon_sym_SLASH_EQ] = ACTIONS(3211), - [anon_sym_PERCENT_EQ] = ACTIONS(3211), - [anon_sym_LT_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_GT_EQ] = ACTIONS(3211), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3211), - [anon_sym_AMP_EQ] = ACTIONS(3211), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3211), - [anon_sym_PLUS_EQ] = ACTIONS(3211), - [anon_sym_DASH_EQ] = ACTIONS(3211), - [anon_sym_PIPE_EQ] = ACTIONS(3211), - [anon_sym_CARET_EQ] = ACTIONS(3211), - [anon_sym_COLON_EQ] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [anon_sym_assert] = ACTIONS(3211), - [anon_sym_defer] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_DOLLARfor] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym_AT_LBRACK] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3211), - [sym___single_quote] = ACTIONS(3211), - [sym___c_double_quote] = ACTIONS(3211), - [sym___c_single_quote] = ACTIONS(3211), - [sym___r_double_quote] = ACTIONS(3211), - [sym___r_single_quote] = ACTIONS(3211), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_as] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3095), + [anon_sym___global] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_fn] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [anon_sym_LT_EQ] = ACTIONS(3095), + [anon_sym_GT_EQ] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_pub] = ACTIONS(3095), + [anon_sym_mut] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_interface] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_go] = ACTIONS(3095), + [anon_sym_spawn] = ACTIONS(3095), + [anon_sym_json_DOTdecode] = ACTIONS(3095), + [anon_sym_LBRACK2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_CARET] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_GT_GT_GT] = ACTIONS(3095), + [anon_sym_AMP_CARET] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_or] = ACTIONS(3095), + [sym_none] = ACTIONS(3095), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [sym_nil] = ACTIONS(3095), + [anon_sym_QMARK_DOT] = ACTIONS(3095), + [anon_sym_POUND_LBRACK] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_is] = ACTIONS(3095), + [anon_sym_BANGis] = ACTIONS(3095), + [anon_sym_in] = ACTIONS(3095), + [anon_sym_BANGin] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_select] = ACTIONS(3095), + [anon_sym_STAR_EQ] = ACTIONS(3095), + [anon_sym_SLASH_EQ] = ACTIONS(3095), + [anon_sym_PERCENT_EQ] = ACTIONS(3095), + [anon_sym_LT_LT_EQ] = ACTIONS(3095), + [anon_sym_GT_GT_EQ] = ACTIONS(3095), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3095), + [anon_sym_AMP_EQ] = ACTIONS(3095), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(3095), + [anon_sym_DASH_EQ] = ACTIONS(3095), + [anon_sym_PIPE_EQ] = ACTIONS(3095), + [anon_sym_CARET_EQ] = ACTIONS(3095), + [anon_sym_COLON_EQ] = ACTIONS(3095), + [anon_sym_lock] = ACTIONS(3095), + [anon_sym_rlock] = ACTIONS(3095), + [anon_sym_unsafe] = ACTIONS(3095), + [anon_sym_sql] = ACTIONS(3095), + [sym_int_literal] = ACTIONS(3095), + [sym_float_literal] = ACTIONS(3095), + [sym_rune_literal] = ACTIONS(3095), + [sym_pseudo_compile_time_identifier] = ACTIONS(3095), + [anon_sym_shared] = ACTIONS(3095), + [anon_sym_map_LBRACK] = ACTIONS(3095), + [anon_sym_chan] = ACTIONS(3095), + [anon_sym_thread] = ACTIONS(3095), + [anon_sym_atomic] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_defer] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_DOLLARfor] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_POUND] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym_AT_LBRACK] = ACTIONS(3095), + [sym___double_quote] = ACTIONS(3095), + [sym___single_quote] = ACTIONS(3095), + [sym___c_double_quote] = ACTIONS(3095), + [sym___c_single_quote] = ACTIONS(3095), + [sym___r_double_quote] = ACTIONS(3095), + [sym___r_single_quote] = ACTIONS(3095), }, - [639] = { - [sym__expression] = STATE(1160), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [602] = { + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LF] = ACTIONS(3099), + [anon_sym_CR] = ACTIONS(3099), + [anon_sym_CR_LF] = ACTIONS(3099), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3099), + [anon_sym_as] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_COMMA] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(3099), + [anon_sym___global] = ACTIONS(3099), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_fn] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_BANG_EQ] = ACTIONS(3099), + [anon_sym_LT_EQ] = ACTIONS(3099), + [anon_sym_GT_EQ] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_pub] = ACTIONS(3099), + [anon_sym_mut] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_interface] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_QMARK] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_go] = ACTIONS(3099), + [anon_sym_spawn] = ACTIONS(3099), + [anon_sym_json_DOTdecode] = ACTIONS(3099), + [anon_sym_LBRACK2] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_CARET] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_LT_DASH] = ACTIONS(3099), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(3099), + [anon_sym_GT_GT_GT] = ACTIONS(3099), + [anon_sym_AMP_CARET] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_PIPE_PIPE] = ACTIONS(3099), + [anon_sym_or] = ACTIONS(3099), + [sym_none] = ACTIONS(3099), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_nil] = ACTIONS(3099), + [anon_sym_QMARK_DOT] = ACTIONS(3099), + [anon_sym_POUND_LBRACK] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_DOLLARif] = ACTIONS(3099), + [anon_sym_is] = ACTIONS(3099), + [anon_sym_BANGis] = ACTIONS(3099), + [anon_sym_in] = ACTIONS(3099), + [anon_sym_BANGin] = ACTIONS(3099), + [anon_sym_match] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_STAR_EQ] = ACTIONS(3099), + [anon_sym_SLASH_EQ] = ACTIONS(3099), + [anon_sym_PERCENT_EQ] = ACTIONS(3099), + [anon_sym_LT_LT_EQ] = ACTIONS(3099), + [anon_sym_GT_GT_EQ] = ACTIONS(3099), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3099), + [anon_sym_AMP_EQ] = ACTIONS(3099), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3099), + [anon_sym_PLUS_EQ] = ACTIONS(3099), + [anon_sym_DASH_EQ] = ACTIONS(3099), + [anon_sym_PIPE_EQ] = ACTIONS(3099), + [anon_sym_CARET_EQ] = ACTIONS(3099), + [anon_sym_COLON_EQ] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_rlock] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_sql] = ACTIONS(3099), + [sym_int_literal] = ACTIONS(3099), + [sym_float_literal] = ACTIONS(3099), + [sym_rune_literal] = ACTIONS(3099), + [sym_pseudo_compile_time_identifier] = ACTIONS(3099), + [anon_sym_shared] = ACTIONS(3099), + [anon_sym_map_LBRACK] = ACTIONS(3099), + [anon_sym_chan] = ACTIONS(3099), + [anon_sym_thread] = ACTIONS(3099), + [anon_sym_atomic] = ACTIONS(3099), + [anon_sym_assert] = ACTIONS(3099), + [anon_sym_defer] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_DOLLARfor] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym_AT_LBRACK] = ACTIONS(3099), + [sym___double_quote] = ACTIONS(3099), + [sym___single_quote] = ACTIONS(3099), + [sym___c_double_quote] = ACTIONS(3099), + [sym___c_single_quote] = ACTIONS(3099), + [sym___r_double_quote] = ACTIONS(3099), + [sym___r_single_quote] = ACTIONS(3099), + }, + [603] = { + [sym__expression] = STATE(2601), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [640] = { - [ts_builtin_sym_end] = ACTIONS(3106), + [604] = { + [ts_builtin_sym_end] = ACTIONS(3101), [sym_identifier] = ACTIONS(3103), [anon_sym_LF] = ACTIONS(3103), [anon_sym_CR] = ACTIONS(3103), @@ -99460,7 +95412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG_EQ] = ACTIONS(3103), [anon_sym_LT_EQ] = ACTIONS(3103), [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_LBRACK] = ACTIONS(3101), [anon_sym_struct] = ACTIONS(3103), [anon_sym_union] = ACTIONS(3103), [anon_sym_pub] = ACTIONS(3103), @@ -99544,1427 +95496,1653 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3103), [sym___r_single_quote] = ACTIONS(3103), }, - [641] = { - [sym__expression] = STATE(2799), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [605] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(3654), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [642] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2968), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2970), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [606] = { + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [643] = { - [sym__expression] = STATE(2670), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [607] = { + [sym__expression] = STATE(2861), + [sym__expression_without_blocks] = STATE(2928), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2928), + [sym_dec_expression] = STATE(2928), + [sym_or_block_expression] = STATE(2928), + [sym_option_propagation_expression] = STATE(2928), + [sym_result_propagation_expression] = STATE(2928), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2928), + [sym_spawn_expression] = STATE(2928), + [sym_parenthesized_expression] = STATE(2928), + [sym_call_expression] = STATE(2928), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2928), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2928), + [sym_receive_expression] = STATE(2928), + [sym_binary_expression] = STATE(2928), + [sym_as_type_cast_expression] = STATE(2928), + [sym__max_group] = STATE(2928), + [sym_literal] = STATE(2928), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2928), + [sym_fixed_array_creation] = STATE(2928), + [sym_selector_expression] = STATE(2928), + [sym_index_expression] = STATE(2928), + [sym_slice_expression] = STATE(2928), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2928), + [sym_not_is_expression] = STATE(2928), + [sym_in_expression] = STATE(2928), + [sym_not_in_expression] = STATE(2928), + [sym_enum_fetch] = STATE(2928), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3105), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [644] = { - [ts_builtin_sym_end] = ACTIONS(3096), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(495), - [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(3096), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [608] = { + [sym__expression] = STATE(2451), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [645] = { - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3215), - [anon_sym_LF] = ACTIONS(3215), - [anon_sym_CR] = ACTIONS(3215), - [anon_sym_CR_LF] = ACTIONS(3215), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_EQ] = ACTIONS(3215), - [anon_sym___global] = ACTIONS(3215), - [anon_sym_type] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_pub] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_interface] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3215), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3215), - [anon_sym_AMP_CARET] = ACTIONS(3215), - [anon_sym_AMP_AMP] = ACTIONS(3215), - [anon_sym_PIPE_PIPE] = ACTIONS(3215), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3215), - [anon_sym_POUND_LBRACK] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3215), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_STAR_EQ] = ACTIONS(3215), - [anon_sym_SLASH_EQ] = ACTIONS(3215), - [anon_sym_PERCENT_EQ] = ACTIONS(3215), - [anon_sym_LT_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_GT_EQ] = ACTIONS(3215), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3215), - [anon_sym_AMP_EQ] = ACTIONS(3215), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3215), - [anon_sym_PLUS_EQ] = ACTIONS(3215), - [anon_sym_DASH_EQ] = ACTIONS(3215), - [anon_sym_PIPE_EQ] = ACTIONS(3215), - [anon_sym_CARET_EQ] = ACTIONS(3215), - [anon_sym_COLON_EQ] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [anon_sym_assert] = ACTIONS(3215), - [anon_sym_defer] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_DOLLARfor] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym_AT_LBRACK] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3215), - [sym___single_quote] = ACTIONS(3215), - [sym___c_double_quote] = ACTIONS(3215), - [sym___c_single_quote] = ACTIONS(3215), - [sym___r_double_quote] = ACTIONS(3215), - [sym___r_single_quote] = ACTIONS(3215), + [609] = { + [sym__expression] = STATE(2358), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [646] = { - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [610] = { + [sym__expression] = STATE(2359), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [647] = { - [sym__expression] = STATE(2864), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [611] = { + [sym__expression] = STATE(2362), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [648] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2946), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2958), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [612] = { + [sym__expression] = STATE(2332), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [649] = { - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [613] = { + [sym__expression] = STATE(2365), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [650] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_EQ] = ACTIONS(3219), - [anon_sym___global] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_pub] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3219), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3219), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_CARET] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_STAR_EQ] = ACTIONS(3219), - [anon_sym_SLASH_EQ] = ACTIONS(3219), - [anon_sym_PERCENT_EQ] = ACTIONS(3219), - [anon_sym_LT_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_GT_EQ] = ACTIONS(3219), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3219), - [anon_sym_AMP_EQ] = ACTIONS(3219), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3219), - [anon_sym_PLUS_EQ] = ACTIONS(3219), - [anon_sym_DASH_EQ] = ACTIONS(3219), - [anon_sym_PIPE_EQ] = ACTIONS(3219), - [anon_sym_CARET_EQ] = ACTIONS(3219), - [anon_sym_COLON_EQ] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3219), - [sym_rune_literal] = ACTIONS(3219), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_defer] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_DOLLARfor] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym_AT_LBRACK] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3219), - [sym___single_quote] = ACTIONS(3219), - [sym___c_double_quote] = ACTIONS(3219), - [sym___c_single_quote] = ACTIONS(3219), - [sym___r_double_quote] = ACTIONS(3219), - [sym___r_single_quote] = ACTIONS(3219), + [614] = { + [sym__expression] = STATE(2325), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [651] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LF] = ACTIONS(3223), - [anon_sym_CR] = ACTIONS(3223), - [anon_sym_CR_LF] = ACTIONS(3223), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_EQ] = ACTIONS(3223), - [anon_sym___global] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_EQ] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_pub] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3223), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3223), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3223), - [anon_sym_AMP_CARET] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3223), - [anon_sym_POUND_LBRACK] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3223), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_STAR_EQ] = ACTIONS(3223), - [anon_sym_SLASH_EQ] = ACTIONS(3223), - [anon_sym_PERCENT_EQ] = ACTIONS(3223), - [anon_sym_LT_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_GT_EQ] = ACTIONS(3223), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3223), - [anon_sym_AMP_EQ] = ACTIONS(3223), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3223), - [anon_sym_PLUS_EQ] = ACTIONS(3223), - [anon_sym_DASH_EQ] = ACTIONS(3223), - [anon_sym_PIPE_EQ] = ACTIONS(3223), - [anon_sym_CARET_EQ] = ACTIONS(3223), - [anon_sym_COLON_EQ] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3223), - [sym_rune_literal] = ACTIONS(3223), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3223), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_defer] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_DOLLARfor] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_POUND] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym_AT_LBRACK] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3223), - [sym___single_quote] = ACTIONS(3223), - [sym___c_double_quote] = ACTIONS(3223), - [sym___c_single_quote] = ACTIONS(3223), - [sym___r_double_quote] = ACTIONS(3223), - [sym___r_single_quote] = ACTIONS(3223), + [615] = { + [sym__expression] = STATE(2367), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [652] = { - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [616] = { + [sym__expression] = STATE(2305), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [617] = { + [sym__expression] = STATE(2865), + [sym__expression_without_blocks] = STATE(2160), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2160), + [sym_dec_expression] = STATE(2160), + [sym_or_block_expression] = STATE(2160), + [sym_option_propagation_expression] = STATE(2160), + [sym_result_propagation_expression] = STATE(2160), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2160), + [sym_spawn_expression] = STATE(2160), + [sym_parenthesized_expression] = STATE(2160), + [sym_call_expression] = STATE(2160), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2160), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2160), + [sym_receive_expression] = STATE(2160), + [sym_binary_expression] = STATE(2160), + [sym_as_type_cast_expression] = STATE(2160), + [sym__max_group] = STATE(2160), + [sym_literal] = STATE(2160), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2160), + [sym_fixed_array_creation] = STATE(2160), + [sym_selector_expression] = STATE(2160), + [sym_index_expression] = STATE(2160), + [sym_slice_expression] = STATE(2160), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2160), + [sym_not_is_expression] = STATE(2160), + [sym_in_expression] = STATE(2160), + [sym_not_in_expression] = STATE(2160), + [sym_enum_fetch] = STATE(2160), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(3125), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [653] = { - [sym__expression] = STATE(1136), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [618] = { + [sym__expression] = STATE(2297), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [619] = { + [sym__expression] = STATE(1147), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -101013,410 +97191,1201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [654] = { - [ts_builtin_sym_end] = ACTIONS(3225), - [sym_identifier] = ACTIONS(3227), - [anon_sym_LF] = ACTIONS(3227), - [anon_sym_CR] = ACTIONS(3227), - [anon_sym_CR_LF] = ACTIONS(3227), + [620] = { + [ts_builtin_sym_end] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3129), + [anon_sym_LF] = ACTIONS(3129), + [anon_sym_CR] = ACTIONS(3129), + [anon_sym_CR_LF] = ACTIONS(3129), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_EQ] = ACTIONS(3227), - [anon_sym___global] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_EQ] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_union] = ACTIONS(3227), - [anon_sym_pub] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3227), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3227), - [anon_sym_AMP_CARET] = ACTIONS(3227), - [anon_sym_AMP_AMP] = ACTIONS(3227), - [anon_sym_PIPE_PIPE] = ACTIONS(3227), - [anon_sym_or] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3227), - [anon_sym_POUND_LBRACK] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3227), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), - [anon_sym_STAR_EQ] = ACTIONS(3227), - [anon_sym_SLASH_EQ] = ACTIONS(3227), - [anon_sym_PERCENT_EQ] = ACTIONS(3227), - [anon_sym_LT_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_GT_EQ] = ACTIONS(3227), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3227), - [anon_sym_AMP_EQ] = ACTIONS(3227), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3227), - [anon_sym_PLUS_EQ] = ACTIONS(3227), - [anon_sym_DASH_EQ] = ACTIONS(3227), - [anon_sym_PIPE_EQ] = ACTIONS(3227), - [anon_sym_CARET_EQ] = ACTIONS(3227), - [anon_sym_COLON_EQ] = ACTIONS(3227), - [anon_sym_lock] = ACTIONS(3227), - [anon_sym_rlock] = ACTIONS(3227), - [anon_sym_unsafe] = ACTIONS(3227), - [anon_sym_sql] = ACTIONS(3227), - [sym_int_literal] = ACTIONS(3227), - [sym_float_literal] = ACTIONS(3227), - [sym_rune_literal] = ACTIONS(3227), - [sym_pseudo_compile_time_identifier] = ACTIONS(3227), - [anon_sym_shared] = ACTIONS(3227), - [anon_sym_map_LBRACK] = ACTIONS(3227), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3227), - [anon_sym_atomic] = ACTIONS(3227), - [anon_sym_assert] = ACTIONS(3227), - [anon_sym_defer] = ACTIONS(3227), - [anon_sym_goto] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_DOLLARfor] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_POUND] = ACTIONS(3227), - [anon_sym_asm] = ACTIONS(3227), - [anon_sym_AT_LBRACK] = ACTIONS(3227), - [sym___double_quote] = ACTIONS(3227), - [sym___single_quote] = ACTIONS(3227), - [sym___c_double_quote] = ACTIONS(3227), - [sym___c_single_quote] = ACTIONS(3227), - [sym___r_double_quote] = ACTIONS(3227), - [sym___r_single_quote] = ACTIONS(3227), + [anon_sym_DOT] = ACTIONS(3129), + [anon_sym_as] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_const] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym___global] = ACTIONS(3129), + [anon_sym_type] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_PERCENT] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3129), + [anon_sym_EQ_EQ] = ACTIONS(3129), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_LT_EQ] = ACTIONS(3129), + [anon_sym_GT_EQ] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3129), + [anon_sym_union] = ACTIONS(3129), + [anon_sym_pub] = ACTIONS(3129), + [anon_sym_mut] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_QMARK] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_go] = ACTIONS(3129), + [anon_sym_spawn] = ACTIONS(3129), + [anon_sym_json_DOTdecode] = ACTIONS(3129), + [anon_sym_LBRACK2] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_CARET] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_LT_DASH] = ACTIONS(3129), + [anon_sym_LT_LT] = ACTIONS(3129), + [anon_sym_GT_GT] = ACTIONS(3129), + [anon_sym_GT_GT_GT] = ACTIONS(3129), + [anon_sym_AMP_CARET] = ACTIONS(3129), + [anon_sym_AMP_AMP] = ACTIONS(3129), + [anon_sym_PIPE_PIPE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3129), + [sym_none] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_nil] = ACTIONS(3129), + [anon_sym_QMARK_DOT] = ACTIONS(3129), + [anon_sym_POUND_LBRACK] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_DOLLARif] = ACTIONS(3129), + [anon_sym_is] = ACTIONS(3129), + [anon_sym_BANGis] = ACTIONS(3129), + [anon_sym_in] = ACTIONS(3129), + [anon_sym_BANGin] = ACTIONS(3129), + [anon_sym_match] = ACTIONS(3129), + [anon_sym_select] = ACTIONS(3129), + [anon_sym_STAR_EQ] = ACTIONS(3129), + [anon_sym_SLASH_EQ] = ACTIONS(3129), + [anon_sym_PERCENT_EQ] = ACTIONS(3129), + [anon_sym_LT_LT_EQ] = ACTIONS(3129), + [anon_sym_GT_GT_EQ] = ACTIONS(3129), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3129), + [anon_sym_AMP_EQ] = ACTIONS(3129), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3129), + [anon_sym_PLUS_EQ] = ACTIONS(3129), + [anon_sym_DASH_EQ] = ACTIONS(3129), + [anon_sym_PIPE_EQ] = ACTIONS(3129), + [anon_sym_CARET_EQ] = ACTIONS(3129), + [anon_sym_COLON_EQ] = ACTIONS(3129), + [anon_sym_lock] = ACTIONS(3129), + [anon_sym_rlock] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(3129), + [anon_sym_sql] = ACTIONS(3129), + [sym_int_literal] = ACTIONS(3129), + [sym_float_literal] = ACTIONS(3129), + [sym_rune_literal] = ACTIONS(3129), + [sym_pseudo_compile_time_identifier] = ACTIONS(3129), + [anon_sym_shared] = ACTIONS(3129), + [anon_sym_map_LBRACK] = ACTIONS(3129), + [anon_sym_chan] = ACTIONS(3129), + [anon_sym_thread] = ACTIONS(3129), + [anon_sym_atomic] = ACTIONS(3129), + [anon_sym_assert] = ACTIONS(3129), + [anon_sym_defer] = ACTIONS(3129), + [anon_sym_goto] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_DOLLARfor] = ACTIONS(3129), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_POUND] = ACTIONS(3129), + [anon_sym_asm] = ACTIONS(3129), + [anon_sym_AT_LBRACK] = ACTIONS(3129), + [sym___double_quote] = ACTIONS(3129), + [sym___single_quote] = ACTIONS(3129), + [sym___c_double_quote] = ACTIONS(3129), + [sym___c_single_quote] = ACTIONS(3129), + [sym___r_double_quote] = ACTIONS(3129), + [sym___r_single_quote] = ACTIONS(3129), }, - [655] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2992), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2993), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [621] = { + [sym__expression] = STATE(2412), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [656] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3627), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [622] = { + [sym__expression] = STATE(2299), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [657] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [623] = { + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_CR] = ACTIONS(3133), + [anon_sym_CR_LF] = ACTIONS(3133), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym_EQ] = 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_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_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), + [sym_rune_literal] = ACTIONS(3133), + [sym_pseudo_compile_time_identifier] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3133), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_defer] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_DOLLARfor] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3133), + [anon_sym_asm] = ACTIONS(3133), + [anon_sym_AT_LBRACK] = ACTIONS(3133), + [sym___double_quote] = ACTIONS(3133), + [sym___single_quote] = ACTIONS(3133), + [sym___c_double_quote] = ACTIONS(3133), + [sym___c_single_quote] = ACTIONS(3133), + [sym___r_double_quote] = ACTIONS(3133), + [sym___r_single_quote] = ACTIONS(3133), + }, + [624] = { + [sym__expression] = STATE(2300), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [625] = { + [sym__expression] = STATE(241), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), + }, + [626] = { + [sym__expression] = STATE(986), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), + }, + [627] = { + [sym__expression] = STATE(1647), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), + }, + [628] = { + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3141), + [anon_sym_LF] = ACTIONS(3141), + [anon_sym_CR] = ACTIONS(3141), + [anon_sym_CR_LF] = ACTIONS(3141), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_EQ] = 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_STAR_EQ] = ACTIONS(3141), + [anon_sym_SLASH_EQ] = ACTIONS(3141), + [anon_sym_PERCENT_EQ] = ACTIONS(3141), + [anon_sym_LT_LT_EQ] = ACTIONS(3141), + [anon_sym_GT_GT_EQ] = ACTIONS(3141), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3141), + [anon_sym_AMP_EQ] = ACTIONS(3141), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3141), + [anon_sym_PLUS_EQ] = ACTIONS(3141), + [anon_sym_DASH_EQ] = ACTIONS(3141), + [anon_sym_PIPE_EQ] = ACTIONS(3141), + [anon_sym_CARET_EQ] = ACTIONS(3141), + [anon_sym_COLON_EQ] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), + [sym_rune_literal] = ACTIONS(3141), + [sym_pseudo_compile_time_identifier] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3141), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_defer] = ACTIONS(3141), + [anon_sym_goto] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_DOLLARfor] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_POUND] = ACTIONS(3141), + [anon_sym_asm] = ACTIONS(3141), + [anon_sym_AT_LBRACK] = ACTIONS(3141), + [sym___double_quote] = ACTIONS(3141), + [sym___single_quote] = ACTIONS(3141), + [sym___c_double_quote] = ACTIONS(3141), + [sym___c_single_quote] = ACTIONS(3141), + [sym___r_double_quote] = ACTIONS(3141), + [sym___r_single_quote] = ACTIONS(3141), + }, + [629] = { + [sym__expression] = STATE(1003), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), + }, + [630] = { + [sym__expression] = STATE(1142), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -101465,71 +98434,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [658] = { - [sym__expression] = STATE(1131), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [631] = { + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_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), + [sym_pseudo_compile_time_identifier] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_defer] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_DOLLARfor] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3145), + [anon_sym_asm] = ACTIONS(3145), + [anon_sym_AT_LBRACK] = ACTIONS(3145), + [sym___double_quote] = ACTIONS(3145), + [sym___single_quote] = ACTIONS(3145), + [sym___c_double_quote] = ACTIONS(3145), + [sym___c_single_quote] = ACTIONS(3145), + [sym___r_double_quote] = ACTIONS(3145), + [sym___r_single_quote] = ACTIONS(3145), + }, + [632] = { + [sym__expression] = STATE(1140), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -101578,410 +98660,184 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [659] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [anon_sym_LF] = ACTIONS(3231), - [anon_sym_CR] = ACTIONS(3231), - [anon_sym_CR_LF] = ACTIONS(3231), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_EQ] = ACTIONS(3231), - [anon_sym___global] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_pub] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3231), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3231), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3231), - [anon_sym_AMP_CARET] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3231), - [anon_sym_POUND_LBRACK] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3231), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_STAR_EQ] = ACTIONS(3231), - [anon_sym_SLASH_EQ] = ACTIONS(3231), - [anon_sym_PERCENT_EQ] = ACTIONS(3231), - [anon_sym_LT_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_GT_EQ] = ACTIONS(3231), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3231), - [anon_sym_AMP_EQ] = ACTIONS(3231), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3231), - [anon_sym_PLUS_EQ] = ACTIONS(3231), - [anon_sym_DASH_EQ] = ACTIONS(3231), - [anon_sym_PIPE_EQ] = ACTIONS(3231), - [anon_sym_CARET_EQ] = ACTIONS(3231), - [anon_sym_COLON_EQ] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3231), - [sym_rune_literal] = ACTIONS(3231), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3231), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_defer] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_DOLLARfor] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_POUND] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym_AT_LBRACK] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3231), - [sym___single_quote] = ACTIONS(3231), - [sym___c_double_quote] = ACTIONS(3231), - [sym___c_single_quote] = ACTIONS(3231), - [sym___r_double_quote] = ACTIONS(3231), - [sym___r_single_quote] = ACTIONS(3231), - }, - [660] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3625), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [661] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [633] = { + [sym__expression] = STATE(1641), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [662] = { - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [634] = { + [sym__expression] = STATE(1139), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(627), [anon_sym_LBRACE] = ACTIONS(629), @@ -102030,2108 +98886,978 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(693), [sym___r_single_quote] = ACTIONS(695), }, - [663] = { - [sym__expression] = STATE(2673), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [635] = { + [sym__expression] = STATE(1004), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [664] = { - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [636] = { + [sym__expression] = STATE(1005), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [665] = { - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [anon_sym_LF] = ACTIONS(3235), - [anon_sym_CR] = ACTIONS(3235), - [anon_sym_CR_LF] = ACTIONS(3235), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_EQ] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_EQ] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_pub] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3235), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3235), - [anon_sym_AMP_CARET] = ACTIONS(3235), - [anon_sym_AMP_AMP] = ACTIONS(3235), - [anon_sym_PIPE_PIPE] = ACTIONS(3235), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_STAR_EQ] = ACTIONS(3235), - [anon_sym_SLASH_EQ] = ACTIONS(3235), - [anon_sym_PERCENT_EQ] = ACTIONS(3235), - [anon_sym_LT_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_GT_EQ] = ACTIONS(3235), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3235), - [anon_sym_AMP_EQ] = ACTIONS(3235), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3235), - [anon_sym_PLUS_EQ] = ACTIONS(3235), - [anon_sym_DASH_EQ] = ACTIONS(3235), - [anon_sym_PIPE_EQ] = ACTIONS(3235), - [anon_sym_CARET_EQ] = ACTIONS(3235), - [anon_sym_COLON_EQ] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_defer] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_DOLLARfor] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_POUND] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym_AT_LBRACK] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3235), - [sym___single_quote] = ACTIONS(3235), - [sym___c_double_quote] = ACTIONS(3235), - [sym___c_single_quote] = ACTIONS(3235), - [sym___r_double_quote] = ACTIONS(3235), - [sym___r_single_quote] = ACTIONS(3235), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [666] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3239), - [anon_sym___global] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_pub] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_STAR_EQ] = ACTIONS(3239), - [anon_sym_SLASH_EQ] = ACTIONS(3239), - [anon_sym_PERCENT_EQ] = ACTIONS(3239), - [anon_sym_LT_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_GT_EQ] = ACTIONS(3239), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3239), - [anon_sym_AMP_EQ] = ACTIONS(3239), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3239), - [anon_sym_PLUS_EQ] = ACTIONS(3239), - [anon_sym_DASH_EQ] = ACTIONS(3239), - [anon_sym_PIPE_EQ] = ACTIONS(3239), - [anon_sym_CARET_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_defer] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_DOLLARfor] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym_AT_LBRACK] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), - }, - [667] = { - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3243), - [anon_sym_LF] = ACTIONS(3243), - [anon_sym_CR] = ACTIONS(3243), - [anon_sym_CR_LF] = ACTIONS(3243), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_EQ] = ACTIONS(3243), - [anon_sym___global] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3243), - [anon_sym_BANG_EQ] = ACTIONS(3243), - [anon_sym_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_EQ] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_pub] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3243), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3243), - [anon_sym_LT_LT] = ACTIONS(3243), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3243), - [anon_sym_AMP_CARET] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_PIPE_PIPE] = ACTIONS(3243), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3243), - [anon_sym_POUND_LBRACK] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3243), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_STAR_EQ] = ACTIONS(3243), - [anon_sym_SLASH_EQ] = ACTIONS(3243), - [anon_sym_PERCENT_EQ] = ACTIONS(3243), - [anon_sym_LT_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_GT_EQ] = ACTIONS(3243), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3243), - [anon_sym_AMP_EQ] = ACTIONS(3243), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3243), - [anon_sym_PLUS_EQ] = ACTIONS(3243), - [anon_sym_DASH_EQ] = ACTIONS(3243), - [anon_sym_PIPE_EQ] = ACTIONS(3243), - [anon_sym_CARET_EQ] = ACTIONS(3243), - [anon_sym_COLON_EQ] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3243), - [sym_rune_literal] = ACTIONS(3243), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3243), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [anon_sym_assert] = ACTIONS(3243), - [anon_sym_defer] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_DOLLARfor] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_POUND] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym_AT_LBRACK] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3243), - [sym___single_quote] = ACTIONS(3243), - [sym___c_double_quote] = ACTIONS(3243), - [sym___c_single_quote] = ACTIONS(3243), - [sym___r_double_quote] = ACTIONS(3243), - [sym___r_single_quote] = ACTIONS(3243), - }, - [668] = { - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym___global] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_pub] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_CARET] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_PIPE_PIPE] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_STAR_EQ] = ACTIONS(3247), - [anon_sym_SLASH_EQ] = ACTIONS(3247), - [anon_sym_PERCENT_EQ] = ACTIONS(3247), - [anon_sym_LT_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_GT_EQ] = ACTIONS(3247), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3247), - [anon_sym_AMP_EQ] = ACTIONS(3247), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3247), - [anon_sym_PLUS_EQ] = ACTIONS(3247), - [anon_sym_DASH_EQ] = ACTIONS(3247), - [anon_sym_PIPE_EQ] = ACTIONS(3247), - [anon_sym_CARET_EQ] = ACTIONS(3247), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [anon_sym_assert] = ACTIONS(3247), - [anon_sym_defer] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_DOLLARfor] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_POUND] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym_AT_LBRACK] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3247), - [sym___single_quote] = ACTIONS(3247), - [sym___c_double_quote] = ACTIONS(3247), - [sym___c_single_quote] = ACTIONS(3247), - [sym___r_double_quote] = ACTIONS(3247), - [sym___r_single_quote] = ACTIONS(3247), - }, - [669] = { - [sym__expression] = STATE(2772), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [670] = { - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3251), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_CR] = ACTIONS(3251), - [anon_sym_CR_LF] = ACTIONS(3251), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_COMMA] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_EQ] = ACTIONS(3251), - [anon_sym___global] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3251), - [anon_sym_BANG_EQ] = ACTIONS(3251), - [anon_sym_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_EQ] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_pub] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3251), - [anon_sym_LT_LT] = ACTIONS(3251), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3251), - [anon_sym_AMP_CARET] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_PIPE_PIPE] = ACTIONS(3251), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3251), - [anon_sym_POUND_LBRACK] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3251), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_STAR_EQ] = ACTIONS(3251), - [anon_sym_SLASH_EQ] = ACTIONS(3251), - [anon_sym_PERCENT_EQ] = ACTIONS(3251), - [anon_sym_LT_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_GT_EQ] = ACTIONS(3251), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3251), - [anon_sym_AMP_EQ] = ACTIONS(3251), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3251), - [anon_sym_PLUS_EQ] = ACTIONS(3251), - [anon_sym_DASH_EQ] = ACTIONS(3251), - [anon_sym_PIPE_EQ] = ACTIONS(3251), - [anon_sym_CARET_EQ] = ACTIONS(3251), - [anon_sym_COLON_EQ] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [anon_sym_assert] = ACTIONS(3251), - [anon_sym_defer] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_DOLLARfor] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_POUND] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym_AT_LBRACK] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3251), - [sym___single_quote] = ACTIONS(3251), - [sym___c_double_quote] = ACTIONS(3251), - [sym___c_single_quote] = ACTIONS(3251), - [sym___r_double_quote] = ACTIONS(3251), - [sym___r_single_quote] = ACTIONS(3251), - }, - [671] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2994), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2967), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [637] = { + [sym__expression] = STATE(993), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [672] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [638] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3661), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [673] = { - [sym__expression] = STATE(2796), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [639] = { + [sym__expression] = STATE(1001), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [674] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4308), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [640] = { + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(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), - }, - [675] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(3103), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3106), - [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(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_STAR_EQ] = ACTIONS(3103), - [anon_sym_SLASH_EQ] = ACTIONS(3103), - [anon_sym_PERCENT_EQ] = ACTIONS(3103), - [anon_sym_LT_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_GT_EQ] = ACTIONS(3103), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3103), - [anon_sym_AMP_EQ] = ACTIONS(3103), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3103), - [anon_sym_PLUS_EQ] = ACTIONS(3103), - [anon_sym_DASH_EQ] = ACTIONS(3103), - [anon_sym_PIPE_EQ] = ACTIONS(3103), - [anon_sym_CARET_EQ] = ACTIONS(3103), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [676] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_CR] = ACTIONS(3091), - [anon_sym_CR_LF] = ACTIONS(3091), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym___global] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3091), - [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(3096), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_pub] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_interface] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3091), - [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(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [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(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), - [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_defer] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_DOLLARfor] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym_AT_LBRACK] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), - }, - [677] = { - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3255), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_CR] = ACTIONS(3255), - [anon_sym_CR_LF] = ACTIONS(3255), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_EQ] = ACTIONS(3255), - [anon_sym___global] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3255), - [anon_sym_BANG_EQ] = ACTIONS(3255), - [anon_sym_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_EQ] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_pub] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3255), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3255), - [anon_sym_LT_LT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3255), - [anon_sym_AMP_CARET] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3255), - [anon_sym_POUND_LBRACK] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3255), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_STAR_EQ] = ACTIONS(3255), - [anon_sym_SLASH_EQ] = ACTIONS(3255), - [anon_sym_PERCENT_EQ] = ACTIONS(3255), - [anon_sym_LT_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_GT_EQ] = ACTIONS(3255), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3255), - [anon_sym_AMP_EQ] = ACTIONS(3255), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3255), - [anon_sym_PLUS_EQ] = ACTIONS(3255), - [anon_sym_DASH_EQ] = ACTIONS(3255), - [anon_sym_PIPE_EQ] = ACTIONS(3255), - [anon_sym_CARET_EQ] = ACTIONS(3255), - [anon_sym_COLON_EQ] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3255), - [sym_rune_literal] = ACTIONS(3255), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3255), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [anon_sym_assert] = ACTIONS(3255), - [anon_sym_defer] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_DOLLARfor] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_POUND] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym_AT_LBRACK] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3255), - [sym___single_quote] = ACTIONS(3255), - [sym___c_double_quote] = ACTIONS(3255), - [sym___c_single_quote] = ACTIONS(3255), - [sym___r_double_quote] = ACTIONS(3255), - [sym___r_single_quote] = ACTIONS(3255), - }, - [678] = { - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LF] = ACTIONS(3259), - [anon_sym_CR] = ACTIONS(3259), - [anon_sym_CR_LF] = ACTIONS(3259), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_EQ] = ACTIONS(3259), - [anon_sym___global] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3259), - [anon_sym_BANG_EQ] = ACTIONS(3259), - [anon_sym_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_EQ] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_pub] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3259), - [anon_sym_LT_LT] = ACTIONS(3259), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3259), - [anon_sym_AMP_CARET] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_PIPE_PIPE] = ACTIONS(3259), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3259), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3259), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_STAR_EQ] = ACTIONS(3259), - [anon_sym_SLASH_EQ] = ACTIONS(3259), - [anon_sym_PERCENT_EQ] = ACTIONS(3259), - [anon_sym_LT_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_GT_EQ] = ACTIONS(3259), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3259), - [anon_sym_AMP_EQ] = ACTIONS(3259), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3259), - [anon_sym_PLUS_EQ] = ACTIONS(3259), - [anon_sym_DASH_EQ] = ACTIONS(3259), - [anon_sym_PIPE_EQ] = ACTIONS(3259), - [anon_sym_CARET_EQ] = ACTIONS(3259), - [anon_sym_COLON_EQ] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [anon_sym_assert] = ACTIONS(3259), - [anon_sym_defer] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_DOLLARfor] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_POUND] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym_AT_LBRACK] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3259), - [sym___single_quote] = ACTIONS(3259), - [sym___c_double_quote] = ACTIONS(3259), - [sym___c_single_quote] = ACTIONS(3259), - [sym___r_double_quote] = ACTIONS(3259), - [sym___r_single_quote] = ACTIONS(3259), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [679] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4278), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [641] = { + [sym__expression] = STATE(1000), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [680] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [642] = { + [sym__expression] = STATE(2463), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [681] = { - [sym__expression] = STATE(1647), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [643] = { + [sym__expression] = STATE(1651), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_LBRACE] = ACTIONS(3137), [anon_sym_LPAREN] = ACTIONS(313), [anon_sym_fn] = ACTIONS(315), [anon_sym_PLUS] = ACTIONS(317), @@ -104177,2238 +99903,3368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(385), [sym___r_single_quote] = ACTIONS(387), }, - [682] = { - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3263), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_CR] = ACTIONS(3263), - [anon_sym_CR_LF] = ACTIONS(3263), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_EQ] = ACTIONS(3263), - [anon_sym___global] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3263), - [anon_sym_BANG_EQ] = ACTIONS(3263), - [anon_sym_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_EQ] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_pub] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3263), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3263), - [anon_sym_LT_LT] = ACTIONS(3263), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3263), - [anon_sym_AMP_CARET] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3263), - [anon_sym_POUND_LBRACK] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3263), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_STAR_EQ] = ACTIONS(3263), - [anon_sym_SLASH_EQ] = ACTIONS(3263), - [anon_sym_PERCENT_EQ] = ACTIONS(3263), - [anon_sym_LT_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_GT_EQ] = ACTIONS(3263), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3263), - [anon_sym_AMP_EQ] = ACTIONS(3263), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3263), - [anon_sym_PLUS_EQ] = ACTIONS(3263), - [anon_sym_DASH_EQ] = ACTIONS(3263), - [anon_sym_PIPE_EQ] = ACTIONS(3263), - [anon_sym_CARET_EQ] = ACTIONS(3263), - [anon_sym_COLON_EQ] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3263), - [sym_rune_literal] = ACTIONS(3263), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3263), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [anon_sym_assert] = ACTIONS(3263), - [anon_sym_defer] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_DOLLARfor] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_POUND] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym_AT_LBRACK] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3263), - [sym___single_quote] = ACTIONS(3263), - [sym___c_double_quote] = ACTIONS(3263), - [sym___c_single_quote] = ACTIONS(3263), - [sym___r_double_quote] = ACTIONS(3263), - [sym___r_single_quote] = ACTIONS(3263), - }, - [683] = { - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3267), - [anon_sym_CR] = ACTIONS(3267), - [anon_sym_CR_LF] = ACTIONS(3267), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_COMMA] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_EQ] = ACTIONS(3267), - [anon_sym___global] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3267), - [anon_sym_BANG_EQ] = ACTIONS(3267), - [anon_sym_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_EQ] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_union] = ACTIONS(3267), - [anon_sym_pub] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3267), - [anon_sym_LT_LT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3267), - [anon_sym_AMP_CARET] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_PIPE_PIPE] = ACTIONS(3267), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3267), - [anon_sym_POUND_LBRACK] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3267), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_STAR_EQ] = ACTIONS(3267), - [anon_sym_SLASH_EQ] = ACTIONS(3267), - [anon_sym_PERCENT_EQ] = ACTIONS(3267), - [anon_sym_LT_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_GT_EQ] = ACTIONS(3267), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3267), - [anon_sym_AMP_EQ] = ACTIONS(3267), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3267), - [anon_sym_PLUS_EQ] = ACTIONS(3267), - [anon_sym_DASH_EQ] = ACTIONS(3267), - [anon_sym_PIPE_EQ] = ACTIONS(3267), - [anon_sym_CARET_EQ] = ACTIONS(3267), - [anon_sym_COLON_EQ] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3267), - [sym_rune_literal] = ACTIONS(3267), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3267), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [anon_sym_assert] = ACTIONS(3267), - [anon_sym_defer] = ACTIONS(3267), - [anon_sym_goto] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_DOLLARfor] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_POUND] = ACTIONS(3267), - [anon_sym_asm] = ACTIONS(3267), - [anon_sym_AT_LBRACK] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3267), - [sym___single_quote] = ACTIONS(3267), - [sym___c_double_quote] = ACTIONS(3267), - [sym___c_single_quote] = ACTIONS(3267), - [sym___r_double_quote] = ACTIONS(3267), - [sym___r_single_quote] = ACTIONS(3267), - }, - [684] = { - [sym__expression] = STATE(1646), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [644] = { + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, - [685] = { - [sym__expression] = STATE(298), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [645] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3634), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [686] = { - [sym__expression] = STATE(295), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [646] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [687] = { - [sym__expression] = STATE(2840), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [647] = { + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4284), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, - [688] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4221), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [648] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2999), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(3000), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [689] = { - [sym__expression] = STATE(292), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [649] = { + [sym__expression] = STATE(1790), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, - [690] = { - [sym__expression] = STATE(1636), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [650] = { + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2976), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2976), + [sym_dec_expression] = STATE(2976), + [sym_or_block_expression] = STATE(2976), + [sym_option_propagation_expression] = STATE(2976), + [sym_result_propagation_expression] = STATE(2976), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2976), + [sym_spawn_expression] = STATE(2976), + [sym_parenthesized_expression] = STATE(2976), + [sym_call_expression] = STATE(2976), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2976), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2976), + [sym_receive_expression] = STATE(2976), + [sym_binary_expression] = STATE(2976), + [sym_as_type_cast_expression] = STATE(2976), + [sym__max_group] = STATE(2976), + [sym_literal] = STATE(2976), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2976), + [sym_fixed_array_creation] = STATE(2976), + [sym_selector_expression] = STATE(2976), + [sym_index_expression] = STATE(2976), + [sym_slice_expression] = STATE(2976), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2976), + [sym_not_is_expression] = STATE(2976), + [sym_in_expression] = STATE(2976), + [sym_not_in_expression] = STATE(2976), + [sym_enum_fetch] = STATE(2976), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3169), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [691] = { - [sym__expression] = STATE(288), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [651] = { + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4282), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, - [692] = { - [sym__expression] = STATE(2855), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [652] = { + [ts_builtin_sym_end] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LF] = ACTIONS(3173), + [anon_sym_CR] = ACTIONS(3173), + [anon_sym_CR_LF] = ACTIONS(3173), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3173), + [anon_sym_as] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym___global] = ACTIONS(3173), + [anon_sym_type] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3173), + [anon_sym_fn] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_PERCENT] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_GT] = ACTIONS(3173), + [anon_sym_EQ_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_LT_EQ] = ACTIONS(3173), + [anon_sym_GT_EQ] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3173), + [anon_sym_pub] = ACTIONS(3173), + [anon_sym_mut] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_QMARK] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_go] = ACTIONS(3173), + [anon_sym_spawn] = ACTIONS(3173), + [anon_sym_json_DOTdecode] = ACTIONS(3173), + [anon_sym_LBRACK2] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_CARET] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_LT_DASH] = ACTIONS(3173), + [anon_sym_LT_LT] = ACTIONS(3173), + [anon_sym_GT_GT] = ACTIONS(3173), + [anon_sym_GT_GT_GT] = ACTIONS(3173), + [anon_sym_AMP_CARET] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_PIPE_PIPE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3173), + [sym_none] = ACTIONS(3173), + [sym_true] = ACTIONS(3173), + [sym_false] = ACTIONS(3173), + [sym_nil] = ACTIONS(3173), + [anon_sym_QMARK_DOT] = ACTIONS(3173), + [anon_sym_POUND_LBRACK] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_DOLLARif] = ACTIONS(3173), + [anon_sym_is] = ACTIONS(3173), + [anon_sym_BANGis] = ACTIONS(3173), + [anon_sym_in] = ACTIONS(3173), + [anon_sym_BANGin] = ACTIONS(3173), + [anon_sym_match] = ACTIONS(3173), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_STAR_EQ] = ACTIONS(3173), + [anon_sym_SLASH_EQ] = ACTIONS(3173), + [anon_sym_PERCENT_EQ] = ACTIONS(3173), + [anon_sym_LT_LT_EQ] = ACTIONS(3173), + [anon_sym_GT_GT_EQ] = ACTIONS(3173), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3173), + [anon_sym_AMP_EQ] = ACTIONS(3173), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3173), + [anon_sym_PLUS_EQ] = ACTIONS(3173), + [anon_sym_DASH_EQ] = ACTIONS(3173), + [anon_sym_PIPE_EQ] = ACTIONS(3173), + [anon_sym_CARET_EQ] = ACTIONS(3173), + [anon_sym_COLON_EQ] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3173), + [anon_sym_rlock] = ACTIONS(3173), + [anon_sym_unsafe] = ACTIONS(3173), + [anon_sym_sql] = ACTIONS(3173), + [sym_int_literal] = ACTIONS(3173), + [sym_float_literal] = ACTIONS(3173), + [sym_rune_literal] = ACTIONS(3173), + [sym_pseudo_compile_time_identifier] = ACTIONS(3173), + [anon_sym_shared] = ACTIONS(3173), + [anon_sym_map_LBRACK] = ACTIONS(3173), + [anon_sym_chan] = ACTIONS(3173), + [anon_sym_thread] = ACTIONS(3173), + [anon_sym_atomic] = ACTIONS(3173), + [anon_sym_assert] = ACTIONS(3173), + [anon_sym_defer] = ACTIONS(3173), + [anon_sym_goto] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_DOLLARfor] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_POUND] = ACTIONS(3173), + [anon_sym_asm] = ACTIONS(3173), + [anon_sym_AT_LBRACK] = ACTIONS(3173), + [sym___double_quote] = ACTIONS(3173), + [sym___single_quote] = ACTIONS(3173), + [sym___c_double_quote] = ACTIONS(3173), + [sym___c_single_quote] = ACTIONS(3173), + [sym___r_double_quote] = ACTIONS(3173), + [sym___r_single_quote] = ACTIONS(3173), + }, + [653] = { + [ts_builtin_sym_end] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3177), + [anon_sym_LF] = ACTIONS(3177), + [anon_sym_CR] = ACTIONS(3177), + [anon_sym_CR_LF] = ACTIONS(3177), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym___global] = ACTIONS(3177), + [anon_sym_type] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_fn] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_SLASH] = ACTIONS(3177), + [anon_sym_PERCENT] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3177), + [anon_sym_pub] = ACTIONS(3177), + [anon_sym_mut] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_go] = ACTIONS(3177), + [anon_sym_spawn] = ACTIONS(3177), + [anon_sym_json_DOTdecode] = ACTIONS(3177), + [anon_sym_LBRACK2] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_CARET] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_LT_DASH] = ACTIONS(3177), + [anon_sym_LT_LT] = ACTIONS(3177), + [anon_sym_GT_GT] = ACTIONS(3177), + [anon_sym_GT_GT_GT] = ACTIONS(3177), + [anon_sym_AMP_CARET] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [sym_none] = ACTIONS(3177), + [sym_true] = ACTIONS(3177), + [sym_false] = ACTIONS(3177), + [sym_nil] = ACTIONS(3177), + [anon_sym_QMARK_DOT] = ACTIONS(3177), + [anon_sym_POUND_LBRACK] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_DOLLARif] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3177), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_STAR_EQ] = ACTIONS(3177), + [anon_sym_SLASH_EQ] = ACTIONS(3177), + [anon_sym_PERCENT_EQ] = ACTIONS(3177), + [anon_sym_LT_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_GT_EQ] = ACTIONS(3177), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3177), + [anon_sym_AMP_EQ] = ACTIONS(3177), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3177), + [anon_sym_PLUS_EQ] = ACTIONS(3177), + [anon_sym_DASH_EQ] = ACTIONS(3177), + [anon_sym_PIPE_EQ] = ACTIONS(3177), + [anon_sym_CARET_EQ] = ACTIONS(3177), + [anon_sym_COLON_EQ] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_rlock] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_sql] = ACTIONS(3177), + [sym_int_literal] = ACTIONS(3177), + [sym_float_literal] = ACTIONS(3177), + [sym_rune_literal] = ACTIONS(3177), + [sym_pseudo_compile_time_identifier] = ACTIONS(3177), + [anon_sym_shared] = ACTIONS(3177), + [anon_sym_map_LBRACK] = ACTIONS(3177), + [anon_sym_chan] = ACTIONS(3177), + [anon_sym_thread] = ACTIONS(3177), + [anon_sym_atomic] = ACTIONS(3177), + [anon_sym_assert] = ACTIONS(3177), + [anon_sym_defer] = ACTIONS(3177), + [anon_sym_goto] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_DOLLARfor] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_POUND] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3177), + [anon_sym_AT_LBRACK] = ACTIONS(3177), + [sym___double_quote] = ACTIONS(3177), + [sym___single_quote] = ACTIONS(3177), + [sym___c_double_quote] = ACTIONS(3177), + [sym___c_single_quote] = ACTIONS(3177), + [sym___r_double_quote] = ACTIONS(3177), + [sym___r_single_quote] = ACTIONS(3177), + }, + [654] = { + [ts_builtin_sym_end] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3181), + [anon_sym_LF] = ACTIONS(3181), + [anon_sym_CR] = ACTIONS(3181), + [anon_sym_CR_LF] = ACTIONS(3181), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3181), + [anon_sym_as] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_COMMA] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_EQ] = ACTIONS(3181), + [anon_sym___global] = ACTIONS(3181), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_SLASH] = ACTIONS(3181), + [anon_sym_PERCENT] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_GT] = ACTIONS(3181), + [anon_sym_EQ_EQ] = ACTIONS(3181), + [anon_sym_BANG_EQ] = ACTIONS(3181), + [anon_sym_LT_EQ] = ACTIONS(3181), + [anon_sym_GT_EQ] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_pub] = ACTIONS(3181), + [anon_sym_mut] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_go] = ACTIONS(3181), + [anon_sym_spawn] = ACTIONS(3181), + [anon_sym_json_DOTdecode] = ACTIONS(3181), + [anon_sym_LBRACK2] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_LT_DASH] = ACTIONS(3181), + [anon_sym_LT_LT] = ACTIONS(3181), + [anon_sym_GT_GT] = ACTIONS(3181), + [anon_sym_GT_GT_GT] = ACTIONS(3181), + [anon_sym_AMP_CARET] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_PIPE_PIPE] = ACTIONS(3181), + [anon_sym_or] = ACTIONS(3181), + [sym_none] = ACTIONS(3181), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [sym_nil] = ACTIONS(3181), + [anon_sym_QMARK_DOT] = ACTIONS(3181), + [anon_sym_POUND_LBRACK] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_DOLLARif] = ACTIONS(3181), + [anon_sym_is] = ACTIONS(3181), + [anon_sym_BANGis] = ACTIONS(3181), + [anon_sym_in] = ACTIONS(3181), + [anon_sym_BANGin] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_STAR_EQ] = ACTIONS(3181), + [anon_sym_SLASH_EQ] = ACTIONS(3181), + [anon_sym_PERCENT_EQ] = ACTIONS(3181), + [anon_sym_LT_LT_EQ] = ACTIONS(3181), + [anon_sym_GT_GT_EQ] = ACTIONS(3181), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3181), + [anon_sym_AMP_EQ] = ACTIONS(3181), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3181), + [anon_sym_PLUS_EQ] = ACTIONS(3181), + [anon_sym_DASH_EQ] = ACTIONS(3181), + [anon_sym_PIPE_EQ] = ACTIONS(3181), + [anon_sym_CARET_EQ] = ACTIONS(3181), + [anon_sym_COLON_EQ] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_rlock] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_sql] = ACTIONS(3181), + [sym_int_literal] = ACTIONS(3181), + [sym_float_literal] = ACTIONS(3181), + [sym_rune_literal] = ACTIONS(3181), + [sym_pseudo_compile_time_identifier] = ACTIONS(3181), + [anon_sym_shared] = ACTIONS(3181), + [anon_sym_map_LBRACK] = ACTIONS(3181), + [anon_sym_chan] = ACTIONS(3181), + [anon_sym_thread] = ACTIONS(3181), + [anon_sym_atomic] = ACTIONS(3181), + [anon_sym_assert] = ACTIONS(3181), + [anon_sym_defer] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_DOLLARfor] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym_AT_LBRACK] = ACTIONS(3181), + [sym___double_quote] = ACTIONS(3181), + [sym___single_quote] = ACTIONS(3181), + [sym___c_double_quote] = ACTIONS(3181), + [sym___c_single_quote] = ACTIONS(3181), + [sym___r_double_quote] = ACTIONS(3181), + [sym___r_single_quote] = ACTIONS(3181), + }, + [655] = { + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [693] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [656] = { + [ts_builtin_sym_end] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3185), + [anon_sym_LF] = ACTIONS(3185), + [anon_sym_CR] = ACTIONS(3185), + [anon_sym_CR_LF] = ACTIONS(3185), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3185), + [anon_sym_as] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_COMMA] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_EQ] = ACTIONS(3185), + [anon_sym___global] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(3185), + [anon_sym_fn] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_PERCENT] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_EQ_EQ] = ACTIONS(3185), + [anon_sym_BANG_EQ] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_pub] = ACTIONS(3185), + [anon_sym_mut] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_QMARK] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_go] = ACTIONS(3185), + [anon_sym_spawn] = ACTIONS(3185), + [anon_sym_json_DOTdecode] = ACTIONS(3185), + [anon_sym_LBRACK2] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_LT_DASH] = ACTIONS(3185), + [anon_sym_LT_LT] = ACTIONS(3185), + [anon_sym_GT_GT] = ACTIONS(3185), + [anon_sym_GT_GT_GT] = ACTIONS(3185), + [anon_sym_AMP_CARET] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_PIPE_PIPE] = ACTIONS(3185), + [anon_sym_or] = ACTIONS(3185), + [sym_none] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_nil] = ACTIONS(3185), + [anon_sym_QMARK_DOT] = ACTIONS(3185), + [anon_sym_POUND_LBRACK] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_DOLLARif] = ACTIONS(3185), + [anon_sym_is] = ACTIONS(3185), + [anon_sym_BANGis] = ACTIONS(3185), + [anon_sym_in] = ACTIONS(3185), + [anon_sym_BANGin] = ACTIONS(3185), + [anon_sym_match] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_STAR_EQ] = ACTIONS(3185), + [anon_sym_SLASH_EQ] = ACTIONS(3185), + [anon_sym_PERCENT_EQ] = ACTIONS(3185), + [anon_sym_LT_LT_EQ] = ACTIONS(3185), + [anon_sym_GT_GT_EQ] = ACTIONS(3185), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3185), + [anon_sym_AMP_EQ] = ACTIONS(3185), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3185), + [anon_sym_PLUS_EQ] = ACTIONS(3185), + [anon_sym_DASH_EQ] = ACTIONS(3185), + [anon_sym_PIPE_EQ] = ACTIONS(3185), + [anon_sym_CARET_EQ] = ACTIONS(3185), + [anon_sym_COLON_EQ] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_rlock] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_sql] = ACTIONS(3185), + [sym_int_literal] = ACTIONS(3185), + [sym_float_literal] = ACTIONS(3185), + [sym_rune_literal] = ACTIONS(3185), + [sym_pseudo_compile_time_identifier] = ACTIONS(3185), + [anon_sym_shared] = ACTIONS(3185), + [anon_sym_map_LBRACK] = ACTIONS(3185), + [anon_sym_chan] = ACTIONS(3185), + [anon_sym_thread] = ACTIONS(3185), + [anon_sym_atomic] = ACTIONS(3185), + [anon_sym_assert] = ACTIONS(3185), + [anon_sym_defer] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_DOLLARfor] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_POUND] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym_AT_LBRACK] = ACTIONS(3185), + [sym___double_quote] = ACTIONS(3185), + [sym___single_quote] = ACTIONS(3185), + [sym___c_double_quote] = ACTIONS(3185), + [sym___c_single_quote] = ACTIONS(3185), + [sym___r_double_quote] = ACTIONS(3185), + [sym___r_single_quote] = ACTIONS(3185), + }, + [657] = { + [sym__expression] = STATE(1685), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, - [694] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3627), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [658] = { + [ts_builtin_sym_end] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3189), + [anon_sym_LF] = ACTIONS(3189), + [anon_sym_CR] = ACTIONS(3189), + [anon_sym_CR_LF] = ACTIONS(3189), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_EQ] = ACTIONS(3189), + [anon_sym___global] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_PIPE] = ACTIONS(3189), + [anon_sym_fn] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_PERCENT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_pub] = ACTIONS(3189), + [anon_sym_mut] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_go] = ACTIONS(3189), + [anon_sym_spawn] = ACTIONS(3189), + [anon_sym_json_DOTdecode] = ACTIONS(3189), + [anon_sym_LBRACK2] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_CARET] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT_DASH] = ACTIONS(3189), + [anon_sym_LT_LT] = ACTIONS(3189), + [anon_sym_GT_GT] = ACTIONS(3189), + [anon_sym_GT_GT_GT] = ACTIONS(3189), + [anon_sym_AMP_CARET] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [sym_none] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_nil] = ACTIONS(3189), + [anon_sym_QMARK_DOT] = ACTIONS(3189), + [anon_sym_POUND_LBRACK] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_DOLLARif] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_BANGis] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_BANGin] = ACTIONS(3189), + [anon_sym_match] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_STAR_EQ] = ACTIONS(3189), + [anon_sym_SLASH_EQ] = ACTIONS(3189), + [anon_sym_PERCENT_EQ] = ACTIONS(3189), + [anon_sym_LT_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), + [anon_sym_AMP_EQ] = ACTIONS(3189), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3189), + [anon_sym_PLUS_EQ] = ACTIONS(3189), + [anon_sym_DASH_EQ] = ACTIONS(3189), + [anon_sym_PIPE_EQ] = ACTIONS(3189), + [anon_sym_CARET_EQ] = ACTIONS(3189), + [anon_sym_COLON_EQ] = ACTIONS(3189), + [anon_sym_lock] = ACTIONS(3189), + [anon_sym_rlock] = ACTIONS(3189), + [anon_sym_unsafe] = ACTIONS(3189), + [anon_sym_sql] = ACTIONS(3189), + [sym_int_literal] = ACTIONS(3189), + [sym_float_literal] = ACTIONS(3189), + [sym_rune_literal] = ACTIONS(3189), + [sym_pseudo_compile_time_identifier] = ACTIONS(3189), + [anon_sym_shared] = ACTIONS(3189), + [anon_sym_map_LBRACK] = ACTIONS(3189), + [anon_sym_chan] = ACTIONS(3189), + [anon_sym_thread] = ACTIONS(3189), + [anon_sym_atomic] = ACTIONS(3189), + [anon_sym_assert] = ACTIONS(3189), + [anon_sym_defer] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_DOLLARfor] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_POUND] = ACTIONS(3189), + [anon_sym_asm] = ACTIONS(3189), + [anon_sym_AT_LBRACK] = ACTIONS(3189), + [sym___double_quote] = ACTIONS(3189), + [sym___single_quote] = ACTIONS(3189), + [sym___c_double_quote] = ACTIONS(3189), + [sym___c_single_quote] = ACTIONS(3189), + [sym___r_double_quote] = ACTIONS(3189), + [sym___r_single_quote] = ACTIONS(3189), + }, + [659] = { + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4213), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [695] = { - [sym__expression] = STATE(2481), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [660] = { + [ts_builtin_sym_end] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3193), + [anon_sym_LF] = ACTIONS(3193), + [anon_sym_CR] = ACTIONS(3193), + [anon_sym_CR_LF] = ACTIONS(3193), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_EQ] = ACTIONS(3193), + [anon_sym___global] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_PIPE] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_PERCENT] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_pub] = ACTIONS(3193), + [anon_sym_mut] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_go] = ACTIONS(3193), + [anon_sym_spawn] = ACTIONS(3193), + [anon_sym_json_DOTdecode] = ACTIONS(3193), + [anon_sym_LBRACK2] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_LT_DASH] = ACTIONS(3193), + [anon_sym_LT_LT] = ACTIONS(3193), + [anon_sym_GT_GT] = ACTIONS(3193), + [anon_sym_GT_GT_GT] = ACTIONS(3193), + [anon_sym_AMP_CARET] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_nil] = ACTIONS(3193), + [anon_sym_QMARK_DOT] = ACTIONS(3193), + [anon_sym_POUND_LBRACK] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_DOLLARif] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3193), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_BANGin] = ACTIONS(3193), + [anon_sym_match] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_STAR_EQ] = ACTIONS(3193), + [anon_sym_SLASH_EQ] = ACTIONS(3193), + [anon_sym_PERCENT_EQ] = ACTIONS(3193), + [anon_sym_LT_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_GT_EQ] = ACTIONS(3193), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3193), + [anon_sym_AMP_EQ] = ACTIONS(3193), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3193), + [anon_sym_PLUS_EQ] = ACTIONS(3193), + [anon_sym_DASH_EQ] = ACTIONS(3193), + [anon_sym_PIPE_EQ] = ACTIONS(3193), + [anon_sym_CARET_EQ] = ACTIONS(3193), + [anon_sym_COLON_EQ] = ACTIONS(3193), + [anon_sym_lock] = ACTIONS(3193), + [anon_sym_rlock] = ACTIONS(3193), + [anon_sym_unsafe] = ACTIONS(3193), + [anon_sym_sql] = ACTIONS(3193), + [sym_int_literal] = ACTIONS(3193), + [sym_float_literal] = ACTIONS(3193), + [sym_rune_literal] = ACTIONS(3193), + [sym_pseudo_compile_time_identifier] = ACTIONS(3193), + [anon_sym_shared] = ACTIONS(3193), + [anon_sym_map_LBRACK] = ACTIONS(3193), + [anon_sym_chan] = ACTIONS(3193), + [anon_sym_thread] = ACTIONS(3193), + [anon_sym_atomic] = ACTIONS(3193), + [anon_sym_assert] = ACTIONS(3193), + [anon_sym_defer] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_DOLLARfor] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_POUND] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym_AT_LBRACK] = ACTIONS(3193), + [sym___double_quote] = ACTIONS(3193), + [sym___single_quote] = ACTIONS(3193), + [sym___c_double_quote] = ACTIONS(3193), + [sym___c_single_quote] = ACTIONS(3193), + [sym___r_double_quote] = ACTIONS(3193), + [sym___r_single_quote] = ACTIONS(3193), + }, + [661] = { + [ts_builtin_sym_end] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3197), + [anon_sym_LF] = ACTIONS(3197), + [anon_sym_CR] = ACTIONS(3197), + [anon_sym_CR_LF] = ACTIONS(3197), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_EQ] = ACTIONS(3197), + [anon_sym___global] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_fn] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_PERCENT] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3197), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_pub] = ACTIONS(3197), + [anon_sym_mut] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_go] = ACTIONS(3197), + [anon_sym_spawn] = ACTIONS(3197), + [anon_sym_json_DOTdecode] = ACTIONS(3197), + [anon_sym_LBRACK2] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_CARET] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_LT_DASH] = ACTIONS(3197), + [anon_sym_LT_LT] = ACTIONS(3197), + [anon_sym_GT_GT] = ACTIONS(3197), + [anon_sym_GT_GT_GT] = ACTIONS(3197), + [anon_sym_AMP_CARET] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [sym_none] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_nil] = ACTIONS(3197), + [anon_sym_QMARK_DOT] = ACTIONS(3197), + [anon_sym_POUND_LBRACK] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_DOLLARif] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_BANGis] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_BANGin] = ACTIONS(3197), + [anon_sym_match] = ACTIONS(3197), + [anon_sym_select] = ACTIONS(3197), + [anon_sym_STAR_EQ] = ACTIONS(3197), + [anon_sym_SLASH_EQ] = ACTIONS(3197), + [anon_sym_PERCENT_EQ] = ACTIONS(3197), + [anon_sym_LT_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_GT_EQ] = ACTIONS(3197), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3197), + [anon_sym_AMP_EQ] = ACTIONS(3197), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3197), + [anon_sym_PLUS_EQ] = ACTIONS(3197), + [anon_sym_DASH_EQ] = ACTIONS(3197), + [anon_sym_PIPE_EQ] = ACTIONS(3197), + [anon_sym_CARET_EQ] = ACTIONS(3197), + [anon_sym_COLON_EQ] = ACTIONS(3197), + [anon_sym_lock] = ACTIONS(3197), + [anon_sym_rlock] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(3197), + [anon_sym_sql] = ACTIONS(3197), + [sym_int_literal] = ACTIONS(3197), + [sym_float_literal] = ACTIONS(3197), + [sym_rune_literal] = ACTIONS(3197), + [sym_pseudo_compile_time_identifier] = ACTIONS(3197), + [anon_sym_shared] = ACTIONS(3197), + [anon_sym_map_LBRACK] = ACTIONS(3197), + [anon_sym_chan] = ACTIONS(3197), + [anon_sym_thread] = ACTIONS(3197), + [anon_sym_atomic] = ACTIONS(3197), + [anon_sym_assert] = ACTIONS(3197), + [anon_sym_defer] = ACTIONS(3197), + [anon_sym_goto] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_DOLLARfor] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_POUND] = ACTIONS(3197), + [anon_sym_asm] = ACTIONS(3197), + [anon_sym_AT_LBRACK] = ACTIONS(3197), + [sym___double_quote] = ACTIONS(3197), + [sym___single_quote] = ACTIONS(3197), + [sym___c_double_quote] = ACTIONS(3197), + [sym___c_single_quote] = ACTIONS(3197), + [sym___r_double_quote] = ACTIONS(3197), + [sym___r_single_quote] = ACTIONS(3197), + }, + [662] = { + [sym__expression] = STATE(1313), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [696] = { - [sym__expression] = STATE(2482), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [663] = { + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4216), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), + }, + [664] = { + [sym__expression] = STATE(1314), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [697] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3625), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [665] = { + [sym__expression] = STATE(1315), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [698] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [666] = { + [sym__expression] = STATE(1320), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [699] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [667] = { + [sym__expression] = STATE(1293), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [700] = { - [sym__expression] = STATE(285), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [668] = { + [ts_builtin_sym_end] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3201), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_CR] = ACTIONS(3201), + [anon_sym_CR_LF] = ACTIONS(3201), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3201), + [anon_sym_as] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3201), + [anon_sym_const] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_EQ] = ACTIONS(3201), + [anon_sym___global] = ACTIONS(3201), + [anon_sym_type] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3201), + [anon_sym_BANG_EQ] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3201), + [anon_sym_GT_EQ] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_union] = ACTIONS(3201), + [anon_sym_pub] = ACTIONS(3201), + [anon_sym_mut] = ACTIONS(3201), + [anon_sym_enum] = ACTIONS(3201), + [anon_sym_interface] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_QMARK] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_go] = ACTIONS(3201), + [anon_sym_spawn] = ACTIONS(3201), + [anon_sym_json_DOTdecode] = ACTIONS(3201), + [anon_sym_LBRACK2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_LT_DASH] = ACTIONS(3201), + [anon_sym_LT_LT] = ACTIONS(3201), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_GT_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_CARET] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_or] = ACTIONS(3201), + [sym_none] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_nil] = ACTIONS(3201), + [anon_sym_QMARK_DOT] = ACTIONS(3201), + [anon_sym_POUND_LBRACK] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_DOLLARif] = ACTIONS(3201), + [anon_sym_is] = ACTIONS(3201), + [anon_sym_BANGis] = ACTIONS(3201), + [anon_sym_in] = ACTIONS(3201), + [anon_sym_BANGin] = ACTIONS(3201), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_STAR_EQ] = ACTIONS(3201), + [anon_sym_SLASH_EQ] = ACTIONS(3201), + [anon_sym_PERCENT_EQ] = ACTIONS(3201), + [anon_sym_LT_LT_EQ] = ACTIONS(3201), + [anon_sym_GT_GT_EQ] = ACTIONS(3201), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3201), + [anon_sym_AMP_EQ] = ACTIONS(3201), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3201), + [anon_sym_PLUS_EQ] = ACTIONS(3201), + [anon_sym_DASH_EQ] = ACTIONS(3201), + [anon_sym_PIPE_EQ] = ACTIONS(3201), + [anon_sym_CARET_EQ] = ACTIONS(3201), + [anon_sym_COLON_EQ] = ACTIONS(3201), + [anon_sym_lock] = ACTIONS(3201), + [anon_sym_rlock] = ACTIONS(3201), + [anon_sym_unsafe] = ACTIONS(3201), + [anon_sym_sql] = ACTIONS(3201), + [sym_int_literal] = ACTIONS(3201), + [sym_float_literal] = ACTIONS(3201), + [sym_rune_literal] = ACTIONS(3201), + [sym_pseudo_compile_time_identifier] = ACTIONS(3201), + [anon_sym_shared] = ACTIONS(3201), + [anon_sym_map_LBRACK] = ACTIONS(3201), + [anon_sym_chan] = ACTIONS(3201), + [anon_sym_thread] = ACTIONS(3201), + [anon_sym_atomic] = ACTIONS(3201), + [anon_sym_assert] = ACTIONS(3201), + [anon_sym_defer] = ACTIONS(3201), + [anon_sym_goto] = ACTIONS(3201), + [anon_sym_break] = ACTIONS(3201), + [anon_sym_continue] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3201), + [anon_sym_DOLLARfor] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(3201), + [anon_sym_asm] = ACTIONS(3201), + [anon_sym_AT_LBRACK] = ACTIONS(3201), + [sym___double_quote] = ACTIONS(3201), + [sym___single_quote] = ACTIONS(3201), + [sym___c_double_quote] = ACTIONS(3201), + [sym___c_single_quote] = ACTIONS(3201), + [sym___r_double_quote] = ACTIONS(3201), + [sym___r_single_quote] = ACTIONS(3201), + }, + [669] = { + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [701] = { - [sym__expression] = STATE(1001), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [670] = { + [sym__expression] = STATE(1311), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1765), + [anon_sym_DASH] = ACTIONS(1765), + [anon_sym_STAR] = ACTIONS(1767), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1769), + [anon_sym_go] = ACTIONS(1771), + [anon_sym_spawn] = ACTIONS(1773), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1765), + [anon_sym_CARET] = ACTIONS(1765), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_LT_DASH] = ACTIONS(1777), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1781), + [anon_sym_lock] = ACTIONS(1783), + [anon_sym_rlock] = ACTIONS(1783), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), + }, + [671] = { + [sym__expression] = STATE(1149), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), + }, + [672] = { + [ts_builtin_sym_end] = ACTIONS(3203), + [sym_identifier] = ACTIONS(3205), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_CR] = ACTIONS(3205), + [anon_sym_CR_LF] = ACTIONS(3205), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3205), + [anon_sym_as] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_COMMA] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_EQ] = ACTIONS(3205), + [anon_sym___global] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_fn] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_PERCENT] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_pub] = ACTIONS(3205), + [anon_sym_mut] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_QMARK] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_go] = ACTIONS(3205), + [anon_sym_spawn] = ACTIONS(3205), + [anon_sym_json_DOTdecode] = ACTIONS(3205), + [anon_sym_LBRACK2] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_LT_DASH] = ACTIONS(3205), + [anon_sym_LT_LT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3205), + [anon_sym_GT_GT_GT] = ACTIONS(3205), + [anon_sym_AMP_CARET] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_or] = ACTIONS(3205), + [sym_none] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_nil] = ACTIONS(3205), + [anon_sym_QMARK_DOT] = ACTIONS(3205), + [anon_sym_POUND_LBRACK] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_DOLLARif] = ACTIONS(3205), + [anon_sym_is] = ACTIONS(3205), + [anon_sym_BANGis] = ACTIONS(3205), + [anon_sym_in] = ACTIONS(3205), + [anon_sym_BANGin] = ACTIONS(3205), + [anon_sym_match] = ACTIONS(3205), + [anon_sym_select] = ACTIONS(3205), + [anon_sym_STAR_EQ] = ACTIONS(3205), + [anon_sym_SLASH_EQ] = ACTIONS(3205), + [anon_sym_PERCENT_EQ] = ACTIONS(3205), + [anon_sym_LT_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_GT_EQ] = ACTIONS(3205), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3205), + [anon_sym_AMP_EQ] = ACTIONS(3205), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3205), + [anon_sym_PLUS_EQ] = ACTIONS(3205), + [anon_sym_DASH_EQ] = ACTIONS(3205), + [anon_sym_PIPE_EQ] = ACTIONS(3205), + [anon_sym_CARET_EQ] = ACTIONS(3205), + [anon_sym_COLON_EQ] = ACTIONS(3205), + [anon_sym_lock] = ACTIONS(3205), + [anon_sym_rlock] = ACTIONS(3205), + [anon_sym_unsafe] = ACTIONS(3205), + [anon_sym_sql] = ACTIONS(3205), + [sym_int_literal] = ACTIONS(3205), + [sym_float_literal] = ACTIONS(3205), + [sym_rune_literal] = ACTIONS(3205), + [sym_pseudo_compile_time_identifier] = ACTIONS(3205), + [anon_sym_shared] = ACTIONS(3205), + [anon_sym_map_LBRACK] = ACTIONS(3205), + [anon_sym_chan] = ACTIONS(3205), + [anon_sym_thread] = ACTIONS(3205), + [anon_sym_atomic] = ACTIONS(3205), + [anon_sym_assert] = ACTIONS(3205), + [anon_sym_defer] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_DOLLARfor] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_POUND] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym_AT_LBRACK] = ACTIONS(3205), + [sym___double_quote] = ACTIONS(3205), + [sym___single_quote] = ACTIONS(3205), + [sym___c_double_quote] = ACTIONS(3205), + [sym___c_single_quote] = ACTIONS(3205), + [sym___r_double_quote] = ACTIONS(3205), + [sym___r_single_quote] = ACTIONS(3205), + }, + [673] = { + [sym__expression] = STATE(989), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), [sym_none] = ACTIONS(527), [sym_true] = ACTIONS(527), [sym_false] = ACTIONS(527), @@ -106416,547 +103272,1677 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(529), [anon_sym_DOLLARif] = ACTIONS(531), [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), [anon_sym_unsafe] = ACTIONS(539), [anon_sym_sql] = ACTIONS(541), [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [702] = { - [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), + [674] = { + [ts_builtin_sym_end] = ACTIONS(3207), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LF] = ACTIONS(3209), + [anon_sym_CR] = ACTIONS(3209), + [anon_sym_CR_LF] = ACTIONS(3209), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_EQ] = ACTIONS(3271), - [anon_sym___global] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3271), - [anon_sym_BANG_EQ] = ACTIONS(3271), - [anon_sym_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_EQ] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_union] = ACTIONS(3271), - [anon_sym_pub] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3271), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3271), - [anon_sym_AMP_CARET] = ACTIONS(3271), - [anon_sym_AMP_AMP] = ACTIONS(3271), - [anon_sym_PIPE_PIPE] = ACTIONS(3271), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3271), - [anon_sym_POUND_LBRACK] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3271), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_STAR_EQ] = ACTIONS(3271), - [anon_sym_SLASH_EQ] = ACTIONS(3271), - [anon_sym_PERCENT_EQ] = ACTIONS(3271), - [anon_sym_LT_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_GT_EQ] = ACTIONS(3271), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3271), - [anon_sym_AMP_EQ] = ACTIONS(3271), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3271), - [anon_sym_PLUS_EQ] = ACTIONS(3271), - [anon_sym_DASH_EQ] = ACTIONS(3271), - [anon_sym_PIPE_EQ] = ACTIONS(3271), - [anon_sym_CARET_EQ] = ACTIONS(3271), - [anon_sym_COLON_EQ] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [anon_sym_assert] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_goto] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_DOLLARfor] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_POUND] = ACTIONS(3271), - [anon_sym_asm] = ACTIONS(3271), - [anon_sym_AT_LBRACK] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), + [anon_sym_DOT] = ACTIONS(3209), + [anon_sym_as] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_COMMA] = ACTIONS(3209), + [anon_sym_const] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_EQ] = ACTIONS(3209), + [anon_sym___global] = ACTIONS(3209), + [anon_sym_type] = ACTIONS(3209), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_fn] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_SLASH] = ACTIONS(3209), + [anon_sym_PERCENT] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT_EQ] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3209), + [anon_sym_union] = ACTIONS(3209), + [anon_sym_pub] = ACTIONS(3209), + [anon_sym_mut] = ACTIONS(3209), + [anon_sym_enum] = ACTIONS(3209), + [anon_sym_interface] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_QMARK] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_go] = ACTIONS(3209), + [anon_sym_spawn] = ACTIONS(3209), + [anon_sym_json_DOTdecode] = ACTIONS(3209), + [anon_sym_LBRACK2] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_LT_DASH] = ACTIONS(3209), + [anon_sym_LT_LT] = ACTIONS(3209), + [anon_sym_GT_GT] = ACTIONS(3209), + [anon_sym_GT_GT_GT] = ACTIONS(3209), + [anon_sym_AMP_CARET] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_PIPE_PIPE] = ACTIONS(3209), + [anon_sym_or] = ACTIONS(3209), + [sym_none] = ACTIONS(3209), + [sym_true] = ACTIONS(3209), + [sym_false] = ACTIONS(3209), + [sym_nil] = ACTIONS(3209), + [anon_sym_QMARK_DOT] = ACTIONS(3209), + [anon_sym_POUND_LBRACK] = ACTIONS(3209), + [anon_sym_if] = ACTIONS(3209), + [anon_sym_DOLLARif] = ACTIONS(3209), + [anon_sym_is] = ACTIONS(3209), + [anon_sym_BANGis] = ACTIONS(3209), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_BANGin] = ACTIONS(3209), + [anon_sym_match] = ACTIONS(3209), + [anon_sym_select] = ACTIONS(3209), + [anon_sym_STAR_EQ] = ACTIONS(3209), + [anon_sym_SLASH_EQ] = ACTIONS(3209), + [anon_sym_PERCENT_EQ] = ACTIONS(3209), + [anon_sym_LT_LT_EQ] = ACTIONS(3209), + [anon_sym_GT_GT_EQ] = ACTIONS(3209), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3209), + [anon_sym_AMP_EQ] = ACTIONS(3209), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3209), + [anon_sym_PLUS_EQ] = ACTIONS(3209), + [anon_sym_DASH_EQ] = ACTIONS(3209), + [anon_sym_PIPE_EQ] = ACTIONS(3209), + [anon_sym_CARET_EQ] = ACTIONS(3209), + [anon_sym_COLON_EQ] = ACTIONS(3209), + [anon_sym_lock] = ACTIONS(3209), + [anon_sym_rlock] = ACTIONS(3209), + [anon_sym_unsafe] = ACTIONS(3209), + [anon_sym_sql] = ACTIONS(3209), + [sym_int_literal] = ACTIONS(3209), + [sym_float_literal] = ACTIONS(3209), + [sym_rune_literal] = ACTIONS(3209), + [sym_pseudo_compile_time_identifier] = ACTIONS(3209), + [anon_sym_shared] = ACTIONS(3209), + [anon_sym_map_LBRACK] = ACTIONS(3209), + [anon_sym_chan] = ACTIONS(3209), + [anon_sym_thread] = ACTIONS(3209), + [anon_sym_atomic] = ACTIONS(3209), + [anon_sym_assert] = ACTIONS(3209), + [anon_sym_defer] = ACTIONS(3209), + [anon_sym_goto] = ACTIONS(3209), + [anon_sym_break] = ACTIONS(3209), + [anon_sym_continue] = ACTIONS(3209), + [anon_sym_return] = ACTIONS(3209), + [anon_sym_DOLLARfor] = ACTIONS(3209), + [anon_sym_for] = ACTIONS(3209), + [anon_sym_POUND] = ACTIONS(3209), + [anon_sym_asm] = ACTIONS(3209), + [anon_sym_AT_LBRACK] = ACTIONS(3209), + [sym___double_quote] = ACTIONS(3209), + [sym___single_quote] = ACTIONS(3209), + [sym___c_double_quote] = ACTIONS(3209), + [sym___c_single_quote] = ACTIONS(3209), + [sym___r_double_quote] = ACTIONS(3209), + [sym___r_single_quote] = ACTIONS(3209), }, - [703] = { - [ts_builtin_sym_end] = ACTIONS(3273), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), + [675] = { + [sym__expression] = STATE(2799), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [676] = { + [ts_builtin_sym_end] = ACTIONS(3211), + [sym_identifier] = ACTIONS(3213), + [anon_sym_LF] = ACTIONS(3213), + [anon_sym_CR] = ACTIONS(3213), + [anon_sym_CR_LF] = ACTIONS(3213), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_as] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_EQ] = ACTIONS(3275), - [anon_sym___global] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_union] = ACTIONS(3275), - [anon_sym_pub] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3275), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3275), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_GT_GT_GT] = ACTIONS(3275), - [anon_sym_AMP_CARET] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_QMARK_DOT] = ACTIONS(3275), - [anon_sym_POUND_LBRACK] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_BANGis] = ACTIONS(3275), - [anon_sym_in] = ACTIONS(3275), - [anon_sym_BANGin] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_STAR_EQ] = ACTIONS(3275), - [anon_sym_SLASH_EQ] = ACTIONS(3275), - [anon_sym_PERCENT_EQ] = ACTIONS(3275), - [anon_sym_LT_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_GT_EQ] = ACTIONS(3275), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3275), - [anon_sym_AMP_EQ] = ACTIONS(3275), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3275), - [anon_sym_PLUS_EQ] = ACTIONS(3275), - [anon_sym_DASH_EQ] = ACTIONS(3275), - [anon_sym_PIPE_EQ] = ACTIONS(3275), - [anon_sym_CARET_EQ] = ACTIONS(3275), - [anon_sym_COLON_EQ] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3275), - [sym_rune_literal] = ACTIONS(3275), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3275), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [anon_sym_assert] = ACTIONS(3275), - [anon_sym_defer] = ACTIONS(3275), - [anon_sym_goto] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_DOLLARfor] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_POUND] = ACTIONS(3275), - [anon_sym_asm] = ACTIONS(3275), - [anon_sym_AT_LBRACK] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3275), - [sym___single_quote] = ACTIONS(3275), - [sym___c_double_quote] = ACTIONS(3275), - [sym___c_single_quote] = ACTIONS(3275), - [sym___r_double_quote] = ACTIONS(3275), - [sym___r_single_quote] = ACTIONS(3275), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_as] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_COMMA] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_EQ] = ACTIONS(3213), + [anon_sym___global] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [anon_sym_EQ_EQ] = ACTIONS(3213), + [anon_sym_BANG_EQ] = ACTIONS(3213), + [anon_sym_LT_EQ] = ACTIONS(3213), + [anon_sym_GT_EQ] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_pub] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3213), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3213), + [anon_sym_LT_LT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3213), + [anon_sym_GT_GT_GT] = ACTIONS(3213), + [anon_sym_AMP_CARET] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_PIPE_PIPE] = ACTIONS(3213), + [anon_sym_or] = ACTIONS(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_QMARK_DOT] = ACTIONS(3213), + [anon_sym_POUND_LBRACK] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_is] = ACTIONS(3213), + [anon_sym_BANGis] = ACTIONS(3213), + [anon_sym_in] = ACTIONS(3213), + [anon_sym_BANGin] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_STAR_EQ] = ACTIONS(3213), + [anon_sym_SLASH_EQ] = ACTIONS(3213), + [anon_sym_PERCENT_EQ] = ACTIONS(3213), + [anon_sym_LT_LT_EQ] = ACTIONS(3213), + [anon_sym_GT_GT_EQ] = ACTIONS(3213), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3213), + [anon_sym_AMP_EQ] = ACTIONS(3213), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3213), + [anon_sym_PLUS_EQ] = ACTIONS(3213), + [anon_sym_DASH_EQ] = ACTIONS(3213), + [anon_sym_PIPE_EQ] = ACTIONS(3213), + [anon_sym_CARET_EQ] = ACTIONS(3213), + [anon_sym_COLON_EQ] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3213), + [sym_rune_literal] = ACTIONS(3213), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3213), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [anon_sym_assert] = ACTIONS(3213), + [anon_sym_defer] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_DOLLARfor] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_POUND] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym_AT_LBRACK] = ACTIONS(3213), + [sym___double_quote] = ACTIONS(3213), + [sym___single_quote] = ACTIONS(3213), + [sym___c_double_quote] = ACTIONS(3213), + [sym___c_single_quote] = ACTIONS(3213), + [sym___r_double_quote] = ACTIONS(3213), + [sym___r_single_quote] = ACTIONS(3213), }, - [704] = { - [ts_builtin_sym_end] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3279), - [anon_sym_LF] = ACTIONS(3279), - [anon_sym_CR] = ACTIONS(3279), - [anon_sym_CR_LF] = ACTIONS(3279), + [677] = { + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(3217), + [anon_sym_CR] = ACTIONS(3217), + [anon_sym_CR_LF] = ACTIONS(3217), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_EQ] = ACTIONS(3279), - [anon_sym___global] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_EQ] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_union] = ACTIONS(3279), - [anon_sym_pub] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3279), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3279), - [anon_sym_AMP_CARET] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3279), - [anon_sym_POUND_LBRACK] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3279), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_STAR_EQ] = ACTIONS(3279), - [anon_sym_SLASH_EQ] = ACTIONS(3279), - [anon_sym_PERCENT_EQ] = ACTIONS(3279), - [anon_sym_LT_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_GT_EQ] = ACTIONS(3279), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3279), - [anon_sym_AMP_EQ] = ACTIONS(3279), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3279), - [anon_sym_PLUS_EQ] = ACTIONS(3279), - [anon_sym_DASH_EQ] = ACTIONS(3279), - [anon_sym_PIPE_EQ] = ACTIONS(3279), - [anon_sym_CARET_EQ] = ACTIONS(3279), - [anon_sym_COLON_EQ] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3279), - [sym_rune_literal] = ACTIONS(3279), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3279), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_defer] = ACTIONS(3279), - [anon_sym_goto] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_DOLLARfor] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_POUND] = ACTIONS(3279), - [anon_sym_asm] = ACTIONS(3279), - [anon_sym_AT_LBRACK] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3279), - [sym___single_quote] = ACTIONS(3279), - [sym___c_double_quote] = ACTIONS(3279), - [sym___c_single_quote] = ACTIONS(3279), - [sym___r_double_quote] = ACTIONS(3279), - [sym___r_single_quote] = ACTIONS(3279), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym___global] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_union] = ACTIONS(3217), + [anon_sym_pub] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3217), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3217), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3219), + [anon_sym_AMP_CARET] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_STAR_EQ] = ACTIONS(3219), + [anon_sym_SLASH_EQ] = ACTIONS(3219), + [anon_sym_PERCENT_EQ] = ACTIONS(3219), + [anon_sym_LT_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_GT_EQ] = ACTIONS(3219), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3219), + [anon_sym_AMP_EQ] = ACTIONS(3219), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_PIPE_EQ] = ACTIONS(3219), + [anon_sym_CARET_EQ] = ACTIONS(3219), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3217), + [sym_rune_literal] = ACTIONS(3217), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3217), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [anon_sym_assert] = ACTIONS(3217), + [anon_sym_defer] = ACTIONS(3217), + [anon_sym_goto] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_DOLLARfor] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_POUND] = ACTIONS(3217), + [anon_sym_asm] = ACTIONS(3217), + [anon_sym_AT_LBRACK] = ACTIONS(3217), + [sym___double_quote] = ACTIONS(3217), + [sym___single_quote] = ACTIONS(3217), + [sym___c_double_quote] = ACTIONS(3217), + [sym___c_single_quote] = ACTIONS(3217), + [sym___r_double_quote] = ACTIONS(3217), + [sym___r_single_quote] = ACTIONS(3217), }, - [705] = { - [ts_builtin_sym_end] = ACTIONS(3281), - [sym_identifier] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3283), - [anon_sym_CR] = ACTIONS(3283), - [anon_sym_CR_LF] = ACTIONS(3283), + [678] = { + [ts_builtin_sym_end] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3227), + [anon_sym_LF] = ACTIONS(3227), + [anon_sym_CR] = ACTIONS(3227), + [anon_sym_CR_LF] = ACTIONS(3227), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3283), - [anon_sym_as] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_const] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_EQ] = ACTIONS(3283), - [anon_sym___global] = ACTIONS(3283), - [anon_sym_type] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_fn] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_PERCENT] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_EQ_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3283), - [anon_sym_LT_EQ] = ACTIONS(3283), - [anon_sym_GT_EQ] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_union] = ACTIONS(3283), - [anon_sym_pub] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(3283), - [anon_sym_enum] = ACTIONS(3283), - [anon_sym_interface] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_go] = ACTIONS(3283), - [anon_sym_spawn] = ACTIONS(3283), - [anon_sym_json_DOTdecode] = ACTIONS(3283), - [anon_sym_LBRACK2] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [anon_sym_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_GT_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_CARET] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_or] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_nil] = ACTIONS(3283), - [anon_sym_QMARK_DOT] = ACTIONS(3283), - [anon_sym_POUND_LBRACK] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_DOLLARif] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_BANGis] = ACTIONS(3283), - [anon_sym_in] = ACTIONS(3283), - [anon_sym_BANGin] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_STAR_EQ] = ACTIONS(3283), - [anon_sym_SLASH_EQ] = ACTIONS(3283), - [anon_sym_PERCENT_EQ] = ACTIONS(3283), - [anon_sym_LT_LT_EQ] = ACTIONS(3283), - [anon_sym_GT_GT_EQ] = ACTIONS(3283), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3283), - [anon_sym_AMP_EQ] = ACTIONS(3283), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3283), - [anon_sym_PLUS_EQ] = ACTIONS(3283), - [anon_sym_DASH_EQ] = ACTIONS(3283), - [anon_sym_PIPE_EQ] = ACTIONS(3283), - [anon_sym_CARET_EQ] = ACTIONS(3283), - [anon_sym_COLON_EQ] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_rlock] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_sql] = ACTIONS(3283), - [sym_int_literal] = ACTIONS(3283), - [sym_float_literal] = ACTIONS(3283), - [sym_rune_literal] = ACTIONS(3283), - [sym_pseudo_compile_time_identifier] = ACTIONS(3283), - [anon_sym_shared] = ACTIONS(3283), - [anon_sym_map_LBRACK] = ACTIONS(3283), - [anon_sym_chan] = ACTIONS(3283), - [anon_sym_thread] = ACTIONS(3283), - [anon_sym_atomic] = ACTIONS(3283), - [anon_sym_assert] = ACTIONS(3283), - [anon_sym_defer] = ACTIONS(3283), - [anon_sym_goto] = ACTIONS(3283), - [anon_sym_break] = ACTIONS(3283), - [anon_sym_continue] = ACTIONS(3283), - [anon_sym_return] = ACTIONS(3283), - [anon_sym_DOLLARfor] = ACTIONS(3283), - [anon_sym_for] = ACTIONS(3283), - [anon_sym_POUND] = ACTIONS(3283), - [anon_sym_asm] = ACTIONS(3283), - [anon_sym_AT_LBRACK] = ACTIONS(3283), - [sym___double_quote] = ACTIONS(3283), - [sym___single_quote] = ACTIONS(3283), - [sym___c_double_quote] = ACTIONS(3283), - [sym___c_single_quote] = ACTIONS(3283), - [sym___r_double_quote] = ACTIONS(3283), - [sym___r_single_quote] = ACTIONS(3283), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_COMMA] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3229), + [anon_sym___global] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_union] = ACTIONS(3227), + [anon_sym_pub] = ACTIONS(3227), + [anon_sym_mut] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3227), + [anon_sym_spawn] = ACTIONS(3227), + [anon_sym_json_DOTdecode] = ACTIONS(3227), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3227), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_or] = ACTIONS(3229), + [sym_none] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_nil] = ACTIONS(3227), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_DOLLARif] = ACTIONS(3227), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3227), + [anon_sym_select] = ACTIONS(3227), + [anon_sym_STAR_EQ] = ACTIONS(3229), + [anon_sym_SLASH_EQ] = ACTIONS(3229), + [anon_sym_PERCENT_EQ] = ACTIONS(3229), + [anon_sym_LT_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_GT_EQ] = ACTIONS(3229), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3229), + [anon_sym_AMP_EQ] = ACTIONS(3229), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_PIPE_EQ] = ACTIONS(3229), + [anon_sym_CARET_EQ] = ACTIONS(3229), + [anon_sym_COLON_EQ] = ACTIONS(3229), + [anon_sym_lock] = ACTIONS(3227), + [anon_sym_rlock] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_sql] = ACTIONS(3227), + [sym_int_literal] = ACTIONS(3227), + [sym_float_literal] = ACTIONS(3227), + [sym_rune_literal] = ACTIONS(3227), + [sym_pseudo_compile_time_identifier] = ACTIONS(3227), + [anon_sym_shared] = ACTIONS(3227), + [anon_sym_map_LBRACK] = ACTIONS(3227), + [anon_sym_chan] = ACTIONS(3227), + [anon_sym_thread] = ACTIONS(3227), + [anon_sym_atomic] = ACTIONS(3227), + [anon_sym_assert] = ACTIONS(3227), + [anon_sym_defer] = ACTIONS(3227), + [anon_sym_goto] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_DOLLARfor] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_POUND] = ACTIONS(3227), + [anon_sym_asm] = ACTIONS(3227), + [anon_sym_AT_LBRACK] = ACTIONS(3227), + [sym___double_quote] = ACTIONS(3227), + [sym___single_quote] = ACTIONS(3227), + [sym___c_double_quote] = ACTIONS(3227), + [sym___c_single_quote] = ACTIONS(3227), + [sym___r_double_quote] = ACTIONS(3227), + [sym___r_single_quote] = ACTIONS(3227), }, - [706] = { - [sym__expression] = STATE(270), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [679] = { + [ts_builtin_sym_end] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_EQ] = ACTIONS(3237), + [anon_sym___global] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_union] = ACTIONS(3237), + [anon_sym_pub] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_STAR_EQ] = ACTIONS(3237), + [anon_sym_SLASH_EQ] = ACTIONS(3237), + [anon_sym_PERCENT_EQ] = ACTIONS(3237), + [anon_sym_LT_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_GT_EQ] = ACTIONS(3237), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3237), + [anon_sym_AMP_EQ] = ACTIONS(3237), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3237), + [anon_sym_PLUS_EQ] = ACTIONS(3237), + [anon_sym_DASH_EQ] = ACTIONS(3237), + [anon_sym_PIPE_EQ] = ACTIONS(3237), + [anon_sym_CARET_EQ] = ACTIONS(3237), + [anon_sym_COLON_EQ] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_defer] = ACTIONS(3237), + [anon_sym_goto] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_DOLLARfor] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_asm] = ACTIONS(3237), + [anon_sym_AT_LBRACK] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3237), + [sym___single_quote] = ACTIONS(3237), + [sym___c_double_quote] = ACTIONS(3237), + [sym___c_single_quote] = ACTIONS(3237), + [sym___r_double_quote] = ACTIONS(3237), + [sym___r_single_quote] = ACTIONS(3237), + }, + [680] = { + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_EQ] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3241), + [anon_sym_pub] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_STAR_EQ] = ACTIONS(3241), + [anon_sym_SLASH_EQ] = ACTIONS(3241), + [anon_sym_PERCENT_EQ] = ACTIONS(3241), + [anon_sym_LT_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_GT_EQ] = ACTIONS(3241), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3241), + [anon_sym_AMP_EQ] = ACTIONS(3241), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3241), + [anon_sym_PLUS_EQ] = ACTIONS(3241), + [anon_sym_DASH_EQ] = ACTIONS(3241), + [anon_sym_PIPE_EQ] = ACTIONS(3241), + [anon_sym_CARET_EQ] = ACTIONS(3241), + [anon_sym_COLON_EQ] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [anon_sym_assert] = ACTIONS(3241), + [anon_sym_defer] = ACTIONS(3241), + [anon_sym_goto] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_DOLLARfor] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_asm] = ACTIONS(3241), + [anon_sym_AT_LBRACK] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3241), + [sym___single_quote] = ACTIONS(3241), + [sym___c_double_quote] = ACTIONS(3241), + [sym___c_single_quote] = ACTIONS(3241), + [sym___r_double_quote] = ACTIONS(3241), + [sym___r_single_quote] = ACTIONS(3241), + }, + [681] = { + [sym__expression] = STATE(1691), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), + }, + [682] = { + [sym__expression] = STATE(2862), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [683] = { + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4280), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), + }, + [684] = { + [sym__expression] = STATE(1937), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_struct] = ACTIONS(819), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), + }, + [685] = { + [sym__expression] = STATE(990), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), + }, + [686] = { + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_COMMA] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_EQ] = ACTIONS(3245), + [anon_sym___global] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_pub] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3245), + [anon_sym_POUND_LBRACK] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3245), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_STAR_EQ] = ACTIONS(3245), + [anon_sym_SLASH_EQ] = ACTIONS(3245), + [anon_sym_PERCENT_EQ] = ACTIONS(3245), + [anon_sym_LT_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_GT_EQ] = ACTIONS(3245), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3245), + [anon_sym_AMP_EQ] = ACTIONS(3245), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3245), + [anon_sym_PLUS_EQ] = ACTIONS(3245), + [anon_sym_DASH_EQ] = ACTIONS(3245), + [anon_sym_PIPE_EQ] = ACTIONS(3245), + [anon_sym_CARET_EQ] = ACTIONS(3245), + [anon_sym_COLON_EQ] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [sym_pseudo_compile_time_identifier] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [anon_sym_assert] = ACTIONS(3245), + [anon_sym_defer] = ACTIONS(3245), + [anon_sym_goto] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_DOLLARfor] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_asm] = ACTIONS(3245), + [anon_sym_AT_LBRACK] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), + }, + [687] = { + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), + }, + [688] = { + [sym__expression] = STATE(242), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4152), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2845), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), @@ -107002,74 +104988,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [707] = { - [sym__expression] = STATE(269), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [689] = { + [sym__expression] = STATE(235), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2845), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), @@ -107115,74 +105101,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [708] = { - [sym__expression] = STATE(265), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [690] = { + [sym__expression] = STATE(1642), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(377), + [sym___single_quote] = ACTIONS(379), + [sym___c_double_quote] = ACTIONS(381), + [sym___c_single_quote] = ACTIONS(383), + [sym___r_double_quote] = ACTIONS(385), + [sym___r_single_quote] = ACTIONS(387), + }, + [691] = { + [sym__expression] = STATE(240), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2845), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), @@ -107228,4498 +105327,4724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [709] = { - [sym__expression] = STATE(2381), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [692] = { + [sym__expression] = STATE(1808), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [710] = { - [sym__expression] = STATE(2854), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [693] = { + [sym__expression] = STATE(242), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4099), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [711] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2971), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2963), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [694] = { + [sym__expression] = STATE(1805), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [712] = { - [sym__expression] = STATE(2833), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3652), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [695] = { + [sym__expression] = STATE(236), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [713] = { - [sym__expression] = STATE(2301), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [696] = { + [ts_builtin_sym_end] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_EQ] = ACTIONS(3249), + [anon_sym___global] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_EQ] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_union] = ACTIONS(3249), + [anon_sym_pub] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3249), + [anon_sym_AMP_CARET] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_STAR_EQ] = ACTIONS(3249), + [anon_sym_SLASH_EQ] = ACTIONS(3249), + [anon_sym_PERCENT_EQ] = ACTIONS(3249), + [anon_sym_LT_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_GT_EQ] = ACTIONS(3249), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3249), + [anon_sym_AMP_EQ] = ACTIONS(3249), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3249), + [anon_sym_PLUS_EQ] = ACTIONS(3249), + [anon_sym_DASH_EQ] = ACTIONS(3249), + [anon_sym_PIPE_EQ] = ACTIONS(3249), + [anon_sym_CARET_EQ] = ACTIONS(3249), + [anon_sym_COLON_EQ] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_defer] = ACTIONS(3249), + [anon_sym_goto] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_DOLLARfor] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3249), + [anon_sym_asm] = ACTIONS(3249), + [anon_sym_AT_LBRACK] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3249), + [sym___single_quote] = ACTIONS(3249), + [sym___c_double_quote] = ACTIONS(3249), + [sym___c_single_quote] = ACTIONS(3249), + [sym___r_double_quote] = ACTIONS(3249), + [sym___r_single_quote] = ACTIONS(3249), + }, + [697] = { + [sym__expression] = STATE(982), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [714] = { - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [698] = { + [sym__expression] = STATE(2461), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [715] = { - [ts_builtin_sym_end] = ACTIONS(3285), - [sym_identifier] = ACTIONS(3287), - [anon_sym_LF] = ACTIONS(3287), - [anon_sym_CR] = ACTIONS(3287), - [anon_sym_CR_LF] = ACTIONS(3287), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_as] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_EQ] = ACTIONS(3287), - [anon_sym___global] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_fn] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_PERCENT] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_EQ_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [anon_sym_LT_EQ] = ACTIONS(3287), - [anon_sym_GT_EQ] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_union] = ACTIONS(3287), - [anon_sym_pub] = ACTIONS(3287), - [anon_sym_mut] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(3287), - [anon_sym_spawn] = ACTIONS(3287), - [anon_sym_json_DOTdecode] = ACTIONS(3287), - [anon_sym_LBRACK2] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym_LT_DASH] = ACTIONS(3287), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_GT_GT_GT] = ACTIONS(3287), - [anon_sym_AMP_CARET] = ACTIONS(3287), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_or] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_nil] = ACTIONS(3287), - [anon_sym_QMARK_DOT] = ACTIONS(3287), - [anon_sym_POUND_LBRACK] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_DOLLARif] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_BANGis] = ACTIONS(3287), - [anon_sym_in] = ACTIONS(3287), - [anon_sym_BANGin] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_STAR_EQ] = ACTIONS(3287), - [anon_sym_SLASH_EQ] = ACTIONS(3287), - [anon_sym_PERCENT_EQ] = ACTIONS(3287), - [anon_sym_LT_LT_EQ] = ACTIONS(3287), - [anon_sym_GT_GT_EQ] = ACTIONS(3287), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3287), - [anon_sym_AMP_EQ] = ACTIONS(3287), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3287), - [anon_sym_PLUS_EQ] = ACTIONS(3287), - [anon_sym_DASH_EQ] = ACTIONS(3287), - [anon_sym_PIPE_EQ] = ACTIONS(3287), - [anon_sym_CARET_EQ] = ACTIONS(3287), - [anon_sym_COLON_EQ] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_rlock] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_sql] = ACTIONS(3287), - [sym_int_literal] = ACTIONS(3287), - [sym_float_literal] = ACTIONS(3287), - [sym_rune_literal] = ACTIONS(3287), - [sym_pseudo_compile_time_identifier] = ACTIONS(3287), - [anon_sym_shared] = ACTIONS(3287), - [anon_sym_map_LBRACK] = ACTIONS(3287), - [anon_sym_chan] = ACTIONS(3287), - [anon_sym_thread] = ACTIONS(3287), - [anon_sym_atomic] = ACTIONS(3287), - [anon_sym_assert] = ACTIONS(3287), - [anon_sym_defer] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_DOLLARfor] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_POUND] = ACTIONS(3287), - [anon_sym_asm] = ACTIONS(3287), - [anon_sym_AT_LBRACK] = ACTIONS(3287), - [sym___double_quote] = ACTIONS(3287), - [sym___single_quote] = ACTIONS(3287), - [sym___c_double_quote] = ACTIONS(3287), - [sym___c_single_quote] = ACTIONS(3287), - [sym___r_double_quote] = ACTIONS(3287), - [sym___r_single_quote] = ACTIONS(3287), + [699] = { + [sym__expression] = STATE(2659), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [716] = { - [ts_builtin_sym_end] = ACTIONS(3289), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LF] = ACTIONS(3291), - [anon_sym_CR] = ACTIONS(3291), - [anon_sym_CR_LF] = ACTIONS(3291), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_as] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(3291), - [anon_sym___global] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_fn] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_EQ_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3291), - [anon_sym_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_EQ] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3291), - [anon_sym_pub] = ACTIONS(3291), - [anon_sym_mut] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_go] = ACTIONS(3291), - [anon_sym_spawn] = ACTIONS(3291), - [anon_sym_json_DOTdecode] = ACTIONS(3291), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(3291), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_GT_GT_GT] = ACTIONS(3291), - [anon_sym_AMP_CARET] = ACTIONS(3291), - [anon_sym_AMP_AMP] = ACTIONS(3291), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_or] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_nil] = ACTIONS(3291), - [anon_sym_QMARK_DOT] = ACTIONS(3291), - [anon_sym_POUND_LBRACK] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_DOLLARif] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_BANGis] = ACTIONS(3291), - [anon_sym_in] = ACTIONS(3291), - [anon_sym_BANGin] = ACTIONS(3291), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_STAR_EQ] = ACTIONS(3291), - [anon_sym_SLASH_EQ] = ACTIONS(3291), - [anon_sym_PERCENT_EQ] = ACTIONS(3291), - [anon_sym_LT_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_GT_EQ] = ACTIONS(3291), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3291), - [anon_sym_AMP_EQ] = ACTIONS(3291), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3291), - [anon_sym_PLUS_EQ] = ACTIONS(3291), - [anon_sym_DASH_EQ] = ACTIONS(3291), - [anon_sym_PIPE_EQ] = ACTIONS(3291), - [anon_sym_CARET_EQ] = ACTIONS(3291), - [anon_sym_COLON_EQ] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_rlock] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_sql] = ACTIONS(3291), - [sym_int_literal] = ACTIONS(3291), - [sym_float_literal] = ACTIONS(3291), - [sym_rune_literal] = ACTIONS(3291), - [sym_pseudo_compile_time_identifier] = ACTIONS(3291), - [anon_sym_shared] = ACTIONS(3291), - [anon_sym_map_LBRACK] = ACTIONS(3291), - [anon_sym_chan] = ACTIONS(3291), - [anon_sym_thread] = ACTIONS(3291), - [anon_sym_atomic] = ACTIONS(3291), - [anon_sym_assert] = ACTIONS(3291), - [anon_sym_defer] = ACTIONS(3291), - [anon_sym_goto] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_DOLLARfor] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_POUND] = ACTIONS(3291), - [anon_sym_asm] = ACTIONS(3291), - [anon_sym_AT_LBRACK] = ACTIONS(3291), - [sym___double_quote] = ACTIONS(3291), - [sym___single_quote] = ACTIONS(3291), - [sym___c_double_quote] = ACTIONS(3291), - [sym___c_single_quote] = ACTIONS(3291), - [sym___r_double_quote] = ACTIONS(3291), - [sym___r_single_quote] = ACTIONS(3291), + [700] = { + [sym__expression] = STATE(2660), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [717] = { - [sym__expression] = STATE(2819), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [701] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2947), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2948), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [718] = { - [ts_builtin_sym_end] = ACTIONS(3293), - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), + [702] = { + [sym__expression] = STATE(2850), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [703] = { + [sym__expression] = STATE(2460), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), + }, + [704] = { + [sym__expression] = STATE(1804), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), + }, + [705] = { + [sym__expression] = STATE(1152), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3253), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_CR] = ACTIONS(3253), + [anon_sym_CR_LF] = ACTIONS(3253), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_EQ] = ACTIONS(3295), - [anon_sym___global] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_EQ] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3295), - [anon_sym_pub] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3295), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_CARET] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3295), - [anon_sym_POUND_LBRACK] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3295), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_STAR_EQ] = ACTIONS(3295), - [anon_sym_SLASH_EQ] = ACTIONS(3295), - [anon_sym_PERCENT_EQ] = ACTIONS(3295), - [anon_sym_LT_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_GT_EQ] = ACTIONS(3295), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3295), - [anon_sym_AMP_EQ] = ACTIONS(3295), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3295), - [anon_sym_PLUS_EQ] = ACTIONS(3295), - [anon_sym_DASH_EQ] = ACTIONS(3295), - [anon_sym_PIPE_EQ] = ACTIONS(3295), - [anon_sym_CARET_EQ] = ACTIONS(3295), - [anon_sym_COLON_EQ] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3295), - [sym_rune_literal] = ACTIONS(3295), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_defer] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_DOLLARfor] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(3295), - [anon_sym_asm] = ACTIONS(3295), - [anon_sym_AT_LBRACK] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3295), - [sym___single_quote] = ACTIONS(3295), - [sym___c_double_quote] = ACTIONS(3295), - [sym___c_single_quote] = ACTIONS(3295), - [sym___r_double_quote] = ACTIONS(3295), - [sym___r_single_quote] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_EQ] = ACTIONS(3253), + [anon_sym___global] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_union] = ACTIONS(3253), + [anon_sym_pub] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3253), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3253), + [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3253), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_STAR_EQ] = ACTIONS(3253), + [anon_sym_SLASH_EQ] = ACTIONS(3253), + [anon_sym_PERCENT_EQ] = ACTIONS(3253), + [anon_sym_LT_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_GT_EQ] = ACTIONS(3253), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3253), + [anon_sym_AMP_EQ] = ACTIONS(3253), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3253), + [anon_sym_PLUS_EQ] = ACTIONS(3253), + [anon_sym_DASH_EQ] = ACTIONS(3253), + [anon_sym_PIPE_EQ] = ACTIONS(3253), + [anon_sym_CARET_EQ] = ACTIONS(3253), + [anon_sym_COLON_EQ] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + [sym_rune_literal] = ACTIONS(3253), + [sym_pseudo_compile_time_identifier] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3253), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [anon_sym_assert] = ACTIONS(3253), + [anon_sym_defer] = ACTIONS(3253), + [anon_sym_goto] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_DOLLARfor] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_asm] = ACTIONS(3253), + [anon_sym_AT_LBRACK] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3253), + [sym___single_quote] = ACTIONS(3253), + [sym___c_double_quote] = ACTIONS(3253), + [sym___c_single_quote] = ACTIONS(3253), + [sym___r_double_quote] = ACTIONS(3253), + [sym___r_single_quote] = ACTIONS(3253), }, - [719] = { - [sym__expression] = STATE(2322), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [707] = { + [sym__expression] = STATE(1803), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [720] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4313), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [708] = { + [sym__expression] = STATE(998), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [721] = { - [sym__expression] = STATE(2441), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [709] = { + [sym__expression] = STATE(2655), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [722] = { - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [710] = { + [sym__expression] = STATE(2677), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [723] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4316), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [711] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3257), + [anon_sym___global] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_union] = ACTIONS(3257), + [anon_sym_pub] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_STAR_EQ] = ACTIONS(3257), + [anon_sym_SLASH_EQ] = ACTIONS(3257), + [anon_sym_PERCENT_EQ] = ACTIONS(3257), + [anon_sym_LT_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_GT_EQ] = ACTIONS(3257), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3257), + [anon_sym_AMP_EQ] = ACTIONS(3257), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3257), + [anon_sym_PLUS_EQ] = ACTIONS(3257), + [anon_sym_DASH_EQ] = ACTIONS(3257), + [anon_sym_PIPE_EQ] = ACTIONS(3257), + [anon_sym_CARET_EQ] = ACTIONS(3257), + [anon_sym_COLON_EQ] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_defer] = ACTIONS(3257), + [anon_sym_goto] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_DOLLARfor] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_asm] = ACTIONS(3257), + [anon_sym_AT_LBRACK] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3257), + [sym___single_quote] = ACTIONS(3257), + [sym___c_double_quote] = ACTIONS(3257), + [sym___c_single_quote] = ACTIONS(3257), + [sym___r_double_quote] = ACTIONS(3257), + [sym___r_single_quote] = ACTIONS(3257), + }, + [712] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(3654), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [724] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4323), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [713] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2965), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2962), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [725] = { - [sym__expression] = STATE(2320), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [714] = { + [sym__expression] = STATE(2689), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [726] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2936), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2931), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [715] = { + [sym__expression] = STATE(2459), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [727] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [716] = { + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym___global] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_union] = ACTIONS(3261), + [anon_sym_pub] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_STAR_EQ] = ACTIONS(3261), + [anon_sym_SLASH_EQ] = ACTIONS(3261), + [anon_sym_PERCENT_EQ] = ACTIONS(3261), + [anon_sym_LT_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_GT_EQ] = ACTIONS(3261), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3261), + [anon_sym_AMP_EQ] = ACTIONS(3261), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3261), + [anon_sym_PLUS_EQ] = ACTIONS(3261), + [anon_sym_DASH_EQ] = ACTIONS(3261), + [anon_sym_PIPE_EQ] = ACTIONS(3261), + [anon_sym_CARET_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [sym_pseudo_compile_time_identifier] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_defer] = ACTIONS(3261), + [anon_sym_goto] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_DOLLARfor] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_asm] = ACTIONS(3261), + [anon_sym_AT_LBRACK] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), + }, + [717] = { + [sym__expression] = STATE(991), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [728] = { - [sym__expression] = STATE(2627), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [718] = { + [ts_builtin_sym_end] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3265), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_CR] = ACTIONS(3265), + [anon_sym_CR_LF] = ACTIONS(3265), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_EQ] = ACTIONS(3265), + [anon_sym___global] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_union] = ACTIONS(3265), + [anon_sym_pub] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3265), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3265), + [anon_sym_POUND_LBRACK] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3265), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3265), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_STAR_EQ] = ACTIONS(3265), + [anon_sym_SLASH_EQ] = ACTIONS(3265), + [anon_sym_PERCENT_EQ] = ACTIONS(3265), + [anon_sym_LT_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_GT_EQ] = ACTIONS(3265), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3265), + [anon_sym_AMP_EQ] = ACTIONS(3265), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3265), + [anon_sym_PLUS_EQ] = ACTIONS(3265), + [anon_sym_DASH_EQ] = ACTIONS(3265), + [anon_sym_PIPE_EQ] = ACTIONS(3265), + [anon_sym_CARET_EQ] = ACTIONS(3265), + [anon_sym_COLON_EQ] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + [sym_rune_literal] = ACTIONS(3265), + [sym_pseudo_compile_time_identifier] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3265), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [anon_sym_assert] = ACTIONS(3265), + [anon_sym_defer] = ACTIONS(3265), + [anon_sym_goto] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_DOLLARfor] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_POUND] = ACTIONS(3265), + [anon_sym_asm] = ACTIONS(3265), + [anon_sym_AT_LBRACK] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3265), + [sym___single_quote] = ACTIONS(3265), + [sym___c_double_quote] = ACTIONS(3265), + [sym___c_single_quote] = ACTIONS(3265), + [sym___r_double_quote] = ACTIONS(3265), + [sym___r_single_quote] = ACTIONS(3265), + }, + [719] = { + [sym__expression] = STATE(1802), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2207), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_go] = ACTIONS(2213), - [anon_sym_spawn] = ACTIONS(2215), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(2217), - [anon_sym_TILDE] = ACTIONS(2207), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_LT_DASH] = ACTIONS(2221), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2223), - [anon_sym_lock] = ACTIONS(2225), - [anon_sym_rlock] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [729] = { - [sym__expression] = STATE(256), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4216), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [720] = { + [sym__expression] = STATE(2633), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [730] = { - [sym__expression] = STATE(234), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [721] = { + [sym__expression] = STATE(1800), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [731] = { - [sym__expression] = STATE(233), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [722] = { + [sym__expression] = STATE(1799), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(807), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(811), + [anon_sym_fn] = ACTIONS(813), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), + [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), + [anon_sym_json_DOTdecode] = ACTIONS(829), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), + [sym_none] = ACTIONS(837), + [sym_true] = ACTIONS(837), + [sym_false] = ACTIONS(837), + [sym_nil] = ACTIONS(837), + [anon_sym_if] = ACTIONS(839), + [anon_sym_DOLLARif] = ACTIONS(841), + [anon_sym_match] = ACTIONS(843), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), + [anon_sym_unsafe] = ACTIONS(849), + [anon_sym_sql] = ACTIONS(851), + [sym_int_literal] = ACTIONS(837), + [sym_float_literal] = ACTIONS(853), + [sym_rune_literal] = ACTIONS(853), + [sym_pseudo_compile_time_identifier] = ACTIONS(855), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(857), + [sym___single_quote] = ACTIONS(859), + [sym___c_double_quote] = ACTIONS(861), + [sym___c_single_quote] = ACTIONS(863), + [sym___r_double_quote] = ACTIONS(865), + [sym___r_single_quote] = ACTIONS(867), }, - [732] = { - [sym__expression] = STATE(256), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4225), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [723] = { + [sym__expression] = STATE(2695), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [733] = { - [sym__expression] = STATE(284), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [724] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2982), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2963), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_fn] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(29), - [anon_sym_DASH] = ACTIONS(29), - [anon_sym_STAR] = ACTIONS(31), - [anon_sym_struct] = ACTIONS(485), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(47), - [anon_sym_go] = ACTIONS(49), - [anon_sym_spawn] = ACTIONS(51), - [anon_sym_json_DOTdecode] = ACTIONS(53), - [anon_sym_LBRACK2] = ACTIONS(487), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_CARET] = ACTIONS(29), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_LT_DASH] = ACTIONS(59), - [sym_none] = ACTIONS(61), - [sym_true] = ACTIONS(61), - [sym_false] = ACTIONS(61), - [sym_nil] = ACTIONS(61), - [anon_sym_if] = ACTIONS(63), - [anon_sym_DOLLARif] = ACTIONS(65), - [anon_sym_match] = ACTIONS(67), - [anon_sym_select] = ACTIONS(69), - [anon_sym_lock] = ACTIONS(71), - [anon_sym_rlock] = ACTIONS(71), - [anon_sym_unsafe] = ACTIONS(73), - [anon_sym_sql] = ACTIONS(75), - [sym_int_literal] = ACTIONS(61), - [sym_float_literal] = ACTIONS(77), - [sym_rune_literal] = ACTIONS(77), - [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(113), - [sym___single_quote] = ACTIONS(115), - [sym___c_double_quote] = ACTIONS(117), - [sym___c_single_quote] = ACTIONS(119), - [sym___r_double_quote] = ACTIONS(121), - [sym___r_single_quote] = ACTIONS(123), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [734] = { - [ts_builtin_sym_end] = ACTIONS(3297), - [sym_identifier] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_CR] = ACTIONS(3299), - [anon_sym_CR_LF] = ACTIONS(3299), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_COMMA] = ACTIONS(3299), - [anon_sym_const] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_EQ] = ACTIONS(3299), - [anon_sym___global] = ACTIONS(3299), - [anon_sym_type] = ACTIONS(3299), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_LT_EQ] = ACTIONS(3299), - [anon_sym_GT_EQ] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_union] = ACTIONS(3299), - [anon_sym_pub] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_enum] = ACTIONS(3299), - [anon_sym_interface] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3299), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3299), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3299), - [anon_sym_AMP_CARET] = ACTIONS(3299), - [anon_sym_AMP_AMP] = ACTIONS(3299), - [anon_sym_PIPE_PIPE] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3299), - [anon_sym_POUND_LBRACK] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3299), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3299), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_STAR_EQ] = ACTIONS(3299), - [anon_sym_SLASH_EQ] = ACTIONS(3299), - [anon_sym_PERCENT_EQ] = ACTIONS(3299), - [anon_sym_LT_LT_EQ] = ACTIONS(3299), - [anon_sym_GT_GT_EQ] = ACTIONS(3299), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3299), - [anon_sym_AMP_EQ] = ACTIONS(3299), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3299), - [anon_sym_PLUS_EQ] = ACTIONS(3299), - [anon_sym_DASH_EQ] = ACTIONS(3299), - [anon_sym_PIPE_EQ] = ACTIONS(3299), - [anon_sym_CARET_EQ] = ACTIONS(3299), - [anon_sym_COLON_EQ] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3299), - [sym_rune_literal] = ACTIONS(3299), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3299), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [anon_sym_assert] = ACTIONS(3299), - [anon_sym_defer] = ACTIONS(3299), - [anon_sym_goto] = ACTIONS(3299), - [anon_sym_break] = ACTIONS(3299), - [anon_sym_continue] = ACTIONS(3299), - [anon_sym_return] = ACTIONS(3299), - [anon_sym_DOLLARfor] = ACTIONS(3299), - [anon_sym_for] = ACTIONS(3299), - [anon_sym_POUND] = ACTIONS(3299), - [anon_sym_asm] = ACTIONS(3299), - [anon_sym_AT_LBRACK] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3299), - [sym___single_quote] = ACTIONS(3299), - [sym___c_double_quote] = ACTIONS(3299), - [sym___c_single_quote] = ACTIONS(3299), - [sym___r_double_quote] = ACTIONS(3299), - [sym___r_single_quote] = ACTIONS(3299), + [725] = { + [sym__expression] = STATE(2739), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [735] = { - [ts_builtin_sym_end] = ACTIONS(3301), - [sym_identifier] = ACTIONS(3303), - [anon_sym_LF] = ACTIONS(3303), - [anon_sym_CR] = ACTIONS(3303), - [anon_sym_CR_LF] = ACTIONS(3303), + [726] = { + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3303), - [anon_sym_as] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_COMMA] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym_EQ] = ACTIONS(3303), - [anon_sym___global] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_PIPE] = ACTIONS(3303), - [anon_sym_fn] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3303), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3303), - [anon_sym_BANG_EQ] = ACTIONS(3303), - [anon_sym_LT_EQ] = ACTIONS(3303), - [anon_sym_GT_EQ] = ACTIONS(3303), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_union] = ACTIONS(3303), - [anon_sym_pub] = ACTIONS(3303), - [anon_sym_mut] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_PLUS_PLUS] = ACTIONS(3303), - [anon_sym_DASH_DASH] = ACTIONS(3303), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_go] = ACTIONS(3303), - [anon_sym_spawn] = ACTIONS(3303), - [anon_sym_json_DOTdecode] = ACTIONS(3303), - [anon_sym_LBRACK2] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3303), - [anon_sym_LT_DASH] = ACTIONS(3303), - [anon_sym_LT_LT] = ACTIONS(3303), - [anon_sym_GT_GT] = ACTIONS(3303), - [anon_sym_GT_GT_GT] = ACTIONS(3303), - [anon_sym_AMP_CARET] = ACTIONS(3303), - [anon_sym_AMP_AMP] = ACTIONS(3303), - [anon_sym_PIPE_PIPE] = ACTIONS(3303), - [anon_sym_or] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_nil] = ACTIONS(3303), - [anon_sym_QMARK_DOT] = ACTIONS(3303), - [anon_sym_POUND_LBRACK] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_DOLLARif] = ACTIONS(3303), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_BANGis] = ACTIONS(3303), - [anon_sym_in] = ACTIONS(3303), - [anon_sym_BANGin] = ACTIONS(3303), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_STAR_EQ] = ACTIONS(3303), - [anon_sym_SLASH_EQ] = ACTIONS(3303), - [anon_sym_PERCENT_EQ] = ACTIONS(3303), - [anon_sym_LT_LT_EQ] = ACTIONS(3303), - [anon_sym_GT_GT_EQ] = ACTIONS(3303), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3303), - [anon_sym_AMP_EQ] = ACTIONS(3303), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3303), - [anon_sym_PLUS_EQ] = ACTIONS(3303), - [anon_sym_DASH_EQ] = ACTIONS(3303), - [anon_sym_PIPE_EQ] = ACTIONS(3303), - [anon_sym_CARET_EQ] = ACTIONS(3303), - [anon_sym_COLON_EQ] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_rlock] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_sql] = ACTIONS(3303), - [sym_int_literal] = ACTIONS(3303), - [sym_float_literal] = ACTIONS(3303), - [sym_rune_literal] = ACTIONS(3303), - [sym_pseudo_compile_time_identifier] = ACTIONS(3303), - [anon_sym_shared] = ACTIONS(3303), - [anon_sym_map_LBRACK] = ACTIONS(3303), - [anon_sym_chan] = ACTIONS(3303), - [anon_sym_thread] = ACTIONS(3303), - [anon_sym_atomic] = ACTIONS(3303), - [anon_sym_assert] = ACTIONS(3303), - [anon_sym_defer] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_DOLLARfor] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_POUND] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3303), - [anon_sym_AT_LBRACK] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(3303), - [sym___single_quote] = ACTIONS(3303), - [sym___c_double_quote] = ACTIONS(3303), - [sym___c_single_quote] = ACTIONS(3303), - [sym___r_double_quote] = ACTIONS(3303), - [sym___r_single_quote] = ACTIONS(3303), - }, - [736] = { - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_EQ] = ACTIONS(3307), - [anon_sym___global] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_union] = ACTIONS(3307), - [anon_sym_pub] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [anon_sym_LT_LT] = ACTIONS(3307), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3307), - [anon_sym_AMP_CARET] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3307), - [anon_sym_POUND_LBRACK] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3307), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_STAR_EQ] = ACTIONS(3307), - [anon_sym_SLASH_EQ] = ACTIONS(3307), - [anon_sym_PERCENT_EQ] = ACTIONS(3307), - [anon_sym_LT_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_GT_EQ] = ACTIONS(3307), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3307), - [anon_sym_AMP_EQ] = ACTIONS(3307), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3307), - [anon_sym_PLUS_EQ] = ACTIONS(3307), - [anon_sym_DASH_EQ] = ACTIONS(3307), - [anon_sym_PIPE_EQ] = ACTIONS(3307), - [anon_sym_CARET_EQ] = ACTIONS(3307), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [anon_sym_assert] = ACTIONS(3307), - [anon_sym_defer] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_DOLLARfor] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_asm] = ACTIONS(3307), - [anon_sym_AT_LBRACK] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), - }, - [737] = { - [sym__expression] = STATE(2659), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [738] = { - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_EQ] = ACTIONS(3311), - [anon_sym___global] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3311), - [anon_sym_BANG_EQ] = ACTIONS(3311), - [anon_sym_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_EQ] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_union] = ACTIONS(3311), - [anon_sym_pub] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3311), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_CARET] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3311), - [anon_sym_LT_LT] = ACTIONS(3311), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3311), - [anon_sym_AMP_CARET] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_PIPE_PIPE] = ACTIONS(3311), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3311), - [anon_sym_POUND_LBRACK] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3311), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_STAR_EQ] = ACTIONS(3311), - [anon_sym_SLASH_EQ] = ACTIONS(3311), - [anon_sym_PERCENT_EQ] = ACTIONS(3311), - [anon_sym_LT_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_GT_EQ] = ACTIONS(3311), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3311), - [anon_sym_AMP_EQ] = ACTIONS(3311), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3311), - [anon_sym_PLUS_EQ] = ACTIONS(3311), - [anon_sym_DASH_EQ] = ACTIONS(3311), - [anon_sym_PIPE_EQ] = ACTIONS(3311), - [anon_sym_CARET_EQ] = ACTIONS(3311), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3311), - [sym_rune_literal] = ACTIONS(3311), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3311), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [anon_sym_assert] = ACTIONS(3311), - [anon_sym_defer] = ACTIONS(3311), - [anon_sym_goto] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_DOLLARfor] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_asm] = ACTIONS(3311), - [anon_sym_AT_LBRACK] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3311), - [sym___single_quote] = ACTIONS(3311), - [sym___c_double_quote] = ACTIONS(3311), - [sym___c_single_quote] = ACTIONS(3311), - [sym___r_double_quote] = ACTIONS(3311), - [sym___r_single_quote] = ACTIONS(3311), - }, - [739] = { - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_EQ] = ACTIONS(3315), - [anon_sym___global] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_union] = ACTIONS(3315), - [anon_sym_pub] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_STAR_EQ] = ACTIONS(3315), - [anon_sym_SLASH_EQ] = ACTIONS(3315), - [anon_sym_PERCENT_EQ] = ACTIONS(3315), - [anon_sym_LT_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3315), - [anon_sym_AMP_EQ] = ACTIONS(3315), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3315), - [anon_sym_PLUS_EQ] = ACTIONS(3315), - [anon_sym_DASH_EQ] = ACTIONS(3315), - [anon_sym_PIPE_EQ] = ACTIONS(3315), - [anon_sym_CARET_EQ] = ACTIONS(3315), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3315), - [sym_rune_literal] = ACTIONS(3315), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [anon_sym_assert] = ACTIONS(3315), - [anon_sym_defer] = ACTIONS(3315), - [anon_sym_goto] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_DOLLARfor] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_POUND] = ACTIONS(3315), - [anon_sym_asm] = ACTIONS(3315), - [anon_sym_AT_LBRACK] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3315), - [sym___single_quote] = ACTIONS(3315), - [sym___c_double_quote] = ACTIONS(3315), - [sym___c_single_quote] = ACTIONS(3315), - [sym___r_double_quote] = ACTIONS(3315), - [sym___r_single_quote] = ACTIONS(3315), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_EQ] = ACTIONS(3269), + [anon_sym___global] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_union] = ACTIONS(3269), + [anon_sym_pub] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3269), + [anon_sym_AMP_CARET] = ACTIONS(3269), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3269), + [anon_sym_POUND_LBRACK] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3269), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_STAR_EQ] = ACTIONS(3269), + [anon_sym_SLASH_EQ] = ACTIONS(3269), + [anon_sym_PERCENT_EQ] = ACTIONS(3269), + [anon_sym_LT_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_GT_EQ] = ACTIONS(3269), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3269), + [anon_sym_AMP_EQ] = ACTIONS(3269), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3269), + [anon_sym_PLUS_EQ] = ACTIONS(3269), + [anon_sym_DASH_EQ] = ACTIONS(3269), + [anon_sym_PIPE_EQ] = ACTIONS(3269), + [anon_sym_CARET_EQ] = ACTIONS(3269), + [anon_sym_COLON_EQ] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [sym_pseudo_compile_time_identifier] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_defer] = ACTIONS(3269), + [anon_sym_goto] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_DOLLARfor] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(3269), + [anon_sym_asm] = ACTIONS(3269), + [anon_sym_AT_LBRACK] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3269), + [sym___single_quote] = ACTIONS(3269), + [sym___c_double_quote] = ACTIONS(3269), + [sym___c_single_quote] = ACTIONS(3269), + [sym___r_double_quote] = ACTIONS(3269), + [sym___r_single_quote] = ACTIONS(3269), }, - [740] = { - [sym__expression] = STATE(2419), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [727] = { + [sym__expression] = STATE(1164), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4349), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [741] = { - [sym__expression] = STATE(2179), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [728] = { + [sym__expression] = STATE(2656), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [742] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_EQ] = ACTIONS(3319), - [anon_sym___global] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_pub] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3319), - [anon_sym_PIPE_PIPE] = ACTIONS(3319), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3319), - [anon_sym_POUND_LBRACK] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3319), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_STAR_EQ] = ACTIONS(3319), - [anon_sym_SLASH_EQ] = ACTIONS(3319), - [anon_sym_PERCENT_EQ] = ACTIONS(3319), - [anon_sym_LT_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_GT_EQ] = ACTIONS(3319), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3319), - [anon_sym_AMP_EQ] = ACTIONS(3319), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3319), - [anon_sym_PLUS_EQ] = ACTIONS(3319), - [anon_sym_DASH_EQ] = ACTIONS(3319), - [anon_sym_PIPE_EQ] = ACTIONS(3319), - [anon_sym_CARET_EQ] = ACTIONS(3319), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_defer] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_DOLLARfor] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_POUND] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym_AT_LBRACK] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), - }, - [743] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LF] = ACTIONS(3323), - [anon_sym_CR] = ACTIONS(3323), - [anon_sym_CR_LF] = ACTIONS(3323), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_EQ] = ACTIONS(3323), - [anon_sym___global] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_union] = ACTIONS(3323), - [anon_sym_pub] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3323), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3323), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3323), - [anon_sym_AMP_CARET] = ACTIONS(3323), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3323), - [anon_sym_POUND_LBRACK] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3323), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_STAR_EQ] = ACTIONS(3323), - [anon_sym_SLASH_EQ] = ACTIONS(3323), - [anon_sym_PERCENT_EQ] = ACTIONS(3323), - [anon_sym_LT_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_GT_EQ] = ACTIONS(3323), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3323), - [anon_sym_AMP_EQ] = ACTIONS(3323), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3323), - [anon_sym_PLUS_EQ] = ACTIONS(3323), - [anon_sym_DASH_EQ] = ACTIONS(3323), - [anon_sym_PIPE_EQ] = ACTIONS(3323), - [anon_sym_CARET_EQ] = ACTIONS(3323), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3323), - [sym_rune_literal] = ACTIONS(3323), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3323), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_defer] = ACTIONS(3323), - [anon_sym_goto] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_DOLLARfor] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_POUND] = ACTIONS(3323), - [anon_sym_asm] = ACTIONS(3323), - [anon_sym_AT_LBRACK] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3323), - [sym___single_quote] = ACTIONS(3323), - [sym___c_double_quote] = ACTIONS(3323), - [sym___c_single_quote] = ACTIONS(3323), - [sym___r_double_quote] = ACTIONS(3323), - [sym___r_single_quote] = ACTIONS(3323), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [744] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [729] = { + [sym__expression] = STATE(2809), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [745] = { - [sym__expression] = STATE(2300), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [730] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(3002), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(3001), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [746] = { - [sym__expression] = STATE(2858), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [731] = { + [sym__expression] = STATE(2629), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [747] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_CR] = ACTIONS(3327), - [anon_sym_CR_LF] = ACTIONS(3327), + [732] = { + [ts_builtin_sym_end] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LF] = ACTIONS(3275), + [anon_sym_CR] = ACTIONS(3275), + [anon_sym_CR_LF] = ACTIONS(3275), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_EQ] = ACTIONS(3327), - [anon_sym___global] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_pub] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3327), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3327), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3327), - [anon_sym_AMP_CARET] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3327), - [anon_sym_POUND_LBRACK] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3327), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_STAR_EQ] = ACTIONS(3327), - [anon_sym_SLASH_EQ] = ACTIONS(3327), - [anon_sym_PERCENT_EQ] = ACTIONS(3327), - [anon_sym_LT_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_GT_EQ] = ACTIONS(3327), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3327), - [anon_sym_AMP_EQ] = ACTIONS(3327), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3327), - [anon_sym_PLUS_EQ] = ACTIONS(3327), - [anon_sym_DASH_EQ] = ACTIONS(3327), - [anon_sym_PIPE_EQ] = ACTIONS(3327), - [anon_sym_CARET_EQ] = ACTIONS(3327), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3327), - [sym_rune_literal] = ACTIONS(3327), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3327), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_defer] = ACTIONS(3327), - [anon_sym_goto] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_DOLLARfor] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_POUND] = ACTIONS(3327), - [anon_sym_asm] = ACTIONS(3327), - [anon_sym_AT_LBRACK] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3327), - [sym___single_quote] = ACTIONS(3327), - [sym___c_double_quote] = ACTIONS(3327), - [sym___c_single_quote] = ACTIONS(3327), - [sym___r_double_quote] = ACTIONS(3327), - [sym___r_single_quote] = ACTIONS(3327), + [anon_sym_DOT] = ACTIONS(3275), + [anon_sym_as] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_EQ] = ACTIONS(3275), + [anon_sym___global] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_PIPE] = ACTIONS(3275), + [anon_sym_fn] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_struct] = ACTIONS(3275), + [anon_sym_union] = ACTIONS(3275), + [anon_sym_pub] = ACTIONS(3275), + [anon_sym_mut] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_QMARK] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_go] = ACTIONS(3275), + [anon_sym_spawn] = ACTIONS(3275), + [anon_sym_json_DOTdecode] = ACTIONS(3275), + [anon_sym_LBRACK2] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym_LT_DASH] = ACTIONS(3275), + [anon_sym_LT_LT] = ACTIONS(3275), + [anon_sym_GT_GT] = ACTIONS(3275), + [anon_sym_GT_GT_GT] = ACTIONS(3275), + [anon_sym_AMP_CARET] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_or] = ACTIONS(3275), + [sym_none] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_nil] = ACTIONS(3275), + [anon_sym_QMARK_DOT] = ACTIONS(3275), + [anon_sym_POUND_LBRACK] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_DOLLARif] = ACTIONS(3275), + [anon_sym_is] = ACTIONS(3275), + [anon_sym_BANGis] = ACTIONS(3275), + [anon_sym_in] = ACTIONS(3275), + [anon_sym_BANGin] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3275), + [anon_sym_select] = ACTIONS(3275), + [anon_sym_STAR_EQ] = ACTIONS(3275), + [anon_sym_SLASH_EQ] = ACTIONS(3275), + [anon_sym_PERCENT_EQ] = ACTIONS(3275), + [anon_sym_LT_LT_EQ] = ACTIONS(3275), + [anon_sym_GT_GT_EQ] = ACTIONS(3275), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3275), + [anon_sym_AMP_EQ] = ACTIONS(3275), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3275), + [anon_sym_PLUS_EQ] = ACTIONS(3275), + [anon_sym_DASH_EQ] = ACTIONS(3275), + [anon_sym_PIPE_EQ] = ACTIONS(3275), + [anon_sym_CARET_EQ] = ACTIONS(3275), + [anon_sym_COLON_EQ] = ACTIONS(3275), + [anon_sym_lock] = ACTIONS(3275), + [anon_sym_rlock] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_sql] = ACTIONS(3275), + [sym_int_literal] = ACTIONS(3275), + [sym_float_literal] = ACTIONS(3275), + [sym_rune_literal] = ACTIONS(3275), + [sym_pseudo_compile_time_identifier] = ACTIONS(3275), + [anon_sym_shared] = ACTIONS(3275), + [anon_sym_map_LBRACK] = ACTIONS(3275), + [anon_sym_chan] = ACTIONS(3275), + [anon_sym_thread] = ACTIONS(3275), + [anon_sym_atomic] = ACTIONS(3275), + [anon_sym_assert] = ACTIONS(3275), + [anon_sym_defer] = ACTIONS(3275), + [anon_sym_goto] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_DOLLARfor] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_POUND] = ACTIONS(3275), + [anon_sym_asm] = ACTIONS(3275), + [anon_sym_AT_LBRACK] = ACTIONS(3275), + [sym___double_quote] = ACTIONS(3275), + [sym___single_quote] = ACTIONS(3275), + [sym___c_double_quote] = ACTIONS(3275), + [sym___c_single_quote] = ACTIONS(3275), + [sym___r_double_quote] = ACTIONS(3275), + [sym___r_single_quote] = ACTIONS(3275), }, - [748] = { - [sym__expression] = STATE(1944), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [733] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -111727,9 +110052,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -111748,74 +110073,1204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [749] = { - [sym__expression] = STATE(1905), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [734] = { + [sym__expression] = STATE(2630), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [735] = { + [sym__expression] = STATE(2726), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [736] = { + [sym__expression] = STATE(1792), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), + }, + [737] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2960), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2961), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [738] = { + [sym__expression] = STATE(296), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), + }, + [739] = { + [sym__expression] = STATE(1692), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), + }, + [740] = { + [sym__expression] = STATE(1793), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), + }, + [741] = { + [ts_builtin_sym_end] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3279), + [anon_sym_LF] = ACTIONS(3279), + [anon_sym_CR] = ACTIONS(3279), + [anon_sym_CR_LF] = ACTIONS(3279), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3279), + [anon_sym_as] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_EQ] = ACTIONS(3279), + [anon_sym___global] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PERCENT] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT_EQ] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_struct] = ACTIONS(3279), + [anon_sym_union] = ACTIONS(3279), + [anon_sym_pub] = ACTIONS(3279), + [anon_sym_mut] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3279), + [anon_sym_GT_GT_GT] = ACTIONS(3279), + [anon_sym_AMP_CARET] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_PIPE_PIPE] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3279), + [anon_sym_POUND_LBRACK] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3279), + [anon_sym_BANGis] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_BANGin] = ACTIONS(3279), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_STAR_EQ] = ACTIONS(3279), + [anon_sym_SLASH_EQ] = ACTIONS(3279), + [anon_sym_PERCENT_EQ] = ACTIONS(3279), + [anon_sym_LT_LT_EQ] = ACTIONS(3279), + [anon_sym_GT_GT_EQ] = ACTIONS(3279), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3279), + [anon_sym_AMP_EQ] = ACTIONS(3279), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3279), + [anon_sym_PLUS_EQ] = ACTIONS(3279), + [anon_sym_DASH_EQ] = ACTIONS(3279), + [anon_sym_PIPE_EQ] = ACTIONS(3279), + [anon_sym_CARET_EQ] = ACTIONS(3279), + [anon_sym_COLON_EQ] = ACTIONS(3279), + [anon_sym_lock] = ACTIONS(3279), + [anon_sym_rlock] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_sql] = ACTIONS(3279), + [sym_int_literal] = ACTIONS(3279), + [sym_float_literal] = ACTIONS(3279), + [sym_rune_literal] = ACTIONS(3279), + [sym_pseudo_compile_time_identifier] = ACTIONS(3279), + [anon_sym_shared] = ACTIONS(3279), + [anon_sym_map_LBRACK] = ACTIONS(3279), + [anon_sym_chan] = ACTIONS(3279), + [anon_sym_thread] = ACTIONS(3279), + [anon_sym_atomic] = ACTIONS(3279), + [anon_sym_assert] = ACTIONS(3279), + [anon_sym_defer] = ACTIONS(3279), + [anon_sym_goto] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_DOLLARfor] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_POUND] = ACTIONS(3279), + [anon_sym_asm] = ACTIONS(3279), + [anon_sym_AT_LBRACK] = ACTIONS(3279), + [sym___double_quote] = ACTIONS(3279), + [sym___single_quote] = ACTIONS(3279), + [sym___c_double_quote] = ACTIONS(3279), + [sym___c_single_quote] = ACTIONS(3279), + [sym___r_double_quote] = ACTIONS(3279), + [sym___r_single_quote] = ACTIONS(3279), + }, + [742] = { + [sym__expression] = STATE(2839), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [743] = { + [sym__expression] = STATE(2170), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [744] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), [anon_sym_PLUS] = ACTIONS(815), @@ -111861,204 +111316,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [750] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_EQ] = ACTIONS(3331), - [anon_sym___global] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_union] = ACTIONS(3331), - [anon_sym_pub] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3331), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3331), - [anon_sym_AMP_CARET] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_PIPE_PIPE] = ACTIONS(3331), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3331), - [anon_sym_POUND_LBRACK] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3331), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_STAR_EQ] = ACTIONS(3331), - [anon_sym_SLASH_EQ] = ACTIONS(3331), - [anon_sym_PERCENT_EQ] = ACTIONS(3331), - [anon_sym_LT_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_GT_EQ] = ACTIONS(3331), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3331), - [anon_sym_AMP_EQ] = ACTIONS(3331), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3331), - [anon_sym_PLUS_EQ] = ACTIONS(3331), - [anon_sym_DASH_EQ] = ACTIONS(3331), - [anon_sym_PIPE_EQ] = ACTIONS(3331), - [anon_sym_CARET_EQ] = ACTIONS(3331), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_DOLLARfor] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_asm] = ACTIONS(3331), - [anon_sym_AT_LBRACK] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), - }, - [751] = { - [sym__expression] = STATE(1787), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [745] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4304), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -112066,9 +111408,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -112087,317 +111429,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [752] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4357), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [746] = { + [sym__expression] = STATE(2316), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [753] = { - [sym__expression] = STATE(2299), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [747] = { + [sym__expression] = STATE(1643), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [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), }, - [754] = { - [sym__expression] = STATE(1839), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [748] = { + [sym__expression] = STATE(1785), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -112405,9 +111747,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -112426,91 +111768,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [755] = { - [sym__expression] = STATE(1827), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [749] = { + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [anon_sym_LF] = ACTIONS(3283), + [anon_sym_CR] = ACTIONS(3283), + [anon_sym_CR_LF] = ACTIONS(3283), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3283), + [anon_sym_as] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym___global] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_fn] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_PERCENT] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_GT] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3283), + [anon_sym_BANG_EQ] = ACTIONS(3283), + [anon_sym_LT_EQ] = ACTIONS(3283), + [anon_sym_GT_EQ] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_union] = ACTIONS(3283), + [anon_sym_pub] = ACTIONS(3283), + [anon_sym_mut] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [anon_sym_QMARK] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_go] = ACTIONS(3283), + [anon_sym_spawn] = ACTIONS(3283), + [anon_sym_json_DOTdecode] = ACTIONS(3283), + [anon_sym_LBRACK2] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_LT_DASH] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(3283), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_GT_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_CARET] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3283), + [sym_none] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_nil] = ACTIONS(3283), + [anon_sym_QMARK_DOT] = ACTIONS(3283), + [anon_sym_POUND_LBRACK] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_DOLLARif] = ACTIONS(3283), + [anon_sym_is] = ACTIONS(3283), + [anon_sym_BANGis] = ACTIONS(3283), + [anon_sym_in] = ACTIONS(3283), + [anon_sym_BANGin] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_STAR_EQ] = ACTIONS(3283), + [anon_sym_SLASH_EQ] = ACTIONS(3283), + [anon_sym_PERCENT_EQ] = ACTIONS(3283), + [anon_sym_LT_LT_EQ] = ACTIONS(3283), + [anon_sym_GT_GT_EQ] = ACTIONS(3283), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3283), + [anon_sym_AMP_EQ] = ACTIONS(3283), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3283), + [anon_sym_PLUS_EQ] = ACTIONS(3283), + [anon_sym_DASH_EQ] = ACTIONS(3283), + [anon_sym_PIPE_EQ] = ACTIONS(3283), + [anon_sym_CARET_EQ] = ACTIONS(3283), + [anon_sym_COLON_EQ] = ACTIONS(3283), + [anon_sym_lock] = ACTIONS(3283), + [anon_sym_rlock] = ACTIONS(3283), + [anon_sym_unsafe] = ACTIONS(3283), + [anon_sym_sql] = ACTIONS(3283), + [sym_int_literal] = ACTIONS(3283), + [sym_float_literal] = ACTIONS(3283), + [sym_rune_literal] = ACTIONS(3283), + [sym_pseudo_compile_time_identifier] = ACTIONS(3283), + [anon_sym_shared] = ACTIONS(3283), + [anon_sym_map_LBRACK] = ACTIONS(3283), + [anon_sym_chan] = ACTIONS(3283), + [anon_sym_thread] = ACTIONS(3283), + [anon_sym_atomic] = ACTIONS(3283), + [anon_sym_assert] = ACTIONS(3283), + [anon_sym_defer] = ACTIONS(3283), + [anon_sym_goto] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_DOLLARfor] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_POUND] = ACTIONS(3283), + [anon_sym_asm] = ACTIONS(3283), + [anon_sym_AT_LBRACK] = ACTIONS(3283), + [sym___double_quote] = ACTIONS(3283), + [sym___single_quote] = ACTIONS(3283), + [sym___c_double_quote] = ACTIONS(3283), + [sym___c_single_quote] = ACTIONS(3283), + [sym___r_double_quote] = ACTIONS(3283), + [sym___r_single_quote] = ACTIONS(3283), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LF] = ACTIONS(3287), + [anon_sym_CR] = ACTIONS(3287), + [anon_sym_CR_LF] = ACTIONS(3287), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym___global] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_PIPE] = ACTIONS(3287), + [anon_sym_fn] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_GT] = ACTIONS(3287), + [anon_sym_EQ_EQ] = ACTIONS(3287), + [anon_sym_BANG_EQ] = ACTIONS(3287), + [anon_sym_LT_EQ] = ACTIONS(3287), + [anon_sym_GT_EQ] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_struct] = ACTIONS(3287), + [anon_sym_union] = ACTIONS(3287), + [anon_sym_pub] = ACTIONS(3287), + [anon_sym_mut] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [anon_sym_QMARK] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_go] = ACTIONS(3287), + [anon_sym_spawn] = ACTIONS(3287), + [anon_sym_json_DOTdecode] = ACTIONS(3287), + [anon_sym_LBRACK2] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3287), + [anon_sym_LT_DASH] = ACTIONS(3287), + [anon_sym_LT_LT] = ACTIONS(3287), + [anon_sym_GT_GT] = ACTIONS(3287), + [anon_sym_GT_GT_GT] = ACTIONS(3287), + [anon_sym_AMP_CARET] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_PIPE_PIPE] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3287), + [sym_none] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_nil] = ACTIONS(3287), + [anon_sym_QMARK_DOT] = ACTIONS(3287), + [anon_sym_POUND_LBRACK] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_DOLLARif] = ACTIONS(3287), + [anon_sym_is] = ACTIONS(3287), + [anon_sym_BANGis] = ACTIONS(3287), + [anon_sym_in] = ACTIONS(3287), + [anon_sym_BANGin] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3287), + [anon_sym_select] = ACTIONS(3287), + [anon_sym_STAR_EQ] = ACTIONS(3287), + [anon_sym_SLASH_EQ] = ACTIONS(3287), + [anon_sym_PERCENT_EQ] = ACTIONS(3287), + [anon_sym_LT_LT_EQ] = ACTIONS(3287), + [anon_sym_GT_GT_EQ] = ACTIONS(3287), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3287), + [anon_sym_AMP_EQ] = ACTIONS(3287), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3287), + [anon_sym_PLUS_EQ] = ACTIONS(3287), + [anon_sym_DASH_EQ] = ACTIONS(3287), + [anon_sym_PIPE_EQ] = ACTIONS(3287), + [anon_sym_CARET_EQ] = ACTIONS(3287), + [anon_sym_COLON_EQ] = ACTIONS(3287), + [anon_sym_lock] = ACTIONS(3287), + [anon_sym_rlock] = ACTIONS(3287), + [anon_sym_unsafe] = ACTIONS(3287), + [anon_sym_sql] = ACTIONS(3287), + [sym_int_literal] = ACTIONS(3287), + [sym_float_literal] = ACTIONS(3287), + [sym_rune_literal] = ACTIONS(3287), + [sym_pseudo_compile_time_identifier] = ACTIONS(3287), + [anon_sym_shared] = ACTIONS(3287), + [anon_sym_map_LBRACK] = ACTIONS(3287), + [anon_sym_chan] = ACTIONS(3287), + [anon_sym_thread] = ACTIONS(3287), + [anon_sym_atomic] = ACTIONS(3287), + [anon_sym_assert] = ACTIONS(3287), + [anon_sym_defer] = ACTIONS(3287), + [anon_sym_goto] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_DOLLARfor] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_POUND] = ACTIONS(3287), + [anon_sym_asm] = ACTIONS(3287), + [anon_sym_AT_LBRACK] = ACTIONS(3287), + [sym___double_quote] = ACTIONS(3287), + [sym___single_quote] = ACTIONS(3287), + [sym___c_double_quote] = ACTIONS(3287), + [sym___c_single_quote] = ACTIONS(3287), + [sym___r_double_quote] = ACTIONS(3287), + [sym___r_single_quote] = ACTIONS(3287), + }, + [751] = { + [sym__expression] = STATE(1783), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -112518,9 +112086,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -112539,882 +112107,656 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [756] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_EQ] = ACTIONS(3335), - [anon_sym___global] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_union] = ACTIONS(3335), - [anon_sym_pub] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3335), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3335), - [anon_sym_AMP_CARET] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_PIPE_PIPE] = ACTIONS(3335), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3335), - [anon_sym_POUND_LBRACK] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3335), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_STAR_EQ] = ACTIONS(3335), - [anon_sym_SLASH_EQ] = ACTIONS(3335), - [anon_sym_PERCENT_EQ] = ACTIONS(3335), - [anon_sym_LT_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_GT_EQ] = ACTIONS(3335), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3335), - [anon_sym_AMP_EQ] = ACTIONS(3335), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3335), - [anon_sym_PLUS_EQ] = ACTIONS(3335), - [anon_sym_DASH_EQ] = ACTIONS(3335), - [anon_sym_PIPE_EQ] = ACTIONS(3335), - [anon_sym_CARET_EQ] = ACTIONS(3335), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_defer] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_DOLLARfor] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_asm] = ACTIONS(3335), - [anon_sym_AT_LBRACK] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), - }, - [757] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_EQ] = ACTIONS(3339), - [anon_sym___global] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_pub] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3339), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3339), - [anon_sym_AMP_CARET] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3339), - [anon_sym_POUND_LBRACK] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3339), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_STAR_EQ] = ACTIONS(3339), - [anon_sym_SLASH_EQ] = ACTIONS(3339), - [anon_sym_PERCENT_EQ] = ACTIONS(3339), - [anon_sym_LT_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_GT_EQ] = ACTIONS(3339), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3339), - [anon_sym_AMP_EQ] = ACTIONS(3339), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3339), - [anon_sym_PLUS_EQ] = ACTIONS(3339), - [anon_sym_DASH_EQ] = ACTIONS(3339), - [anon_sym_PIPE_EQ] = ACTIONS(3339), - [anon_sym_CARET_EQ] = ACTIONS(3339), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_defer] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_DOLLARfor] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_POUND] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym_AT_LBRACK] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), - }, - [758] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4355), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [752] = { + [sym__expression] = STATE(2337), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [759] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_EQ] = ACTIONS(3343), - [anon_sym___global] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_union] = ACTIONS(3343), - [anon_sym_pub] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3343), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3343), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3343), - [anon_sym_AMP_CARET] = ACTIONS(3343), - [anon_sym_AMP_AMP] = ACTIONS(3343), - [anon_sym_PIPE_PIPE] = ACTIONS(3343), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3343), - [anon_sym_POUND_LBRACK] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3343), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_STAR_EQ] = ACTIONS(3343), - [anon_sym_SLASH_EQ] = ACTIONS(3343), - [anon_sym_PERCENT_EQ] = ACTIONS(3343), - [anon_sym_LT_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_GT_EQ] = ACTIONS(3343), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3343), - [anon_sym_AMP_EQ] = ACTIONS(3343), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3343), - [anon_sym_PLUS_EQ] = ACTIONS(3343), - [anon_sym_DASH_EQ] = ACTIONS(3343), - [anon_sym_PIPE_EQ] = ACTIONS(3343), - [anon_sym_CARET_EQ] = ACTIONS(3343), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3343), - [sym_rune_literal] = ACTIONS(3343), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3343), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_defer] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_DOLLARfor] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_POUND] = ACTIONS(3343), - [anon_sym_asm] = ACTIONS(3343), - [anon_sym_AT_LBRACK] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3343), - [sym___single_quote] = ACTIONS(3343), - [sym___c_double_quote] = ACTIONS(3343), - [sym___c_single_quote] = ACTIONS(3343), - [sym___r_double_quote] = ACTIONS(3343), - [sym___r_single_quote] = ACTIONS(3343), + [753] = { + [sym__expression] = STATE(2665), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [760] = { - [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), + [754] = { + [ts_builtin_sym_end] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3291), + [anon_sym_LF] = ACTIONS(3291), + [anon_sym_CR] = ACTIONS(3291), + [anon_sym_CR_LF] = ACTIONS(3291), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_EQ] = ACTIONS(3347), - [anon_sym___global] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_EQ] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_pub] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3347), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_CARET] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3347), - [anon_sym_POUND_LBRACK] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_STAR_EQ] = ACTIONS(3347), - [anon_sym_SLASH_EQ] = ACTIONS(3347), - [anon_sym_PERCENT_EQ] = ACTIONS(3347), - [anon_sym_LT_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_GT_EQ] = ACTIONS(3347), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3347), - [anon_sym_AMP_EQ] = ACTIONS(3347), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3347), - [anon_sym_PLUS_EQ] = ACTIONS(3347), - [anon_sym_DASH_EQ] = ACTIONS(3347), - [anon_sym_PIPE_EQ] = ACTIONS(3347), - [anon_sym_CARET_EQ] = ACTIONS(3347), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [anon_sym_assert] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_DOLLARfor] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_asm] = ACTIONS(3347), - [anon_sym_AT_LBRACK] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), + [anon_sym_DOT] = ACTIONS(3291), + [anon_sym_as] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(3291), + [anon_sym___global] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_PIPE] = ACTIONS(3291), + [anon_sym_fn] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3291), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_struct] = ACTIONS(3291), + [anon_sym_union] = ACTIONS(3291), + [anon_sym_pub] = ACTIONS(3291), + [anon_sym_mut] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_go] = ACTIONS(3291), + [anon_sym_spawn] = ACTIONS(3291), + [anon_sym_json_DOTdecode] = ACTIONS(3291), + [anon_sym_LBRACK2] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_LT_DASH] = ACTIONS(3291), + [anon_sym_LT_LT] = ACTIONS(3291), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym_GT_GT_GT] = ACTIONS(3291), + [anon_sym_AMP_CARET] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3291), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3291), + [sym_none] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_nil] = ACTIONS(3291), + [anon_sym_QMARK_DOT] = ACTIONS(3291), + [anon_sym_POUND_LBRACK] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_DOLLARif] = ACTIONS(3291), + [anon_sym_is] = ACTIONS(3291), + [anon_sym_BANGis] = ACTIONS(3291), + [anon_sym_in] = ACTIONS(3291), + [anon_sym_BANGin] = ACTIONS(3291), + [anon_sym_match] = ACTIONS(3291), + [anon_sym_select] = ACTIONS(3291), + [anon_sym_STAR_EQ] = ACTIONS(3291), + [anon_sym_SLASH_EQ] = ACTIONS(3291), + [anon_sym_PERCENT_EQ] = ACTIONS(3291), + [anon_sym_LT_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3291), + [anon_sym_AMP_EQ] = ACTIONS(3291), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3291), + [anon_sym_PLUS_EQ] = ACTIONS(3291), + [anon_sym_DASH_EQ] = ACTIONS(3291), + [anon_sym_PIPE_EQ] = ACTIONS(3291), + [anon_sym_CARET_EQ] = ACTIONS(3291), + [anon_sym_COLON_EQ] = ACTIONS(3291), + [anon_sym_lock] = ACTIONS(3291), + [anon_sym_rlock] = ACTIONS(3291), + [anon_sym_unsafe] = ACTIONS(3291), + [anon_sym_sql] = ACTIONS(3291), + [sym_int_literal] = ACTIONS(3291), + [sym_float_literal] = ACTIONS(3291), + [sym_rune_literal] = ACTIONS(3291), + [sym_pseudo_compile_time_identifier] = ACTIONS(3291), + [anon_sym_shared] = ACTIONS(3291), + [anon_sym_map_LBRACK] = ACTIONS(3291), + [anon_sym_chan] = ACTIONS(3291), + [anon_sym_thread] = ACTIONS(3291), + [anon_sym_atomic] = ACTIONS(3291), + [anon_sym_assert] = ACTIONS(3291), + [anon_sym_defer] = ACTIONS(3291), + [anon_sym_goto] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_DOLLARfor] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_POUND] = ACTIONS(3291), + [anon_sym_asm] = ACTIONS(3291), + [anon_sym_AT_LBRACK] = ACTIONS(3291), + [sym___double_quote] = ACTIONS(3291), + [sym___single_quote] = ACTIONS(3291), + [sym___c_double_quote] = ACTIONS(3291), + [sym___c_single_quote] = ACTIONS(3291), + [sym___r_double_quote] = ACTIONS(3291), + [sym___r_single_quote] = ACTIONS(3291), }, - [761] = { - [sym__expression] = STATE(2653), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [755] = { + [sym__expression] = STATE(2671), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [762] = { - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3351), - [anon_sym_LF] = ACTIONS(3351), - [anon_sym_CR] = ACTIONS(3351), - [anon_sym_CR_LF] = ACTIONS(3351), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_EQ] = ACTIONS(3351), - [anon_sym___global] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_pub] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3351), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3351), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3351), - [anon_sym_AMP_CARET] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3351), - [anon_sym_POUND_LBRACK] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3351), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_STAR_EQ] = ACTIONS(3351), - [anon_sym_SLASH_EQ] = ACTIONS(3351), - [anon_sym_PERCENT_EQ] = ACTIONS(3351), - [anon_sym_LT_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_GT_EQ] = ACTIONS(3351), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3351), - [anon_sym_AMP_EQ] = ACTIONS(3351), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3351), - [anon_sym_PLUS_EQ] = ACTIONS(3351), - [anon_sym_DASH_EQ] = ACTIONS(3351), - [anon_sym_PIPE_EQ] = ACTIONS(3351), - [anon_sym_CARET_EQ] = ACTIONS(3351), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3351), - [sym_rune_literal] = ACTIONS(3351), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3351), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [anon_sym_assert] = ACTIONS(3351), - [anon_sym_defer] = ACTIONS(3351), - [anon_sym_goto] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_DOLLARfor] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_POUND] = ACTIONS(3351), - [anon_sym_asm] = ACTIONS(3351), - [anon_sym_AT_LBRACK] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3351), - [sym___single_quote] = ACTIONS(3351), - [sym___c_double_quote] = ACTIONS(3351), - [sym___c_single_quote] = ACTIONS(3351), - [sym___r_double_quote] = ACTIONS(3351), - [sym___r_single_quote] = ACTIONS(3351), + [756] = { + [sym__expression] = STATE(2716), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [763] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4351), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [757] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4305), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -113422,9 +112764,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -113443,317 +112785,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [764] = { - [ts_builtin_sym_end] = ACTIONS(3353), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_CR] = ACTIONS(3355), - [anon_sym_CR_LF] = ACTIONS(3355), + [758] = { + [ts_builtin_sym_end] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_CR] = ACTIONS(3295), + [anon_sym_CR_LF] = ACTIONS(3295), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_EQ] = ACTIONS(3355), - [anon_sym___global] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_union] = ACTIONS(3355), - [anon_sym_pub] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3355), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3355), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3355), - [anon_sym_AMP_CARET] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3355), - [anon_sym_POUND_LBRACK] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3355), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_STAR_EQ] = ACTIONS(3355), - [anon_sym_SLASH_EQ] = ACTIONS(3355), - [anon_sym_PERCENT_EQ] = ACTIONS(3355), - [anon_sym_LT_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_GT_EQ] = ACTIONS(3355), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3355), - [anon_sym_AMP_EQ] = ACTIONS(3355), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3355), - [anon_sym_PLUS_EQ] = ACTIONS(3355), - [anon_sym_DASH_EQ] = ACTIONS(3355), - [anon_sym_PIPE_EQ] = ACTIONS(3355), - [anon_sym_CARET_EQ] = ACTIONS(3355), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3355), - [sym_rune_literal] = ACTIONS(3355), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3355), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [anon_sym_assert] = ACTIONS(3355), - [anon_sym_defer] = ACTIONS(3355), - [anon_sym_goto] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_DOLLARfor] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_POUND] = ACTIONS(3355), - [anon_sym_asm] = ACTIONS(3355), - [anon_sym_AT_LBRACK] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3355), - [sym___single_quote] = ACTIONS(3355), - [sym___c_double_quote] = ACTIONS(3355), - [sym___c_single_quote] = ACTIONS(3355), - [sym___r_double_quote] = ACTIONS(3355), - [sym___r_single_quote] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_as] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_EQ] = ACTIONS(3295), + [anon_sym___global] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_fn] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_PERCENT] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_EQ_EQ] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_LT_EQ] = ACTIONS(3295), + [anon_sym_GT_EQ] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_union] = ACTIONS(3295), + [anon_sym_pub] = ACTIONS(3295), + [anon_sym_mut] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_go] = ACTIONS(3295), + [anon_sym_spawn] = ACTIONS(3295), + [anon_sym_json_DOTdecode] = ACTIONS(3295), + [anon_sym_LBRACK2] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_GT_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_CARET] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [sym_none] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_nil] = ACTIONS(3295), + [anon_sym_QMARK_DOT] = ACTIONS(3295), + [anon_sym_POUND_LBRACK] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_DOLLARif] = ACTIONS(3295), + [anon_sym_is] = ACTIONS(3295), + [anon_sym_BANGis] = ACTIONS(3295), + [anon_sym_in] = ACTIONS(3295), + [anon_sym_BANGin] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3295), + [anon_sym_select] = ACTIONS(3295), + [anon_sym_STAR_EQ] = ACTIONS(3295), + [anon_sym_SLASH_EQ] = ACTIONS(3295), + [anon_sym_PERCENT_EQ] = ACTIONS(3295), + [anon_sym_LT_LT_EQ] = ACTIONS(3295), + [anon_sym_GT_GT_EQ] = ACTIONS(3295), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3295), + [anon_sym_AMP_EQ] = ACTIONS(3295), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3295), + [anon_sym_PLUS_EQ] = ACTIONS(3295), + [anon_sym_DASH_EQ] = ACTIONS(3295), + [anon_sym_PIPE_EQ] = ACTIONS(3295), + [anon_sym_CARET_EQ] = ACTIONS(3295), + [anon_sym_COLON_EQ] = ACTIONS(3295), + [anon_sym_lock] = ACTIONS(3295), + [anon_sym_rlock] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_sql] = ACTIONS(3295), + [sym_int_literal] = ACTIONS(3295), + [sym_float_literal] = ACTIONS(3295), + [sym_rune_literal] = ACTIONS(3295), + [sym_pseudo_compile_time_identifier] = ACTIONS(3295), + [anon_sym_shared] = ACTIONS(3295), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3295), + [anon_sym_thread] = ACTIONS(3295), + [anon_sym_atomic] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_defer] = ACTIONS(3295), + [anon_sym_goto] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_DOLLARfor] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(3295), + [anon_sym_asm] = ACTIONS(3295), + [anon_sym_AT_LBRACK] = ACTIONS(3295), + [sym___double_quote] = ACTIONS(3295), + [sym___single_quote] = ACTIONS(3295), + [sym___c_double_quote] = ACTIONS(3295), + [sym___c_single_quote] = ACTIONS(3295), + [sym___r_double_quote] = ACTIONS(3295), + [sym___r_single_quote] = ACTIONS(3295), }, - [765] = { - [ts_builtin_sym_end] = ACTIONS(3357), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_CR] = ACTIONS(3359), - [anon_sym_CR_LF] = ACTIONS(3359), + [759] = { + [ts_builtin_sym_end] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_CR] = ACTIONS(3299), + [anon_sym_CR_LF] = ACTIONS(3299), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_EQ] = ACTIONS(3359), - [anon_sym___global] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_union] = ACTIONS(3359), - [anon_sym_pub] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3359), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_CARET] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3359), - [anon_sym_POUND_LBRACK] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3359), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_STAR_EQ] = ACTIONS(3359), - [anon_sym_SLASH_EQ] = ACTIONS(3359), - [anon_sym_PERCENT_EQ] = ACTIONS(3359), - [anon_sym_LT_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_GT_EQ] = ACTIONS(3359), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3359), - [anon_sym_AMP_EQ] = ACTIONS(3359), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3359), - [anon_sym_PLUS_EQ] = ACTIONS(3359), - [anon_sym_DASH_EQ] = ACTIONS(3359), - [anon_sym_PIPE_EQ] = ACTIONS(3359), - [anon_sym_CARET_EQ] = ACTIONS(3359), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3359), - [sym_rune_literal] = ACTIONS(3359), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3359), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_defer] = ACTIONS(3359), - [anon_sym_goto] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_DOLLARfor] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3359), - [anon_sym_asm] = ACTIONS(3359), - [anon_sym_AT_LBRACK] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3359), - [sym___single_quote] = ACTIONS(3359), - [sym___c_double_quote] = ACTIONS(3359), - [sym___c_single_quote] = ACTIONS(3359), - [sym___r_double_quote] = ACTIONS(3359), - [sym___r_single_quote] = ACTIONS(3359), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_as] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3299), + [anon_sym___global] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_fn] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_EQ_EQ] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_LT_EQ] = ACTIONS(3299), + [anon_sym_GT_EQ] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_struct] = ACTIONS(3299), + [anon_sym_union] = ACTIONS(3299), + [anon_sym_pub] = ACTIONS(3299), + [anon_sym_mut] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_go] = ACTIONS(3299), + [anon_sym_spawn] = ACTIONS(3299), + [anon_sym_json_DOTdecode] = ACTIONS(3299), + [anon_sym_LBRACK2] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_GT_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_CARET] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [sym_none] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_nil] = ACTIONS(3299), + [anon_sym_QMARK_DOT] = ACTIONS(3299), + [anon_sym_POUND_LBRACK] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_DOLLARif] = ACTIONS(3299), + [anon_sym_is] = ACTIONS(3299), + [anon_sym_BANGis] = ACTIONS(3299), + [anon_sym_in] = ACTIONS(3299), + [anon_sym_BANGin] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_select] = ACTIONS(3299), + [anon_sym_STAR_EQ] = ACTIONS(3299), + [anon_sym_SLASH_EQ] = ACTIONS(3299), + [anon_sym_PERCENT_EQ] = ACTIONS(3299), + [anon_sym_LT_LT_EQ] = ACTIONS(3299), + [anon_sym_GT_GT_EQ] = ACTIONS(3299), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3299), + [anon_sym_AMP_EQ] = ACTIONS(3299), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3299), + [anon_sym_PLUS_EQ] = ACTIONS(3299), + [anon_sym_DASH_EQ] = ACTIONS(3299), + [anon_sym_PIPE_EQ] = ACTIONS(3299), + [anon_sym_CARET_EQ] = ACTIONS(3299), + [anon_sym_COLON_EQ] = ACTIONS(3299), + [anon_sym_lock] = ACTIONS(3299), + [anon_sym_rlock] = ACTIONS(3299), + [anon_sym_unsafe] = ACTIONS(3299), + [anon_sym_sql] = ACTIONS(3299), + [sym_int_literal] = ACTIONS(3299), + [sym_float_literal] = ACTIONS(3299), + [sym_rune_literal] = ACTIONS(3299), + [sym_pseudo_compile_time_identifier] = ACTIONS(3299), + [anon_sym_shared] = ACTIONS(3299), + [anon_sym_map_LBRACK] = ACTIONS(3299), + [anon_sym_chan] = ACTIONS(3299), + [anon_sym_thread] = ACTIONS(3299), + [anon_sym_atomic] = ACTIONS(3299), + [anon_sym_assert] = ACTIONS(3299), + [anon_sym_defer] = ACTIONS(3299), + [anon_sym_goto] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_DOLLARfor] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_POUND] = ACTIONS(3299), + [anon_sym_asm] = ACTIONS(3299), + [anon_sym_AT_LBRACK] = ACTIONS(3299), + [sym___double_quote] = ACTIONS(3299), + [sym___single_quote] = ACTIONS(3299), + [sym___c_double_quote] = ACTIONS(3299), + [sym___c_single_quote] = ACTIONS(3299), + [sym___r_double_quote] = ACTIONS(3299), + [sym___r_single_quote] = ACTIONS(3299), }, - [766] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [760] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2934), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2959), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [761] = { + [ts_builtin_sym_end] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3303), + [anon_sym_LF] = ACTIONS(3303), + [anon_sym_CR] = ACTIONS(3303), + [anon_sym_CR_LF] = ACTIONS(3303), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3303), + [anon_sym_as] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_COMMA] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_EQ] = ACTIONS(3303), + [anon_sym___global] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_PIPE] = ACTIONS(3303), + [anon_sym_fn] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_GT] = ACTIONS(3303), + [anon_sym_EQ_EQ] = ACTIONS(3303), + [anon_sym_BANG_EQ] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3303), + [anon_sym_GT_EQ] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_struct] = ACTIONS(3303), + [anon_sym_union] = ACTIONS(3303), + [anon_sym_pub] = ACTIONS(3303), + [anon_sym_mut] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [anon_sym_QMARK] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_go] = ACTIONS(3303), + [anon_sym_spawn] = ACTIONS(3303), + [anon_sym_json_DOTdecode] = ACTIONS(3303), + [anon_sym_LBRACK2] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3303), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_LT_DASH] = ACTIONS(3303), + [anon_sym_LT_LT] = ACTIONS(3303), + [anon_sym_GT_GT] = ACTIONS(3303), + [anon_sym_GT_GT_GT] = ACTIONS(3303), + [anon_sym_AMP_CARET] = ACTIONS(3303), + [anon_sym_AMP_AMP] = ACTIONS(3303), + [anon_sym_PIPE_PIPE] = ACTIONS(3303), + [anon_sym_or] = ACTIONS(3303), + [sym_none] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_nil] = ACTIONS(3303), + [anon_sym_QMARK_DOT] = ACTIONS(3303), + [anon_sym_POUND_LBRACK] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_DOLLARif] = ACTIONS(3303), + [anon_sym_is] = ACTIONS(3303), + [anon_sym_BANGis] = ACTIONS(3303), + [anon_sym_in] = ACTIONS(3303), + [anon_sym_BANGin] = ACTIONS(3303), + [anon_sym_match] = ACTIONS(3303), + [anon_sym_select] = ACTIONS(3303), + [anon_sym_STAR_EQ] = ACTIONS(3303), + [anon_sym_SLASH_EQ] = ACTIONS(3303), + [anon_sym_PERCENT_EQ] = ACTIONS(3303), + [anon_sym_LT_LT_EQ] = ACTIONS(3303), + [anon_sym_GT_GT_EQ] = ACTIONS(3303), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3303), + [anon_sym_AMP_EQ] = ACTIONS(3303), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3303), + [anon_sym_PLUS_EQ] = ACTIONS(3303), + [anon_sym_DASH_EQ] = ACTIONS(3303), + [anon_sym_PIPE_EQ] = ACTIONS(3303), + [anon_sym_CARET_EQ] = ACTIONS(3303), + [anon_sym_COLON_EQ] = ACTIONS(3303), + [anon_sym_lock] = ACTIONS(3303), + [anon_sym_rlock] = ACTIONS(3303), + [anon_sym_unsafe] = ACTIONS(3303), + [anon_sym_sql] = ACTIONS(3303), + [sym_int_literal] = ACTIONS(3303), + [sym_float_literal] = ACTIONS(3303), + [sym_rune_literal] = ACTIONS(3303), + [sym_pseudo_compile_time_identifier] = ACTIONS(3303), + [anon_sym_shared] = ACTIONS(3303), + [anon_sym_map_LBRACK] = ACTIONS(3303), + [anon_sym_chan] = ACTIONS(3303), + [anon_sym_thread] = ACTIONS(3303), + [anon_sym_atomic] = ACTIONS(3303), + [anon_sym_assert] = ACTIONS(3303), + [anon_sym_defer] = ACTIONS(3303), + [anon_sym_goto] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_DOLLARfor] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_POUND] = ACTIONS(3303), + [anon_sym_asm] = ACTIONS(3303), + [anon_sym_AT_LBRACK] = ACTIONS(3303), + [sym___double_quote] = ACTIONS(3303), + [sym___single_quote] = ACTIONS(3303), + [sym___c_double_quote] = ACTIONS(3303), + [sym___c_single_quote] = ACTIONS(3303), + [sym___r_double_quote] = ACTIONS(3303), + [sym___r_single_quote] = ACTIONS(3303), + }, + [762] = { + [sym__expression] = STATE(1784), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -113761,9 +113329,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -113782,2577 +113350,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [767] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [768] = { - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LF] = ACTIONS(3363), - [anon_sym_CR] = ACTIONS(3363), - [anon_sym_CR_LF] = ACTIONS(3363), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_EQ] = ACTIONS(3363), - [anon_sym___global] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_union] = ACTIONS(3363), - [anon_sym_pub] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3363), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3363), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3363), - [anon_sym_AMP_CARET] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3363), - [anon_sym_POUND_LBRACK] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3363), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_STAR_EQ] = ACTIONS(3363), - [anon_sym_SLASH_EQ] = ACTIONS(3363), - [anon_sym_PERCENT_EQ] = ACTIONS(3363), - [anon_sym_LT_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_GT_EQ] = ACTIONS(3363), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3363), - [anon_sym_AMP_EQ] = ACTIONS(3363), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3363), - [anon_sym_PLUS_EQ] = ACTIONS(3363), - [anon_sym_DASH_EQ] = ACTIONS(3363), - [anon_sym_PIPE_EQ] = ACTIONS(3363), - [anon_sym_CARET_EQ] = ACTIONS(3363), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3363), - [sym_rune_literal] = ACTIONS(3363), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3363), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [anon_sym_assert] = ACTIONS(3363), - [anon_sym_defer] = ACTIONS(3363), - [anon_sym_goto] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_DOLLARfor] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_asm] = ACTIONS(3363), - [anon_sym_AT_LBRACK] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3363), - [sym___single_quote] = ACTIONS(3363), - [sym___c_double_quote] = ACTIONS(3363), - [sym___c_single_quote] = ACTIONS(3363), - [sym___r_double_quote] = ACTIONS(3363), - [sym___r_single_quote] = ACTIONS(3363), - }, - [769] = { - [ts_builtin_sym_end] = ACTIONS(3365), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LF] = ACTIONS(3367), - [anon_sym_CR] = ACTIONS(3367), - [anon_sym_CR_LF] = ACTIONS(3367), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_EQ] = ACTIONS(3367), - [anon_sym___global] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_union] = ACTIONS(3367), - [anon_sym_pub] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3367), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3367), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3367), - [anon_sym_AMP_CARET] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3367), - [anon_sym_POUND_LBRACK] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3367), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_STAR_EQ] = ACTIONS(3367), - [anon_sym_SLASH_EQ] = ACTIONS(3367), - [anon_sym_PERCENT_EQ] = ACTIONS(3367), - [anon_sym_LT_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_GT_EQ] = ACTIONS(3367), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3367), - [anon_sym_AMP_EQ] = ACTIONS(3367), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3367), - [anon_sym_PLUS_EQ] = ACTIONS(3367), - [anon_sym_DASH_EQ] = ACTIONS(3367), - [anon_sym_PIPE_EQ] = ACTIONS(3367), - [anon_sym_CARET_EQ] = ACTIONS(3367), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3367), - [sym_rune_literal] = ACTIONS(3367), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3367), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_defer] = ACTIONS(3367), - [anon_sym_goto] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_DOLLARfor] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(3367), - [anon_sym_asm] = ACTIONS(3367), - [anon_sym_AT_LBRACK] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3367), - [sym___single_quote] = ACTIONS(3367), - [sym___c_double_quote] = ACTIONS(3367), - [sym___c_single_quote] = ACTIONS(3367), - [sym___r_double_quote] = ACTIONS(3367), - [sym___r_single_quote] = ACTIONS(3367), - }, - [770] = { - [sym__expression] = STATE(2716), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [771] = { - [sym__expression] = STATE(2480), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), - }, - [772] = { - [sym__expression] = STATE(1289), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [763] = { + [sym__expression] = STATE(2648), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_go] = ACTIONS(1809), + [anon_sym_spawn] = ACTIONS(1811), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1803), + [anon_sym_AMP] = ACTIONS(1815), + [anon_sym_LT_DASH] = ACTIONS(1817), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1819), + [anon_sym_lock] = ACTIONS(1821), + [anon_sym_rlock] = ACTIONS(1821), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [773] = { - [sym__expression] = STATE(1280), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [764] = { + [sym__expression] = STATE(999), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [774] = { - [sym__expression] = STATE(1300), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [765] = { + [sym__expression] = STATE(2828), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [775] = { - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LF] = ACTIONS(3371), - [anon_sym_CR] = ACTIONS(3371), - [anon_sym_CR_LF] = ACTIONS(3371), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_EQ] = ACTIONS(3371), - [anon_sym___global] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_union] = ACTIONS(3371), - [anon_sym_pub] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3371), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3371), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3371), - [anon_sym_AMP_CARET] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3371), - [anon_sym_POUND_LBRACK] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_STAR_EQ] = ACTIONS(3371), - [anon_sym_SLASH_EQ] = ACTIONS(3371), - [anon_sym_PERCENT_EQ] = ACTIONS(3371), - [anon_sym_LT_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_GT_EQ] = ACTIONS(3371), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3371), - [anon_sym_AMP_EQ] = ACTIONS(3371), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3371), - [anon_sym_PLUS_EQ] = ACTIONS(3371), - [anon_sym_DASH_EQ] = ACTIONS(3371), - [anon_sym_PIPE_EQ] = ACTIONS(3371), - [anon_sym_CARET_EQ] = ACTIONS(3371), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3371), - [sym_rune_literal] = ACTIONS(3371), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3371), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_defer] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_DOLLARfor] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3371), - [anon_sym_asm] = ACTIONS(3371), - [anon_sym_AT_LBRACK] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3371), - [sym___single_quote] = ACTIONS(3371), - [sym___c_double_quote] = ACTIONS(3371), - [sym___c_single_quote] = ACTIONS(3371), - [sym___r_double_quote] = ACTIONS(3371), - [sym___r_single_quote] = ACTIONS(3371), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [776] = { - [ts_builtin_sym_end] = ACTIONS(3373), - [sym_identifier] = ACTIONS(3375), - [anon_sym_LF] = ACTIONS(3375), - [anon_sym_CR] = ACTIONS(3375), - [anon_sym_CR_LF] = ACTIONS(3375), + [766] = { + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LF] = ACTIONS(3307), + [anon_sym_CR] = ACTIONS(3307), + [anon_sym_CR_LF] = ACTIONS(3307), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_EQ] = ACTIONS(3375), - [anon_sym___global] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_union] = ACTIONS(3375), - [anon_sym_pub] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3375), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3375), - [anon_sym_AMP_CARET] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3375), - [anon_sym_POUND_LBRACK] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3375), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_STAR_EQ] = ACTIONS(3375), - [anon_sym_SLASH_EQ] = ACTIONS(3375), - [anon_sym_PERCENT_EQ] = ACTIONS(3375), - [anon_sym_LT_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_GT_EQ] = ACTIONS(3375), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3375), - [anon_sym_AMP_EQ] = ACTIONS(3375), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3375), - [anon_sym_PLUS_EQ] = ACTIONS(3375), - [anon_sym_DASH_EQ] = ACTIONS(3375), - [anon_sym_PIPE_EQ] = ACTIONS(3375), - [anon_sym_CARET_EQ] = ACTIONS(3375), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3375), - [sym_rune_literal] = ACTIONS(3375), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3375), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_defer] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_DOLLARfor] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_POUND] = ACTIONS(3375), - [anon_sym_asm] = ACTIONS(3375), - [anon_sym_AT_LBRACK] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3375), - [sym___single_quote] = ACTIONS(3375), - [sym___c_double_quote] = ACTIONS(3375), - [sym___c_single_quote] = ACTIONS(3375), - [sym___r_double_quote] = ACTIONS(3375), - [sym___r_single_quote] = ACTIONS(3375), - }, - [777] = { - [sym__expression] = STATE(1302), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [778] = { - [sym__expression] = STATE(1310), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [779] = { - [sym__expression] = STATE(1311), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [780] = { - [sym__expression] = STATE(1312), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [781] = { - [sym__expression] = STATE(2860), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [782] = { - [sym__expression] = STATE(2852), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [783] = { - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [784] = { - [sym__expression] = STATE(2863), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [anon_sym_DOT] = ACTIONS(3307), + [anon_sym_as] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(3307), + [anon_sym___global] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_PIPE] = ACTIONS(3307), + [anon_sym_fn] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_pub] = ACTIONS(3307), + [anon_sym_mut] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_QMARK] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_go] = ACTIONS(3307), + [anon_sym_spawn] = ACTIONS(3307), + [anon_sym_json_DOTdecode] = ACTIONS(3307), + [anon_sym_LBRACK2] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_LT_DASH] = ACTIONS(3307), + [anon_sym_LT_LT] = ACTIONS(3307), + [anon_sym_GT_GT] = ACTIONS(3307), + [anon_sym_GT_GT_GT] = ACTIONS(3307), + [anon_sym_AMP_CARET] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_or] = ACTIONS(3307), + [sym_none] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_nil] = ACTIONS(3307), + [anon_sym_QMARK_DOT] = ACTIONS(3307), + [anon_sym_POUND_LBRACK] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_DOLLARif] = ACTIONS(3307), + [anon_sym_is] = ACTIONS(3307), + [anon_sym_BANGis] = ACTIONS(3307), + [anon_sym_in] = ACTIONS(3307), + [anon_sym_BANGin] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_select] = ACTIONS(3307), + [anon_sym_STAR_EQ] = ACTIONS(3307), + [anon_sym_SLASH_EQ] = ACTIONS(3307), + [anon_sym_PERCENT_EQ] = ACTIONS(3307), + [anon_sym_LT_LT_EQ] = ACTIONS(3307), + [anon_sym_GT_GT_EQ] = ACTIONS(3307), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3307), + [anon_sym_AMP_EQ] = ACTIONS(3307), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3307), + [anon_sym_PLUS_EQ] = ACTIONS(3307), + [anon_sym_DASH_EQ] = ACTIONS(3307), + [anon_sym_PIPE_EQ] = ACTIONS(3307), + [anon_sym_CARET_EQ] = ACTIONS(3307), + [anon_sym_COLON_EQ] = ACTIONS(3307), + [anon_sym_lock] = ACTIONS(3307), + [anon_sym_rlock] = ACTIONS(3307), + [anon_sym_unsafe] = ACTIONS(3307), + [anon_sym_sql] = ACTIONS(3307), + [sym_int_literal] = ACTIONS(3307), + [sym_float_literal] = ACTIONS(3307), + [sym_rune_literal] = ACTIONS(3307), + [sym_pseudo_compile_time_identifier] = ACTIONS(3307), + [anon_sym_shared] = ACTIONS(3307), + [anon_sym_map_LBRACK] = ACTIONS(3307), + [anon_sym_chan] = ACTIONS(3307), + [anon_sym_thread] = ACTIONS(3307), + [anon_sym_atomic] = ACTIONS(3307), + [anon_sym_assert] = ACTIONS(3307), + [anon_sym_defer] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_DOLLARfor] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(3307), + [anon_sym_asm] = ACTIONS(3307), + [anon_sym_AT_LBRACK] = ACTIONS(3307), + [sym___double_quote] = ACTIONS(3307), + [sym___single_quote] = ACTIONS(3307), + [sym___c_double_quote] = ACTIONS(3307), + [sym___c_single_quote] = ACTIONS(3307), + [sym___r_double_quote] = ACTIONS(3307), + [sym___r_single_quote] = ACTIONS(3307), }, - [785] = { - [sym__expression] = STATE(2471), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [767] = { + [sym__expression] = STATE(1669), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, - [786] = { - [sym__expression] = STATE(2476), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [768] = { + [sym__expression] = STATE(2674), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [787] = { - [sym__expression] = STATE(1662), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [769] = { + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3311), + [anon_sym_LF] = ACTIONS(3311), + [anon_sym_CR] = ACTIONS(3311), + [anon_sym_CR_LF] = ACTIONS(3311), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_COMMA] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_EQ] = ACTIONS(3311), + [anon_sym___global] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_union] = ACTIONS(3311), + [anon_sym_pub] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3311), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3311), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3311), + [anon_sym_AMP_CARET] = ACTIONS(3311), + [anon_sym_AMP_AMP] = ACTIONS(3311), + [anon_sym_PIPE_PIPE] = ACTIONS(3311), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3311), + [anon_sym_POUND_LBRACK] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3311), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_STAR_EQ] = ACTIONS(3311), + [anon_sym_SLASH_EQ] = ACTIONS(3311), + [anon_sym_PERCENT_EQ] = ACTIONS(3311), + [anon_sym_LT_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_GT_EQ] = ACTIONS(3311), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3311), + [anon_sym_AMP_EQ] = ACTIONS(3311), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3311), + [anon_sym_PLUS_EQ] = ACTIONS(3311), + [anon_sym_DASH_EQ] = ACTIONS(3311), + [anon_sym_PIPE_EQ] = ACTIONS(3311), + [anon_sym_CARET_EQ] = ACTIONS(3311), + [anon_sym_COLON_EQ] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3311), + [sym_rune_literal] = ACTIONS(3311), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3311), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [anon_sym_assert] = ACTIONS(3311), + [anon_sym_defer] = ACTIONS(3311), + [anon_sym_goto] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_DOLLARfor] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_POUND] = ACTIONS(3311), + [anon_sym_asm] = ACTIONS(3311), + [anon_sym_AT_LBRACK] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3311), + [sym___single_quote] = ACTIONS(3311), + [sym___c_double_quote] = ACTIONS(3311), + [sym___c_single_quote] = ACTIONS(3311), + [sym___r_double_quote] = ACTIONS(3311), + [sym___r_single_quote] = ACTIONS(3311), }, - [788] = { - [sym__expression] = STATE(1147), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [770] = { + [sym__expression] = STATE(2645), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [789] = { - [sym__expression] = STATE(1787), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [771] = { + [sym__expression] = STATE(1938), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -116360,9 +114346,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -116381,656 +114367,882 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [790] = { - [sym__expression] = STATE(2791), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [772] = { + [sym__expression] = STATE(2636), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [791] = { - [sym__expression] = STATE(2797), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [773] = { + [sym__expression] = STATE(2681), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [792] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4357), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [774] = { + [sym__expression] = STATE(2835), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [793] = { - [sym__expression] = STATE(1788), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [775] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2964), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2958), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [794] = { - [sym__expression] = STATE(1790), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [776] = { + [sym__expression] = STATE(2848), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [795] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4355), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [777] = { + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_EQ] = ACTIONS(3318), + [anon_sym___global] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_pub] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_STAR_EQ] = ACTIONS(3318), + [anon_sym_SLASH_EQ] = ACTIONS(3318), + [anon_sym_PERCENT_EQ] = ACTIONS(3318), + [anon_sym_LT_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_GT_EQ] = ACTIONS(3318), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3318), + [anon_sym_AMP_EQ] = ACTIONS(3318), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3318), + [anon_sym_PLUS_EQ] = ACTIONS(3318), + [anon_sym_DASH_EQ] = ACTIONS(3318), + [anon_sym_PIPE_EQ] = ACTIONS(3318), + [anon_sym_CARET_EQ] = ACTIONS(3318), + [anon_sym_COLON_EQ] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_defer] = ACTIONS(3318), + [anon_sym_goto] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_DOLLARfor] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), + [anon_sym_AT_LBRACK] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3318), + [sym___single_quote] = ACTIONS(3318), + [sym___c_double_quote] = ACTIONS(3318), + [sym___c_single_quote] = ACTIONS(3318), + [sym___r_double_quote] = ACTIONS(3318), + [sym___r_single_quote] = ACTIONS(3318), + }, + [778] = { + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LF] = ACTIONS(3322), + [anon_sym_CR] = ACTIONS(3322), + [anon_sym_CR_LF] = ACTIONS(3322), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_EQ] = ACTIONS(3322), + [anon_sym___global] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_pub] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3322), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3322), + [anon_sym_POUND_LBRACK] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_STAR_EQ] = ACTIONS(3322), + [anon_sym_SLASH_EQ] = ACTIONS(3322), + [anon_sym_PERCENT_EQ] = ACTIONS(3322), + [anon_sym_LT_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_GT_EQ] = ACTIONS(3322), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3322), + [anon_sym_AMP_EQ] = ACTIONS(3322), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3322), + [anon_sym_PLUS_EQ] = ACTIONS(3322), + [anon_sym_DASH_EQ] = ACTIONS(3322), + [anon_sym_PIPE_EQ] = ACTIONS(3322), + [anon_sym_CARET_EQ] = ACTIONS(3322), + [anon_sym_COLON_EQ] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3322), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_defer] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_DOLLARfor] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym_AT_LBRACK] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3322), + [sym___single_quote] = ACTIONS(3322), + [sym___c_double_quote] = ACTIONS(3322), + [sym___c_single_quote] = ACTIONS(3322), + [sym___r_double_quote] = ACTIONS(3322), + [sym___r_single_quote] = ACTIONS(3322), + }, + [779] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -117038,9 +115250,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -117059,430 +115271,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [796] = { - [sym__expression] = STATE(2806), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [797] = { - [sym__expression] = STATE(2807), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [798] = { - [sym__expression] = STATE(2867), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [780] = { + [sym__expression] = STATE(2421), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [799] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4351), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [781] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4291), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -117490,9 +115476,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -117511,91 +115497,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [800] = { - [sym__expression] = STATE(1904), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [782] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4304), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -117603,9 +115589,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -117624,543 +115610,656 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [801] = { - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [783] = { + [sym__expression] = STATE(2650), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [802] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [784] = { + [sym__expression] = STATE(985), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), + }, + [785] = { + [sym__expression] = STATE(2761), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [803] = { - [sym__expression] = STATE(2815), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [786] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2973), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [804] = { - [sym__expression] = STATE(2487), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [787] = { + [sym__expression] = STATE(2702), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [805] = { - [sym__expression] = STATE(1791), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1607), + [788] = { + [sym__expression] = STATE(1897), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(815), - [anon_sym_DASH] = ACTIONS(815), - [anon_sym_STAR] = ACTIONS(817), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(823), - [anon_sym_go] = ACTIONS(825), - [anon_sym_spawn] = ACTIONS(827), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(831), - [anon_sym_TILDE] = ACTIONS(815), - [anon_sym_CARET] = ACTIONS(815), - [anon_sym_AMP] = ACTIONS(833), - [anon_sym_LT_DASH] = ACTIONS(835), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -118168,9 +116267,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(845), - [anon_sym_lock] = ACTIONS(847), - [anon_sym_rlock] = ACTIONS(847), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -118189,882 +116288,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [806] = { - [sym__expression] = STATE(2869), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), - }, - [807] = { - [sym__expression] = STATE(1152), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [789] = { + [sym__expression] = STATE(1648), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), - }, - [808] = { - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3379), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_CR] = ACTIONS(3379), - [anon_sym_CR_LF] = ACTIONS(3379), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_EQ] = ACTIONS(3379), - [anon_sym___global] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_union] = ACTIONS(3379), - [anon_sym_pub] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3379), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3379), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3379), - [anon_sym_AMP_CARET] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3379), - [anon_sym_POUND_LBRACK] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_STAR_EQ] = ACTIONS(3379), - [anon_sym_SLASH_EQ] = ACTIONS(3379), - [anon_sym_PERCENT_EQ] = ACTIONS(3379), - [anon_sym_LT_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_GT_EQ] = ACTIONS(3379), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3379), - [anon_sym_AMP_EQ] = ACTIONS(3379), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3379), - [anon_sym_PLUS_EQ] = ACTIONS(3379), - [anon_sym_DASH_EQ] = ACTIONS(3379), - [anon_sym_PIPE_EQ] = ACTIONS(3379), - [anon_sym_CARET_EQ] = ACTIONS(3379), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3379), - [sym_rune_literal] = ACTIONS(3379), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3379), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_defer] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_DOLLARfor] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_POUND] = ACTIONS(3379), - [anon_sym_asm] = ACTIONS(3379), - [anon_sym_AT_LBRACK] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3379), - [sym___single_quote] = ACTIONS(3379), - [sym___c_double_quote] = ACTIONS(3379), - [sym___c_single_quote] = ACTIONS(3379), - [sym___r_double_quote] = ACTIONS(3379), - [sym___r_single_quote] = ACTIONS(3379), - }, - [809] = { - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_CR] = ACTIONS(3383), - [anon_sym_CR_LF] = ACTIONS(3383), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_EQ] = ACTIONS(3383), - [anon_sym___global] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_union] = ACTIONS(3383), - [anon_sym_pub] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3383), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3383), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3383), - [anon_sym_AMP_CARET] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3383), - [anon_sym_POUND_LBRACK] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3383), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_STAR_EQ] = ACTIONS(3383), - [anon_sym_SLASH_EQ] = ACTIONS(3383), - [anon_sym_PERCENT_EQ] = ACTIONS(3383), - [anon_sym_LT_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_GT_EQ] = ACTIONS(3383), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3383), - [anon_sym_AMP_EQ] = ACTIONS(3383), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3383), - [anon_sym_PLUS_EQ] = ACTIONS(3383), - [anon_sym_DASH_EQ] = ACTIONS(3383), - [anon_sym_PIPE_EQ] = ACTIONS(3383), - [anon_sym_CARET_EQ] = ACTIONS(3383), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3383), - [sym_rune_literal] = ACTIONS(3383), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3383), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_defer] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_DOLLARfor] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_POUND] = ACTIONS(3383), - [anon_sym_asm] = ACTIONS(3383), - [anon_sym_AT_LBRACK] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3383), - [sym___single_quote] = ACTIONS(3383), - [sym___c_double_quote] = ACTIONS(3383), - [sym___c_single_quote] = ACTIONS(3383), - [sym___r_double_quote] = ACTIONS(3383), - [sym___r_single_quote] = ACTIONS(3383), - }, - [810] = { - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LF] = ACTIONS(3387), - [anon_sym_CR] = ACTIONS(3387), - [anon_sym_CR_LF] = ACTIONS(3387), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_EQ] = ACTIONS(3387), - [anon_sym___global] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_EQ] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(3387), - [anon_sym_pub] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3387), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3387), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3387), - [anon_sym_AMP_CARET] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3387), - [anon_sym_POUND_LBRACK] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3387), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_STAR_EQ] = ACTIONS(3387), - [anon_sym_SLASH_EQ] = ACTIONS(3387), - [anon_sym_PERCENT_EQ] = ACTIONS(3387), - [anon_sym_LT_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_GT_EQ] = ACTIONS(3387), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3387), - [anon_sym_AMP_EQ] = ACTIONS(3387), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3387), - [anon_sym_PLUS_EQ] = ACTIONS(3387), - [anon_sym_DASH_EQ] = ACTIONS(3387), - [anon_sym_PIPE_EQ] = ACTIONS(3387), - [anon_sym_CARET_EQ] = ACTIONS(3387), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3387), - [sym_rune_literal] = ACTIONS(3387), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3387), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_defer] = ACTIONS(3387), - [anon_sym_goto] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_DOLLARfor] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_POUND] = ACTIONS(3387), - [anon_sym_asm] = ACTIONS(3387), - [anon_sym_AT_LBRACK] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3387), - [sym___single_quote] = ACTIONS(3387), - [sym___c_double_quote] = ACTIONS(3387), - [sym___c_single_quote] = ACTIONS(3387), - [sym___r_double_quote] = ACTIONS(3387), - [sym___r_single_quote] = ACTIONS(3387), - }, - [811] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LF] = ACTIONS(3391), - [anon_sym_CR] = ACTIONS(3391), - [anon_sym_CR_LF] = ACTIONS(3391), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_EQ] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_pub] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3391), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3391), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3391), - [anon_sym_AMP_CARET] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3391), - [anon_sym_POUND_LBRACK] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3391), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_STAR_EQ] = ACTIONS(3391), - [anon_sym_SLASH_EQ] = ACTIONS(3391), - [anon_sym_PERCENT_EQ] = ACTIONS(3391), - [anon_sym_LT_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_GT_EQ] = ACTIONS(3391), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3391), - [anon_sym_AMP_EQ] = ACTIONS(3391), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3391), - [anon_sym_PLUS_EQ] = ACTIONS(3391), - [anon_sym_DASH_EQ] = ACTIONS(3391), - [anon_sym_PIPE_EQ] = ACTIONS(3391), - [anon_sym_CARET_EQ] = ACTIONS(3391), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3391), - [sym_rune_literal] = ACTIONS(3391), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3391), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_defer] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_DOLLARfor] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(3391), - [anon_sym_asm] = ACTIONS(3391), - [anon_sym_AT_LBRACK] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3391), - [sym___single_quote] = ACTIONS(3391), - [sym___c_double_quote] = ACTIONS(3391), - [sym___c_single_quote] = ACTIONS(3391), - [sym___r_double_quote] = ACTIONS(3391), - [sym___r_single_quote] = ACTIONS(3391), + [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), }, - [812] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2892), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2892), - [sym_dec_expression] = STATE(2892), - [sym_or_block_expression] = STATE(2892), - [sym_option_propagation_expression] = STATE(2892), - [sym_result_propagation_expression] = STATE(2892), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2892), - [sym_spawn_expression] = STATE(2892), - [sym_parenthesized_expression] = STATE(2892), - [sym_call_expression] = STATE(2892), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2892), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2892), - [sym_receive_expression] = STATE(2892), - [sym_binary_expression] = STATE(2892), - [sym_as_type_cast_expression] = STATE(2892), - [sym__max_group] = STATE(2892), - [sym_literal] = STATE(2892), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2892), - [sym_fixed_array_creation] = STATE(2892), - [sym_selector_expression] = STATE(2892), - [sym_index_expression] = STATE(2892), - [sym_slice_expression] = STATE(2892), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2892), - [sym_not_is_expression] = STATE(2892), - [sym_in_expression] = STATE(2892), - [sym_not_in_expression] = STATE(2892), - [sym_enum_fetch] = STATE(2892), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [790] = { + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4336), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [813] = { - [sym__expression] = STATE(1937), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [791] = { + [sym__expression] = STATE(1894), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -119072,9 +116606,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -119093,2803 +116627,3255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [814] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3953), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), - }, - [815] = { - [sym__expression] = STATE(2298), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [792] = { + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2994), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2994), + [sym_dec_expression] = STATE(2994), + [sym_or_block_expression] = STATE(2994), + [sym_option_propagation_expression] = STATE(2994), + [sym_result_propagation_expression] = STATE(2994), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2994), + [sym_spawn_expression] = STATE(2994), + [sym_parenthesized_expression] = STATE(2994), + [sym_call_expression] = STATE(2994), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2994), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2994), + [sym_receive_expression] = STATE(2994), + [sym_binary_expression] = STATE(2994), + [sym_as_type_cast_expression] = STATE(2994), + [sym__max_group] = STATE(2994), + [sym_literal] = STATE(2994), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2994), + [sym_fixed_array_creation] = STATE(2994), + [sym_selector_expression] = STATE(2994), + [sym_index_expression] = STATE(2994), + [sym_slice_expression] = STATE(2994), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2994), + [sym_not_is_expression] = STATE(2994), + [sym_in_expression] = STATE(2994), + [sym_not_in_expression] = STATE(2994), + [sym_enum_fetch] = STATE(2994), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3324), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [816] = { - [sym__expression] = STATE(2603), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [793] = { + [sym__expression] = STATE(1649), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [817] = { - [sym__expression] = STATE(999), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [794] = { + [sym__expression] = STATE(1650), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), - }, - [818] = { - [ts_builtin_sym_end] = ACTIONS(3395), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LF] = ACTIONS(3397), - [anon_sym_CR] = ACTIONS(3397), - [anon_sym_CR_LF] = ACTIONS(3397), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_as] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_EQ] = ACTIONS(3397), - [anon_sym___global] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_fn] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_GT] = ACTIONS(3397), - [anon_sym_EQ_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_union] = ACTIONS(3397), - [anon_sym_pub] = ACTIONS(3397), - [anon_sym_mut] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_go] = ACTIONS(3397), - [anon_sym_spawn] = ACTIONS(3397), - [anon_sym_json_DOTdecode] = ACTIONS(3397), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_LT_LT] = ACTIONS(3397), - [anon_sym_GT_GT] = ACTIONS(3397), - [anon_sym_GT_GT_GT] = ACTIONS(3397), - [anon_sym_AMP_CARET] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [sym_none] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_nil] = ACTIONS(3397), - [anon_sym_QMARK_DOT] = ACTIONS(3397), - [anon_sym_POUND_LBRACK] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_DOLLARif] = ACTIONS(3397), - [anon_sym_is] = ACTIONS(3397), - [anon_sym_BANGis] = ACTIONS(3397), - [anon_sym_in] = ACTIONS(3397), - [anon_sym_BANGin] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_select] = ACTIONS(3397), - [anon_sym_STAR_EQ] = ACTIONS(3397), - [anon_sym_SLASH_EQ] = ACTIONS(3397), - [anon_sym_PERCENT_EQ] = ACTIONS(3397), - [anon_sym_LT_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_GT_EQ] = ACTIONS(3397), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3397), - [anon_sym_AMP_EQ] = ACTIONS(3397), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3397), - [anon_sym_PLUS_EQ] = ACTIONS(3397), - [anon_sym_DASH_EQ] = ACTIONS(3397), - [anon_sym_PIPE_EQ] = ACTIONS(3397), - [anon_sym_CARET_EQ] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3397), - [anon_sym_lock] = ACTIONS(3397), - [anon_sym_rlock] = ACTIONS(3397), - [anon_sym_unsafe] = ACTIONS(3397), - [anon_sym_sql] = ACTIONS(3397), - [sym_int_literal] = ACTIONS(3397), - [sym_float_literal] = ACTIONS(3397), - [sym_rune_literal] = ACTIONS(3397), - [sym_pseudo_compile_time_identifier] = ACTIONS(3397), - [anon_sym_shared] = ACTIONS(3397), - [anon_sym_map_LBRACK] = ACTIONS(3397), - [anon_sym_chan] = ACTIONS(3397), - [anon_sym_thread] = ACTIONS(3397), - [anon_sym_atomic] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_defer] = ACTIONS(3397), - [anon_sym_goto] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_DOLLARfor] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_asm] = ACTIONS(3397), - [anon_sym_AT_LBRACK] = ACTIONS(3397), - [sym___double_quote] = ACTIONS(3397), - [sym___single_quote] = ACTIONS(3397), - [sym___c_double_quote] = ACTIONS(3397), - [sym___c_single_quote] = ACTIONS(3397), - [sym___r_double_quote] = ACTIONS(3397), - [sym___r_single_quote] = ACTIONS(3397), + [sym___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), }, - [819] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [795] = { + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4361), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [820] = { - [sym__expression] = STATE(975), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [796] = { + [sym__expression] = STATE(2688), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [821] = { - [sym__expression] = STATE(2540), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [797] = { + [sym__expression] = STATE(1304), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [822] = { - [sym__expression] = STATE(998), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [798] = { + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4365), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [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), }, - [823] = { - [sym__expression] = STATE(2558), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [799] = { + [sym__expression] = STATE(1640), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [824] = { - [sym__expression] = STATE(997), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [800] = { + [sym__expression] = STATE(297), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [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), }, - [825] = { - [sym__expression] = STATE(996), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [801] = { + [sym__expression] = STATE(2649), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [826] = { - [sym__expression] = STATE(1002), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [802] = { + [sym__expression] = STATE(1282), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [827] = { - [sym__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [803] = { + [sym__expression] = STATE(2715), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2957), - [anon_sym_DASH] = ACTIONS(2957), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2961), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2965), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2969), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [828] = { - [sym__expression] = STATE(2297), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [804] = { + [sym__expression] = STATE(2302), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [829] = { - [sym__expression] = STATE(2559), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [805] = { + [sym__expression] = STATE(2719), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [830] = { - [sym__expression] = STATE(2544), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [806] = { + [sym__expression] = STATE(1292), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [831] = { - [sym__expression] = STATE(2503), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [807] = { + [sym__expression] = STATE(1303), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [832] = { - [ts_builtin_sym_end] = ACTIONS(3399), - [sym_identifier] = ACTIONS(3401), - [anon_sym_LF] = ACTIONS(3401), - [anon_sym_CR] = ACTIONS(3401), - [anon_sym_CR_LF] = ACTIONS(3401), + [808] = { + [sym__expression] = STATE(1810), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), + }, + [809] = { + [ts_builtin_sym_end] = ACTIONS(3326), + [sym_identifier] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_CR] = ACTIONS(3328), + [anon_sym_CR_LF] = ACTIONS(3328), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_as] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_EQ] = ACTIONS(3401), - [anon_sym___global] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_fn] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_union] = ACTIONS(3401), - [anon_sym_pub] = ACTIONS(3401), - [anon_sym_mut] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(3401), - [anon_sym_spawn] = ACTIONS(3401), - [anon_sym_json_DOTdecode] = ACTIONS(3401), - [anon_sym_LBRACK2] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_LT_LT] = ACTIONS(3401), - [anon_sym_GT_GT] = ACTIONS(3401), - [anon_sym_GT_GT_GT] = ACTIONS(3401), - [anon_sym_AMP_CARET] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [sym_none] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_nil] = ACTIONS(3401), - [anon_sym_QMARK_DOT] = ACTIONS(3401), - [anon_sym_POUND_LBRACK] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_DOLLARif] = ACTIONS(3401), - [anon_sym_is] = ACTIONS(3401), - [anon_sym_BANGis] = ACTIONS(3401), - [anon_sym_in] = ACTIONS(3401), - [anon_sym_BANGin] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_select] = ACTIONS(3401), - [anon_sym_STAR_EQ] = ACTIONS(3401), - [anon_sym_SLASH_EQ] = ACTIONS(3401), - [anon_sym_PERCENT_EQ] = ACTIONS(3401), - [anon_sym_LT_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_GT_EQ] = ACTIONS(3401), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3401), - [anon_sym_AMP_EQ] = ACTIONS(3401), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3401), - [anon_sym_PLUS_EQ] = ACTIONS(3401), - [anon_sym_DASH_EQ] = ACTIONS(3401), - [anon_sym_PIPE_EQ] = ACTIONS(3401), - [anon_sym_CARET_EQ] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3401), - [anon_sym_lock] = ACTIONS(3401), - [anon_sym_rlock] = ACTIONS(3401), - [anon_sym_unsafe] = ACTIONS(3401), - [anon_sym_sql] = ACTIONS(3401), - [sym_int_literal] = ACTIONS(3401), - [sym_float_literal] = ACTIONS(3401), - [sym_rune_literal] = ACTIONS(3401), - [sym_pseudo_compile_time_identifier] = ACTIONS(3401), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3401), - [anon_sym_chan] = ACTIONS(3401), - [anon_sym_thread] = ACTIONS(3401), - [anon_sym_atomic] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_defer] = ACTIONS(3401), - [anon_sym_goto] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_DOLLARfor] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_asm] = ACTIONS(3401), - [anon_sym_AT_LBRACK] = ACTIONS(3401), - [sym___double_quote] = ACTIONS(3401), - [sym___single_quote] = ACTIONS(3401), - [sym___c_double_quote] = ACTIONS(3401), - [sym___c_single_quote] = ACTIONS(3401), - [sym___r_double_quote] = ACTIONS(3401), - [sym___r_single_quote] = ACTIONS(3401), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_COMMA] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_EQ] = ACTIONS(3328), + [anon_sym___global] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3328), + [anon_sym_BANG_EQ] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_pub] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3328), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3328), + [anon_sym_AMP_CARET] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_PIPE_PIPE] = ACTIONS(3328), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3328), + [anon_sym_POUND_LBRACK] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3328), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_STAR_EQ] = ACTIONS(3328), + [anon_sym_SLASH_EQ] = ACTIONS(3328), + [anon_sym_PERCENT_EQ] = ACTIONS(3328), + [anon_sym_LT_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_GT_EQ] = ACTIONS(3328), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3328), + [anon_sym_AMP_EQ] = ACTIONS(3328), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3328), + [anon_sym_PLUS_EQ] = ACTIONS(3328), + [anon_sym_DASH_EQ] = ACTIONS(3328), + [anon_sym_PIPE_EQ] = ACTIONS(3328), + [anon_sym_CARET_EQ] = ACTIONS(3328), + [anon_sym_COLON_EQ] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + [anon_sym_assert] = ACTIONS(3328), + [anon_sym_defer] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_DOLLARfor] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym_AT_LBRACK] = ACTIONS(3328), + [sym___double_quote] = ACTIONS(3328), + [sym___single_quote] = ACTIONS(3328), + [sym___c_double_quote] = ACTIONS(3328), + [sym___c_single_quote] = ACTIONS(3328), + [sym___r_double_quote] = ACTIONS(3328), + [sym___r_single_quote] = ACTIONS(3328), }, - [833] = { - [sym__expression] = STATE(1145), - [sym__expression_without_blocks] = STATE(1177), - [sym__expression_with_blocks] = STATE(1177), - [sym_inc_expression] = STATE(1177), - [sym_dec_expression] = STATE(1177), - [sym_or_block_expression] = STATE(1177), - [sym_option_propagation_expression] = STATE(1177), - [sym_result_propagation_expression] = STATE(1177), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1177), - [sym_spawn_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_call_expression] = STATE(1177), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1177), - [sym_reference_expression] = STATE(1272), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1177), - [sym_receive_expression] = STATE(1177), - [sym_binary_expression] = STATE(1177), - [sym_as_type_cast_expression] = STATE(1177), - [sym__max_group] = STATE(1177), - [sym_literal] = STATE(1177), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1177), - [sym_fixed_array_creation] = STATE(1177), - [sym_selector_expression] = STATE(1177), - [sym_index_expression] = STATE(1177), - [sym_slice_expression] = STATE(1177), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1177), - [sym_not_is_expression] = STATE(1177), - [sym_in_expression] = STATE(1177), - [sym_not_in_expression] = STATE(1177), - [sym_enum_fetch] = STATE(1177), - [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(1181), - [sym_raw_string_literal] = STATE(1181), - [sym_interpreted_string_literal] = STATE(1181), - [sym_mutability_modifiers] = STATE(746), - [sym_plain_type] = STATE(4228), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(949), + [810] = { + [ts_builtin_sym_end] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_CR] = ACTIONS(3332), + [anon_sym_CR_LF] = ACTIONS(3332), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_as] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_EQ] = ACTIONS(3332), + [anon_sym___global] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_EQ_EQ] = ACTIONS(3332), + [anon_sym_BANG_EQ] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_pub] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3332), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3332), + [anon_sym_AMP_CARET] = ACTIONS(3332), + [anon_sym_AMP_AMP] = ACTIONS(3332), + [anon_sym_PIPE_PIPE] = ACTIONS(3332), + [anon_sym_or] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_QMARK_DOT] = ACTIONS(3332), + [anon_sym_POUND_LBRACK] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_is] = ACTIONS(3332), + [anon_sym_BANGis] = ACTIONS(3332), + [anon_sym_in] = ACTIONS(3332), + [anon_sym_BANGin] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_STAR_EQ] = ACTIONS(3332), + [anon_sym_SLASH_EQ] = ACTIONS(3332), + [anon_sym_PERCENT_EQ] = ACTIONS(3332), + [anon_sym_LT_LT_EQ] = ACTIONS(3332), + [anon_sym_GT_GT_EQ] = ACTIONS(3332), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3332), + [anon_sym_AMP_EQ] = ACTIONS(3332), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3332), + [anon_sym_PLUS_EQ] = ACTIONS(3332), + [anon_sym_DASH_EQ] = ACTIONS(3332), + [anon_sym_PIPE_EQ] = ACTIONS(3332), + [anon_sym_CARET_EQ] = ACTIONS(3332), + [anon_sym_COLON_EQ] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3332), + [sym_rune_literal] = ACTIONS(3332), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3332), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), + [anon_sym_assert] = ACTIONS(3332), + [anon_sym_defer] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_DOLLARfor] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym_AT_LBRACK] = ACTIONS(3332), + [sym___double_quote] = ACTIONS(3332), + [sym___single_quote] = ACTIONS(3332), + [sym___c_double_quote] = ACTIONS(3332), + [sym___c_single_quote] = ACTIONS(3332), + [sym___r_double_quote] = ACTIONS(3332), + [sym___r_single_quote] = ACTIONS(3332), + }, + [811] = { + [sym__expression] = STATE(2794), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(627), - [anon_sym_LBRACE] = ACTIONS(629), - [anon_sym_LPAREN] = ACTIONS(633), - [anon_sym_fn] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(639), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_struct] = ACTIONS(645), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(651), - [anon_sym_go] = ACTIONS(653), - [anon_sym_spawn] = ACTIONS(655), - [anon_sym_json_DOTdecode] = ACTIONS(657), - [anon_sym_LBRACK2] = ACTIONS(659), - [anon_sym_TILDE] = ACTIONS(639), - [anon_sym_CARET] = ACTIONS(639), - [anon_sym_AMP] = ACTIONS(661), - [anon_sym_LT_DASH] = ACTIONS(663), - [sym_none] = ACTIONS(665), - [sym_true] = ACTIONS(665), - [sym_false] = ACTIONS(665), - [sym_nil] = ACTIONS(665), - [anon_sym_if] = ACTIONS(667), - [anon_sym_DOLLARif] = ACTIONS(669), - [anon_sym_match] = ACTIONS(671), - [anon_sym_select] = ACTIONS(673), - [anon_sym_lock] = ACTIONS(675), - [anon_sym_rlock] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(677), - [anon_sym_sql] = ACTIONS(679), - [sym_int_literal] = ACTIONS(665), - [sym_float_literal] = ACTIONS(681), - [sym_rune_literal] = ACTIONS(681), - [sym_pseudo_compile_time_identifier] = ACTIONS(683), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(685), - [sym___single_quote] = ACTIONS(687), - [sym___c_double_quote] = ACTIONS(689), - [sym___c_single_quote] = ACTIONS(691), - [sym___r_double_quote] = ACTIONS(693), - [sym___r_single_quote] = ACTIONS(695), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [834] = { - [sym__expression] = STATE(1850), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [812] = { + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_EQ] = ACTIONS(3336), + [anon_sym___global] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_pub] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3336), + [anon_sym_POUND_LBRACK] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3336), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_STAR_EQ] = ACTIONS(3336), + [anon_sym_SLASH_EQ] = ACTIONS(3336), + [anon_sym_PERCENT_EQ] = ACTIONS(3336), + [anon_sym_LT_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_GT_EQ] = ACTIONS(3336), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3336), + [anon_sym_AMP_EQ] = ACTIONS(3336), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3336), + [anon_sym_PLUS_EQ] = ACTIONS(3336), + [anon_sym_DASH_EQ] = ACTIONS(3336), + [anon_sym_PIPE_EQ] = ACTIONS(3336), + [anon_sym_CARET_EQ] = ACTIONS(3336), + [anon_sym_COLON_EQ] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_defer] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_DOLLARfor] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym_AT_LBRACK] = ACTIONS(3336), + [sym___double_quote] = ACTIONS(3336), + [sym___single_quote] = ACTIONS(3336), + [sym___c_double_quote] = ACTIONS(3336), + [sym___c_single_quote] = ACTIONS(3336), + [sym___r_double_quote] = ACTIONS(3336), + [sym___r_single_quote] = ACTIONS(3336), + }, + [813] = { + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_EQ] = ACTIONS(3340), + [anon_sym___global] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_pub] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_STAR_EQ] = ACTIONS(3340), + [anon_sym_SLASH_EQ] = ACTIONS(3340), + [anon_sym_PERCENT_EQ] = ACTIONS(3340), + [anon_sym_LT_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_GT_EQ] = ACTIONS(3340), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3340), + [anon_sym_AMP_EQ] = ACTIONS(3340), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3340), + [anon_sym_PLUS_EQ] = ACTIONS(3340), + [anon_sym_DASH_EQ] = ACTIONS(3340), + [anon_sym_PIPE_EQ] = ACTIONS(3340), + [anon_sym_CARET_EQ] = ACTIONS(3340), + [anon_sym_COLON_EQ] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_defer] = ACTIONS(3340), + [anon_sym_goto] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_DOLLARfor] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3340), + [anon_sym_asm] = ACTIONS(3340), + [anon_sym_AT_LBRACK] = ACTIONS(3340), + [sym___double_quote] = ACTIONS(3340), + [sym___single_quote] = ACTIONS(3340), + [sym___c_double_quote] = ACTIONS(3340), + [sym___c_single_quote] = ACTIONS(3340), + [sym___r_double_quote] = ACTIONS(3340), + [sym___r_single_quote] = ACTIONS(3340), + }, + [814] = { + [sym__expression] = STATE(1787), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, - [835] = { - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [815] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2952), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2950), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [836] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4266), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [816] = { + [sym__expression] = STATE(1812), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, - [837] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [817] = { + [sym__expression] = STATE(1813), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, - [838] = { - [sym__expression] = STATE(1784), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [818] = { + [sym__expression] = STATE(1811), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), + }, + [819] = { + [sym__expression] = STATE(2669), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [820] = { + [sym__expression] = STATE(1789), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4305), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -121897,9 +119883,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -121918,91 +119904,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [839] = { - [sym__expression] = STATE(1849), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [821] = { + [sym__expression] = STATE(2467), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [822] = { + [sym__expression] = STATE(1784), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2655), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2659), + [anon_sym_STAR] = ACTIONS(2661), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2663), + [anon_sym_go] = ACTIONS(2665), + [anon_sym_spawn] = ACTIONS(2667), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(2669), + [anon_sym_TILDE] = ACTIONS(2659), + [anon_sym_CARET] = ACTIONS(2659), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_LT_DASH] = ACTIONS(2673), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -122010,9 +120109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(2675), + [anon_sym_lock] = ACTIONS(2677), + [anon_sym_rlock] = ACTIONS(2677), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -122031,1108 +120130,1786 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [840] = { - [sym__expression] = STATE(1848), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [823] = { + [sym__expression] = STATE(1807), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), + }, + [824] = { + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_interface] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), [anon_sym_TILDE] = ACTIONS(2727), [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_STAR_EQ] = ACTIONS(2727), + [anon_sym_SLASH_EQ] = ACTIONS(2727), + [anon_sym_PERCENT_EQ] = ACTIONS(2727), + [anon_sym_LT_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_AMP_EQ] = ACTIONS(2727), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2727), + [anon_sym_PLUS_EQ] = ACTIONS(2727), + [anon_sym_DASH_EQ] = ACTIONS(2727), + [anon_sym_PIPE_EQ] = ACTIONS(2727), + [anon_sym_CARET_EQ] = ACTIONS(2727), + [anon_sym_COLON_EQ] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_defer] = ACTIONS(2727), + [anon_sym_goto] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_DOLLARfor] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_asm] = ACTIONS(2727), + [anon_sym_AT_LBRACK] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), + }, + [825] = { + [sym__expression] = STATE(2302), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [841] = { - [sym__expression] = STATE(988), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [826] = { + [sym__expression] = STATE(2651), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [842] = { - [sym__expression] = STATE(987), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [827] = { + [sym__expression] = STATE(2468), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [843] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4261), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [828] = { + [ts_builtin_sym_end] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_CR] = ACTIONS(3344), + [anon_sym_CR_LF] = ACTIONS(3344), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_EQ] = ACTIONS(3344), + [anon_sym___global] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_fn] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_LT_EQ] = ACTIONS(3344), + [anon_sym_GT_EQ] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_pub] = ACTIONS(3344), + [anon_sym_mut] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_go] = ACTIONS(3344), + [anon_sym_spawn] = ACTIONS(3344), + [anon_sym_json_DOTdecode] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_CARET] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_GT_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_CARET] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_or] = ACTIONS(3344), + [sym_none] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_nil] = ACTIONS(3344), + [anon_sym_QMARK_DOT] = ACTIONS(3344), + [anon_sym_POUND_LBRACK] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3344), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_BANGin] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_select] = ACTIONS(3344), + [anon_sym_STAR_EQ] = ACTIONS(3344), + [anon_sym_SLASH_EQ] = ACTIONS(3344), + [anon_sym_PERCENT_EQ] = ACTIONS(3344), + [anon_sym_LT_LT_EQ] = ACTIONS(3344), + [anon_sym_GT_GT_EQ] = ACTIONS(3344), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3344), + [anon_sym_AMP_EQ] = ACTIONS(3344), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3344), + [anon_sym_PLUS_EQ] = ACTIONS(3344), + [anon_sym_DASH_EQ] = ACTIONS(3344), + [anon_sym_PIPE_EQ] = ACTIONS(3344), + [anon_sym_CARET_EQ] = ACTIONS(3344), + [anon_sym_COLON_EQ] = ACTIONS(3344), + [anon_sym_lock] = ACTIONS(3344), + [anon_sym_rlock] = ACTIONS(3344), + [anon_sym_unsafe] = ACTIONS(3344), + [anon_sym_sql] = ACTIONS(3344), + [sym_int_literal] = ACTIONS(3344), + [sym_float_literal] = ACTIONS(3344), + [sym_rune_literal] = ACTIONS(3344), + [sym_pseudo_compile_time_identifier] = ACTIONS(3344), + [anon_sym_shared] = ACTIONS(3344), + [anon_sym_map_LBRACK] = ACTIONS(3344), + [anon_sym_chan] = ACTIONS(3344), + [anon_sym_thread] = ACTIONS(3344), + [anon_sym_atomic] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_defer] = ACTIONS(3344), + [anon_sym_goto] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_DOLLARfor] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_POUND] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3344), + [anon_sym_AT_LBRACK] = ACTIONS(3344), + [sym___double_quote] = ACTIONS(3344), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3344), + [sym___c_single_quote] = ACTIONS(3344), + [sym___r_double_quote] = ACTIONS(3344), + [sym___r_single_quote] = ACTIONS(3344), + }, + [829] = { + [sym__expression] = STATE(1806), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, - [844] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4258), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [830] = { + [sym__expression] = STATE(2785), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [845] = { - [ts_builtin_sym_end] = ACTIONS(3403), - [sym_identifier] = ACTIONS(3405), - [anon_sym_LF] = ACTIONS(3405), - [anon_sym_CR] = ACTIONS(3405), - [anon_sym_CR_LF] = ACTIONS(3405), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_as] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_EQ] = ACTIONS(3405), - [anon_sym___global] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_fn] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3405), - [anon_sym_union] = ACTIONS(3405), - [anon_sym_pub] = ACTIONS(3405), - [anon_sym_mut] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_go] = ACTIONS(3405), - [anon_sym_spawn] = ACTIONS(3405), - [anon_sym_json_DOTdecode] = ACTIONS(3405), - [anon_sym_LBRACK2] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_LT_LT] = ACTIONS(3405), - [anon_sym_GT_GT] = ACTIONS(3405), - [anon_sym_GT_GT_GT] = ACTIONS(3405), - [anon_sym_AMP_CARET] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [sym_none] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_nil] = ACTIONS(3405), - [anon_sym_QMARK_DOT] = ACTIONS(3405), - [anon_sym_POUND_LBRACK] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_DOLLARif] = ACTIONS(3405), - [anon_sym_is] = ACTIONS(3405), - [anon_sym_BANGis] = ACTIONS(3405), - [anon_sym_in] = ACTIONS(3405), - [anon_sym_BANGin] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_select] = ACTIONS(3405), - [anon_sym_STAR_EQ] = ACTIONS(3405), - [anon_sym_SLASH_EQ] = ACTIONS(3405), - [anon_sym_PERCENT_EQ] = ACTIONS(3405), - [anon_sym_LT_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_GT_EQ] = ACTIONS(3405), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3405), - [anon_sym_AMP_EQ] = ACTIONS(3405), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3405), - [anon_sym_PLUS_EQ] = ACTIONS(3405), - [anon_sym_DASH_EQ] = ACTIONS(3405), - [anon_sym_PIPE_EQ] = ACTIONS(3405), - [anon_sym_CARET_EQ] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3405), - [anon_sym_lock] = ACTIONS(3405), - [anon_sym_rlock] = ACTIONS(3405), - [anon_sym_unsafe] = ACTIONS(3405), - [anon_sym_sql] = ACTIONS(3405), - [sym_int_literal] = ACTIONS(3405), - [sym_float_literal] = ACTIONS(3405), - [sym_rune_literal] = ACTIONS(3405), - [sym_pseudo_compile_time_identifier] = ACTIONS(3405), - [anon_sym_shared] = ACTIONS(3405), - [anon_sym_map_LBRACK] = ACTIONS(3405), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3405), - [anon_sym_atomic] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_defer] = ACTIONS(3405), - [anon_sym_goto] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_DOLLARfor] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_asm] = ACTIONS(3405), - [anon_sym_AT_LBRACK] = ACTIONS(3405), - [sym___double_quote] = ACTIONS(3405), - [sym___single_quote] = ACTIONS(3405), - [sym___c_double_quote] = ACTIONS(3405), - [sym___c_single_quote] = ACTIONS(3405), - [sym___r_double_quote] = ACTIONS(3405), - [sym___r_single_quote] = ACTIONS(3405), + [831] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4377), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [846] = { - [ts_builtin_sym_end] = ACTIONS(3407), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LF] = ACTIONS(3409), - [anon_sym_CR] = ACTIONS(3409), - [anon_sym_CR_LF] = ACTIONS(3409), + [832] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2966), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2969), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [833] = { + [sym__expression] = STATE(2824), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [834] = { + [ts_builtin_sym_end] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3348), + [anon_sym_LF] = ACTIONS(3348), + [anon_sym_CR] = ACTIONS(3348), + [anon_sym_CR_LF] = ACTIONS(3348), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_as] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_EQ] = ACTIONS(3409), - [anon_sym___global] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_fn] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3409), - [anon_sym_union] = ACTIONS(3409), - [anon_sym_pub] = ACTIONS(3409), - [anon_sym_mut] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_go] = ACTIONS(3409), - [anon_sym_spawn] = ACTIONS(3409), - [anon_sym_json_DOTdecode] = ACTIONS(3409), - [anon_sym_LBRACK2] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_LT_LT] = ACTIONS(3409), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_GT_GT_GT] = ACTIONS(3409), - [anon_sym_AMP_CARET] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [sym_none] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_nil] = ACTIONS(3409), - [anon_sym_QMARK_DOT] = ACTIONS(3409), - [anon_sym_POUND_LBRACK] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_DOLLARif] = ACTIONS(3409), - [anon_sym_is] = ACTIONS(3409), - [anon_sym_BANGis] = ACTIONS(3409), - [anon_sym_in] = ACTIONS(3409), - [anon_sym_BANGin] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_select] = ACTIONS(3409), - [anon_sym_STAR_EQ] = ACTIONS(3409), - [anon_sym_SLASH_EQ] = ACTIONS(3409), - [anon_sym_PERCENT_EQ] = ACTIONS(3409), - [anon_sym_LT_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_GT_EQ] = ACTIONS(3409), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3409), - [anon_sym_AMP_EQ] = ACTIONS(3409), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3409), - [anon_sym_PLUS_EQ] = ACTIONS(3409), - [anon_sym_DASH_EQ] = ACTIONS(3409), - [anon_sym_PIPE_EQ] = ACTIONS(3409), - [anon_sym_CARET_EQ] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3409), - [anon_sym_lock] = ACTIONS(3409), - [anon_sym_rlock] = ACTIONS(3409), - [anon_sym_unsafe] = ACTIONS(3409), - [anon_sym_sql] = ACTIONS(3409), - [sym_int_literal] = ACTIONS(3409), - [sym_float_literal] = ACTIONS(3409), - [sym_rune_literal] = ACTIONS(3409), - [sym_pseudo_compile_time_identifier] = ACTIONS(3409), - [anon_sym_shared] = ACTIONS(3409), - [anon_sym_map_LBRACK] = ACTIONS(3409), - [anon_sym_chan] = ACTIONS(3409), - [anon_sym_thread] = ACTIONS(3409), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_defer] = ACTIONS(3409), - [anon_sym_goto] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_DOLLARfor] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_asm] = ACTIONS(3409), - [anon_sym_AT_LBRACK] = ACTIONS(3409), - [sym___double_quote] = ACTIONS(3409), - [sym___single_quote] = ACTIONS(3409), - [sym___c_double_quote] = ACTIONS(3409), - [sym___c_single_quote] = ACTIONS(3409), - [sym___r_double_quote] = ACTIONS(3409), - [sym___r_single_quote] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3348), + [anon_sym_as] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_COMMA] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_EQ] = ACTIONS(3348), + [anon_sym___global] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_PIPE] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_PERCENT] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_GT] = ACTIONS(3348), + [anon_sym_EQ_EQ] = ACTIONS(3348), + [anon_sym_BANG_EQ] = ACTIONS(3348), + [anon_sym_LT_EQ] = ACTIONS(3348), + [anon_sym_GT_EQ] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_struct] = ACTIONS(3348), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_pub] = ACTIONS(3348), + [anon_sym_mut] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [anon_sym_QMARK] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3348), + [anon_sym_json_DOTdecode] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_CARET] = ACTIONS(3348), + [anon_sym_AMP] = ACTIONS(3348), + [anon_sym_LT_DASH] = ACTIONS(3348), + [anon_sym_LT_LT] = ACTIONS(3348), + [anon_sym_GT_GT] = ACTIONS(3348), + [anon_sym_GT_GT_GT] = ACTIONS(3348), + [anon_sym_AMP_CARET] = ACTIONS(3348), + [anon_sym_AMP_AMP] = ACTIONS(3348), + [anon_sym_PIPE_PIPE] = ACTIONS(3348), + [anon_sym_or] = ACTIONS(3348), + [sym_none] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_nil] = ACTIONS(3348), + [anon_sym_QMARK_DOT] = ACTIONS(3348), + [anon_sym_POUND_LBRACK] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_DOLLARif] = ACTIONS(3348), + [anon_sym_is] = ACTIONS(3348), + [anon_sym_BANGis] = ACTIONS(3348), + [anon_sym_in] = ACTIONS(3348), + [anon_sym_BANGin] = ACTIONS(3348), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3348), + [anon_sym_STAR_EQ] = ACTIONS(3348), + [anon_sym_SLASH_EQ] = ACTIONS(3348), + [anon_sym_PERCENT_EQ] = ACTIONS(3348), + [anon_sym_LT_LT_EQ] = ACTIONS(3348), + [anon_sym_GT_GT_EQ] = ACTIONS(3348), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3348), + [anon_sym_AMP_EQ] = ACTIONS(3348), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3348), + [anon_sym_PLUS_EQ] = ACTIONS(3348), + [anon_sym_DASH_EQ] = ACTIONS(3348), + [anon_sym_PIPE_EQ] = ACTIONS(3348), + [anon_sym_CARET_EQ] = ACTIONS(3348), + [anon_sym_COLON_EQ] = ACTIONS(3348), + [anon_sym_lock] = ACTIONS(3348), + [anon_sym_rlock] = ACTIONS(3348), + [anon_sym_unsafe] = ACTIONS(3348), + [anon_sym_sql] = ACTIONS(3348), + [sym_int_literal] = ACTIONS(3348), + [sym_float_literal] = ACTIONS(3348), + [sym_rune_literal] = ACTIONS(3348), + [sym_pseudo_compile_time_identifier] = ACTIONS(3348), + [anon_sym_shared] = ACTIONS(3348), + [anon_sym_map_LBRACK] = ACTIONS(3348), + [anon_sym_chan] = ACTIONS(3348), + [anon_sym_thread] = ACTIONS(3348), + [anon_sym_atomic] = ACTIONS(3348), + [anon_sym_assert] = ACTIONS(3348), + [anon_sym_defer] = ACTIONS(3348), + [anon_sym_goto] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_DOLLARfor] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(3348), + [anon_sym_asm] = ACTIONS(3348), + [anon_sym_AT_LBRACK] = ACTIONS(3348), + [sym___double_quote] = ACTIONS(3348), + [sym___single_quote] = ACTIONS(3348), + [sym___c_double_quote] = ACTIONS(3348), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3348), + [sym___r_single_quote] = ACTIONS(3348), }, - [847] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(491), + [835] = { + [sym__expression] = STATE(1302), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_struct] = ACTIONS(509), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), - [anon_sym_go] = ACTIONS(515), - [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), - [sym_none] = ACTIONS(527), - [sym_true] = ACTIONS(527), - [sym_false] = ACTIONS(527), - [sym_nil] = ACTIONS(527), - [anon_sym_if] = ACTIONS(529), - [anon_sym_DOLLARif] = ACTIONS(531), - [anon_sym_match] = ACTIONS(533), - [anon_sym_select] = ACTIONS(535), - [anon_sym_lock] = ACTIONS(537), - [anon_sym_rlock] = ACTIONS(537), - [anon_sym_unsafe] = ACTIONS(539), - [anon_sym_sql] = ACTIONS(541), - [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), - [sym_pseudo_compile_time_identifier] = ACTIONS(543), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [848] = { - [ts_builtin_sym_end] = ACTIONS(3411), - [sym_identifier] = ACTIONS(3413), - [anon_sym_LF] = ACTIONS(3413), - [anon_sym_CR] = ACTIONS(3413), - [anon_sym_CR_LF] = ACTIONS(3413), + [836] = { + [ts_builtin_sym_end] = ACTIONS(3350), + [sym_identifier] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_CR] = ACTIONS(3352), + [anon_sym_CR_LF] = ACTIONS(3352), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_as] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(3413), - [anon_sym___global] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_fn] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_GT] = ACTIONS(3413), - [anon_sym_EQ_EQ] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_EQ] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3413), - [anon_sym_union] = ACTIONS(3413), - [anon_sym_pub] = ACTIONS(3413), - [anon_sym_mut] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_go] = ACTIONS(3413), - [anon_sym_spawn] = ACTIONS(3413), - [anon_sym_json_DOTdecode] = ACTIONS(3413), - [anon_sym_LBRACK2] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_LT_LT] = ACTIONS(3413), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_GT_GT_GT] = ACTIONS(3413), - [anon_sym_AMP_CARET] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [sym_none] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_nil] = ACTIONS(3413), - [anon_sym_QMARK_DOT] = ACTIONS(3413), - [anon_sym_POUND_LBRACK] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_DOLLARif] = ACTIONS(3413), - [anon_sym_is] = ACTIONS(3413), - [anon_sym_BANGis] = ACTIONS(3413), - [anon_sym_in] = ACTIONS(3413), - [anon_sym_BANGin] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_select] = ACTIONS(3413), - [anon_sym_STAR_EQ] = ACTIONS(3413), - [anon_sym_SLASH_EQ] = ACTIONS(3413), - [anon_sym_PERCENT_EQ] = ACTIONS(3413), - [anon_sym_LT_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_GT_EQ] = ACTIONS(3413), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3413), - [anon_sym_AMP_EQ] = ACTIONS(3413), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3413), - [anon_sym_PLUS_EQ] = ACTIONS(3413), - [anon_sym_DASH_EQ] = ACTIONS(3413), - [anon_sym_PIPE_EQ] = ACTIONS(3413), - [anon_sym_CARET_EQ] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3413), - [anon_sym_lock] = ACTIONS(3413), - [anon_sym_rlock] = ACTIONS(3413), - [anon_sym_unsafe] = ACTIONS(3413), - [anon_sym_sql] = ACTIONS(3413), - [sym_int_literal] = ACTIONS(3413), - [sym_float_literal] = ACTIONS(3413), - [sym_rune_literal] = ACTIONS(3413), - [sym_pseudo_compile_time_identifier] = ACTIONS(3413), - [anon_sym_shared] = ACTIONS(3413), - [anon_sym_map_LBRACK] = ACTIONS(3413), - [anon_sym_chan] = ACTIONS(3413), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_defer] = ACTIONS(3413), - [anon_sym_goto] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_DOLLARfor] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_asm] = ACTIONS(3413), - [anon_sym_AT_LBRACK] = ACTIONS(3413), - [sym___double_quote] = ACTIONS(3413), - [sym___single_quote] = ACTIONS(3413), - [sym___c_double_quote] = ACTIONS(3413), - [sym___c_single_quote] = ACTIONS(3413), - [sym___r_double_quote] = ACTIONS(3413), - [sym___r_single_quote] = ACTIONS(3413), + [anon_sym_DOT] = ACTIONS(3352), + [anon_sym_as] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_COMMA] = ACTIONS(3352), + [anon_sym_const] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_EQ] = ACTIONS(3352), + [anon_sym___global] = ACTIONS(3352), + [anon_sym_type] = ACTIONS(3352), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_fn] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_struct] = ACTIONS(3352), + [anon_sym_union] = ACTIONS(3352), + [anon_sym_pub] = ACTIONS(3352), + [anon_sym_mut] = ACTIONS(3352), + [anon_sym_enum] = ACTIONS(3352), + [anon_sym_interface] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_QMARK] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_go] = ACTIONS(3352), + [anon_sym_spawn] = ACTIONS(3352), + [anon_sym_json_DOTdecode] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_or] = ACTIONS(3352), + [sym_none] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_nil] = ACTIONS(3352), + [anon_sym_QMARK_DOT] = ACTIONS(3352), + [anon_sym_POUND_LBRACK] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_DOLLARif] = ACTIONS(3352), + [anon_sym_is] = ACTIONS(3352), + [anon_sym_BANGis] = ACTIONS(3352), + [anon_sym_in] = ACTIONS(3352), + [anon_sym_BANGin] = ACTIONS(3352), + [anon_sym_match] = ACTIONS(3352), + [anon_sym_select] = ACTIONS(3352), + [anon_sym_STAR_EQ] = ACTIONS(3352), + [anon_sym_SLASH_EQ] = ACTIONS(3352), + [anon_sym_PERCENT_EQ] = ACTIONS(3352), + [anon_sym_LT_LT_EQ] = ACTIONS(3352), + [anon_sym_GT_GT_EQ] = ACTIONS(3352), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3352), + [anon_sym_AMP_EQ] = ACTIONS(3352), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3352), + [anon_sym_PLUS_EQ] = ACTIONS(3352), + [anon_sym_DASH_EQ] = ACTIONS(3352), + [anon_sym_PIPE_EQ] = ACTIONS(3352), + [anon_sym_CARET_EQ] = ACTIONS(3352), + [anon_sym_COLON_EQ] = ACTIONS(3352), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3352), + [anon_sym_sql] = ACTIONS(3352), + [sym_int_literal] = ACTIONS(3352), + [sym_float_literal] = ACTIONS(3352), + [sym_rune_literal] = ACTIONS(3352), + [sym_pseudo_compile_time_identifier] = ACTIONS(3352), + [anon_sym_shared] = ACTIONS(3352), + [anon_sym_map_LBRACK] = ACTIONS(3352), + [anon_sym_chan] = ACTIONS(3352), + [anon_sym_thread] = ACTIONS(3352), + [anon_sym_atomic] = ACTIONS(3352), + [anon_sym_assert] = ACTIONS(3352), + [anon_sym_defer] = ACTIONS(3352), + [anon_sym_goto] = ACTIONS(3352), + [anon_sym_break] = ACTIONS(3352), + [anon_sym_continue] = ACTIONS(3352), + [anon_sym_return] = ACTIONS(3352), + [anon_sym_DOLLARfor] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3352), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_asm] = ACTIONS(3352), + [anon_sym_AT_LBRACK] = ACTIONS(3352), + [sym___double_quote] = ACTIONS(3352), + [sym___single_quote] = ACTIONS(3352), + [sym___c_double_quote] = ACTIONS(3352), + [sym___c_single_quote] = ACTIONS(3352), + [sym___r_double_quote] = ACTIONS(3352), + [sym___r_single_quote] = ACTIONS(3352), }, - [849] = { - [sym__expression] = STATE(1844), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [837] = { + [sym__expression] = STATE(1301), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), + }, + [838] = { + [sym__expression] = STATE(1834), + [sym__expression_without_blocks] = STATE(2052), + [sym__expression_with_blocks] = STATE(2052), + [sym_inc_expression] = STATE(2052), + [sym_dec_expression] = STATE(2052), + [sym_or_block_expression] = STATE(2052), + [sym_option_propagation_expression] = STATE(2052), + [sym_result_propagation_expression] = STATE(2052), + [sym_anon_struct_value_expression] = STATE(2053), + [sym_go_expression] = STATE(2052), + [sym_spawn_expression] = STATE(2052), + [sym_parenthesized_expression] = STATE(2052), + [sym_call_expression] = STATE(2052), + [sym_type_initializer] = STATE(2053), + [sym_function_literal] = STATE(2052), + [sym_reference_expression] = STATE(1972), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2052), + [sym_receive_expression] = STATE(2052), + [sym_binary_expression] = STATE(2052), + [sym_as_type_cast_expression] = STATE(2052), + [sym__max_group] = STATE(2052), + [sym_literal] = STATE(2052), + [sym_map_init_expression] = STATE(2053), + [sym_array_creation] = STATE(2052), + [sym_fixed_array_creation] = STATE(2052), + [sym_selector_expression] = STATE(2052), + [sym_index_expression] = STATE(2052), + [sym_slice_expression] = STATE(2052), + [sym_if_expression] = STATE(2053), + [sym_compile_time_if_expression] = STATE(2053), + [sym_is_expression] = STATE(2052), + [sym_not_is_expression] = STATE(2052), + [sym_in_expression] = STATE(2052), + [sym_not_in_expression] = STATE(2052), + [sym_enum_fetch] = STATE(2052), + [sym_match_expression] = STATE(2053), + [sym_select_expression] = STATE(2053), + [sym_lock_expression] = STATE(2053), + [sym_unsafe_expression] = STATE(2053), + [sym_sql_expression] = STATE(2053), + [sym_c_string_literal] = STATE(2040), + [sym_raw_string_literal] = STATE(2040), + [sym_interpreted_string_literal] = STATE(2040), + [sym_mutability_modifiers] = STATE(488), + [sym_plain_type] = STATE(4275), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1695), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2657), [anon_sym_LPAREN] = ACTIONS(811), [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(815), + [anon_sym_DASH] = ACTIONS(815), + [anon_sym_STAR] = ACTIONS(817), [anon_sym_struct] = ACTIONS(819), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(823), + [anon_sym_go] = ACTIONS(825), + [anon_sym_spawn] = ACTIONS(827), [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), + [anon_sym_LBRACK2] = ACTIONS(831), + [anon_sym_TILDE] = ACTIONS(815), + [anon_sym_CARET] = ACTIONS(815), + [anon_sym_AMP] = ACTIONS(833), + [anon_sym_LT_DASH] = ACTIONS(835), [sym_none] = ACTIONS(837), [sym_true] = ACTIONS(837), [sym_false] = ACTIONS(837), @@ -123140,9 +121917,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(839), [anon_sym_DOLLARif] = ACTIONS(841), [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), + [anon_sym_select] = ACTIONS(845), + [anon_sym_lock] = ACTIONS(847), + [anon_sym_rlock] = ACTIONS(847), [anon_sym_unsafe] = ACTIONS(849), [anon_sym_sql] = ACTIONS(851), [sym_int_literal] = ACTIONS(837), @@ -123161,8888 +121938,10583 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(865), [sym___r_single_quote] = ACTIONS(867), }, - [850] = { - [sym__expression] = STATE(2447), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [839] = { + [sym__expression] = STATE(2469), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [851] = { - [sym__expression] = STATE(2317), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [840] = { + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_EQ] = ACTIONS(3356), + [anon_sym___global] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_STAR_EQ] = ACTIONS(3356), + [anon_sym_SLASH_EQ] = ACTIONS(3356), + [anon_sym_PERCENT_EQ] = ACTIONS(3356), + [anon_sym_LT_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_GT_EQ] = ACTIONS(3356), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3356), + [anon_sym_AMP_EQ] = ACTIONS(3356), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3356), + [anon_sym_PLUS_EQ] = ACTIONS(3356), + [anon_sym_DASH_EQ] = ACTIONS(3356), + [anon_sym_PIPE_EQ] = ACTIONS(3356), + [anon_sym_CARET_EQ] = ACTIONS(3356), + [anon_sym_COLON_EQ] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + [anon_sym_AT_LBRACK] = ACTIONS(3356), + [sym___double_quote] = ACTIONS(3356), + [sym___single_quote] = ACTIONS(3356), + [sym___c_double_quote] = ACTIONS(3356), + [sym___c_single_quote] = ACTIONS(3356), + [sym___r_double_quote] = ACTIONS(3356), + [sym___r_single_quote] = ACTIONS(3356), + }, + [841] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4374), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [852] = { - [sym__expression] = STATE(2446), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [842] = { + [sym__expression] = STATE(2666), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2687), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2691), + [anon_sym_go] = ACTIONS(2693), + [anon_sym_spawn] = ACTIONS(2695), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1813), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_LT_DASH] = ACTIONS(2699), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2701), + [anon_sym_lock] = ACTIONS(2703), + [anon_sym_rlock] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), - }, - [853] = { - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3417), - [anon_sym_LF] = ACTIONS(3417), - [anon_sym_CR] = ACTIONS(3417), - [anon_sym_CR_LF] = ACTIONS(3417), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_as] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_EQ] = ACTIONS(3417), - [anon_sym___global] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_fn] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_EQ_EQ] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3417), - [anon_sym_union] = ACTIONS(3417), - [anon_sym_pub] = ACTIONS(3417), - [anon_sym_mut] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_go] = ACTIONS(3417), - [anon_sym_spawn] = ACTIONS(3417), - [anon_sym_json_DOTdecode] = ACTIONS(3417), - [anon_sym_LBRACK2] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_LT_LT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3417), - [anon_sym_GT_GT_GT] = ACTIONS(3417), - [anon_sym_AMP_CARET] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [sym_none] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_nil] = ACTIONS(3417), - [anon_sym_QMARK_DOT] = ACTIONS(3417), - [anon_sym_POUND_LBRACK] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_DOLLARif] = ACTIONS(3417), - [anon_sym_is] = ACTIONS(3417), - [anon_sym_BANGis] = ACTIONS(3417), - [anon_sym_in] = ACTIONS(3417), - [anon_sym_BANGin] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_STAR_EQ] = ACTIONS(3417), - [anon_sym_SLASH_EQ] = ACTIONS(3417), - [anon_sym_PERCENT_EQ] = ACTIONS(3417), - [anon_sym_LT_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_GT_EQ] = ACTIONS(3417), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3417), - [anon_sym_AMP_EQ] = ACTIONS(3417), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3417), - [anon_sym_PLUS_EQ] = ACTIONS(3417), - [anon_sym_DASH_EQ] = ACTIONS(3417), - [anon_sym_PIPE_EQ] = ACTIONS(3417), - [anon_sym_CARET_EQ] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3417), - [anon_sym_lock] = ACTIONS(3417), - [anon_sym_rlock] = ACTIONS(3417), - [anon_sym_unsafe] = ACTIONS(3417), - [anon_sym_sql] = ACTIONS(3417), - [sym_int_literal] = ACTIONS(3417), - [sym_float_literal] = ACTIONS(3417), - [sym_rune_literal] = ACTIONS(3417), - [sym_pseudo_compile_time_identifier] = ACTIONS(3417), - [anon_sym_shared] = ACTIONS(3417), - [anon_sym_map_LBRACK] = ACTIONS(3417), - [anon_sym_chan] = ACTIONS(3417), - [anon_sym_thread] = ACTIONS(3417), - [anon_sym_atomic] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_defer] = ACTIONS(3417), - [anon_sym_goto] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_DOLLARfor] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym_AT_LBRACK] = ACTIONS(3417), - [sym___double_quote] = ACTIONS(3417), - [sym___single_quote] = ACTIONS(3417), - [sym___c_double_quote] = ACTIONS(3417), - [sym___c_single_quote] = ACTIONS(3417), - [sym___r_double_quote] = ACTIONS(3417), - [sym___r_single_quote] = ACTIONS(3417), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [854] = { - [sym__expression] = STATE(2430), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [843] = { + [sym__expression] = STATE(2470), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [855] = { - [sym__expression] = STATE(2183), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [844] = { + [sym__expression] = STATE(1300), + [sym__expression_without_blocks] = STATE(1345), + [sym__expression_with_blocks] = STATE(1345), + [sym_inc_expression] = STATE(1345), + [sym_dec_expression] = STATE(1345), + [sym_or_block_expression] = STATE(1345), + [sym_option_propagation_expression] = STATE(1345), + [sym_result_propagation_expression] = STATE(1345), + [sym_anon_struct_value_expression] = STATE(1412), + [sym_go_expression] = STATE(1345), + [sym_spawn_expression] = STATE(1345), + [sym_parenthesized_expression] = STATE(1345), + [sym_call_expression] = STATE(1345), + [sym_type_initializer] = STATE(1412), + [sym_function_literal] = STATE(1345), + [sym_reference_expression] = STATE(1384), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1345), + [sym_receive_expression] = STATE(1345), + [sym_binary_expression] = STATE(1345), + [sym_as_type_cast_expression] = STATE(1345), + [sym__max_group] = STATE(1345), + [sym_literal] = STATE(1345), + [sym_map_init_expression] = STATE(1412), + [sym_array_creation] = STATE(1345), + [sym_fixed_array_creation] = STATE(1345), + [sym_selector_expression] = STATE(1345), + [sym_index_expression] = STATE(1345), + [sym_slice_expression] = STATE(1345), + [sym_if_expression] = STATE(1412), + [sym_compile_time_if_expression] = STATE(1412), + [sym_is_expression] = STATE(1345), + [sym_not_is_expression] = STATE(1345), + [sym_in_expression] = STATE(1345), + [sym_not_in_expression] = STATE(1345), + [sym_enum_fetch] = STATE(1345), + [sym_match_expression] = STATE(1412), + [sym_select_expression] = STATE(1412), + [sym_lock_expression] = STATE(1412), + [sym_unsafe_expression] = STATE(1412), + [sym_sql_expression] = STATE(1412), + [sym_c_string_literal] = STATE(1295), + [sym_raw_string_literal] = STATE(1295), + [sym_interpreted_string_literal] = STATE(1295), + [sym_mutability_modifiers] = STATE(495), + [sym_plain_type] = STATE(4102), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1376), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1386), + [anon_sym_DASH] = ACTIONS(1386), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1392), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(1394), + [anon_sym_go] = ACTIONS(1396), + [anon_sym_spawn] = ACTIONS(1398), + [anon_sym_json_DOTdecode] = ACTIONS(1400), + [anon_sym_LBRACK2] = ACTIONS(1402), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_LT_DASH] = ACTIONS(1406), + [sym_none] = ACTIONS(1408), + [sym_true] = ACTIONS(1408), + [sym_false] = ACTIONS(1408), + [sym_nil] = ACTIONS(1408), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_DOLLARif] = ACTIONS(1412), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_select] = ACTIONS(1416), + [anon_sym_lock] = ACTIONS(1418), + [anon_sym_rlock] = ACTIONS(1418), + [anon_sym_unsafe] = ACTIONS(1785), + [anon_sym_sql] = ACTIONS(1422), + [sym_int_literal] = ACTIONS(1408), + [sym_float_literal] = ACTIONS(1426), + [sym_rune_literal] = ACTIONS(1426), + [sym_pseudo_compile_time_identifier] = ACTIONS(1428), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(1430), + [sym___single_quote] = ACTIONS(1432), + [sym___c_double_quote] = ACTIONS(1434), + [sym___c_single_quote] = ACTIONS(1436), + [sym___r_double_quote] = ACTIONS(1438), + [sym___r_single_quote] = ACTIONS(1440), }, - [856] = { - [sym__expression] = STATE(2409), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [845] = { + [sym__expression] = STATE(2877), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3358), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [857] = { - [sym__expression] = STATE(2396), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [846] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3067), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3071), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3075), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3079), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3083), - [anon_sym_rlock] = ACTIONS(3083), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [858] = { - [sym__expression] = STATE(2241), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [847] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3634), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), - }, - [859] = { - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3421), - [anon_sym_LF] = ACTIONS(3421), - [anon_sym_CR] = ACTIONS(3421), - [anon_sym_CR_LF] = ACTIONS(3421), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_as] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_EQ] = ACTIONS(3421), - [anon_sym___global] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_fn] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_EQ_EQ] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_union] = ACTIONS(3421), - [anon_sym_pub] = ACTIONS(3421), - [anon_sym_mut] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_go] = ACTIONS(3421), - [anon_sym_spawn] = ACTIONS(3421), - [anon_sym_json_DOTdecode] = ACTIONS(3421), - [anon_sym_LBRACK2] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_LT_LT] = ACTIONS(3421), - [anon_sym_GT_GT] = ACTIONS(3421), - [anon_sym_GT_GT_GT] = ACTIONS(3421), - [anon_sym_AMP_CARET] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [sym_none] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_nil] = ACTIONS(3421), - [anon_sym_QMARK_DOT] = ACTIONS(3421), - [anon_sym_POUND_LBRACK] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_DOLLARif] = ACTIONS(3421), - [anon_sym_is] = ACTIONS(3421), - [anon_sym_BANGis] = ACTIONS(3421), - [anon_sym_in] = ACTIONS(3421), - [anon_sym_BANGin] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_STAR_EQ] = ACTIONS(3421), - [anon_sym_SLASH_EQ] = ACTIONS(3421), - [anon_sym_PERCENT_EQ] = ACTIONS(3421), - [anon_sym_LT_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_GT_EQ] = ACTIONS(3421), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3421), - [anon_sym_AMP_EQ] = ACTIONS(3421), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3421), - [anon_sym_PLUS_EQ] = ACTIONS(3421), - [anon_sym_DASH_EQ] = ACTIONS(3421), - [anon_sym_PIPE_EQ] = ACTIONS(3421), - [anon_sym_CARET_EQ] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3421), - [anon_sym_lock] = ACTIONS(3421), - [anon_sym_rlock] = ACTIONS(3421), - [anon_sym_unsafe] = ACTIONS(3421), - [anon_sym_sql] = ACTIONS(3421), - [sym_int_literal] = ACTIONS(3421), - [sym_float_literal] = ACTIONS(3421), - [sym_rune_literal] = ACTIONS(3421), - [sym_pseudo_compile_time_identifier] = ACTIONS(3421), - [anon_sym_shared] = ACTIONS(3421), - [anon_sym_map_LBRACK] = ACTIONS(3421), - [anon_sym_chan] = ACTIONS(3421), - [anon_sym_thread] = ACTIONS(3421), - [anon_sym_atomic] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_defer] = ACTIONS(3421), - [anon_sym_goto] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_DOLLARfor] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_asm] = ACTIONS(3421), - [anon_sym_AT_LBRACK] = ACTIONS(3421), - [sym___double_quote] = ACTIONS(3421), - [sym___single_quote] = ACTIONS(3421), - [sym___c_double_quote] = ACTIONS(3421), - [sym___c_single_quote] = ACTIONS(3421), - [sym___r_double_quote] = ACTIONS(3421), - [sym___r_single_quote] = ACTIONS(3421), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [860] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(3946), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [848] = { + [sym__expression] = STATE(2838), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3638), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(1107), - [anon_sym_DASH] = ACTIONS(1107), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2477), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(1115), - [anon_sym_spawn] = ACTIONS(1117), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1107), - [anon_sym_CARET] = ACTIONS(1107), - [anon_sym_AMP] = ACTIONS(2987), - [anon_sym_LT_DASH] = ACTIONS(1125), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2707), - [anon_sym_lock] = ACTIONS(2709), - [anon_sym_rlock] = ACTIONS(2709), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2479), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [861] = { - [sym__expression] = STATE(2158), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [849] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4188), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [862] = { - [sym__expression] = STATE(1834), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [850] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4189), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [863] = { - [sym__expression] = STATE(2239), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [851] = { + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LF] = ACTIONS(3362), + [anon_sym_CR] = ACTIONS(3362), + [anon_sym_CR_LF] = ACTIONS(3362), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_EQ] = ACTIONS(3362), + [anon_sym___global] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_pub] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3362), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3362), + [anon_sym_POUND_LBRACK] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3362), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_STAR_EQ] = ACTIONS(3362), + [anon_sym_SLASH_EQ] = ACTIONS(3362), + [anon_sym_PERCENT_EQ] = ACTIONS(3362), + [anon_sym_LT_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_GT_EQ] = ACTIONS(3362), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3362), + [anon_sym_AMP_EQ] = ACTIONS(3362), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3362), + [anon_sym_PLUS_EQ] = ACTIONS(3362), + [anon_sym_DASH_EQ] = ACTIONS(3362), + [anon_sym_PIPE_EQ] = ACTIONS(3362), + [anon_sym_CARET_EQ] = ACTIONS(3362), + [anon_sym_COLON_EQ] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3362), + [sym_rune_literal] = ACTIONS(3362), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3362), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [anon_sym_assert] = ACTIONS(3362), + [anon_sym_defer] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_DOLLARfor] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym_AT_LBRACK] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3362), + [sym___single_quote] = ACTIONS(3362), + [sym___c_double_quote] = ACTIONS(3362), + [sym___c_single_quote] = ACTIONS(3362), + [sym___r_double_quote] = ACTIONS(3362), + [sym___r_single_quote] = ACTIONS(3362), + }, + [852] = { + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_CR] = ACTIONS(3366), + [anon_sym_CR_LF] = ACTIONS(3366), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_COMMA] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_EQ] = ACTIONS(3366), + [anon_sym___global] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_EQ] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_union] = ACTIONS(3366), + [anon_sym_pub] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3366), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3366), + [anon_sym_LT_LT] = ACTIONS(3366), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3366), + [anon_sym_AMP_CARET] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_PIPE_PIPE] = ACTIONS(3366), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3366), + [anon_sym_POUND_LBRACK] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_STAR_EQ] = ACTIONS(3366), + [anon_sym_SLASH_EQ] = ACTIONS(3366), + [anon_sym_PERCENT_EQ] = ACTIONS(3366), + [anon_sym_LT_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_GT_EQ] = ACTIONS(3366), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3366), + [anon_sym_AMP_EQ] = ACTIONS(3366), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3366), + [anon_sym_PLUS_EQ] = ACTIONS(3366), + [anon_sym_DASH_EQ] = ACTIONS(3366), + [anon_sym_PIPE_EQ] = ACTIONS(3366), + [anon_sym_CARET_EQ] = ACTIONS(3366), + [anon_sym_COLON_EQ] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + [sym_rune_literal] = ACTIONS(3366), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3366), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [anon_sym_assert] = ACTIONS(3366), + [anon_sym_defer] = ACTIONS(3366), + [anon_sym_goto] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_DOLLARfor] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_POUND] = ACTIONS(3366), + [anon_sym_asm] = ACTIONS(3366), + [anon_sym_AT_LBRACK] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3366), + [sym___single_quote] = ACTIONS(3366), + [sym___c_double_quote] = ACTIONS(3366), + [sym___c_single_quote] = ACTIONS(3366), + [sym___r_double_quote] = ACTIONS(3366), + [sym___r_single_quote] = ACTIONS(3366), + }, + [853] = { + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym___global] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_union] = ACTIONS(3370), + [anon_sym_pub] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_AMP_CARET] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3370), + [anon_sym_POUND_LBRACK] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_STAR_EQ] = ACTIONS(3370), + [anon_sym_SLASH_EQ] = ACTIONS(3370), + [anon_sym_PERCENT_EQ] = ACTIONS(3370), + [anon_sym_LT_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_GT_EQ] = ACTIONS(3370), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3370), + [anon_sym_AMP_EQ] = ACTIONS(3370), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3370), + [anon_sym_PLUS_EQ] = ACTIONS(3370), + [anon_sym_DASH_EQ] = ACTIONS(3370), + [anon_sym_PIPE_EQ] = ACTIONS(3370), + [anon_sym_CARET_EQ] = ACTIONS(3370), + [anon_sym_COLON_EQ] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [anon_sym_assert] = ACTIONS(3370), + [anon_sym_defer] = ACTIONS(3370), + [anon_sym_goto] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_DOLLARfor] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_asm] = ACTIONS(3370), + [anon_sym_AT_LBRACK] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), + }, + [854] = { + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3229), + [anon_sym_LF] = ACTIONS(3229), + [anon_sym_CR] = ACTIONS(3229), + [anon_sym_CR_LF] = ACTIONS(3229), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3229), + [anon_sym___global] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3229), + [anon_sym_union] = ACTIONS(3229), + [anon_sym_pub] = ACTIONS(3229), + [anon_sym_mut] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3229), + [anon_sym_spawn] = ACTIONS(3229), + [anon_sym_json_DOTdecode] = ACTIONS(3229), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3229), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_or] = ACTIONS(3229), + [sym_none] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_nil] = ACTIONS(3229), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_DOLLARif] = ACTIONS(3229), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3229), + [anon_sym_select] = ACTIONS(3229), + [anon_sym_STAR_EQ] = ACTIONS(3229), + [anon_sym_SLASH_EQ] = ACTIONS(3229), + [anon_sym_PERCENT_EQ] = ACTIONS(3229), + [anon_sym_LT_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_GT_EQ] = ACTIONS(3229), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3229), + [anon_sym_AMP_EQ] = ACTIONS(3229), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3229), + [anon_sym_PLUS_EQ] = ACTIONS(3229), + [anon_sym_DASH_EQ] = ACTIONS(3229), + [anon_sym_PIPE_EQ] = ACTIONS(3229), + [anon_sym_CARET_EQ] = ACTIONS(3229), + [anon_sym_COLON_EQ] = ACTIONS(3229), + [anon_sym_lock] = ACTIONS(3229), + [anon_sym_rlock] = ACTIONS(3229), + [anon_sym_unsafe] = ACTIONS(3229), + [anon_sym_sql] = ACTIONS(3229), + [sym_int_literal] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3229), + [sym_rune_literal] = ACTIONS(3229), + [sym_pseudo_compile_time_identifier] = ACTIONS(3229), + [anon_sym_shared] = ACTIONS(3229), + [anon_sym_map_LBRACK] = ACTIONS(3229), + [anon_sym_chan] = ACTIONS(3229), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3229), + [anon_sym_assert] = ACTIONS(3229), + [anon_sym_defer] = ACTIONS(3229), + [anon_sym_goto] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_DOLLARfor] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_POUND] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(3229), + [anon_sym_AT_LBRACK] = ACTIONS(3229), + [sym___double_quote] = ACTIONS(3229), + [sym___single_quote] = ACTIONS(3229), + [sym___c_double_quote] = ACTIONS(3229), + [sym___c_single_quote] = ACTIONS(3229), + [sym___r_double_quote] = ACTIONS(3229), + [sym___r_single_quote] = ACTIONS(3229), + }, + [855] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4193), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [864] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_EQ] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_STAR_EQ] = ACTIONS(2757), - [anon_sym_SLASH_EQ] = ACTIONS(2757), - [anon_sym_PERCENT_EQ] = ACTIONS(2757), - [anon_sym_LT_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_GT_EQ] = ACTIONS(2757), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2757), - [anon_sym_AMP_EQ] = ACTIONS(2757), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2757), - [anon_sym_PLUS_EQ] = ACTIONS(2757), - [anon_sym_DASH_EQ] = ACTIONS(2757), - [anon_sym_PIPE_EQ] = ACTIONS(2757), - [anon_sym_CARET_EQ] = ACTIONS(2757), - [anon_sym_COLON_EQ] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [856] = { + [sym__expression] = STATE(2159), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), + [anon_sym_shared] = ACTIONS(81), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [865] = { - [sym__expression] = STATE(1833), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [857] = { + [sym__expression] = STATE(2243), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [866] = { - [sym__expression] = STATE(2158), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [858] = { + [sym__expression] = STATE(2268), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [867] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), + [859] = { + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_EQ] = ACTIONS(2761), - [anon_sym___global] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2761), - [anon_sym_BANG_EQ] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_EQ] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_pub] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2761), - [anon_sym_AMP_CARET] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_PIPE_PIPE] = ACTIONS(2761), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2761), - [anon_sym_POUND_LBRACK] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2761), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_STAR_EQ] = ACTIONS(2761), - [anon_sym_SLASH_EQ] = ACTIONS(2761), - [anon_sym_PERCENT_EQ] = ACTIONS(2761), - [anon_sym_LT_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_GT_EQ] = ACTIONS(2761), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2761), - [anon_sym_AMP_EQ] = ACTIONS(2761), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2761), - [anon_sym_PLUS_EQ] = ACTIONS(2761), - [anon_sym_DASH_EQ] = ACTIONS(2761), - [anon_sym_PIPE_EQ] = ACTIONS(2761), - [anon_sym_CARET_EQ] = ACTIONS(2761), - [anon_sym_COLON_EQ] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [anon_sym_assert] = ACTIONS(2761), - [anon_sym_defer] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_DOLLARfor] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_POUND] = ACTIONS(2761), - [anon_sym_asm] = ACTIONS(2761), - [anon_sym_AT_LBRACK] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_EQ] = ACTIONS(3374), + [anon_sym___global] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_union] = ACTIONS(3374), + [anon_sym_pub] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_STAR_EQ] = ACTIONS(3374), + [anon_sym_SLASH_EQ] = ACTIONS(3374), + [anon_sym_PERCENT_EQ] = ACTIONS(3374), + [anon_sym_LT_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3374), + [anon_sym_AMP_EQ] = ACTIONS(3374), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3374), + [anon_sym_PLUS_EQ] = ACTIONS(3374), + [anon_sym_DASH_EQ] = ACTIONS(3374), + [anon_sym_PIPE_EQ] = ACTIONS(3374), + [anon_sym_CARET_EQ] = ACTIONS(3374), + [anon_sym_COLON_EQ] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + [sym_rune_literal] = ACTIONS(3374), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [anon_sym_assert] = ACTIONS(3374), + [anon_sym_defer] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_DOLLARfor] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_POUND] = ACTIONS(3374), + [anon_sym_asm] = ACTIONS(3374), + [anon_sym_AT_LBRACK] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3374), + [sym___single_quote] = ACTIONS(3374), + [sym___c_double_quote] = ACTIONS(3374), + [sym___c_single_quote] = ACTIONS(3374), + [sym___r_double_quote] = ACTIONS(3374), + [sym___r_single_quote] = ACTIONS(3374), }, - [868] = { - [sym__expression] = STATE(1290), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [860] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(3067), + [anon_sym_go] = ACTIONS(3069), + [anon_sym_spawn] = ACTIONS(3071), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_LT_DASH] = ACTIONS(3075), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(3077), + [anon_sym_lock] = ACTIONS(3079), + [anon_sym_rlock] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [869] = { - [ts_builtin_sym_end] = ACTIONS(3423), - [sym_identifier] = ACTIONS(3425), - [anon_sym_LF] = ACTIONS(3425), - [anon_sym_CR] = ACTIONS(3425), - [anon_sym_CR_LF] = ACTIONS(3425), + [861] = { + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_EQ] = ACTIONS(3425), - [anon_sym___global] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_fn] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_PERCENT] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_EQ_EQ] = ACTIONS(3425), - [anon_sym_BANG_EQ] = ACTIONS(3425), - [anon_sym_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3425), - [anon_sym_union] = ACTIONS(3425), - [anon_sym_pub] = ACTIONS(3425), - [anon_sym_mut] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_go] = ACTIONS(3425), - [anon_sym_spawn] = ACTIONS(3425), - [anon_sym_json_DOTdecode] = ACTIONS(3425), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_LT_DASH] = ACTIONS(3425), - [anon_sym_LT_LT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3425), - [anon_sym_GT_GT_GT] = ACTIONS(3425), - [anon_sym_AMP_CARET] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [sym_none] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_nil] = ACTIONS(3425), - [anon_sym_QMARK_DOT] = ACTIONS(3425), - [anon_sym_POUND_LBRACK] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_DOLLARif] = ACTIONS(3425), - [anon_sym_is] = ACTIONS(3425), - [anon_sym_BANGis] = ACTIONS(3425), - [anon_sym_in] = ACTIONS(3425), - [anon_sym_BANGin] = ACTIONS(3425), - [anon_sym_match] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_STAR_EQ] = ACTIONS(3425), - [anon_sym_SLASH_EQ] = ACTIONS(3425), - [anon_sym_PERCENT_EQ] = ACTIONS(3425), - [anon_sym_LT_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_GT_EQ] = ACTIONS(3425), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3425), - [anon_sym_AMP_EQ] = ACTIONS(3425), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3425), - [anon_sym_PLUS_EQ] = ACTIONS(3425), - [anon_sym_DASH_EQ] = ACTIONS(3425), - [anon_sym_PIPE_EQ] = ACTIONS(3425), - [anon_sym_CARET_EQ] = ACTIONS(3425), - [anon_sym_COLON_EQ] = ACTIONS(3425), - [anon_sym_lock] = ACTIONS(3425), - [anon_sym_rlock] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3425), - [anon_sym_sql] = ACTIONS(3425), - [sym_int_literal] = ACTIONS(3425), - [sym_float_literal] = ACTIONS(3425), - [sym_rune_literal] = ACTIONS(3425), - [sym_pseudo_compile_time_identifier] = ACTIONS(3425), - [anon_sym_shared] = ACTIONS(3425), - [anon_sym_map_LBRACK] = ACTIONS(3425), - [anon_sym_chan] = ACTIONS(3425), - [anon_sym_thread] = ACTIONS(3425), - [anon_sym_atomic] = ACTIONS(3425), - [anon_sym_assert] = ACTIONS(3425), - [anon_sym_defer] = ACTIONS(3425), - [anon_sym_goto] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_DOLLARfor] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_asm] = ACTIONS(3425), - [anon_sym_AT_LBRACK] = ACTIONS(3425), - [sym___double_quote] = ACTIONS(3425), - [sym___single_quote] = ACTIONS(3425), - [sym___c_double_quote] = ACTIONS(3425), - [sym___c_single_quote] = ACTIONS(3425), - [sym___r_double_quote] = ACTIONS(3425), - [sym___r_single_quote] = ACTIONS(3425), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_EQ] = ACTIONS(3378), + [anon_sym___global] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3378), + [anon_sym_BANG_EQ] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_pub] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3378), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3378), + [anon_sym_AMP_CARET] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_PIPE_PIPE] = ACTIONS(3378), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3378), + [anon_sym_POUND_LBRACK] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3378), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_STAR_EQ] = ACTIONS(3378), + [anon_sym_SLASH_EQ] = ACTIONS(3378), + [anon_sym_PERCENT_EQ] = ACTIONS(3378), + [anon_sym_LT_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_GT_EQ] = ACTIONS(3378), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3378), + [anon_sym_AMP_EQ] = ACTIONS(3378), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3378), + [anon_sym_PLUS_EQ] = ACTIONS(3378), + [anon_sym_DASH_EQ] = ACTIONS(3378), + [anon_sym_PIPE_EQ] = ACTIONS(3378), + [anon_sym_CARET_EQ] = ACTIONS(3378), + [anon_sym_COLON_EQ] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [anon_sym_assert] = ACTIONS(3378), + [anon_sym_defer] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_DOLLARfor] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym_AT_LBRACK] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), }, - [870] = { - [sym__expression] = STATE(2857), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [862] = { + [sym__expression] = STATE(2321), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [871] = { - [sym__expression] = STATE(2296), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [863] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4378), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3011), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3015), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3023), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3035), - [anon_sym_rlock] = ACTIONS(3035), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [872] = { - [sym__expression] = STATE(2377), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [864] = { + [sym__expression] = STATE(2360), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [873] = { - [sym__expression] = STATE(2184), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [865] = { + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3382), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_CR] = ACTIONS(3382), + [anon_sym_CR_LF] = ACTIONS(3382), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_EQ] = ACTIONS(3382), + [anon_sym___global] = ACTIONS(3382), + [anon_sym_type] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_pub] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3382), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3382), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3382), + [anon_sym_AMP_CARET] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3382), + [anon_sym_POUND_LBRACK] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_STAR_EQ] = ACTIONS(3382), + [anon_sym_SLASH_EQ] = ACTIONS(3382), + [anon_sym_PERCENT_EQ] = ACTIONS(3382), + [anon_sym_LT_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_GT_EQ] = ACTIONS(3382), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3382), + [anon_sym_AMP_EQ] = ACTIONS(3382), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3382), + [anon_sym_PLUS_EQ] = ACTIONS(3382), + [anon_sym_DASH_EQ] = ACTIONS(3382), + [anon_sym_PIPE_EQ] = ACTIONS(3382), + [anon_sym_CARET_EQ] = ACTIONS(3382), + [anon_sym_COLON_EQ] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3382), + [sym_rune_literal] = ACTIONS(3382), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3382), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [anon_sym_assert] = ACTIONS(3382), + [anon_sym_defer] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_DOLLARfor] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_POUND] = ACTIONS(3382), + [anon_sym_asm] = ACTIONS(3382), + [anon_sym_AT_LBRACK] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3382), + [sym___single_quote] = ACTIONS(3382), + [sym___c_double_quote] = ACTIONS(3382), + [sym___c_single_quote] = ACTIONS(3382), + [sym___r_double_quote] = ACTIONS(3382), + [sym___r_single_quote] = ACTIONS(3382), + }, + [866] = { + [sym__expression] = STATE(2352), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [874] = { - [sym__expression] = STATE(2317), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [867] = { + [ts_builtin_sym_end] = ACTIONS(3222), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LF] = ACTIONS(3219), + [anon_sym_CR] = ACTIONS(3219), + [anon_sym_CR_LF] = ACTIONS(3219), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym___global] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_pub] = ACTIONS(3219), + [anon_sym_mut] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3219), + [anon_sym_spawn] = ACTIONS(3219), + [anon_sym_json_DOTdecode] = ACTIONS(3219), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3219), + [anon_sym_AMP_CARET] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_nil] = ACTIONS(3219), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_DOLLARif] = ACTIONS(3219), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3219), + [anon_sym_select] = ACTIONS(3219), + [anon_sym_STAR_EQ] = ACTIONS(3219), + [anon_sym_SLASH_EQ] = ACTIONS(3219), + [anon_sym_PERCENT_EQ] = ACTIONS(3219), + [anon_sym_LT_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_GT_EQ] = ACTIONS(3219), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3219), + [anon_sym_AMP_EQ] = ACTIONS(3219), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3219), + [anon_sym_PLUS_EQ] = ACTIONS(3219), + [anon_sym_DASH_EQ] = ACTIONS(3219), + [anon_sym_PIPE_EQ] = ACTIONS(3219), + [anon_sym_CARET_EQ] = ACTIONS(3219), + [anon_sym_COLON_EQ] = ACTIONS(3219), + [anon_sym_lock] = ACTIONS(3219), + [anon_sym_rlock] = ACTIONS(3219), + [anon_sym_unsafe] = ACTIONS(3219), + [anon_sym_sql] = ACTIONS(3219), + [sym_int_literal] = ACTIONS(3219), + [sym_float_literal] = ACTIONS(3219), + [sym_rune_literal] = ACTIONS(3219), + [sym_pseudo_compile_time_identifier] = ACTIONS(3219), + [anon_sym_shared] = ACTIONS(3219), + [anon_sym_map_LBRACK] = ACTIONS(3219), + [anon_sym_chan] = ACTIONS(3219), + [anon_sym_thread] = ACTIONS(3219), + [anon_sym_atomic] = ACTIONS(3219), + [anon_sym_assert] = ACTIONS(3219), + [anon_sym_defer] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_DOLLARfor] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_POUND] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym_AT_LBRACK] = ACTIONS(3219), + [sym___double_quote] = ACTIONS(3219), + [sym___single_quote] = ACTIONS(3219), + [sym___c_double_quote] = ACTIONS(3219), + [sym___c_single_quote] = ACTIONS(3219), + [sym___r_double_quote] = ACTIONS(3219), + [sym___r_single_quote] = ACTIONS(3219), + }, + [868] = { + [sym__expression] = STATE(2867), + [sym__expression_without_blocks] = STATE(2993), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2993), + [sym_dec_expression] = STATE(2993), + [sym_or_block_expression] = STATE(2993), + [sym_option_propagation_expression] = STATE(2993), + [sym_result_propagation_expression] = STATE(2993), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2993), + [sym_spawn_expression] = STATE(2993), + [sym_parenthesized_expression] = STATE(2993), + [sym_call_expression] = STATE(2993), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2993), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2993), + [sym_receive_expression] = STATE(2993), + [sym_binary_expression] = STATE(2993), + [sym_as_type_cast_expression] = STATE(2993), + [sym__max_group] = STATE(2993), + [sym_literal] = STATE(2993), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2993), + [sym_fixed_array_creation] = STATE(2993), + [sym_selector_expression] = STATE(2993), + [sym_index_expression] = STATE(2993), + [sym_slice_expression] = STATE(2993), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2993), + [sym_not_is_expression] = STATE(2993), + [sym_in_expression] = STATE(2993), + [sym_not_in_expression] = STATE(2993), + [sym_enum_fetch] = STATE(2993), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(3384), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [875] = { - [sym__expression] = STATE(2375), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [869] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4377), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [876] = { - [sym__expression] = STATE(2374), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [870] = { + [sym__expression] = STATE(2471), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [877] = { - [sym__expression] = STATE(2186), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [871] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4374), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [878] = { - [sym__expression] = STATE(2371), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [872] = { + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3388), + [anon_sym_LF] = ACTIONS(3388), + [anon_sym_CR] = ACTIONS(3388), + [anon_sym_CR_LF] = ACTIONS(3388), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_EQ] = ACTIONS(3388), + [anon_sym___global] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_PIPE] = ACTIONS(3388), + [anon_sym_fn] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_PERCENT] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_GT] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_struct] = ACTIONS(3388), + [anon_sym_union] = ACTIONS(3388), + [anon_sym_pub] = ACTIONS(3388), + [anon_sym_mut] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_go] = ACTIONS(3388), + [anon_sym_spawn] = ACTIONS(3388), + [anon_sym_json_DOTdecode] = ACTIONS(3388), + [anon_sym_LBRACK2] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3388), + [anon_sym_LT_DASH] = ACTIONS(3388), + [anon_sym_LT_LT] = ACTIONS(3388), + [anon_sym_GT_GT] = ACTIONS(3388), + [anon_sym_GT_GT_GT] = ACTIONS(3388), + [anon_sym_AMP_CARET] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3388), + [sym_none] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_nil] = ACTIONS(3388), + [anon_sym_QMARK_DOT] = ACTIONS(3388), + [anon_sym_POUND_LBRACK] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_DOLLARif] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_BANGis] = ACTIONS(3388), + [anon_sym_in] = ACTIONS(3388), + [anon_sym_BANGin] = ACTIONS(3388), + [anon_sym_match] = ACTIONS(3388), + [anon_sym_select] = ACTIONS(3388), + [anon_sym_STAR_EQ] = ACTIONS(3388), + [anon_sym_SLASH_EQ] = ACTIONS(3388), + [anon_sym_PERCENT_EQ] = ACTIONS(3388), + [anon_sym_LT_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_GT_EQ] = ACTIONS(3388), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3388), + [anon_sym_AMP_EQ] = ACTIONS(3388), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3388), + [anon_sym_PLUS_EQ] = ACTIONS(3388), + [anon_sym_DASH_EQ] = ACTIONS(3388), + [anon_sym_PIPE_EQ] = ACTIONS(3388), + [anon_sym_CARET_EQ] = ACTIONS(3388), + [anon_sym_COLON_EQ] = ACTIONS(3388), + [anon_sym_lock] = ACTIONS(3388), + [anon_sym_rlock] = ACTIONS(3388), + [anon_sym_unsafe] = ACTIONS(3388), + [anon_sym_sql] = ACTIONS(3388), + [sym_int_literal] = ACTIONS(3388), + [sym_float_literal] = ACTIONS(3388), + [sym_rune_literal] = ACTIONS(3388), + [sym_pseudo_compile_time_identifier] = ACTIONS(3388), + [anon_sym_shared] = ACTIONS(3388), + [anon_sym_map_LBRACK] = ACTIONS(3388), + [anon_sym_chan] = ACTIONS(3388), + [anon_sym_thread] = ACTIONS(3388), + [anon_sym_atomic] = ACTIONS(3388), + [anon_sym_assert] = ACTIONS(3388), + [anon_sym_defer] = ACTIONS(3388), + [anon_sym_goto] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_DOLLARfor] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_POUND] = ACTIONS(3388), + [anon_sym_asm] = ACTIONS(3388), + [anon_sym_AT_LBRACK] = ACTIONS(3388), + [sym___double_quote] = ACTIONS(3388), + [sym___single_quote] = ACTIONS(3388), + [sym___c_double_quote] = ACTIONS(3388), + [sym___c_single_quote] = ACTIONS(3388), + [sym___r_double_quote] = ACTIONS(3388), + [sym___r_single_quote] = ACTIONS(3388), + }, + [873] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(3111), + [anon_sym_go] = ACTIONS(3113), + [anon_sym_spawn] = ACTIONS(3115), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_LT_DASH] = ACTIONS(3119), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(3121), + [anon_sym_lock] = ACTIONS(3123), + [anon_sym_rlock] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [879] = { - [sym__expression] = STATE(2550), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [874] = { + [sym__expression] = STATE(2308), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [880] = { - [sym__expression] = STATE(2366), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [875] = { + [sym__expression] = STATE(2310), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [881] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [876] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_EQ] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_STAR_EQ] = ACTIONS(2649), + [anon_sym_SLASH_EQ] = ACTIONS(2649), + [anon_sym_PERCENT_EQ] = ACTIONS(2649), + [anon_sym_LT_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_GT_EQ] = ACTIONS(2649), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2649), + [anon_sym_AMP_EQ] = ACTIONS(2649), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2649), + [anon_sym_PLUS_EQ] = ACTIONS(2649), + [anon_sym_DASH_EQ] = ACTIONS(2649), + [anon_sym_PIPE_EQ] = ACTIONS(2649), + [anon_sym_CARET_EQ] = ACTIONS(2649), + [anon_sym_COLON_EQ] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [877] = { + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3392), + [anon_sym_LF] = ACTIONS(3392), + [anon_sym_CR] = ACTIONS(3392), + [anon_sym_CR_LF] = ACTIONS(3392), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_as] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_EQ] = ACTIONS(3392), + [anon_sym___global] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3392), + [anon_sym_fn] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_GT] = ACTIONS(3392), + [anon_sym_EQ_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_LT_EQ] = ACTIONS(3392), + [anon_sym_GT_EQ] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_pub] = ACTIONS(3392), + [anon_sym_mut] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_interface] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3392), + [anon_sym_json_DOTdecode] = ACTIONS(3392), + [anon_sym_LBRACK2] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(3392), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_GT_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_CARET] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [sym_none] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_nil] = ACTIONS(3392), + [anon_sym_QMARK_DOT] = ACTIONS(3392), + [anon_sym_POUND_LBRACK] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_DOLLARif] = ACTIONS(3392), + [anon_sym_is] = ACTIONS(3392), + [anon_sym_BANGis] = ACTIONS(3392), + [anon_sym_in] = ACTIONS(3392), + [anon_sym_BANGin] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_select] = ACTIONS(3392), + [anon_sym_STAR_EQ] = ACTIONS(3392), + [anon_sym_SLASH_EQ] = ACTIONS(3392), + [anon_sym_PERCENT_EQ] = ACTIONS(3392), + [anon_sym_LT_LT_EQ] = ACTIONS(3392), + [anon_sym_GT_GT_EQ] = ACTIONS(3392), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3392), + [anon_sym_AMP_EQ] = ACTIONS(3392), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3392), + [anon_sym_PLUS_EQ] = ACTIONS(3392), + [anon_sym_DASH_EQ] = ACTIONS(3392), + [anon_sym_PIPE_EQ] = ACTIONS(3392), + [anon_sym_CARET_EQ] = ACTIONS(3392), + [anon_sym_COLON_EQ] = ACTIONS(3392), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3392), + [anon_sym_sql] = ACTIONS(3392), + [sym_int_literal] = ACTIONS(3392), + [sym_float_literal] = ACTIONS(3392), + [sym_rune_literal] = ACTIONS(3392), + [sym_pseudo_compile_time_identifier] = ACTIONS(3392), + [anon_sym_shared] = ACTIONS(3392), + [anon_sym_map_LBRACK] = ACTIONS(3392), + [anon_sym_chan] = ACTIONS(3392), + [anon_sym_thread] = ACTIONS(3392), + [anon_sym_atomic] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_defer] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_DOLLARfor] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_POUND] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym_AT_LBRACK] = ACTIONS(3392), + [sym___double_quote] = ACTIONS(3392), + [sym___single_quote] = ACTIONS(3392), + [sym___c_double_quote] = ACTIONS(3392), + [sym___c_single_quote] = ACTIONS(3392), + [sym___r_double_quote] = ACTIONS(3392), + [sym___r_single_quote] = ACTIONS(3392), + }, + [878] = { + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_STAR_EQ] = ACTIONS(2715), + [anon_sym_SLASH_EQ] = ACTIONS(2715), + [anon_sym_PERCENT_EQ] = ACTIONS(2715), + [anon_sym_LT_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2715), + [anon_sym_AMP_EQ] = ACTIONS(2715), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2715), + [anon_sym_PLUS_EQ] = ACTIONS(2715), + [anon_sym_DASH_EQ] = ACTIONS(2715), + [anon_sym_PIPE_EQ] = ACTIONS(2715), + [anon_sym_CARET_EQ] = ACTIONS(2715), + [anon_sym_COLON_EQ] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), + }, + [879] = { + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3396), + [anon_sym_LF] = ACTIONS(3396), + [anon_sym_CR] = ACTIONS(3396), + [anon_sym_CR_LF] = ACTIONS(3396), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3396), + [anon_sym_as] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_EQ] = ACTIONS(3396), + [anon_sym___global] = ACTIONS(3396), + [anon_sym_type] = ACTIONS(3396), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_fn] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3396), + [anon_sym_PERCENT] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3396), + [anon_sym_EQ_EQ] = ACTIONS(3396), + [anon_sym_BANG_EQ] = ACTIONS(3396), + [anon_sym_LT_EQ] = ACTIONS(3396), + [anon_sym_GT_EQ] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [anon_sym_pub] = ACTIONS(3396), + [anon_sym_mut] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_interface] = ACTIONS(3396), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_QMARK] = ACTIONS(3396), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_go] = ACTIONS(3396), + [anon_sym_spawn] = ACTIONS(3396), + [anon_sym_json_DOTdecode] = ACTIONS(3396), + [anon_sym_LBRACK2] = ACTIONS(3396), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3396), + [anon_sym_LT_LT] = ACTIONS(3396), + [anon_sym_GT_GT] = ACTIONS(3396), + [anon_sym_GT_GT_GT] = ACTIONS(3396), + [anon_sym_AMP_CARET] = ACTIONS(3396), + [anon_sym_AMP_AMP] = ACTIONS(3396), + [anon_sym_PIPE_PIPE] = ACTIONS(3396), + [anon_sym_or] = ACTIONS(3396), + [sym_none] = ACTIONS(3396), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [sym_nil] = ACTIONS(3396), + [anon_sym_QMARK_DOT] = ACTIONS(3396), + [anon_sym_POUND_LBRACK] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_DOLLARif] = ACTIONS(3396), + [anon_sym_is] = ACTIONS(3396), + [anon_sym_BANGis] = ACTIONS(3396), + [anon_sym_in] = ACTIONS(3396), + [anon_sym_BANGin] = ACTIONS(3396), + [anon_sym_match] = ACTIONS(3396), + [anon_sym_select] = ACTIONS(3396), + [anon_sym_STAR_EQ] = ACTIONS(3396), + [anon_sym_SLASH_EQ] = ACTIONS(3396), + [anon_sym_PERCENT_EQ] = ACTIONS(3396), + [anon_sym_LT_LT_EQ] = ACTIONS(3396), + [anon_sym_GT_GT_EQ] = ACTIONS(3396), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3396), + [anon_sym_AMP_EQ] = ACTIONS(3396), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3396), + [anon_sym_PLUS_EQ] = ACTIONS(3396), + [anon_sym_DASH_EQ] = ACTIONS(3396), + [anon_sym_PIPE_EQ] = ACTIONS(3396), + [anon_sym_CARET_EQ] = ACTIONS(3396), + [anon_sym_COLON_EQ] = ACTIONS(3396), + [anon_sym_lock] = ACTIONS(3396), + [anon_sym_rlock] = ACTIONS(3396), + [anon_sym_unsafe] = ACTIONS(3396), + [anon_sym_sql] = ACTIONS(3396), + [sym_int_literal] = ACTIONS(3396), + [sym_float_literal] = ACTIONS(3396), + [sym_rune_literal] = ACTIONS(3396), + [sym_pseudo_compile_time_identifier] = ACTIONS(3396), + [anon_sym_shared] = ACTIONS(3396), + [anon_sym_map_LBRACK] = ACTIONS(3396), + [anon_sym_chan] = ACTIONS(3396), + [anon_sym_thread] = ACTIONS(3396), + [anon_sym_atomic] = ACTIONS(3396), + [anon_sym_assert] = ACTIONS(3396), + [anon_sym_defer] = ACTIONS(3396), + [anon_sym_goto] = ACTIONS(3396), + [anon_sym_break] = ACTIONS(3396), + [anon_sym_continue] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3396), + [anon_sym_DOLLARfor] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_POUND] = ACTIONS(3396), + [anon_sym_asm] = ACTIONS(3396), + [anon_sym_AT_LBRACK] = ACTIONS(3396), + [sym___double_quote] = ACTIONS(3396), + [sym___single_quote] = ACTIONS(3396), + [sym___c_double_quote] = ACTIONS(3396), + [sym___c_single_quote] = ACTIONS(3396), + [sym___r_double_quote] = ACTIONS(3396), + [sym___r_single_quote] = ACTIONS(3396), + }, + [880] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(3654), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2393), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(2395), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2397), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(2399), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [882] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [881] = { + [sym__expression] = STATE(2484), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [883] = { - [sym__expression] = STATE(2228), - [sym__expression_without_blocks] = STATE(2226), - [sym__expression_with_blocks] = STATE(2226), - [sym_inc_expression] = STATE(2226), - [sym_dec_expression] = STATE(2226), - [sym_or_block_expression] = STATE(2226), - [sym_option_propagation_expression] = STATE(2226), - [sym_result_propagation_expression] = STATE(2226), - [sym_anon_struct_value_expression] = STATE(2224), - [sym_go_expression] = STATE(2226), - [sym_spawn_expression] = STATE(2226), - [sym_parenthesized_expression] = STATE(2226), - [sym_call_expression] = STATE(2226), - [sym_type_initializer] = STATE(2224), - [sym_function_literal] = STATE(2226), - [sym_reference_expression] = STATE(2217), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2226), - [sym_receive_expression] = STATE(2226), - [sym_binary_expression] = STATE(2226), - [sym_as_type_cast_expression] = STATE(2226), - [sym__max_group] = STATE(2226), - [sym_literal] = STATE(2226), - [sym_map_init_expression] = STATE(2224), - [sym_array_creation] = STATE(2226), - [sym_fixed_array_creation] = STATE(2226), - [sym_selector_expression] = STATE(2226), - [sym_index_expression] = STATE(2226), - [sym_slice_expression] = STATE(2226), - [sym_if_expression] = STATE(2224), - [sym_compile_time_if_expression] = STATE(2224), - [sym_is_expression] = STATE(2226), - [sym_not_is_expression] = STATE(2226), - [sym_in_expression] = STATE(2226), - [sym_not_in_expression] = STATE(2226), - [sym_enum_fetch] = STATE(2226), - [sym_match_expression] = STATE(2224), - [sym_select_expression] = STATE(2224), - [sym_lock_expression] = STATE(2224), - [sym_unsafe_expression] = STATE(2224), - [sym_sql_expression] = STATE(2224), - [sym_c_string_literal] = STATE(2234), - [sym_raw_string_literal] = STATE(2234), - [sym_interpreted_string_literal] = STATE(2234), - [sym_mutability_modifiers] = STATE(692), - [sym_plain_type] = STATE(4089), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2995), + [882] = { + [sym__expression] = STATE(2159), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4202), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3115), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3019), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3027), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3031), - [anon_sym_select] = ACTIONS(3123), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3039), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [sym_pseudo_compile_time_identifier] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3055), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), + }, + [883] = { + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3400), + [anon_sym_LF] = ACTIONS(3400), + [anon_sym_CR] = ACTIONS(3400), + [anon_sym_CR_LF] = ACTIONS(3400), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3400), + [anon_sym_as] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_COMMA] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_EQ] = ACTIONS(3400), + [anon_sym___global] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3400), + [anon_sym_fn] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_STAR] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_PERCENT] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_GT] = ACTIONS(3400), + [anon_sym_EQ_EQ] = ACTIONS(3400), + [anon_sym_BANG_EQ] = ACTIONS(3400), + [anon_sym_LT_EQ] = ACTIONS(3400), + [anon_sym_GT_EQ] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_struct] = ACTIONS(3400), + [anon_sym_union] = ACTIONS(3400), + [anon_sym_pub] = ACTIONS(3400), + [anon_sym_mut] = ACTIONS(3400), + [anon_sym_enum] = ACTIONS(3400), + [anon_sym_interface] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_QMARK] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3400), + [anon_sym_json_DOTdecode] = ACTIONS(3400), + [anon_sym_LBRACK2] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(3400), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_GT_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_CARET] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_or] = ACTIONS(3400), + [sym_none] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_nil] = ACTIONS(3400), + [anon_sym_QMARK_DOT] = ACTIONS(3400), + [anon_sym_POUND_LBRACK] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_DOLLARif] = ACTIONS(3400), + [anon_sym_is] = ACTIONS(3400), + [anon_sym_BANGis] = ACTIONS(3400), + [anon_sym_in] = ACTIONS(3400), + [anon_sym_BANGin] = ACTIONS(3400), + [anon_sym_match] = ACTIONS(3400), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_STAR_EQ] = ACTIONS(3400), + [anon_sym_SLASH_EQ] = ACTIONS(3400), + [anon_sym_PERCENT_EQ] = ACTIONS(3400), + [anon_sym_LT_LT_EQ] = ACTIONS(3400), + [anon_sym_GT_GT_EQ] = ACTIONS(3400), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3400), + [anon_sym_AMP_EQ] = ACTIONS(3400), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3400), + [anon_sym_PLUS_EQ] = ACTIONS(3400), + [anon_sym_DASH_EQ] = ACTIONS(3400), + [anon_sym_PIPE_EQ] = ACTIONS(3400), + [anon_sym_CARET_EQ] = ACTIONS(3400), + [anon_sym_COLON_EQ] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3400), + [anon_sym_rlock] = ACTIONS(3400), + [anon_sym_unsafe] = ACTIONS(3400), + [anon_sym_sql] = ACTIONS(3400), + [sym_int_literal] = ACTIONS(3400), + [sym_float_literal] = ACTIONS(3400), + [sym_rune_literal] = ACTIONS(3400), + [sym_pseudo_compile_time_identifier] = ACTIONS(3400), + [anon_sym_shared] = ACTIONS(3400), + [anon_sym_map_LBRACK] = ACTIONS(3400), + [anon_sym_chan] = ACTIONS(3400), + [anon_sym_thread] = ACTIONS(3400), + [anon_sym_atomic] = ACTIONS(3400), + [anon_sym_assert] = ACTIONS(3400), + [anon_sym_defer] = ACTIONS(3400), + [anon_sym_goto] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_DOLLARfor] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_POUND] = ACTIONS(3400), + [anon_sym_asm] = ACTIONS(3400), + [anon_sym_AT_LBRACK] = ACTIONS(3400), + [sym___double_quote] = ACTIONS(3400), + [sym___single_quote] = ACTIONS(3400), + [sym___c_double_quote] = ACTIONS(3400), + [sym___c_single_quote] = ACTIONS(3400), + [sym___r_double_quote] = ACTIONS(3400), + [sym___r_single_quote] = ACTIONS(3400), }, [884] = { - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [885] = { - [sym__expression] = STATE(2332), - [sym__expression_without_blocks] = STATE(2530), - [sym__expression_with_blocks] = STATE(2530), - [sym_inc_expression] = STATE(2530), - [sym_dec_expression] = STATE(2530), - [sym_or_block_expression] = STATE(2530), - [sym_option_propagation_expression] = STATE(2530), - [sym_result_propagation_expression] = STATE(2530), - [sym_anon_struct_value_expression] = STATE(2527), - [sym_go_expression] = STATE(2530), - [sym_spawn_expression] = STATE(2530), - [sym_parenthesized_expression] = STATE(2530), - [sym_call_expression] = STATE(2530), - [sym_type_initializer] = STATE(2527), - [sym_function_literal] = STATE(2530), - [sym_reference_expression] = STATE(2572), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2530), - [sym_receive_expression] = STATE(2530), - [sym_binary_expression] = STATE(2530), - [sym_as_type_cast_expression] = STATE(2530), - [sym__max_group] = STATE(2530), - [sym_literal] = STATE(2530), - [sym_map_init_expression] = STATE(2527), - [sym_array_creation] = STATE(2530), - [sym_fixed_array_creation] = STATE(2530), - [sym_selector_expression] = STATE(2530), - [sym_index_expression] = STATE(2530), - [sym_slice_expression] = STATE(2530), - [sym_if_expression] = STATE(2527), - [sym_compile_time_if_expression] = STATE(2527), - [sym_is_expression] = STATE(2530), - [sym_not_is_expression] = STATE(2530), - [sym_in_expression] = STATE(2530), - [sym_not_in_expression] = STATE(2530), - [sym_enum_fetch] = STATE(2530), - [sym_match_expression] = STATE(2527), - [sym_select_expression] = STATE(2527), - [sym_lock_expression] = STATE(2527), - [sym_unsafe_expression] = STATE(2527), - [sym_sql_expression] = STATE(2527), - [sym_c_string_literal] = STATE(2536), - [sym_raw_string_literal] = STATE(2536), - [sym_interpreted_string_literal] = STATE(2536), - [sym_mutability_modifiers] = STATE(781), - [sym_plain_type] = STATE(4329), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1645), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(3661), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1647), - [anon_sym_LBRACE] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_fn] = ACTIONS(1653), - [anon_sym_PLUS] = ACTIONS(2479), - [anon_sym_DASH] = ACTIONS(2479), - [anon_sym_STAR] = ACTIONS(2481), - [anon_sym_struct] = ACTIONS(1659), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2483), - [anon_sym_go] = ACTIONS(1663), - [anon_sym_spawn] = ACTIONS(1665), - [anon_sym_json_DOTdecode] = ACTIONS(2485), - [anon_sym_LBRACK2] = ACTIONS(2487), - [anon_sym_TILDE] = ACTIONS(2479), - [anon_sym_CARET] = ACTIONS(2479), - [anon_sym_AMP] = ACTIONS(2489), - [anon_sym_LT_DASH] = ACTIONS(2491), - [sym_none] = ACTIONS(1675), - [sym_true] = ACTIONS(1675), - [sym_false] = ACTIONS(1675), - [sym_nil] = ACTIONS(1675), - [anon_sym_if] = ACTIONS(1677), - [anon_sym_DOLLARif] = ACTIONS(1679), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_select] = ACTIONS(1683), - [anon_sym_lock] = ACTIONS(1685), - [anon_sym_rlock] = ACTIONS(1685), - [anon_sym_unsafe] = ACTIONS(1687), - [anon_sym_sql] = ACTIONS(1689), - [sym_int_literal] = ACTIONS(1675), - [sym_float_literal] = ACTIONS(2493), - [sym_rune_literal] = ACTIONS(2493), - [sym_pseudo_compile_time_identifier] = ACTIONS(1691), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2495), - [sym___single_quote] = ACTIONS(2497), - [sym___c_double_quote] = ACTIONS(2499), - [sym___c_single_quote] = ACTIONS(2501), - [sym___r_double_quote] = ACTIONS(2503), - [sym___r_single_quote] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [886] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1644), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [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), }, [887] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(982), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [888] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(3627), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4244), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, [889] = { - [sym__expression] = STATE(2554), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4242), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, [890] = { - [ts_builtin_sym_end] = ACTIONS(3427), - [sym_identifier] = ACTIONS(3429), - [anon_sym_LF] = ACTIONS(3429), - [anon_sym_CR] = ACTIONS(3429), - [anon_sym_CR_LF] = ACTIONS(3429), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3429), - [anon_sym_as] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_EQ] = ACTIONS(3429), - [anon_sym___global] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_fn] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3429), - [anon_sym_union] = ACTIONS(3429), - [anon_sym_pub] = ACTIONS(3429), - [anon_sym_mut] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_go] = ACTIONS(3429), - [anon_sym_spawn] = ACTIONS(3429), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3429), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [sym_none] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_nil] = ACTIONS(3429), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_DOLLARif] = ACTIONS(3429), - [anon_sym_is] = ACTIONS(3429), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3429), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3429), - [anon_sym_select] = ACTIONS(3429), - [anon_sym_STAR_EQ] = ACTIONS(3429), - [anon_sym_SLASH_EQ] = ACTIONS(3429), - [anon_sym_PERCENT_EQ] = ACTIONS(3429), - [anon_sym_LT_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_GT_EQ] = ACTIONS(3429), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3429), - [anon_sym_AMP_EQ] = ACTIONS(3429), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3429), - [anon_sym_PLUS_EQ] = ACTIONS(3429), - [anon_sym_DASH_EQ] = ACTIONS(3429), - [anon_sym_PIPE_EQ] = ACTIONS(3429), - [anon_sym_CARET_EQ] = ACTIONS(3429), - [anon_sym_COLON_EQ] = ACTIONS(3429), - [anon_sym_lock] = ACTIONS(3429), - [anon_sym_rlock] = ACTIONS(3429), - [anon_sym_unsafe] = ACTIONS(3429), - [anon_sym_sql] = ACTIONS(3429), - [sym_int_literal] = ACTIONS(3429), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3429), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3429), - [anon_sym_thread] = ACTIONS(3429), - [anon_sym_atomic] = ACTIONS(3429), - [anon_sym_assert] = ACTIONS(3429), - [anon_sym_defer] = ACTIONS(3429), - [anon_sym_goto] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_DOLLARfor] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_asm] = ACTIONS(3429), - [anon_sym_AT_LBRACK] = ACTIONS(3429), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), - }, - [891] = { - [sym__expression] = STATE(2753), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(3634), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [892] = { - [sym__expression] = STATE(2766), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [891] = { + [sym__expression] = STATE(2307), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [893] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3627), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [892] = { + [sym__expression] = STATE(1645), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2439), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2441), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2447), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), + }, + [893] = { + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_CR] = ACTIONS(3404), + [anon_sym_CR_LF] = ACTIONS(3404), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_as] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_EQ] = ACTIONS(3404), + [anon_sym___global] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_fn] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_LT_EQ] = ACTIONS(3404), + [anon_sym_GT_EQ] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3404), + [anon_sym_union] = ACTIONS(3404), + [anon_sym_pub] = ACTIONS(3404), + [anon_sym_mut] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_go] = ACTIONS(3404), + [anon_sym_spawn] = ACTIONS(3404), + [anon_sym_json_DOTdecode] = ACTIONS(3404), + [anon_sym_LBRACK2] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_GT_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_CARET] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_or] = ACTIONS(3404), + [sym_none] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_nil] = ACTIONS(3404), + [anon_sym_QMARK_DOT] = ACTIONS(3404), + [anon_sym_POUND_LBRACK] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_DOLLARif] = ACTIONS(3404), + [anon_sym_is] = ACTIONS(3404), + [anon_sym_BANGis] = ACTIONS(3404), + [anon_sym_in] = ACTIONS(3404), + [anon_sym_BANGin] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3404), + [anon_sym_STAR_EQ] = ACTIONS(3404), + [anon_sym_SLASH_EQ] = ACTIONS(3404), + [anon_sym_PERCENT_EQ] = ACTIONS(3404), + [anon_sym_LT_LT_EQ] = ACTIONS(3404), + [anon_sym_GT_GT_EQ] = ACTIONS(3404), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3404), + [anon_sym_AMP_EQ] = ACTIONS(3404), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3404), + [anon_sym_PLUS_EQ] = ACTIONS(3404), + [anon_sym_DASH_EQ] = ACTIONS(3404), + [anon_sym_PIPE_EQ] = ACTIONS(3404), + [anon_sym_CARET_EQ] = ACTIONS(3404), + [anon_sym_COLON_EQ] = ACTIONS(3404), + [anon_sym_lock] = ACTIONS(3404), + [anon_sym_rlock] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_sql] = ACTIONS(3404), + [sym_int_literal] = ACTIONS(3404), + [sym_float_literal] = ACTIONS(3404), + [sym_rune_literal] = ACTIONS(3404), + [sym_pseudo_compile_time_identifier] = ACTIONS(3404), + [anon_sym_shared] = ACTIONS(3404), + [anon_sym_map_LBRACK] = ACTIONS(3404), + [anon_sym_chan] = ACTIONS(3404), + [anon_sym_thread] = ACTIONS(3404), + [anon_sym_atomic] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_defer] = ACTIONS(3404), + [anon_sym_goto] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_DOLLARfor] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_POUND] = ACTIONS(3404), + [anon_sym_asm] = ACTIONS(3404), + [anon_sym_AT_LBRACK] = ACTIONS(3404), + [sym___double_quote] = ACTIONS(3404), + [sym___single_quote] = ACTIONS(3404), + [sym___c_double_quote] = ACTIONS(3404), + [sym___c_single_quote] = ACTIONS(3404), + [sym___r_double_quote] = ACTIONS(3404), + [sym___r_single_quote] = ACTIONS(3404), }, [894] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2205), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4217), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2925), - [anon_sym_go] = ACTIONS(2443), - [anon_sym_spawn] = ACTIONS(2445), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(2437), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2449), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [895] = { - [sym__expression] = STATE(1661), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [sym__expression] = STATE(995), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [896] = { - [sym__expression] = STATE(1660), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [sym__expression] = STATE(997), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [897] = { - [sym__expression] = STATE(2553), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4216), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [898] = { - [sym__expression] = STATE(1659), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4213), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [899] = { - [sym__expression] = STATE(1655), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [sym__expression] = STATE(983), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [900] = { - [sym__expression] = STATE(1669), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [sym__expression] = STATE(996), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_go] = ACTIONS(3035), + [anon_sym_spawn] = ACTIONS(3037), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3039), + [anon_sym_LT_DASH] = ACTIONS(3041), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(3043), + [anon_sym_lock] = ACTIONS(3045), + [anon_sym_rlock] = ACTIONS(3045), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, [901] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(3625), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1646), + [sym__expression_without_blocks] = STATE(1776), + [sym__expression_with_blocks] = STATE(1776), + [sym_inc_expression] = STATE(1776), + [sym_dec_expression] = STATE(1776), + [sym_or_block_expression] = STATE(1776), + [sym_option_propagation_expression] = STATE(1776), + [sym_result_propagation_expression] = STATE(1776), + [sym_anon_struct_value_expression] = STATE(1774), + [sym_go_expression] = STATE(1776), + [sym_spawn_expression] = STATE(1776), + [sym_parenthesized_expression] = STATE(1776), + [sym_call_expression] = STATE(1776), + [sym_type_initializer] = STATE(1774), + [sym_function_literal] = STATE(1776), + [sym_reference_expression] = STATE(1772), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1776), + [sym_receive_expression] = STATE(1776), + [sym_binary_expression] = STATE(1776), + [sym_as_type_cast_expression] = STATE(1776), + [sym__max_group] = STATE(1776), + [sym_literal] = STATE(1776), + [sym_map_init_expression] = STATE(1774), + [sym_array_creation] = STATE(1776), + [sym_fixed_array_creation] = STATE(1776), + [sym_selector_expression] = STATE(1776), + [sym_index_expression] = STATE(1776), + [sym_slice_expression] = STATE(1776), + [sym_if_expression] = STATE(1774), + [sym_compile_time_if_expression] = STATE(1774), + [sym_is_expression] = STATE(1776), + [sym_not_is_expression] = STATE(1776), + [sym_in_expression] = STATE(1776), + [sym_not_in_expression] = STATE(1776), + [sym_enum_fetch] = STATE(1776), + [sym_match_expression] = STATE(1774), + [sym_select_expression] = STATE(1774), + [sym_lock_expression] = STATE(1774), + [sym_unsafe_expression] = STATE(1774), + [sym_sql_expression] = STATE(1774), + [sym_c_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_interpreted_string_literal] = STATE(1778), + [sym_mutability_modifiers] = STATE(483), + [sym_plain_type] = STATE(4382), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3135), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(307), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(315), + [anon_sym_PLUS] = ACTIONS(317), + [anon_sym_DASH] = ACTIONS(317), + [anon_sym_STAR] = ACTIONS(319), + [anon_sym_struct] = ACTIONS(321), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(323), + [anon_sym_go] = ACTIONS(325), + [anon_sym_spawn] = ACTIONS(327), + [anon_sym_json_DOTdecode] = ACTIONS(329), + [anon_sym_LBRACK2] = ACTIONS(331), + [anon_sym_TILDE] = ACTIONS(317), + [anon_sym_CARET] = ACTIONS(317), + [anon_sym_AMP] = ACTIONS(333), + [anon_sym_LT_DASH] = ACTIONS(335), + [sym_none] = ACTIONS(337), + [sym_true] = ACTIONS(337), + [sym_false] = ACTIONS(337), + [sym_nil] = ACTIONS(337), + [anon_sym_if] = ACTIONS(339), + [anon_sym_DOLLARif] = ACTIONS(341), + [anon_sym_match] = ACTIONS(343), + [anon_sym_select] = ACTIONS(345), + [anon_sym_lock] = ACTIONS(347), + [anon_sym_rlock] = ACTIONS(347), + [anon_sym_unsafe] = ACTIONS(349), + [anon_sym_sql] = ACTIONS(351), + [sym_int_literal] = ACTIONS(337), + [sym_float_literal] = ACTIONS(353), + [sym_rune_literal] = ACTIONS(353), + [sym_pseudo_compile_time_identifier] = ACTIONS(355), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, [902] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1795), + [sym__expression_without_blocks] = STATE(1954), + [sym__expression_with_blocks] = STATE(1954), + [sym_inc_expression] = STATE(1954), + [sym_dec_expression] = STATE(1954), + [sym_or_block_expression] = STATE(1954), + [sym_option_propagation_expression] = STATE(1954), + [sym_result_propagation_expression] = STATE(1954), + [sym_anon_struct_value_expression] = STATE(1953), + [sym_go_expression] = STATE(1954), + [sym_spawn_expression] = STATE(1954), + [sym_parenthesized_expression] = STATE(1954), + [sym_call_expression] = STATE(1954), + [sym_type_initializer] = STATE(1953), + [sym_function_literal] = STATE(1954), + [sym_reference_expression] = STATE(2126), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1954), + [sym_receive_expression] = STATE(1954), + [sym_binary_expression] = STATE(1954), + [sym_as_type_cast_expression] = STATE(1954), + [sym__max_group] = STATE(1954), + [sym_literal] = STATE(1954), + [sym_map_init_expression] = STATE(1953), + [sym_array_creation] = STATE(1954), + [sym_fixed_array_creation] = STATE(1954), + [sym_selector_expression] = STATE(1954), + [sym_index_expression] = STATE(1954), + [sym_slice_expression] = STATE(1954), + [sym_if_expression] = STATE(1953), + [sym_compile_time_if_expression] = STATE(1953), + [sym_is_expression] = STATE(1954), + [sym_not_is_expression] = STATE(1954), + [sym_in_expression] = STATE(1954), + [sym_not_in_expression] = STATE(1954), + [sym_enum_fetch] = STATE(1954), + [sym_match_expression] = STATE(1953), + [sym_select_expression] = STATE(1953), + [sym_lock_expression] = STATE(1953), + [sym_unsafe_expression] = STATE(1953), + [sym_sql_expression] = STATE(1953), + [sym_c_string_literal] = STATE(2024), + [sym_raw_string_literal] = STATE(2024), + [sym_interpreted_string_literal] = STATE(2024), + [sym_mutability_modifiers] = STATE(476), + [sym_plain_type] = STATE(4147), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3147), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(699), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(705), + [anon_sym_fn] = ACTIONS(707), + [anon_sym_PLUS] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_struct] = ACTIONS(3151), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(715), + [anon_sym_go] = ACTIONS(717), + [anon_sym_spawn] = ACTIONS(719), + [anon_sym_json_DOTdecode] = ACTIONS(721), + [anon_sym_LBRACK2] = ACTIONS(723), + [anon_sym_TILDE] = ACTIONS(709), + [anon_sym_CARET] = ACTIONS(709), + [anon_sym_AMP] = ACTIONS(725), + [anon_sym_LT_DASH] = ACTIONS(727), + [sym_none] = ACTIONS(729), + [sym_true] = ACTIONS(729), + [sym_false] = ACTIONS(729), + [sym_nil] = ACTIONS(729), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_DOLLARif] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3157), + [anon_sym_select] = ACTIONS(3159), + [anon_sym_lock] = ACTIONS(3161), + [anon_sym_rlock] = ACTIONS(3161), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_sql] = ACTIONS(3165), + [sym_int_literal] = ACTIONS(729), + [sym_float_literal] = ACTIONS(747), + [sym_rune_literal] = ACTIONS(747), + [sym_pseudo_compile_time_identifier] = ACTIONS(3167), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(751), + [sym___single_quote] = ACTIONS(753), + [sym___c_double_quote] = ACTIONS(755), + [sym___c_single_quote] = ACTIONS(757), + [sym___r_double_quote] = ACTIONS(759), + [sym___r_single_quote] = ACTIONS(761), }, [903] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2309), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [904] = { - [sym__expression] = STATE(1668), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), + [sym__expression] = STATE(2478), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, [905] = { - [sym__expression] = STATE(1670), - [sym__expression_without_blocks] = STATE(1845), - [sym__expression_with_blocks] = STATE(1845), - [sym_inc_expression] = STATE(1845), - [sym_dec_expression] = STATE(1845), - [sym_or_block_expression] = STATE(1845), - [sym_option_propagation_expression] = STATE(1845), - [sym_result_propagation_expression] = STATE(1845), - [sym_anon_struct_value_expression] = STATE(1843), - [sym_go_expression] = STATE(1845), - [sym_spawn_expression] = STATE(1845), - [sym_parenthesized_expression] = STATE(1845), - [sym_call_expression] = STATE(1845), - [sym_type_initializer] = STATE(1843), - [sym_function_literal] = STATE(1845), - [sym_reference_expression] = STATE(1925), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1845), - [sym_receive_expression] = STATE(1845), - [sym_binary_expression] = STATE(1845), - [sym_as_type_cast_expression] = STATE(1845), - [sym__max_group] = STATE(1845), - [sym_literal] = STATE(1845), - [sym_map_init_expression] = STATE(1843), - [sym_array_creation] = STATE(1845), - [sym_fixed_array_creation] = STATE(1845), - [sym_selector_expression] = STATE(1845), - [sym_index_expression] = STATE(1845), - [sym_slice_expression] = STATE(1845), - [sym_if_expression] = STATE(1843), - [sym_compile_time_if_expression] = STATE(1843), - [sym_is_expression] = STATE(1845), - [sym_not_is_expression] = STATE(1845), - [sym_in_expression] = STATE(1845), - [sym_not_in_expression] = STATE(1845), - [sym_enum_fetch] = STATE(1845), - [sym_match_expression] = STATE(1843), - [sym_select_expression] = STATE(1843), - [sym_lock_expression] = STATE(1843), - [sym_unsafe_expression] = STATE(1843), - [sym_sql_expression] = STATE(1843), - [sym_c_string_literal] = STATE(1846), - [sym_raw_string_literal] = STATE(1846), - [sym_interpreted_string_literal] = STATE(1846), - [sym_mutability_modifiers] = STATE(649), - [sym_plain_type] = STATE(4236), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2791), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2793), - [anon_sym_LBRACE] = ACTIONS(2795), - [anon_sym_LPAREN] = ACTIONS(2797), - [anon_sym_fn] = ACTIONS(2799), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_STAR] = ACTIONS(2803), - [anon_sym_struct] = ACTIONS(2805), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2807), - [anon_sym_go] = ACTIONS(2809), - [anon_sym_spawn] = ACTIONS(2811), - [anon_sym_json_DOTdecode] = ACTIONS(2813), - [anon_sym_LBRACK2] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_CARET] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2817), - [anon_sym_LT_DASH] = ACTIONS(2819), - [sym_none] = ACTIONS(2821), - [sym_true] = ACTIONS(2821), - [sym_false] = ACTIONS(2821), - [sym_nil] = ACTIONS(2821), - [anon_sym_if] = ACTIONS(2823), - [anon_sym_DOLLARif] = ACTIONS(2825), - [anon_sym_match] = ACTIONS(2827), - [anon_sym_select] = ACTIONS(2829), - [anon_sym_lock] = ACTIONS(2831), - [anon_sym_rlock] = ACTIONS(2831), - [anon_sym_unsafe] = ACTIONS(2833), - [anon_sym_sql] = ACTIONS(2835), - [sym_int_literal] = ACTIONS(2821), - [sym_float_literal] = ACTIONS(2837), - [sym_rune_literal] = ACTIONS(2837), - [sym_pseudo_compile_time_identifier] = ACTIONS(2839), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2841), - [sym___single_quote] = ACTIONS(2843), - [sym___c_double_quote] = ACTIONS(2845), - [sym___c_single_quote] = ACTIONS(2847), - [sym___r_double_quote] = ACTIONS(2849), - [sym___r_single_quote] = ACTIONS(2851), + [ts_builtin_sym_end] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3408), + [anon_sym_LF] = ACTIONS(3408), + [anon_sym_CR] = ACTIONS(3408), + [anon_sym_CR_LF] = ACTIONS(3408), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3408), + [anon_sym_as] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_COMMA] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_EQ] = ACTIONS(3408), + [anon_sym___global] = ACTIONS(3408), + [anon_sym_type] = ACTIONS(3408), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_fn] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_PERCENT] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_GT] = ACTIONS(3408), + [anon_sym_EQ_EQ] = ACTIONS(3408), + [anon_sym_BANG_EQ] = ACTIONS(3408), + [anon_sym_LT_EQ] = ACTIONS(3408), + [anon_sym_GT_EQ] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_pub] = ACTIONS(3408), + [anon_sym_mut] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_QMARK] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3408), + [anon_sym_spawn] = ACTIONS(3408), + [anon_sym_json_DOTdecode] = ACTIONS(3408), + [anon_sym_LBRACK2] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_CARET] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_LT_DASH] = ACTIONS(3408), + [anon_sym_LT_LT] = ACTIONS(3408), + [anon_sym_GT_GT] = ACTIONS(3408), + [anon_sym_GT_GT_GT] = ACTIONS(3408), + [anon_sym_AMP_CARET] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_PIPE_PIPE] = ACTIONS(3408), + [anon_sym_or] = ACTIONS(3408), + [sym_none] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_nil] = ACTIONS(3408), + [anon_sym_QMARK_DOT] = ACTIONS(3408), + [anon_sym_POUND_LBRACK] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_DOLLARif] = ACTIONS(3408), + [anon_sym_is] = ACTIONS(3408), + [anon_sym_BANGis] = ACTIONS(3408), + [anon_sym_in] = ACTIONS(3408), + [anon_sym_BANGin] = ACTIONS(3408), + [anon_sym_match] = ACTIONS(3408), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_STAR_EQ] = ACTIONS(3408), + [anon_sym_SLASH_EQ] = ACTIONS(3408), + [anon_sym_PERCENT_EQ] = ACTIONS(3408), + [anon_sym_LT_LT_EQ] = ACTIONS(3408), + [anon_sym_GT_GT_EQ] = ACTIONS(3408), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3408), + [anon_sym_AMP_EQ] = ACTIONS(3408), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3408), + [anon_sym_PLUS_EQ] = ACTIONS(3408), + [anon_sym_DASH_EQ] = ACTIONS(3408), + [anon_sym_PIPE_EQ] = ACTIONS(3408), + [anon_sym_CARET_EQ] = ACTIONS(3408), + [anon_sym_COLON_EQ] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_sql] = ACTIONS(3408), + [sym_int_literal] = ACTIONS(3408), + [sym_float_literal] = ACTIONS(3408), + [sym_rune_literal] = ACTIONS(3408), + [sym_pseudo_compile_time_identifier] = ACTIONS(3408), + [anon_sym_shared] = ACTIONS(3408), + [anon_sym_map_LBRACK] = ACTIONS(3408), + [anon_sym_chan] = ACTIONS(3408), + [anon_sym_thread] = ACTIONS(3408), + [anon_sym_atomic] = ACTIONS(3408), + [anon_sym_assert] = ACTIONS(3408), + [anon_sym_defer] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_DOLLARfor] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_POUND] = ACTIONS(3408), + [anon_sym_asm] = ACTIONS(3408), + [anon_sym_AT_LBRACK] = ACTIONS(3408), + [sym___double_quote] = ACTIONS(3408), + [sym___single_quote] = ACTIONS(3408), + [sym___c_double_quote] = ACTIONS(3408), + [sym___c_single_quote] = ACTIONS(3408), + [sym___r_double_quote] = ACTIONS(3408), + [sym___r_single_quote] = ACTIONS(3408), }, [906] = { - [sym__expression] = STATE(2702), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1658), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, [907] = { - [ts_builtin_sym_end] = ACTIONS(3431), - [sym_identifier] = ACTIONS(3433), - [anon_sym_LF] = ACTIONS(3433), - [anon_sym_CR] = ACTIONS(3433), - [anon_sym_CR_LF] = ACTIONS(3433), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_as] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_EQ] = ACTIONS(3433), - [anon_sym___global] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_fn] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_GT] = ACTIONS(3433), - [anon_sym_EQ_EQ] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_EQ] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [anon_sym_pub] = ACTIONS(3433), - [anon_sym_mut] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_go] = ACTIONS(3433), - [anon_sym_spawn] = ACTIONS(3433), - [anon_sym_json_DOTdecode] = ACTIONS(3433), - [anon_sym_LBRACK2] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_LT_LT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3433), - [anon_sym_GT_GT_GT] = ACTIONS(3433), - [anon_sym_AMP_CARET] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [sym_none] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_nil] = ACTIONS(3433), - [anon_sym_QMARK_DOT] = ACTIONS(3433), - [anon_sym_POUND_LBRACK] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_DOLLARif] = ACTIONS(3433), - [anon_sym_is] = ACTIONS(3433), - [anon_sym_BANGis] = ACTIONS(3433), - [anon_sym_in] = ACTIONS(3433), - [anon_sym_BANGin] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_select] = ACTIONS(3433), - [anon_sym_STAR_EQ] = ACTIONS(3433), - [anon_sym_SLASH_EQ] = ACTIONS(3433), - [anon_sym_PERCENT_EQ] = ACTIONS(3433), - [anon_sym_LT_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_GT_EQ] = ACTIONS(3433), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3433), - [anon_sym_AMP_EQ] = ACTIONS(3433), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3433), - [anon_sym_PLUS_EQ] = ACTIONS(3433), - [anon_sym_DASH_EQ] = ACTIONS(3433), - [anon_sym_PIPE_EQ] = ACTIONS(3433), - [anon_sym_CARET_EQ] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3433), - [anon_sym_lock] = ACTIONS(3433), - [anon_sym_rlock] = ACTIONS(3433), - [anon_sym_unsafe] = ACTIONS(3433), - [anon_sym_sql] = ACTIONS(3433), - [sym_int_literal] = ACTIONS(3433), - [sym_float_literal] = ACTIONS(3433), - [sym_rune_literal] = ACTIONS(3433), - [sym_pseudo_compile_time_identifier] = ACTIONS(3433), - [anon_sym_shared] = ACTIONS(3433), - [anon_sym_map_LBRACK] = ACTIONS(3433), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3433), - [anon_sym_atomic] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_defer] = ACTIONS(3433), - [anon_sym_goto] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_DOLLARfor] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_asm] = ACTIONS(3433), - [anon_sym_AT_LBRACK] = ACTIONS(3433), - [sym___double_quote] = ACTIONS(3433), - [sym___single_quote] = ACTIONS(3433), - [sym___c_double_quote] = ACTIONS(3433), - [sym___c_single_quote] = ACTIONS(3433), - [sym___r_double_quote] = ACTIONS(3433), - [sym___r_single_quote] = ACTIONS(3433), - }, - [908] = { - [ts_builtin_sym_end] = ACTIONS(3435), - [sym_identifier] = ACTIONS(3437), - [anon_sym_LF] = ACTIONS(3437), - [anon_sym_CR] = ACTIONS(3437), - [anon_sym_CR_LF] = ACTIONS(3437), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_EQ] = ACTIONS(3437), - [anon_sym___global] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [anon_sym_pub] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3437), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3437), - [anon_sym_AMP_CARET] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3437), - [anon_sym_POUND_LBRACK] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_STAR_EQ] = ACTIONS(3437), - [anon_sym_SLASH_EQ] = ACTIONS(3437), - [anon_sym_PERCENT_EQ] = ACTIONS(3437), - [anon_sym_LT_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_GT_EQ] = ACTIONS(3437), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3437), - [anon_sym_AMP_EQ] = ACTIONS(3437), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3437), - [anon_sym_PLUS_EQ] = ACTIONS(3437), - [anon_sym_DASH_EQ] = ACTIONS(3437), - [anon_sym_PIPE_EQ] = ACTIONS(3437), - [anon_sym_CARET_EQ] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3437), - [sym_rune_literal] = ACTIONS(3437), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3437), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_defer] = ACTIONS(3437), - [anon_sym_goto] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_DOLLARfor] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_asm] = ACTIONS(3437), - [anon_sym_AT_LBRACK] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3437), - [sym___single_quote] = ACTIONS(3437), - [sym___c_double_quote] = ACTIONS(3437), - [sym___c_single_quote] = ACTIONS(3437), - [sym___r_double_quote] = ACTIONS(3437), - [sym___r_single_quote] = ACTIONS(3437), - }, - [909] = { - [sym__expression] = STATE(2586), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4346), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [910] = { - [sym__expression] = STATE(2570), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [908] = { + [sym__expression] = STATE(2872), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1187), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [911] = { - [sym__expression] = STATE(2584), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [909] = { + [sym__expression] = STATE(1670), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, - [912] = { - [sym__expression] = STATE(2460), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [910] = { + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4343), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), + [anon_sym_mut] = ACTIONS(39), + [anon_sym_QMARK] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [913] = { - [sym__expression] = STATE(2488), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [911] = { + [sym__expression] = STATE(1666), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, - [914] = { - [sym__expression] = STATE(2490), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [912] = { + [sym__expression] = STATE(1144), + [sym__expression_without_blocks] = STATE(1207), + [sym__expression_with_blocks] = STATE(1207), + [sym_inc_expression] = STATE(1207), + [sym_dec_expression] = STATE(1207), + [sym_or_block_expression] = STATE(1207), + [sym_option_propagation_expression] = STATE(1207), + [sym_result_propagation_expression] = STATE(1207), + [sym_anon_struct_value_expression] = STATE(1205), + [sym_go_expression] = STATE(1207), + [sym_spawn_expression] = STATE(1207), + [sym_parenthesized_expression] = STATE(1207), + [sym_call_expression] = STATE(1207), + [sym_type_initializer] = STATE(1205), + [sym_function_literal] = STATE(1207), + [sym_reference_expression] = STATE(1197), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1207), + [sym_receive_expression] = STATE(1207), + [sym_binary_expression] = STATE(1207), + [sym_as_type_cast_expression] = STATE(1207), + [sym__max_group] = STATE(1207), + [sym_literal] = STATE(1207), + [sym_map_init_expression] = STATE(1205), + [sym_array_creation] = STATE(1207), + [sym_fixed_array_creation] = STATE(1207), + [sym_selector_expression] = STATE(1207), + [sym_index_expression] = STATE(1207), + [sym_slice_expression] = STATE(1207), + [sym_if_expression] = STATE(1205), + [sym_compile_time_if_expression] = STATE(1205), + [sym_is_expression] = STATE(1207), + [sym_not_is_expression] = STATE(1207), + [sym_in_expression] = STATE(1207), + [sym_not_in_expression] = STATE(1207), + [sym_enum_fetch] = STATE(1207), + [sym_match_expression] = STATE(1205), + [sym_select_expression] = STATE(1205), + [sym_lock_expression] = STATE(1205), + [sym_unsafe_expression] = STATE(1205), + [sym_sql_expression] = STATE(1205), + [sym_c_string_literal] = STATE(1208), + [sym_raw_string_literal] = STATE(1208), + [sym_interpreted_string_literal] = STATE(1208), + [sym_mutability_modifiers] = STATE(481), + [sym_plain_type] = STATE(4339), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1067), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(627), + [anon_sym_LBRACE] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(633), + [anon_sym_fn] = ACTIONS(637), + [anon_sym_PLUS] = ACTIONS(639), + [anon_sym_DASH] = ACTIONS(639), + [anon_sym_STAR] = ACTIONS(641), + [anon_sym_struct] = ACTIONS(645), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(651), + [anon_sym_go] = ACTIONS(653), + [anon_sym_spawn] = ACTIONS(655), + [anon_sym_json_DOTdecode] = ACTIONS(657), + [anon_sym_LBRACK2] = ACTIONS(659), + [anon_sym_TILDE] = ACTIONS(639), + [anon_sym_CARET] = ACTIONS(639), + [anon_sym_AMP] = ACTIONS(661), + [anon_sym_LT_DASH] = ACTIONS(663), + [sym_none] = ACTIONS(665), + [sym_true] = ACTIONS(665), + [sym_false] = ACTIONS(665), + [sym_nil] = ACTIONS(665), + [anon_sym_if] = ACTIONS(667), + [anon_sym_DOLLARif] = ACTIONS(669), + [anon_sym_match] = ACTIONS(671), + [anon_sym_select] = ACTIONS(673), + [anon_sym_lock] = ACTIONS(675), + [anon_sym_rlock] = ACTIONS(675), + [anon_sym_unsafe] = ACTIONS(677), + [anon_sym_sql] = ACTIONS(679), + [sym_int_literal] = ACTIONS(665), + [sym_float_literal] = ACTIONS(681), + [sym_rune_literal] = ACTIONS(681), + [sym_pseudo_compile_time_identifier] = ACTIONS(683), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(685), + [sym___single_quote] = ACTIONS(687), + [sym___c_double_quote] = ACTIONS(689), + [sym___c_single_quote] = ACTIONS(691), + [sym___r_double_quote] = ACTIONS(693), + [sym___r_single_quote] = ACTIONS(695), }, - [915] = { - [sym__expression] = STATE(2581), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [913] = { + [sym__expression] = STATE(2643), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), + }, + [914] = { + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3412), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym___global] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_BANG_EQ] = ACTIONS(3412), + [anon_sym_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_EQ] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_union] = ACTIONS(3412), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_CARET] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3412), + [anon_sym_POUND_LBRACK] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_STAR_EQ] = ACTIONS(3412), + [anon_sym_SLASH_EQ] = ACTIONS(3412), + [anon_sym_PERCENT_EQ] = ACTIONS(3412), + [anon_sym_LT_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_GT_EQ] = ACTIONS(3412), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3412), + [anon_sym_AMP_EQ] = ACTIONS(3412), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3412), + [anon_sym_PLUS_EQ] = ACTIONS(3412), + [anon_sym_DASH_EQ] = ACTIONS(3412), + [anon_sym_PIPE_EQ] = ACTIONS(3412), + [anon_sym_CARET_EQ] = ACTIONS(3412), + [anon_sym_COLON_EQ] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_defer] = ACTIONS(3412), + [anon_sym_goto] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_DOLLARfor] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_POUND] = ACTIONS(3412), + [anon_sym_asm] = ACTIONS(3412), + [anon_sym_AT_LBRACK] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), + }, + [915] = { + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3416), + [anon_sym_LF] = ACTIONS(3416), + [anon_sym_CR] = ACTIONS(3416), + [anon_sym_CR_LF] = ACTIONS(3416), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3416), + [anon_sym_as] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_COMMA] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_EQ] = ACTIONS(3416), + [anon_sym___global] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_PIPE] = ACTIONS(3416), + [anon_sym_fn] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_PERCENT] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3416), + [anon_sym_BANG_EQ] = ACTIONS(3416), + [anon_sym_LT_EQ] = ACTIONS(3416), + [anon_sym_GT_EQ] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_struct] = ACTIONS(3416), + [anon_sym_union] = ACTIONS(3416), + [anon_sym_pub] = ACTIONS(3416), + [anon_sym_mut] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [anon_sym_QMARK] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_go] = ACTIONS(3416), + [anon_sym_spawn] = ACTIONS(3416), + [anon_sym_json_DOTdecode] = ACTIONS(3416), + [anon_sym_LBRACK2] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_CARET] = ACTIONS(3416), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(3416), + [anon_sym_LT_LT] = ACTIONS(3416), + [anon_sym_GT_GT] = ACTIONS(3416), + [anon_sym_GT_GT_GT] = ACTIONS(3416), + [anon_sym_AMP_CARET] = ACTIONS(3416), + [anon_sym_AMP_AMP] = ACTIONS(3416), + [anon_sym_PIPE_PIPE] = ACTIONS(3416), + [anon_sym_or] = ACTIONS(3416), + [sym_none] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_nil] = ACTIONS(3416), + [anon_sym_QMARK_DOT] = ACTIONS(3416), + [anon_sym_POUND_LBRACK] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_DOLLARif] = ACTIONS(3416), + [anon_sym_is] = ACTIONS(3416), + [anon_sym_BANGis] = ACTIONS(3416), + [anon_sym_in] = ACTIONS(3416), + [anon_sym_BANGin] = ACTIONS(3416), + [anon_sym_match] = ACTIONS(3416), + [anon_sym_select] = ACTIONS(3416), + [anon_sym_STAR_EQ] = ACTIONS(3416), + [anon_sym_SLASH_EQ] = ACTIONS(3416), + [anon_sym_PERCENT_EQ] = ACTIONS(3416), + [anon_sym_LT_LT_EQ] = ACTIONS(3416), + [anon_sym_GT_GT_EQ] = ACTIONS(3416), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3416), + [anon_sym_AMP_EQ] = ACTIONS(3416), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3416), + [anon_sym_PLUS_EQ] = ACTIONS(3416), + [anon_sym_DASH_EQ] = ACTIONS(3416), + [anon_sym_PIPE_EQ] = ACTIONS(3416), + [anon_sym_CARET_EQ] = ACTIONS(3416), + [anon_sym_COLON_EQ] = ACTIONS(3416), + [anon_sym_lock] = ACTIONS(3416), + [anon_sym_rlock] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_sql] = ACTIONS(3416), + [sym_int_literal] = ACTIONS(3416), + [sym_float_literal] = ACTIONS(3416), + [sym_rune_literal] = ACTIONS(3416), + [sym_pseudo_compile_time_identifier] = ACTIONS(3416), + [anon_sym_shared] = ACTIONS(3416), + [anon_sym_map_LBRACK] = ACTIONS(3416), + [anon_sym_chan] = ACTIONS(3416), + [anon_sym_thread] = ACTIONS(3416), + [anon_sym_atomic] = ACTIONS(3416), + [anon_sym_assert] = ACTIONS(3416), + [anon_sym_defer] = ACTIONS(3416), + [anon_sym_goto] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_DOLLARfor] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_POUND] = ACTIONS(3416), + [anon_sym_asm] = ACTIONS(3416), + [anon_sym_AT_LBRACK] = ACTIONS(3416), + [sym___double_quote] = ACTIONS(3416), + [sym___single_quote] = ACTIONS(3416), + [sym___c_double_quote] = ACTIONS(3416), + [sym___c_single_quote] = ACTIONS(3416), + [sym___r_double_quote] = ACTIONS(3416), + [sym___r_single_quote] = ACTIONS(3416), }, [916] = { - [sym__expression] = STATE(2578), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1663), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, [917] = { - [sym__expression] = STATE(2491), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(248), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(113), + [sym___single_quote] = ACTIONS(115), + [sym___c_double_quote] = ACTIONS(117), + [sym___c_single_quote] = ACTIONS(119), + [sym___r_double_quote] = ACTIONS(121), + [sym___r_single_quote] = ACTIONS(123), }, [918] = { - [sym__expression] = STATE(2576), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(1690), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, [919] = { - [sym__expression] = STATE(2707), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [sym__expression] = STATE(2569), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, [920] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3420), + [anon_sym_LF] = ACTIONS(3420), + [anon_sym_CR] = ACTIONS(3420), + [anon_sym_CR_LF] = ACTIONS(3420), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_COMMA] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_EQ] = ACTIONS(3420), + [anon_sym___global] = ACTIONS(3420), + [anon_sym_type] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_fn] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_LT_EQ] = ACTIONS(3420), + [anon_sym_GT_EQ] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(3420), + [anon_sym_union] = ACTIONS(3420), + [anon_sym_pub] = ACTIONS(3420), + [anon_sym_mut] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_QMARK] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3420), + [anon_sym_json_DOTdecode] = ACTIONS(3420), + [anon_sym_LBRACK2] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_CARET] = ACTIONS(3420), + [anon_sym_AMP] = ACTIONS(3420), + [anon_sym_LT_DASH] = ACTIONS(3420), + [anon_sym_LT_LT] = ACTIONS(3420), + [anon_sym_GT_GT] = ACTIONS(3420), + [anon_sym_GT_GT_GT] = ACTIONS(3420), + [anon_sym_AMP_CARET] = ACTIONS(3420), + [anon_sym_AMP_AMP] = ACTIONS(3420), + [anon_sym_PIPE_PIPE] = ACTIONS(3420), + [anon_sym_or] = ACTIONS(3420), + [sym_none] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_nil] = ACTIONS(3420), + [anon_sym_QMARK_DOT] = ACTIONS(3420), + [anon_sym_POUND_LBRACK] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_DOLLARif] = ACTIONS(3420), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_BANGin] = ACTIONS(3420), + [anon_sym_match] = ACTIONS(3420), + [anon_sym_select] = ACTIONS(3420), + [anon_sym_STAR_EQ] = ACTIONS(3420), + [anon_sym_SLASH_EQ] = ACTIONS(3420), + [anon_sym_PERCENT_EQ] = ACTIONS(3420), + [anon_sym_LT_LT_EQ] = ACTIONS(3420), + [anon_sym_GT_GT_EQ] = ACTIONS(3420), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3420), + [anon_sym_AMP_EQ] = ACTIONS(3420), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3420), + [anon_sym_PLUS_EQ] = ACTIONS(3420), + [anon_sym_DASH_EQ] = ACTIONS(3420), + [anon_sym_PIPE_EQ] = ACTIONS(3420), + [anon_sym_CARET_EQ] = ACTIONS(3420), + [anon_sym_COLON_EQ] = ACTIONS(3420), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_sql] = ACTIONS(3420), + [sym_int_literal] = ACTIONS(3420), + [sym_float_literal] = ACTIONS(3420), + [sym_rune_literal] = ACTIONS(3420), + [sym_pseudo_compile_time_identifier] = ACTIONS(3420), + [anon_sym_shared] = ACTIONS(3420), + [anon_sym_map_LBRACK] = ACTIONS(3420), + [anon_sym_chan] = ACTIONS(3420), + [anon_sym_thread] = ACTIONS(3420), + [anon_sym_atomic] = ACTIONS(3420), + [anon_sym_assert] = ACTIONS(3420), + [anon_sym_defer] = ACTIONS(3420), + [anon_sym_goto] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_DOLLARfor] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_POUND] = ACTIONS(3420), + [anon_sym_asm] = ACTIONS(3420), + [anon_sym_AT_LBRACK] = ACTIONS(3420), + [sym___double_quote] = ACTIONS(3420), + [sym___single_quote] = ACTIONS(3420), + [sym___c_double_quote] = ACTIONS(3420), + [sym___c_single_quote] = ACTIONS(3420), + [sym___r_double_quote] = ACTIONS(3420), + [sym___r_single_quote] = ACTIONS(3420), }, [921] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [sym__expression] = STATE(1674), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4247), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, [922] = { - [sym__expression] = STATE(2477), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_CR] = ACTIONS(3424), + [anon_sym_CR_LF] = ACTIONS(3424), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_as] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_EQ] = ACTIONS(3424), + [anon_sym___global] = ACTIONS(3424), + [anon_sym_type] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_fn] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [anon_sym_pub] = ACTIONS(3424), + [anon_sym_mut] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_go] = ACTIONS(3424), + [anon_sym_spawn] = ACTIONS(3424), + [anon_sym_json_DOTdecode] = ACTIONS(3424), + [anon_sym_LBRACK2] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_GT_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_CARET] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_or] = ACTIONS(3424), + [sym_none] = ACTIONS(3424), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_nil] = ACTIONS(3424), + [anon_sym_QMARK_DOT] = ACTIONS(3424), + [anon_sym_POUND_LBRACK] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_DOLLARif] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3424), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3424), + [anon_sym_select] = ACTIONS(3424), + [anon_sym_STAR_EQ] = ACTIONS(3424), + [anon_sym_SLASH_EQ] = ACTIONS(3424), + [anon_sym_PERCENT_EQ] = ACTIONS(3424), + [anon_sym_LT_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_GT_EQ] = ACTIONS(3424), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3424), + [anon_sym_AMP_EQ] = ACTIONS(3424), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3424), + [anon_sym_PLUS_EQ] = ACTIONS(3424), + [anon_sym_DASH_EQ] = ACTIONS(3424), + [anon_sym_PIPE_EQ] = ACTIONS(3424), + [anon_sym_CARET_EQ] = ACTIONS(3424), + [anon_sym_COLON_EQ] = ACTIONS(3424), + [anon_sym_lock] = ACTIONS(3424), + [anon_sym_rlock] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_sql] = ACTIONS(3424), + [sym_int_literal] = ACTIONS(3424), + [sym_float_literal] = ACTIONS(3424), + [sym_rune_literal] = ACTIONS(3424), + [sym_pseudo_compile_time_identifier] = ACTIONS(3424), + [anon_sym_shared] = ACTIONS(3424), + [anon_sym_map_LBRACK] = ACTIONS(3424), + [anon_sym_chan] = ACTIONS(3424), + [anon_sym_thread] = ACTIONS(3424), + [anon_sym_atomic] = ACTIONS(3424), + [anon_sym_assert] = ACTIONS(3424), + [anon_sym_defer] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_DOLLARfor] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_POUND] = ACTIONS(3424), + [anon_sym_asm] = ACTIONS(3424), + [anon_sym_AT_LBRACK] = ACTIONS(3424), + [sym___double_quote] = ACTIONS(3424), + [sym___single_quote] = ACTIONS(3424), + [sym___c_double_quote] = ACTIONS(3424), + [sym___c_single_quote] = ACTIONS(3424), + [sym___r_double_quote] = ACTIONS(3424), + [sym___r_single_quote] = ACTIONS(3424), }, [923] = { - [sym__expression] = STATE(1933), - [sym__expression_without_blocks] = STATE(1966), - [sym__expression_with_blocks] = STATE(1966), - [sym_inc_expression] = STATE(1966), - [sym_dec_expression] = STATE(1966), - [sym_or_block_expression] = STATE(1966), - [sym_option_propagation_expression] = STATE(1966), - [sym_result_propagation_expression] = STATE(1966), - [sym_anon_struct_value_expression] = STATE(1963), - [sym_go_expression] = STATE(1966), - [sym_spawn_expression] = STATE(1966), - [sym_parenthesized_expression] = STATE(1966), - [sym_call_expression] = STATE(1966), - [sym_type_initializer] = STATE(1963), - [sym_function_literal] = STATE(1966), - [sym_reference_expression] = STATE(2031), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1966), - [sym_receive_expression] = STATE(1966), - [sym_binary_expression] = STATE(1966), - [sym_as_type_cast_expression] = STATE(1966), - [sym__max_group] = STATE(1966), - [sym_literal] = STATE(1966), - [sym_map_init_expression] = STATE(1963), - [sym_array_creation] = STATE(1966), - [sym_fixed_array_creation] = STATE(1966), - [sym_selector_expression] = STATE(1966), - [sym_index_expression] = STATE(1966), - [sym_slice_expression] = STATE(1966), - [sym_if_expression] = STATE(1963), - [sym_compile_time_if_expression] = STATE(1963), - [sym_is_expression] = STATE(1966), - [sym_not_is_expression] = STATE(1966), - [sym_in_expression] = STATE(1966), - [sym_not_in_expression] = STATE(1966), - [sym_enum_fetch] = STATE(1966), - [sym_match_expression] = STATE(1963), - [sym_select_expression] = STATE(1963), - [sym_lock_expression] = STATE(1963), - [sym_unsafe_expression] = STATE(1963), - [sym_sql_expression] = STATE(1963), - [sym_c_string_literal] = STATE(1968), - [sym_raw_string_literal] = STATE(1968), - [sym_interpreted_string_literal] = STATE(1968), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4343), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2723), + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(3217), + [anon_sym_CR] = ACTIONS(3217), + [anon_sym_CR_LF] = ACTIONS(3217), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_EQ] = ACTIONS(3217), + [anon_sym___global] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_union] = ACTIONS(3217), + [anon_sym_pub] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3217), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3217), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3219), + [anon_sym_AMP_CARET] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_STAR_EQ] = ACTIONS(3217), + [anon_sym_SLASH_EQ] = ACTIONS(3217), + [anon_sym_PERCENT_EQ] = ACTIONS(3217), + [anon_sym_LT_LT_EQ] = ACTIONS(3217), + [anon_sym_GT_GT_EQ] = ACTIONS(3217), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3217), + [anon_sym_AMP_EQ] = ACTIONS(3217), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3217), + [anon_sym_PLUS_EQ] = ACTIONS(3217), + [anon_sym_DASH_EQ] = ACTIONS(3217), + [anon_sym_PIPE_EQ] = ACTIONS(3217), + [anon_sym_CARET_EQ] = ACTIONS(3217), + [anon_sym_COLON_EQ] = ACTIONS(3217), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3217), + [sym_rune_literal] = ACTIONS(3217), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3217), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [anon_sym_assert] = ACTIONS(3217), + [anon_sym_defer] = ACTIONS(3217), + [anon_sym_goto] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_DOLLARfor] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_POUND] = ACTIONS(3217), + [anon_sym_asm] = ACTIONS(3217), + [anon_sym_AT_LBRACK] = ACTIONS(3217), + [sym___double_quote] = ACTIONS(3217), + [sym___single_quote] = ACTIONS(3217), + [sym___c_double_quote] = ACTIONS(3217), + [sym___c_single_quote] = ACTIONS(3217), + [sym___r_double_quote] = ACTIONS(3217), + [sym___r_single_quote] = ACTIONS(3217), + }, + [924] = { + [sym__expression] = STATE(294), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(2725), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(2727), - [anon_sym_DASH] = ACTIONS(2727), - [anon_sym_STAR] = ACTIONS(2729), - [anon_sym_struct] = ACTIONS(819), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2731), - [anon_sym_go] = ACTIONS(2733), - [anon_sym_spawn] = ACTIONS(2735), - [anon_sym_json_DOTdecode] = ACTIONS(829), - [anon_sym_LBRACK2] = ACTIONS(2737), - [anon_sym_TILDE] = ACTIONS(2727), - [anon_sym_CARET] = ACTIONS(2727), - [anon_sym_AMP] = ACTIONS(2739), - [anon_sym_LT_DASH] = ACTIONS(2741), - [sym_none] = ACTIONS(837), - [sym_true] = ACTIONS(837), - [sym_false] = ACTIONS(837), - [sym_nil] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_DOLLARif] = ACTIONS(841), - [anon_sym_match] = ACTIONS(843), - [anon_sym_select] = ACTIONS(2743), - [anon_sym_lock] = ACTIONS(2745), - [anon_sym_rlock] = ACTIONS(2745), - [anon_sym_unsafe] = ACTIONS(849), - [anon_sym_sql] = ACTIONS(851), - [sym_int_literal] = ACTIONS(837), - [sym_float_literal] = ACTIONS(853), - [sym_rune_literal] = ACTIONS(853), - [sym_pseudo_compile_time_identifier] = ACTIONS(855), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(857), - [sym___single_quote] = ACTIONS(859), - [sym___c_double_quote] = ACTIONS(861), - [sym___c_single_quote] = ACTIONS(863), - [sym___r_double_quote] = ACTIONS(865), - [sym___r_single_quote] = ACTIONS(867), + [sym___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), }, - [924] = { - [sym__expression] = STATE(2713), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [925] = { + [ts_builtin_sym_end] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3227), + [anon_sym_LF] = ACTIONS(3227), + [anon_sym_CR] = ACTIONS(3227), + [anon_sym_CR_LF] = ACTIONS(3227), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_COMMA] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3227), + [anon_sym___global] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_union] = ACTIONS(3227), + [anon_sym_pub] = ACTIONS(3227), + [anon_sym_mut] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3227), + [anon_sym_spawn] = ACTIONS(3227), + [anon_sym_json_DOTdecode] = ACTIONS(3227), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3227), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_or] = ACTIONS(3229), + [sym_none] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_nil] = ACTIONS(3227), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_DOLLARif] = ACTIONS(3227), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3227), + [anon_sym_select] = ACTIONS(3227), + [anon_sym_STAR_EQ] = ACTIONS(3227), + [anon_sym_SLASH_EQ] = ACTIONS(3227), + [anon_sym_PERCENT_EQ] = ACTIONS(3227), + [anon_sym_LT_LT_EQ] = ACTIONS(3227), + [anon_sym_GT_GT_EQ] = ACTIONS(3227), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3227), + [anon_sym_AMP_EQ] = ACTIONS(3227), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3227), + [anon_sym_PLUS_EQ] = ACTIONS(3227), + [anon_sym_DASH_EQ] = ACTIONS(3227), + [anon_sym_PIPE_EQ] = ACTIONS(3227), + [anon_sym_CARET_EQ] = ACTIONS(3227), + [anon_sym_COLON_EQ] = ACTIONS(3227), + [anon_sym_lock] = ACTIONS(3227), + [anon_sym_rlock] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_sql] = ACTIONS(3227), + [sym_int_literal] = ACTIONS(3227), + [sym_float_literal] = ACTIONS(3227), + [sym_rune_literal] = ACTIONS(3227), + [sym_pseudo_compile_time_identifier] = ACTIONS(3227), + [anon_sym_shared] = ACTIONS(3227), + [anon_sym_map_LBRACK] = ACTIONS(3227), + [anon_sym_chan] = ACTIONS(3227), + [anon_sym_thread] = ACTIONS(3227), + [anon_sym_atomic] = ACTIONS(3227), + [anon_sym_assert] = ACTIONS(3227), + [anon_sym_defer] = ACTIONS(3227), + [anon_sym_goto] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_DOLLARfor] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_POUND] = ACTIONS(3227), + [anon_sym_asm] = ACTIONS(3227), + [anon_sym_AT_LBRACK] = ACTIONS(3227), + [sym___double_quote] = ACTIONS(3227), + [sym___single_quote] = ACTIONS(3227), + [sym___c_double_quote] = ACTIONS(3227), + [sym___c_single_quote] = ACTIONS(3227), + [sym___r_double_quote] = ACTIONS(3227), + [sym___r_single_quote] = ACTIONS(3227), + }, + [926] = { + [sym__expression] = STATE(2479), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [925] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [927] = { + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3428), + [anon_sym_LF] = ACTIONS(3428), + [anon_sym_CR] = ACTIONS(3428), + [anon_sym_CR_LF] = ACTIONS(3428), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_as] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3428), + [anon_sym___global] = ACTIONS(3428), + [anon_sym_type] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_fn] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_pub] = ACTIONS(3428), + [anon_sym_mut] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_interface] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_go] = ACTIONS(3428), + [anon_sym_spawn] = ACTIONS(3428), + [anon_sym_json_DOTdecode] = ACTIONS(3428), + [anon_sym_LBRACK2] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_LT_DASH] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3428), + [anon_sym_GT_GT_GT] = ACTIONS(3428), + [anon_sym_AMP_CARET] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_or] = ACTIONS(3428), + [sym_none] = ACTIONS(3428), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_nil] = ACTIONS(3428), + [anon_sym_QMARK_DOT] = ACTIONS(3428), + [anon_sym_POUND_LBRACK] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_DOLLARif] = ACTIONS(3428), + [anon_sym_is] = ACTIONS(3428), + [anon_sym_BANGis] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3428), + [anon_sym_BANGin] = ACTIONS(3428), + [anon_sym_match] = ACTIONS(3428), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_STAR_EQ] = ACTIONS(3428), + [anon_sym_SLASH_EQ] = ACTIONS(3428), + [anon_sym_PERCENT_EQ] = ACTIONS(3428), + [anon_sym_LT_LT_EQ] = ACTIONS(3428), + [anon_sym_GT_GT_EQ] = ACTIONS(3428), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3428), + [anon_sym_AMP_EQ] = ACTIONS(3428), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3428), + [anon_sym_PLUS_EQ] = ACTIONS(3428), + [anon_sym_DASH_EQ] = ACTIONS(3428), + [anon_sym_PIPE_EQ] = ACTIONS(3428), + [anon_sym_CARET_EQ] = ACTIONS(3428), + [anon_sym_COLON_EQ] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3428), + [anon_sym_rlock] = ACTIONS(3428), + [anon_sym_unsafe] = ACTIONS(3428), + [anon_sym_sql] = ACTIONS(3428), + [sym_int_literal] = ACTIONS(3428), + [sym_float_literal] = ACTIONS(3428), + [sym_rune_literal] = ACTIONS(3428), + [sym_pseudo_compile_time_identifier] = ACTIONS(3428), + [anon_sym_shared] = ACTIONS(3428), + [anon_sym_map_LBRACK] = ACTIONS(3428), + [anon_sym_chan] = ACTIONS(3428), + [anon_sym_thread] = ACTIONS(3428), + [anon_sym_atomic] = ACTIONS(3428), + [anon_sym_assert] = ACTIONS(3428), + [anon_sym_defer] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_DOLLARfor] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_POUND] = ACTIONS(3428), + [anon_sym_asm] = ACTIONS(3428), + [anon_sym_AT_LBRACK] = ACTIONS(3428), + [sym___double_quote] = ACTIONS(3428), + [sym___single_quote] = ACTIONS(3428), + [sym___c_double_quote] = ACTIONS(3428), + [sym___c_single_quote] = ACTIONS(3428), + [sym___r_double_quote] = ACTIONS(3428), + [sym___r_single_quote] = ACTIONS(3428), + }, + [928] = { + [sym__expression] = STATE(1657), + [sym__expression_without_blocks] = STATE(1861), + [sym__expression_with_blocks] = STATE(1861), + [sym_inc_expression] = STATE(1861), + [sym_dec_expression] = STATE(1861), + [sym_or_block_expression] = STATE(1861), + [sym_option_propagation_expression] = STATE(1861), + [sym_result_propagation_expression] = STATE(1861), + [sym_anon_struct_value_expression] = STATE(1860), + [sym_go_expression] = STATE(1861), + [sym_spawn_expression] = STATE(1861), + [sym_parenthesized_expression] = STATE(1861), + [sym_call_expression] = STATE(1861), + [sym_type_initializer] = STATE(1860), + [sym_function_literal] = STATE(1861), + [sym_reference_expression] = STATE(1933), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1861), + [sym_receive_expression] = STATE(1861), + [sym_binary_expression] = STATE(1861), + [sym_as_type_cast_expression] = STATE(1861), + [sym__max_group] = STATE(1861), + [sym_literal] = STATE(1861), + [sym_map_init_expression] = STATE(1860), + [sym_array_creation] = STATE(1861), + [sym_fixed_array_creation] = STATE(1861), + [sym_selector_expression] = STATE(1861), + [sym_index_expression] = STATE(1861), + [sym_slice_expression] = STATE(1861), + [sym_if_expression] = STATE(1860), + [sym_compile_time_if_expression] = STATE(1860), + [sym_is_expression] = STATE(1861), + [sym_not_is_expression] = STATE(1861), + [sym_in_expression] = STATE(1861), + [sym_not_in_expression] = STATE(1861), + [sym_enum_fetch] = STATE(1861), + [sym_match_expression] = STATE(1860), + [sym_select_expression] = STATE(1860), + [sym_lock_expression] = STATE(1860), + [sym_unsafe_expression] = STATE(1860), + [sym_sql_expression] = STATE(1860), + [sym_c_string_literal] = STATE(1864), + [sym_raw_string_literal] = STATE(1864), + [sym_interpreted_string_literal] = STATE(1864), + [sym_mutability_modifiers] = STATE(475), + [sym_plain_type] = STATE(4241), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2737), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2739), + [anon_sym_LBRACE] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2747), + [anon_sym_DASH] = ACTIONS(2747), + [anon_sym_STAR] = ACTIONS(2749), + [anon_sym_struct] = ACTIONS(2751), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_go] = ACTIONS(2755), + [anon_sym_spawn] = ACTIONS(2757), + [anon_sym_json_DOTdecode] = ACTIONS(2759), + [anon_sym_LBRACK2] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2763), + [anon_sym_LT_DASH] = ACTIONS(2765), + [sym_none] = ACTIONS(2767), + [sym_true] = ACTIONS(2767), + [sym_false] = ACTIONS(2767), + [sym_nil] = ACTIONS(2767), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_DOLLARif] = ACTIONS(2771), + [anon_sym_match] = ACTIONS(2773), + [anon_sym_select] = ACTIONS(2775), + [anon_sym_lock] = ACTIONS(2777), + [anon_sym_rlock] = ACTIONS(2777), + [anon_sym_unsafe] = ACTIONS(2779), + [anon_sym_sql] = ACTIONS(2781), + [sym_int_literal] = ACTIONS(2767), + [sym_float_literal] = ACTIONS(2783), + [sym_rune_literal] = ACTIONS(2783), + [sym_pseudo_compile_time_identifier] = ACTIONS(2785), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2787), + [sym___single_quote] = ACTIONS(2789), + [sym___c_double_quote] = ACTIONS(2791), + [sym___c_single_quote] = ACTIONS(2793), + [sym___r_double_quote] = ACTIONS(2795), + [sym___r_single_quote] = ACTIONS(2797), }, - [926] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3627), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [929] = { + [sym__expression] = STATE(2483), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [927] = { - [sym__expression] = STATE(2804), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [930] = { + [sym__expression] = STATE(2322), + [sym__expression_without_blocks] = STATE(2590), + [sym__expression_with_blocks] = STATE(2590), + [sym_inc_expression] = STATE(2590), + [sym_dec_expression] = STATE(2590), + [sym_or_block_expression] = STATE(2590), + [sym_option_propagation_expression] = STATE(2590), + [sym_result_propagation_expression] = STATE(2590), + [sym_anon_struct_value_expression] = STATE(2583), + [sym_go_expression] = STATE(2590), + [sym_spawn_expression] = STATE(2590), + [sym_parenthesized_expression] = STATE(2590), + [sym_call_expression] = STATE(2590), + [sym_type_initializer] = STATE(2583), + [sym_function_literal] = STATE(2590), + [sym_reference_expression] = STATE(2579), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2590), + [sym_receive_expression] = STATE(2590), + [sym_binary_expression] = STATE(2590), + [sym_as_type_cast_expression] = STATE(2590), + [sym__max_group] = STATE(2590), + [sym_literal] = STATE(2590), + [sym_map_init_expression] = STATE(2583), + [sym_array_creation] = STATE(2590), + [sym_fixed_array_creation] = STATE(2590), + [sym_selector_expression] = STATE(2590), + [sym_index_expression] = STATE(2590), + [sym_slice_expression] = STATE(2590), + [sym_if_expression] = STATE(2583), + [sym_compile_time_if_expression] = STATE(2583), + [sym_is_expression] = STATE(2590), + [sym_not_is_expression] = STATE(2590), + [sym_in_expression] = STATE(2590), + [sym_not_in_expression] = STATE(2590), + [sym_enum_fetch] = STATE(2590), + [sym_match_expression] = STATE(2583), + [sym_select_expression] = STATE(2583), + [sym_lock_expression] = STATE(2583), + [sym_unsafe_expression] = STATE(2583), + [sym_sql_expression] = STATE(2583), + [sym_c_string_literal] = STATE(2613), + [sym_raw_string_literal] = STATE(2613), + [sym_interpreted_string_literal] = STATE(2613), + [sym_mutability_modifiers] = STATE(482), + [sym_plain_type] = STATE(4370), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1637), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(1643), + [anon_sym_PLUS] = ACTIONS(2073), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(1649), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_go] = ACTIONS(1653), + [anon_sym_spawn] = ACTIONS(1655), + [anon_sym_json_DOTdecode] = ACTIONS(2079), + [anon_sym_LBRACK2] = ACTIONS(2081), + [anon_sym_TILDE] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2083), + [anon_sym_LT_DASH] = ACTIONS(2085), + [sym_none] = ACTIONS(1665), + [sym_true] = ACTIONS(1665), + [sym_false] = ACTIONS(1665), + [sym_nil] = ACTIONS(1665), + [anon_sym_if] = ACTIONS(1667), + [anon_sym_DOLLARif] = ACTIONS(1669), + [anon_sym_match] = ACTIONS(1671), + [anon_sym_select] = ACTIONS(1673), + [anon_sym_lock] = ACTIONS(1675), + [anon_sym_rlock] = ACTIONS(1675), + [anon_sym_unsafe] = ACTIONS(1677), + [anon_sym_sql] = ACTIONS(1679), + [sym_int_literal] = ACTIONS(1665), + [sym_float_literal] = ACTIONS(2087), + [sym_rune_literal] = ACTIONS(2087), + [sym_pseudo_compile_time_identifier] = ACTIONS(1681), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2089), + [sym___single_quote] = ACTIONS(2091), + [sym___c_double_quote] = ACTIONS(2093), + [sym___c_single_quote] = ACTIONS(2095), + [sym___r_double_quote] = ACTIONS(2097), + [sym___r_single_quote] = ACTIONS(2099), }, - [928] = { - [sym__expression] = STATE(280), - [sym__expression_without_blocks] = STATE(890), - [sym__expression_with_blocks] = STATE(890), - [sym_inc_expression] = STATE(890), - [sym_dec_expression] = STATE(890), - [sym_or_block_expression] = STATE(890), - [sym_option_propagation_expression] = STATE(890), - [sym_result_propagation_expression] = STATE(890), - [sym_anon_struct_value_expression] = STATE(907), - [sym_go_expression] = STATE(890), - [sym_spawn_expression] = STATE(890), - [sym_parenthesized_expression] = STATE(890), - [sym_call_expression] = STATE(890), - [sym_type_initializer] = STATE(907), - [sym_function_literal] = STATE(890), - [sym_reference_expression] = STATE(908), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(890), - [sym_receive_expression] = STATE(890), - [sym_binary_expression] = STATE(890), - [sym_as_type_cast_expression] = STATE(890), - [sym__max_group] = STATE(890), - [sym_literal] = STATE(890), - [sym_map_init_expression] = STATE(907), - [sym_array_creation] = STATE(890), - [sym_fixed_array_creation] = STATE(890), - [sym_selector_expression] = STATE(890), - [sym_index_expression] = STATE(890), - [sym_slice_expression] = STATE(890), - [sym_if_expression] = STATE(907), - [sym_compile_time_if_expression] = STATE(907), - [sym_is_expression] = STATE(890), - [sym_not_is_expression] = STATE(890), - [sym_in_expression] = STATE(890), - [sym_not_in_expression] = STATE(890), - [sym_enum_fetch] = STATE(890), - [sym_match_expression] = STATE(907), - [sym_select_expression] = STATE(907), - [sym_lock_expression] = STATE(907), - [sym_unsafe_expression] = STATE(907), - [sym_sql_expression] = STATE(907), - [sym_c_string_literal] = STATE(734), - [sym_raw_string_literal] = STATE(734), - [sym_interpreted_string_literal] = STATE(734), - [sym_mutability_modifiers] = STATE(767), - [sym_plain_type] = STATE(4140), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2703), + [931] = { + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3432), + [anon_sym_LF] = ACTIONS(3432), + [anon_sym_CR] = ACTIONS(3432), + [anon_sym_CR_LF] = ACTIONS(3432), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3432), + [anon_sym_as] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [anon_sym_const] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(3432), + [anon_sym___global] = ACTIONS(3432), + [anon_sym_type] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3432), + [anon_sym_fn] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_LT] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_struct] = ACTIONS(3432), + [anon_sym_union] = ACTIONS(3432), + [anon_sym_pub] = ACTIONS(3432), + [anon_sym_mut] = ACTIONS(3432), + [anon_sym_enum] = ACTIONS(3432), + [anon_sym_interface] = ACTIONS(3432), + [anon_sym_PLUS_PLUS] = ACTIONS(3432), + [anon_sym_DASH_DASH] = ACTIONS(3432), + [anon_sym_QMARK] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_go] = ACTIONS(3432), + [anon_sym_spawn] = ACTIONS(3432), + [anon_sym_json_DOTdecode] = ACTIONS(3432), + [anon_sym_LBRACK2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_CARET] = ACTIONS(3432), + [anon_sym_AMP] = ACTIONS(3432), + [anon_sym_LT_DASH] = ACTIONS(3432), + [anon_sym_LT_LT] = ACTIONS(3432), + [anon_sym_GT_GT] = ACTIONS(3432), + [anon_sym_GT_GT_GT] = ACTIONS(3432), + [anon_sym_AMP_CARET] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_or] = ACTIONS(3432), + [sym_none] = ACTIONS(3432), + [sym_true] = ACTIONS(3432), + [sym_false] = ACTIONS(3432), + [sym_nil] = ACTIONS(3432), + [anon_sym_QMARK_DOT] = ACTIONS(3432), + [anon_sym_POUND_LBRACK] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_DOLLARif] = ACTIONS(3432), + [anon_sym_is] = ACTIONS(3432), + [anon_sym_BANGis] = ACTIONS(3432), + [anon_sym_in] = ACTIONS(3432), + [anon_sym_BANGin] = ACTIONS(3432), + [anon_sym_match] = ACTIONS(3432), + [anon_sym_select] = ACTIONS(3432), + [anon_sym_STAR_EQ] = ACTIONS(3432), + [anon_sym_SLASH_EQ] = ACTIONS(3432), + [anon_sym_PERCENT_EQ] = ACTIONS(3432), + [anon_sym_LT_LT_EQ] = ACTIONS(3432), + [anon_sym_GT_GT_EQ] = ACTIONS(3432), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3432), + [anon_sym_AMP_EQ] = ACTIONS(3432), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3432), + [anon_sym_PLUS_EQ] = ACTIONS(3432), + [anon_sym_DASH_EQ] = ACTIONS(3432), + [anon_sym_PIPE_EQ] = ACTIONS(3432), + [anon_sym_CARET_EQ] = ACTIONS(3432), + [anon_sym_COLON_EQ] = ACTIONS(3432), + [anon_sym_lock] = ACTIONS(3432), + [anon_sym_rlock] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_sql] = ACTIONS(3432), + [sym_int_literal] = ACTIONS(3432), + [sym_float_literal] = ACTIONS(3432), + [sym_rune_literal] = ACTIONS(3432), + [sym_pseudo_compile_time_identifier] = ACTIONS(3432), + [anon_sym_shared] = ACTIONS(3432), + [anon_sym_map_LBRACK] = ACTIONS(3432), + [anon_sym_chan] = ACTIONS(3432), + [anon_sym_thread] = ACTIONS(3432), + [anon_sym_atomic] = ACTIONS(3432), + [anon_sym_assert] = ACTIONS(3432), + [anon_sym_defer] = ACTIONS(3432), + [anon_sym_goto] = ACTIONS(3432), + [anon_sym_break] = ACTIONS(3432), + [anon_sym_continue] = ACTIONS(3432), + [anon_sym_return] = ACTIONS(3432), + [anon_sym_DOLLARfor] = ACTIONS(3432), + [anon_sym_for] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(3432), + [anon_sym_asm] = ACTIONS(3432), + [anon_sym_AT_LBRACK] = ACTIONS(3432), + [sym___double_quote] = ACTIONS(3432), + [sym___single_quote] = ACTIONS(3432), + [sym___c_double_quote] = ACTIONS(3432), + [sym___c_single_quote] = ACTIONS(3432), + [sym___r_double_quote] = ACTIONS(3432), + [sym___r_single_quote] = ACTIONS(3432), + }, + [932] = { + [sym__expression] = STATE(289), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2845), [anon_sym_LPAREN] = ACTIONS(21), [anon_sym_fn] = ACTIONS(483), [anon_sym_PLUS] = ACTIONS(29), @@ -132088,2803 +132560,3029 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(121), [sym___r_single_quote] = ACTIONS(123), }, - [929] = { - [sym__expression] = STATE(2674), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [933] = { + [ts_builtin_sym_end] = ACTIONS(3434), + [sym_identifier] = ACTIONS(3436), + [anon_sym_LF] = ACTIONS(3436), + [anon_sym_CR] = ACTIONS(3436), + [anon_sym_CR_LF] = ACTIONS(3436), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3436), + [anon_sym_as] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_COMMA] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_EQ] = ACTIONS(3436), + [anon_sym___global] = ACTIONS(3436), + [anon_sym_type] = ACTIONS(3436), + [anon_sym_PIPE] = ACTIONS(3436), + [anon_sym_fn] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_PERCENT] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_GT] = ACTIONS(3436), + [anon_sym_EQ_EQ] = ACTIONS(3436), + [anon_sym_BANG_EQ] = ACTIONS(3436), + [anon_sym_LT_EQ] = ACTIONS(3436), + [anon_sym_GT_EQ] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3436), + [anon_sym_union] = ACTIONS(3436), + [anon_sym_pub] = ACTIONS(3436), + [anon_sym_mut] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_QMARK] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_go] = ACTIONS(3436), + [anon_sym_spawn] = ACTIONS(3436), + [anon_sym_json_DOTdecode] = ACTIONS(3436), + [anon_sym_LBRACK2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_CARET] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3436), + [anon_sym_LT_DASH] = ACTIONS(3436), + [anon_sym_LT_LT] = ACTIONS(3436), + [anon_sym_GT_GT] = ACTIONS(3436), + [anon_sym_GT_GT_GT] = ACTIONS(3436), + [anon_sym_AMP_CARET] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3436), + [anon_sym_or] = ACTIONS(3436), + [sym_none] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_nil] = ACTIONS(3436), + [anon_sym_QMARK_DOT] = ACTIONS(3436), + [anon_sym_POUND_LBRACK] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_DOLLARif] = ACTIONS(3436), + [anon_sym_is] = ACTIONS(3436), + [anon_sym_BANGis] = ACTIONS(3436), + [anon_sym_in] = ACTIONS(3436), + [anon_sym_BANGin] = ACTIONS(3436), + [anon_sym_match] = ACTIONS(3436), + [anon_sym_select] = ACTIONS(3436), + [anon_sym_STAR_EQ] = ACTIONS(3436), + [anon_sym_SLASH_EQ] = ACTIONS(3436), + [anon_sym_PERCENT_EQ] = ACTIONS(3436), + [anon_sym_LT_LT_EQ] = ACTIONS(3436), + [anon_sym_GT_GT_EQ] = ACTIONS(3436), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3436), + [anon_sym_AMP_EQ] = ACTIONS(3436), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3436), + [anon_sym_PLUS_EQ] = ACTIONS(3436), + [anon_sym_DASH_EQ] = ACTIONS(3436), + [anon_sym_PIPE_EQ] = ACTIONS(3436), + [anon_sym_CARET_EQ] = ACTIONS(3436), + [anon_sym_COLON_EQ] = ACTIONS(3436), + [anon_sym_lock] = ACTIONS(3436), + [anon_sym_rlock] = ACTIONS(3436), + [anon_sym_unsafe] = ACTIONS(3436), + [anon_sym_sql] = ACTIONS(3436), + [sym_int_literal] = ACTIONS(3436), + [sym_float_literal] = ACTIONS(3436), + [sym_rune_literal] = ACTIONS(3436), + [sym_pseudo_compile_time_identifier] = ACTIONS(3436), + [anon_sym_shared] = ACTIONS(3436), + [anon_sym_map_LBRACK] = ACTIONS(3436), + [anon_sym_chan] = ACTIONS(3436), + [anon_sym_thread] = ACTIONS(3436), + [anon_sym_atomic] = ACTIONS(3436), + [anon_sym_assert] = ACTIONS(3436), + [anon_sym_defer] = ACTIONS(3436), + [anon_sym_goto] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_DOLLARfor] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_POUND] = ACTIONS(3436), + [anon_sym_asm] = ACTIONS(3436), + [anon_sym_AT_LBRACK] = ACTIONS(3436), + [sym___double_quote] = ACTIONS(3436), + [sym___single_quote] = ACTIONS(3436), + [sym___c_double_quote] = ACTIONS(3436), + [sym___c_single_quote] = ACTIONS(3436), + [sym___r_double_quote] = ACTIONS(3436), + [sym___r_single_quote] = ACTIONS(3436), }, - [930] = { - [sym__expression] = STATE(2808), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [934] = { + [ts_builtin_sym_end] = ACTIONS(3438), + [sym_identifier] = ACTIONS(3440), + [anon_sym_LF] = ACTIONS(3440), + [anon_sym_CR] = ACTIONS(3440), + [anon_sym_CR_LF] = ACTIONS(3440), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_EQ] = ACTIONS(3440), + [anon_sym___global] = ACTIONS(3440), + [anon_sym_type] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_fn] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3440), + [anon_sym_EQ_EQ] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3440), + [anon_sym_LT_EQ] = ACTIONS(3440), + [anon_sym_GT_EQ] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3440), + [anon_sym_union] = ACTIONS(3440), + [anon_sym_pub] = ACTIONS(3440), + [anon_sym_mut] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_QMARK] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_go] = ACTIONS(3440), + [anon_sym_spawn] = ACTIONS(3440), + [anon_sym_json_DOTdecode] = ACTIONS(3440), + [anon_sym_LBRACK2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3440), + [anon_sym_LT_DASH] = ACTIONS(3440), + [anon_sym_LT_LT] = ACTIONS(3440), + [anon_sym_GT_GT] = ACTIONS(3440), + [anon_sym_GT_GT_GT] = ACTIONS(3440), + [anon_sym_AMP_CARET] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_PIPE_PIPE] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3440), + [sym_none] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_nil] = ACTIONS(3440), + [anon_sym_QMARK_DOT] = ACTIONS(3440), + [anon_sym_POUND_LBRACK] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_DOLLARif] = ACTIONS(3440), + [anon_sym_is] = ACTIONS(3440), + [anon_sym_BANGis] = ACTIONS(3440), + [anon_sym_in] = ACTIONS(3440), + [anon_sym_BANGin] = ACTIONS(3440), + [anon_sym_match] = ACTIONS(3440), + [anon_sym_select] = ACTIONS(3440), + [anon_sym_STAR_EQ] = ACTIONS(3440), + [anon_sym_SLASH_EQ] = ACTIONS(3440), + [anon_sym_PERCENT_EQ] = ACTIONS(3440), + [anon_sym_LT_LT_EQ] = ACTIONS(3440), + [anon_sym_GT_GT_EQ] = ACTIONS(3440), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3440), + [anon_sym_AMP_EQ] = ACTIONS(3440), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3440), + [anon_sym_PLUS_EQ] = ACTIONS(3440), + [anon_sym_DASH_EQ] = ACTIONS(3440), + [anon_sym_PIPE_EQ] = ACTIONS(3440), + [anon_sym_CARET_EQ] = ACTIONS(3440), + [anon_sym_COLON_EQ] = ACTIONS(3440), + [anon_sym_lock] = ACTIONS(3440), + [anon_sym_rlock] = ACTIONS(3440), + [anon_sym_unsafe] = ACTIONS(3440), + [anon_sym_sql] = ACTIONS(3440), + [sym_int_literal] = ACTIONS(3440), + [sym_float_literal] = ACTIONS(3440), + [sym_rune_literal] = ACTIONS(3440), + [sym_pseudo_compile_time_identifier] = ACTIONS(3440), + [anon_sym_shared] = ACTIONS(3440), + [anon_sym_map_LBRACK] = ACTIONS(3440), + [anon_sym_chan] = ACTIONS(3440), + [anon_sym_thread] = ACTIONS(3440), + [anon_sym_atomic] = ACTIONS(3440), + [anon_sym_assert] = ACTIONS(3440), + [anon_sym_defer] = ACTIONS(3440), + [anon_sym_goto] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_DOLLARfor] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_POUND] = ACTIONS(3440), + [anon_sym_asm] = ACTIONS(3440), + [anon_sym_AT_LBRACK] = ACTIONS(3440), + [sym___double_quote] = ACTIONS(3440), + [sym___single_quote] = ACTIONS(3440), + [sym___c_double_quote] = ACTIONS(3440), + [sym___c_single_quote] = ACTIONS(3440), + [sym___r_double_quote] = ACTIONS(3440), + [sym___r_single_quote] = ACTIONS(3440), + }, + [935] = { + [sym__expression] = STATE(2566), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [931] = { - [sym__expression] = STATE(2722), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [936] = { + [sym__expression] = STATE(978), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [932] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3625), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [937] = { + [sym__expression] = STATE(2670), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2475), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_go] = ACTIONS(2481), + [anon_sym_spawn] = ACTIONS(2483), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(2475), + [anon_sym_CARET] = ACTIONS(2475), + [anon_sym_AMP] = ACTIONS(2887), + [anon_sym_LT_DASH] = ACTIONS(2487), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [933] = { - [sym__expression] = STATE(2729), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [938] = { + [sym__expression] = STATE(981), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [934] = { - [sym__expression] = STATE(2478), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [939] = { + [sym__expression] = STATE(282), + [sym__expression_without_blocks] = STATE(750), + [sym__expression_with_blocks] = STATE(750), + [sym_inc_expression] = STATE(750), + [sym_dec_expression] = STATE(750), + [sym_or_block_expression] = STATE(750), + [sym_option_propagation_expression] = STATE(750), + [sym_result_propagation_expression] = STATE(750), + [sym_anon_struct_value_expression] = STATE(754), + [sym_go_expression] = STATE(750), + [sym_spawn_expression] = STATE(750), + [sym_parenthesized_expression] = STATE(750), + [sym_call_expression] = STATE(750), + [sym_type_initializer] = STATE(754), + [sym_function_literal] = STATE(750), + [sym_reference_expression] = STATE(769), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(750), + [sym_receive_expression] = STATE(750), + [sym_binary_expression] = STATE(750), + [sym_as_type_cast_expression] = STATE(750), + [sym__max_group] = STATE(750), + [sym_literal] = STATE(750), + [sym_map_init_expression] = STATE(754), + [sym_array_creation] = STATE(750), + [sym_fixed_array_creation] = STATE(750), + [sym_selector_expression] = STATE(750), + [sym_index_expression] = STATE(750), + [sym_slice_expression] = STATE(750), + [sym_if_expression] = STATE(754), + [sym_compile_time_if_expression] = STATE(754), + [sym_is_expression] = STATE(750), + [sym_not_is_expression] = STATE(750), + [sym_in_expression] = STATE(750), + [sym_not_in_expression] = STATE(750), + [sym_enum_fetch] = STATE(750), + [sym_match_expression] = STATE(754), + [sym_select_expression] = STATE(754), + [sym_lock_expression] = STATE(754), + [sym_unsafe_expression] = STATE(754), + [sym_sql_expression] = STATE(754), + [sym_c_string_literal] = STATE(696), + [sym_raw_string_literal] = STATE(696), + [sym_interpreted_string_literal] = STATE(696), + [sym_mutability_modifiers] = STATE(682), + [sym_plain_type] = STATE(4388), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2843), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_fn] = ACTIONS(483), + [anon_sym_PLUS] = ACTIONS(29), + [anon_sym_DASH] = ACTIONS(29), + [anon_sym_STAR] = ACTIONS(31), + [anon_sym_struct] = ACTIONS(485), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(47), + [anon_sym_go] = ACTIONS(49), + [anon_sym_spawn] = ACTIONS(51), + [anon_sym_json_DOTdecode] = ACTIONS(53), + [anon_sym_LBRACK2] = ACTIONS(487), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_CARET] = ACTIONS(29), + [anon_sym_AMP] = ACTIONS(57), + [anon_sym_LT_DASH] = ACTIONS(59), + [sym_none] = ACTIONS(61), + [sym_true] = ACTIONS(61), + [sym_false] = ACTIONS(61), + [sym_nil] = ACTIONS(61), + [anon_sym_if] = ACTIONS(63), + [anon_sym_DOLLARif] = ACTIONS(65), + [anon_sym_match] = ACTIONS(67), + [anon_sym_select] = ACTIONS(69), + [anon_sym_lock] = ACTIONS(71), + [anon_sym_rlock] = ACTIONS(71), + [anon_sym_unsafe] = ACTIONS(73), + [anon_sym_sql] = ACTIONS(75), + [sym_int_literal] = ACTIONS(61), + [sym_float_literal] = ACTIONS(77), + [sym_rune_literal] = ACTIONS(77), + [sym_pseudo_compile_time_identifier] = ACTIONS(79), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [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), }, - [935] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), + [940] = { + [sym__expression] = STATE(2878), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2951), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2932), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(908), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(1197), + [anon_sym_DASH] = ACTIONS(1197), + [anon_sym_STAR] = ACTIONS(1199), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(1203), + [anon_sym_go] = ACTIONS(1205), + [anon_sym_spawn] = ACTIONS(1207), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(1211), + [anon_sym_TILDE] = ACTIONS(1197), + [anon_sym_CARET] = ACTIONS(1197), + [anon_sym_AMP] = ACTIONS(1213), + [anon_sym_LT_DASH] = ACTIONS(1215), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(1225), + [anon_sym_lock] = ACTIONS(1227), + [anon_sym_rlock] = ACTIONS(1227), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LF] = ACTIONS(2669), - [anon_sym_CR] = ACTIONS(2669), - [anon_sym_CR_LF] = ACTIONS(2669), + [941] = { + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym___global] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_pub] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_STAR_EQ] = ACTIONS(2669), - [anon_sym_SLASH_EQ] = ACTIONS(2669), - [anon_sym_PERCENT_EQ] = ACTIONS(2669), - [anon_sym_LT_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_GT_EQ] = ACTIONS(2669), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2669), - [anon_sym_AMP_EQ] = ACTIONS(2669), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2669), - [anon_sym_PLUS_EQ] = ACTIONS(2669), - [anon_sym_DASH_EQ] = ACTIONS(2669), - [anon_sym_PIPE_EQ] = ACTIONS(2669), - [anon_sym_CARET_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [anon_sym_assert] = ACTIONS(2669), - [anon_sym_defer] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_DOLLARfor] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym_AT_LBRACK] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_EQ] = ACTIONS(3412), + [anon_sym___global] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_BANG_EQ] = ACTIONS(3412), + [anon_sym_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_EQ] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_union] = ACTIONS(3412), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_CARET] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3412), + [anon_sym_POUND_LBRACK] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_STAR_EQ] = ACTIONS(3412), + [anon_sym_SLASH_EQ] = ACTIONS(3412), + [anon_sym_PERCENT_EQ] = ACTIONS(3412), + [anon_sym_LT_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_GT_EQ] = ACTIONS(3412), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3412), + [anon_sym_AMP_EQ] = ACTIONS(3412), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3412), + [anon_sym_PLUS_EQ] = ACTIONS(3412), + [anon_sym_DASH_EQ] = ACTIONS(3412), + [anon_sym_PIPE_EQ] = ACTIONS(3412), + [anon_sym_CARET_EQ] = ACTIONS(3412), + [anon_sym_COLON_EQ] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_defer] = ACTIONS(3412), + [anon_sym_goto] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_DOLLARfor] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_POUND] = ACTIONS(3412), + [anon_sym_asm] = ACTIONS(3412), + [anon_sym_AT_LBRACK] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), }, - [937] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(3631), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [942] = { + [sym__expression] = STATE(2573), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [938] = { - [sym__expression] = STATE(2484), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_go] = ACTIONS(1426), - [anon_sym_spawn] = ACTIONS(1428), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1432), - [anon_sym_TILDE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1418), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_LT_DASH] = ACTIONS(1436), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1446), - [anon_sym_lock] = ACTIONS(1448), - [anon_sym_rlock] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [943] = { + [ts_builtin_sym_end] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3444), + [anon_sym_LF] = ACTIONS(3444), + [anon_sym_CR] = ACTIONS(3444), + [anon_sym_CR_LF] = ACTIONS(3444), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3444), + [anon_sym_as] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_EQ] = ACTIONS(3444), + [anon_sym___global] = ACTIONS(3444), + [anon_sym_type] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3444), + [anon_sym_fn] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_PERCENT] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_GT] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3444), + [anon_sym_BANG_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3444), + [anon_sym_GT_EQ] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_pub] = ACTIONS(3444), + [anon_sym_mut] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_QMARK] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_go] = ACTIONS(3444), + [anon_sym_spawn] = ACTIONS(3444), + [anon_sym_json_DOTdecode] = ACTIONS(3444), + [anon_sym_LBRACK2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_CARET] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_LT_DASH] = ACTIONS(3444), + [anon_sym_LT_LT] = ACTIONS(3444), + [anon_sym_GT_GT] = ACTIONS(3444), + [anon_sym_GT_GT_GT] = ACTIONS(3444), + [anon_sym_AMP_CARET] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_PIPE_PIPE] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3444), + [sym_none] = ACTIONS(3444), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [sym_nil] = ACTIONS(3444), + [anon_sym_QMARK_DOT] = ACTIONS(3444), + [anon_sym_POUND_LBRACK] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_DOLLARif] = ACTIONS(3444), + [anon_sym_is] = ACTIONS(3444), + [anon_sym_BANGis] = ACTIONS(3444), + [anon_sym_in] = ACTIONS(3444), + [anon_sym_BANGin] = ACTIONS(3444), + [anon_sym_match] = ACTIONS(3444), + [anon_sym_select] = ACTIONS(3444), + [anon_sym_STAR_EQ] = ACTIONS(3444), + [anon_sym_SLASH_EQ] = ACTIONS(3444), + [anon_sym_PERCENT_EQ] = ACTIONS(3444), + [anon_sym_LT_LT_EQ] = ACTIONS(3444), + [anon_sym_GT_GT_EQ] = ACTIONS(3444), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3444), + [anon_sym_AMP_EQ] = ACTIONS(3444), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3444), + [anon_sym_PLUS_EQ] = ACTIONS(3444), + [anon_sym_DASH_EQ] = ACTIONS(3444), + [anon_sym_PIPE_EQ] = ACTIONS(3444), + [anon_sym_CARET_EQ] = ACTIONS(3444), + [anon_sym_COLON_EQ] = ACTIONS(3444), + [anon_sym_lock] = ACTIONS(3444), + [anon_sym_rlock] = ACTIONS(3444), + [anon_sym_unsafe] = ACTIONS(3444), + [anon_sym_sql] = ACTIONS(3444), + [sym_int_literal] = ACTIONS(3444), + [sym_float_literal] = ACTIONS(3444), + [sym_rune_literal] = ACTIONS(3444), + [sym_pseudo_compile_time_identifier] = ACTIONS(3444), + [anon_sym_shared] = ACTIONS(3444), + [anon_sym_map_LBRACK] = ACTIONS(3444), + [anon_sym_chan] = ACTIONS(3444), + [anon_sym_thread] = ACTIONS(3444), + [anon_sym_atomic] = ACTIONS(3444), + [anon_sym_assert] = ACTIONS(3444), + [anon_sym_defer] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_DOLLARfor] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_POUND] = ACTIONS(3444), + [anon_sym_asm] = ACTIONS(3444), + [anon_sym_AT_LBRACK] = ACTIONS(3444), + [sym___double_quote] = ACTIONS(3444), + [sym___single_quote] = ACTIONS(3444), + [sym___c_double_quote] = ACTIONS(3444), + [sym___c_single_quote] = ACTIONS(3444), + [sym___r_double_quote] = ACTIONS(3444), + [sym___r_single_quote] = ACTIONS(3444), }, - [939] = { - [sym__expression] = STATE(2307), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [944] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3975), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [940] = { - [sym__expression] = STATE(2748), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [945] = { + [ts_builtin_sym_end] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3448), + [anon_sym_LF] = ACTIONS(3448), + [anon_sym_CR] = ACTIONS(3448), + [anon_sym_CR_LF] = ACTIONS(3448), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3448), + [anon_sym_as] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_COMMA] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(3448), + [anon_sym___global] = ACTIONS(3448), + [anon_sym_type] = ACTIONS(3448), + [anon_sym_PIPE] = ACTIONS(3448), + [anon_sym_fn] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_GT] = ACTIONS(3448), + [anon_sym_EQ_EQ] = ACTIONS(3448), + [anon_sym_BANG_EQ] = ACTIONS(3448), + [anon_sym_LT_EQ] = ACTIONS(3448), + [anon_sym_GT_EQ] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_pub] = ACTIONS(3448), + [anon_sym_mut] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_interface] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_QMARK] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_go] = ACTIONS(3448), + [anon_sym_spawn] = ACTIONS(3448), + [anon_sym_json_DOTdecode] = ACTIONS(3448), + [anon_sym_LBRACK2] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_CARET] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT_DASH] = ACTIONS(3448), + [anon_sym_LT_LT] = ACTIONS(3448), + [anon_sym_GT_GT] = ACTIONS(3448), + [anon_sym_GT_GT_GT] = ACTIONS(3448), + [anon_sym_AMP_CARET] = ACTIONS(3448), + [anon_sym_AMP_AMP] = ACTIONS(3448), + [anon_sym_PIPE_PIPE] = ACTIONS(3448), + [anon_sym_or] = ACTIONS(3448), + [sym_none] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_nil] = ACTIONS(3448), + [anon_sym_QMARK_DOT] = ACTIONS(3448), + [anon_sym_POUND_LBRACK] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_DOLLARif] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3448), + [anon_sym_BANGis] = ACTIONS(3448), + [anon_sym_in] = ACTIONS(3448), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_match] = ACTIONS(3448), + [anon_sym_select] = ACTIONS(3448), + [anon_sym_STAR_EQ] = ACTIONS(3448), + [anon_sym_SLASH_EQ] = ACTIONS(3448), + [anon_sym_PERCENT_EQ] = ACTIONS(3448), + [anon_sym_LT_LT_EQ] = ACTIONS(3448), + [anon_sym_GT_GT_EQ] = ACTIONS(3448), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3448), + [anon_sym_AMP_EQ] = ACTIONS(3448), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3448), + [anon_sym_PLUS_EQ] = ACTIONS(3448), + [anon_sym_DASH_EQ] = ACTIONS(3448), + [anon_sym_PIPE_EQ] = ACTIONS(3448), + [anon_sym_CARET_EQ] = ACTIONS(3448), + [anon_sym_COLON_EQ] = ACTIONS(3448), + [anon_sym_lock] = ACTIONS(3448), + [anon_sym_rlock] = ACTIONS(3448), + [anon_sym_unsafe] = ACTIONS(3448), + [anon_sym_sql] = ACTIONS(3448), + [sym_int_literal] = ACTIONS(3448), + [sym_float_literal] = ACTIONS(3448), + [sym_rune_literal] = ACTIONS(3448), + [sym_pseudo_compile_time_identifier] = ACTIONS(3448), + [anon_sym_shared] = ACTIONS(3448), + [anon_sym_map_LBRACK] = ACTIONS(3448), + [anon_sym_chan] = ACTIONS(3448), + [anon_sym_thread] = ACTIONS(3448), + [anon_sym_atomic] = ACTIONS(3448), + [anon_sym_assert] = ACTIONS(3448), + [anon_sym_defer] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_DOLLARfor] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_POUND] = ACTIONS(3448), + [anon_sym_asm] = ACTIONS(3448), + [anon_sym_AT_LBRACK] = ACTIONS(3448), + [sym___double_quote] = ACTIONS(3448), + [sym___single_quote] = ACTIONS(3448), + [sym___c_double_quote] = ACTIONS(3448), + [sym___c_single_quote] = ACTIONS(3448), + [sym___r_double_quote] = ACTIONS(3448), + [sym___r_single_quote] = ACTIONS(3448), }, - [941] = { - [sym__expression] = STATE(2749), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(921), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [946] = { + [ts_builtin_sym_end] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3452), + [anon_sym_LF] = ACTIONS(3452), + [anon_sym_CR] = ACTIONS(3452), + [anon_sym_CR_LF] = ACTIONS(3452), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3452), + [anon_sym_as] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_COMMA] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_EQ] = ACTIONS(3452), + [anon_sym___global] = ACTIONS(3452), + [anon_sym_type] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_PERCENT] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_GT] = ACTIONS(3452), + [anon_sym_EQ_EQ] = ACTIONS(3452), + [anon_sym_BANG_EQ] = ACTIONS(3452), + [anon_sym_LT_EQ] = ACTIONS(3452), + [anon_sym_GT_EQ] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_pub] = ACTIONS(3452), + [anon_sym_mut] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [anon_sym_QMARK] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_go] = ACTIONS(3452), + [anon_sym_spawn] = ACTIONS(3452), + [anon_sym_json_DOTdecode] = ACTIONS(3452), + [anon_sym_LBRACK2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_CARET] = ACTIONS(3452), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_LT_DASH] = ACTIONS(3452), + [anon_sym_LT_LT] = ACTIONS(3452), + [anon_sym_GT_GT] = ACTIONS(3452), + [anon_sym_GT_GT_GT] = ACTIONS(3452), + [anon_sym_AMP_CARET] = ACTIONS(3452), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE_PIPE] = ACTIONS(3452), + [anon_sym_or] = ACTIONS(3452), + [sym_none] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_nil] = ACTIONS(3452), + [anon_sym_QMARK_DOT] = ACTIONS(3452), + [anon_sym_POUND_LBRACK] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_DOLLARif] = ACTIONS(3452), + [anon_sym_is] = ACTIONS(3452), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_in] = ACTIONS(3452), + [anon_sym_BANGin] = ACTIONS(3452), + [anon_sym_match] = ACTIONS(3452), + [anon_sym_select] = ACTIONS(3452), + [anon_sym_STAR_EQ] = ACTIONS(3452), + [anon_sym_SLASH_EQ] = ACTIONS(3452), + [anon_sym_PERCENT_EQ] = ACTIONS(3452), + [anon_sym_LT_LT_EQ] = ACTIONS(3452), + [anon_sym_GT_GT_EQ] = ACTIONS(3452), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3452), + [anon_sym_AMP_EQ] = ACTIONS(3452), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3452), + [anon_sym_PLUS_EQ] = ACTIONS(3452), + [anon_sym_DASH_EQ] = ACTIONS(3452), + [anon_sym_PIPE_EQ] = ACTIONS(3452), + [anon_sym_CARET_EQ] = ACTIONS(3452), + [anon_sym_COLON_EQ] = ACTIONS(3452), + [anon_sym_lock] = ACTIONS(3452), + [anon_sym_rlock] = ACTIONS(3452), + [anon_sym_unsafe] = ACTIONS(3452), + [anon_sym_sql] = ACTIONS(3452), + [sym_int_literal] = ACTIONS(3452), + [sym_float_literal] = ACTIONS(3452), + [sym_rune_literal] = ACTIONS(3452), + [sym_pseudo_compile_time_identifier] = ACTIONS(3452), + [anon_sym_shared] = ACTIONS(3452), + [anon_sym_map_LBRACK] = ACTIONS(3452), + [anon_sym_chan] = ACTIONS(3452), + [anon_sym_thread] = ACTIONS(3452), + [anon_sym_atomic] = ACTIONS(3452), + [anon_sym_assert] = ACTIONS(3452), + [anon_sym_defer] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_DOLLARfor] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_POUND] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym_AT_LBRACK] = ACTIONS(3452), + [sym___double_quote] = ACTIONS(3452), + [sym___single_quote] = ACTIONS(3452), + [sym___c_double_quote] = ACTIONS(3452), + [sym___c_single_quote] = ACTIONS(3452), + [sym___r_double_quote] = ACTIONS(3452), + [sym___r_single_quote] = ACTIONS(3452), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_interface] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_STAR_EQ] = ACTIONS(2727), + [anon_sym_SLASH_EQ] = ACTIONS(2727), + [anon_sym_PERCENT_EQ] = ACTIONS(2727), + [anon_sym_LT_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2727), + [anon_sym_AMP_EQ] = ACTIONS(2727), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2727), + [anon_sym_PLUS_EQ] = ACTIONS(2727), + [anon_sym_DASH_EQ] = ACTIONS(2727), + [anon_sym_PIPE_EQ] = ACTIONS(2727), + [anon_sym_CARET_EQ] = ACTIONS(2727), + [anon_sym_COLON_EQ] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_defer] = ACTIONS(2727), + [anon_sym_goto] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_DOLLARfor] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_asm] = ACTIONS(2727), + [anon_sym_AT_LBRACK] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), + }, + [948] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3973), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(2685), - [anon_sym_DASH] = ACTIONS(2685), - [anon_sym_STAR] = ACTIONS(2687), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2689), - [anon_sym_go] = ACTIONS(2691), - [anon_sym_spawn] = ACTIONS(2693), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(2685), - [anon_sym_CARET] = ACTIONS(2685), - [anon_sym_AMP] = ACTIONS(2695), - [anon_sym_LT_DASH] = ACTIONS(2697), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(2699), - [anon_sym_lock] = ACTIONS(2701), - [anon_sym_rlock] = ACTIONS(2701), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [942] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2427), - [sym__expression_with_blocks] = STATE(2427), - [sym_inc_expression] = STATE(2427), - [sym_dec_expression] = STATE(2427), - [sym_or_block_expression] = STATE(2427), - [sym_option_propagation_expression] = STATE(2427), - [sym_result_propagation_expression] = STATE(2427), - [sym_anon_struct_value_expression] = STATE(2432), - [sym_go_expression] = STATE(2427), - [sym_spawn_expression] = STATE(2427), - [sym_parenthesized_expression] = STATE(2427), - [sym_call_expression] = STATE(2427), - [sym_type_initializer] = STATE(2432), - [sym_function_literal] = STATE(2427), - [sym_reference_expression] = STATE(2433), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2427), - [sym_receive_expression] = STATE(2427), - [sym_binary_expression] = STATE(2427), - [sym_as_type_cast_expression] = STATE(2427), - [sym__max_group] = STATE(2427), - [sym_literal] = STATE(2427), - [sym_map_init_expression] = STATE(2432), - [sym_array_creation] = STATE(2427), - [sym_fixed_array_creation] = STATE(2427), - [sym_selector_expression] = STATE(2427), - [sym_index_expression] = STATE(2427), - [sym_slice_expression] = STATE(2427), - [sym_if_expression] = STATE(2432), - [sym_compile_time_if_expression] = STATE(2432), - [sym_is_expression] = STATE(2427), - [sym_not_is_expression] = STATE(2427), - [sym_in_expression] = STATE(2427), - [sym_not_in_expression] = STATE(2427), - [sym_enum_fetch] = STATE(2427), - [sym_match_expression] = STATE(2432), - [sym_select_expression] = STATE(2432), - [sym_lock_expression] = STATE(2432), - [sym_unsafe_expression] = STATE(2432), - [sym_sql_expression] = STATE(2432), - [sym_c_string_literal] = STATE(2422), - [sym_raw_string_literal] = STATE(2422), - [sym_interpreted_string_literal] = STATE(2422), - [sym_mutability_modifiers] = STATE(710), - [sym_plain_type] = STATE(4157), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [949] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4193), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_fn] = ACTIONS(1416), - [anon_sym_PLUS] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1773), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_struct] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1777), - [anon_sym_go] = ACTIONS(1779), - [anon_sym_spawn] = ACTIONS(1781), - [anon_sym_json_DOTdecode] = ACTIONS(1430), - [anon_sym_LBRACK2] = ACTIONS(1783), - [anon_sym_TILDE] = ACTIONS(1773), - [anon_sym_CARET] = ACTIONS(1773), - [anon_sym_AMP] = ACTIONS(1785), - [anon_sym_LT_DASH] = ACTIONS(1787), - [sym_none] = ACTIONS(1438), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_nil] = ACTIONS(1438), - [anon_sym_if] = ACTIONS(1763), - [anon_sym_DOLLARif] = ACTIONS(1442), - [anon_sym_match] = ACTIONS(1444), - [anon_sym_select] = ACTIONS(1789), - [anon_sym_lock] = ACTIONS(1791), - [anon_sym_rlock] = ACTIONS(1791), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_sql] = ACTIONS(1452), - [sym_int_literal] = ACTIONS(1438), - [sym_float_literal] = ACTIONS(1454), - [sym_rune_literal] = ACTIONS(1454), - [sym_pseudo_compile_time_identifier] = ACTIONS(1456), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1460), - [sym___single_quote] = ACTIONS(1462), - [sym___c_double_quote] = ACTIONS(1464), - [sym___c_single_quote] = ACTIONS(1466), - [sym___r_double_quote] = ACTIONS(1468), - [sym___r_single_quote] = ACTIONS(1470), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [943] = { - [sym__expression] = STATE(1284), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [950] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3968), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_go] = ACTIONS(2819), + [anon_sym_spawn] = ACTIONS(2821), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2813), + [anon_sym_AMP] = ACTIONS(2823), + [anon_sym_LT_DASH] = ACTIONS(2825), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2827), + [anon_sym_lock] = ACTIONS(2829), + [anon_sym_rlock] = ACTIONS(2829), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2867), - [anon_sym_LF] = ACTIONS(2867), - [anon_sym_CR] = ACTIONS(2867), - [anon_sym_CR_LF] = ACTIONS(2867), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_as] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_EQ] = ACTIONS(2867), - [anon_sym___global] = ACTIONS(2867), - [anon_sym_type] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_fn] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [anon_sym_pub] = ACTIONS(2867), - [anon_sym_mut] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_interface] = ACTIONS(2867), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_go] = ACTIONS(2867), - [anon_sym_spawn] = ACTIONS(2867), - [anon_sym_json_DOTdecode] = ACTIONS(2867), - [anon_sym_LBRACK2] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_LT_DASH] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2867), - [anon_sym_GT_GT_GT] = ACTIONS(2867), - [anon_sym_AMP_CARET] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_or] = ACTIONS(2867), - [sym_none] = ACTIONS(2867), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [sym_nil] = ACTIONS(2867), - [anon_sym_QMARK_DOT] = ACTIONS(2867), - [anon_sym_POUND_LBRACK] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_DOLLARif] = ACTIONS(2867), - [anon_sym_is] = ACTIONS(2867), - [anon_sym_BANGis] = ACTIONS(2867), - [anon_sym_in] = ACTIONS(2867), - [anon_sym_BANGin] = ACTIONS(2867), - [anon_sym_match] = ACTIONS(2867), - [anon_sym_select] = ACTIONS(2867), - [anon_sym_STAR_EQ] = ACTIONS(2867), - [anon_sym_SLASH_EQ] = ACTIONS(2867), - [anon_sym_PERCENT_EQ] = ACTIONS(2867), - [anon_sym_LT_LT_EQ] = ACTIONS(2867), - [anon_sym_GT_GT_EQ] = ACTIONS(2867), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2867), - [anon_sym_AMP_EQ] = ACTIONS(2867), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2867), - [anon_sym_PLUS_EQ] = ACTIONS(2867), - [anon_sym_DASH_EQ] = ACTIONS(2867), - [anon_sym_PIPE_EQ] = ACTIONS(2867), - [anon_sym_CARET_EQ] = ACTIONS(2867), - [anon_sym_COLON_EQ] = ACTIONS(2867), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(2867), - [anon_sym_sql] = ACTIONS(2867), - [sym_int_literal] = ACTIONS(2867), - [sym_float_literal] = ACTIONS(2867), - [sym_rune_literal] = ACTIONS(2867), - [sym_pseudo_compile_time_identifier] = ACTIONS(2867), - [anon_sym_shared] = ACTIONS(2867), - [anon_sym_map_LBRACK] = ACTIONS(2867), - [anon_sym_chan] = ACTIONS(2867), - [anon_sym_thread] = ACTIONS(2867), - [anon_sym_atomic] = ACTIONS(2867), - [anon_sym_assert] = ACTIONS(2867), - [anon_sym_defer] = ACTIONS(2867), - [anon_sym_goto] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_DOLLARfor] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_POUND] = ACTIONS(2867), - [anon_sym_asm] = ACTIONS(2867), - [anon_sym_AT_LBRACK] = ACTIONS(2867), - [sym___double_quote] = ACTIONS(2867), - [sym___single_quote] = ACTIONS(2867), - [sym___c_double_quote] = ACTIONS(2867), - [sym___c_single_quote] = ACTIONS(2867), - [sym___r_double_quote] = ACTIONS(2867), - [sym___r_single_quote] = ACTIONS(2867), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [945] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4164), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [951] = { + [sym__expression] = STATE(2575), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [946] = { - [sym__expression] = STATE(1317), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [952] = { + [sym__expression] = STATE(2576), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [947] = { - [sym__expression] = STATE(2472), - [sym__expression_without_blocks] = STATE(2779), - [sym__expression_with_blocks] = STATE(2779), - [sym_inc_expression] = STATE(2779), - [sym_dec_expression] = STATE(2779), - [sym_or_block_expression] = STATE(2779), - [sym_option_propagation_expression] = STATE(2779), - [sym_result_propagation_expression] = STATE(2779), - [sym_anon_struct_value_expression] = STATE(2778), - [sym_go_expression] = STATE(2779), - [sym_spawn_expression] = STATE(2779), - [sym_parenthesized_expression] = STATE(2779), - [sym_call_expression] = STATE(2779), - [sym_type_initializer] = STATE(2778), - [sym_function_literal] = STATE(2779), - [sym_reference_expression] = STATE(2758), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(2779), - [sym_receive_expression] = STATE(2779), - [sym_binary_expression] = STATE(2779), - [sym_as_type_cast_expression] = STATE(2779), - [sym__max_group] = STATE(2779), - [sym_literal] = STATE(2779), - [sym_map_init_expression] = STATE(2778), - [sym_array_creation] = STATE(2779), - [sym_fixed_array_creation] = STATE(2779), - [sym_selector_expression] = STATE(2779), - [sym_index_expression] = STATE(2779), - [sym_slice_expression] = STATE(2779), - [sym_if_expression] = STATE(2778), - [sym_compile_time_if_expression] = STATE(2778), - [sym_is_expression] = STATE(2779), - [sym_not_is_expression] = STATE(2779), - [sym_in_expression] = STATE(2779), - [sym_not_in_expression] = STATE(2779), - [sym_enum_fetch] = STATE(2779), - [sym_match_expression] = STATE(2778), - [sym_select_expression] = STATE(2778), - [sym_lock_expression] = STATE(2778), - [sym_unsafe_expression] = STATE(2778), - [sym_sql_expression] = STATE(2778), - [sym_c_string_literal] = STATE(2755), - [sym_raw_string_literal] = STATE(2755), - [sym_interpreted_string_literal] = STATE(2755), - [sym_mutability_modifiers] = STATE(870), - [sym_plain_type] = STATE(4146), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1769), + [953] = { + [sym__expression] = STATE(2577), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_fn] = ACTIONS(1105), - [anon_sym_PLUS] = ACTIONS(2635), - [anon_sym_DASH] = ACTIONS(2635), - [anon_sym_STAR] = ACTIONS(2637), - [anon_sym_struct] = ACTIONS(1111), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2639), - [anon_sym_go] = ACTIONS(2641), - [anon_sym_spawn] = ACTIONS(2643), - [anon_sym_json_DOTdecode] = ACTIONS(1119), - [anon_sym_LBRACK2] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(2635), - [anon_sym_CARET] = ACTIONS(2635), - [anon_sym_AMP] = ACTIONS(2645), - [anon_sym_LT_DASH] = ACTIONS(2647), - [sym_none] = ACTIONS(1127), - [sym_true] = ACTIONS(1127), - [sym_false] = ACTIONS(1127), - [sym_nil] = ACTIONS(1127), - [anon_sym_if] = ACTIONS(1129), - [anon_sym_DOLLARif] = ACTIONS(1133), - [anon_sym_match] = ACTIONS(1135), - [anon_sym_select] = ACTIONS(2649), - [anon_sym_lock] = ACTIONS(2651), - [anon_sym_rlock] = ACTIONS(2651), - [anon_sym_unsafe] = ACTIONS(1141), - [anon_sym_sql] = ACTIONS(1143), - [sym_int_literal] = ACTIONS(1127), - [sym_float_literal] = ACTIONS(1145), - [sym_rune_literal] = ACTIONS(1145), - [sym_pseudo_compile_time_identifier] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1149), - [sym___single_quote] = ACTIONS(1151), - [sym___c_double_quote] = ACTIONS(1153), - [sym___c_single_quote] = ACTIONS(1155), - [sym___r_double_quote] = ACTIONS(1157), - [sym___r_single_quote] = ACTIONS(1159), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [948] = { - [sym__expression] = STATE(1639), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [954] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4189), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [949] = { - [sym__expression] = STATE(1638), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [955] = { + [sym__expression] = STATE(2302), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [950] = { - [sym__expression] = STATE(1644), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [956] = { + [sym__expression] = STATE(2578), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [951] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [957] = { + [sym__expression] = STATE(988), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [952] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [958] = { + [sym__expression] = STATE(979), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(497), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), + [anon_sym_fn] = ACTIONS(503), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_go] = ACTIONS(515), + [anon_sym_spawn] = ACTIONS(517), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), + [sym_none] = ACTIONS(527), + [sym_true] = ACTIONS(527), + [sym_false] = ACTIONS(527), + [sym_nil] = ACTIONS(527), + [anon_sym_if] = ACTIONS(529), + [anon_sym_DOLLARif] = ACTIONS(531), + [anon_sym_match] = ACTIONS(533), + [anon_sym_select] = ACTIONS(535), + [anon_sym_lock] = ACTIONS(537), + [anon_sym_rlock] = ACTIONS(537), + [anon_sym_unsafe] = ACTIONS(539), + [anon_sym_sql] = ACTIONS(541), + [sym_int_literal] = ACTIONS(527), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), + [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [953] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1102), - [sym__expression_with_blocks] = STATE(1102), - [sym_inc_expression] = STATE(1102), - [sym_dec_expression] = STATE(1102), - [sym_or_block_expression] = STATE(1102), - [sym_option_propagation_expression] = STATE(1102), - [sym_result_propagation_expression] = STATE(1102), - [sym_anon_struct_value_expression] = STATE(1101), - [sym_go_expression] = STATE(1102), - [sym_spawn_expression] = STATE(1102), - [sym_parenthesized_expression] = STATE(1102), - [sym_call_expression] = STATE(1102), - [sym_type_initializer] = STATE(1101), - [sym_function_literal] = STATE(1102), - [sym_reference_expression] = STATE(1067), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1102), - [sym_receive_expression] = STATE(1102), - [sym_binary_expression] = STATE(1102), - [sym_as_type_cast_expression] = STATE(1102), - [sym__max_group] = STATE(1102), - [sym_literal] = STATE(1102), - [sym_map_init_expression] = STATE(1101), - [sym_array_creation] = STATE(1102), - [sym_fixed_array_creation] = STATE(1102), - [sym_selector_expression] = STATE(1102), - [sym_index_expression] = STATE(1102), - [sym_slice_expression] = STATE(1102), - [sym_if_expression] = STATE(1101), - [sym_compile_time_if_expression] = STATE(1101), - [sym_is_expression] = STATE(1102), - [sym_not_is_expression] = STATE(1102), - [sym_in_expression] = STATE(1102), - [sym_not_in_expression] = STATE(1102), - [sym_enum_fetch] = STATE(1102), - [sym_match_expression] = STATE(1101), - [sym_select_expression] = STATE(1101), - [sym_lock_expression] = STATE(1101), - [sym_unsafe_expression] = STATE(1101), - [sym_sql_expression] = STATE(1101), - [sym_c_string_literal] = STATE(1109), - [sym_raw_string_literal] = STATE(1109), - [sym_interpreted_string_literal] = STATE(1109), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), + [959] = { + [sym__expression] = STATE(980), + [sym__expression_without_blocks] = STATE(1094), + [sym__expression_with_blocks] = STATE(1094), + [sym_inc_expression] = STATE(1094), + [sym_dec_expression] = STATE(1094), + [sym_or_block_expression] = STATE(1094), + [sym_option_propagation_expression] = STATE(1094), + [sym_result_propagation_expression] = STATE(1094), + [sym_anon_struct_value_expression] = STATE(1093), + [sym_go_expression] = STATE(1094), + [sym_spawn_expression] = STATE(1094), + [sym_parenthesized_expression] = STATE(1094), + [sym_call_expression] = STATE(1094), + [sym_type_initializer] = STATE(1093), + [sym_function_literal] = STATE(1094), + [sym_reference_expression] = STATE(1069), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(1094), + [sym_receive_expression] = STATE(1094), + [sym_binary_expression] = STATE(1094), + [sym_as_type_cast_expression] = STATE(1094), + [sym__max_group] = STATE(1094), + [sym_literal] = STATE(1094), + [sym_map_init_expression] = STATE(1093), + [sym_array_creation] = STATE(1094), + [sym_fixed_array_creation] = STATE(1094), + [sym_selector_expression] = STATE(1094), + [sym_index_expression] = STATE(1094), + [sym_slice_expression] = STATE(1094), + [sym_if_expression] = STATE(1093), + [sym_compile_time_if_expression] = STATE(1093), + [sym_is_expression] = STATE(1094), + [sym_not_is_expression] = STATE(1094), + [sym_in_expression] = STATE(1094), + [sym_not_in_expression] = STATE(1094), + [sym_enum_fetch] = STATE(1094), + [sym_match_expression] = STATE(1093), + [sym_select_expression] = STATE(1093), + [sym_lock_expression] = STATE(1093), + [sym_unsafe_expression] = STATE(1093), + [sym_sql_expression] = STATE(1093), + [sym_c_string_literal] = STATE(1098), + [sym_raw_string_literal] = STATE(1098), + [sym_interpreted_string_literal] = STATE(1098), + [sym_mutability_modifiers] = STATE(492), + [sym_plain_type] = STATE(4210), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), [sym_identifier] = ACTIONS(491), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(2383), - [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2107), [anon_sym_fn] = ACTIONS(503), - [anon_sym_PLUS] = ACTIONS(2387), - [anon_sym_DASH] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2389), + [anon_sym_PLUS] = ACTIONS(2109), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2111), [anon_sym_struct] = ACTIONS(509), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(2391), + [anon_sym_BANG] = ACTIONS(2113), [anon_sym_go] = ACTIONS(515), [anon_sym_spawn] = ACTIONS(517), - [anon_sym_json_DOTdecode] = ACTIONS(2393), - [anon_sym_LBRACK2] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2397), - [anon_sym_LT_DASH] = ACTIONS(2399), + [anon_sym_json_DOTdecode] = ACTIONS(2115), + [anon_sym_LBRACK2] = ACTIONS(2117), + [anon_sym_TILDE] = ACTIONS(2109), + [anon_sym_CARET] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2119), + [anon_sym_LT_DASH] = ACTIONS(2121), [sym_none] = ACTIONS(527), [sym_true] = ACTIONS(527), [sym_false] = ACTIONS(527), @@ -134898,1939 +135596,1704 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(539), [anon_sym_sql] = ACTIONS(541), [sym_int_literal] = ACTIONS(527), - [sym_float_literal] = ACTIONS(2401), - [sym_rune_literal] = ACTIONS(2401), + [sym_float_literal] = ACTIONS(2123), + [sym_rune_literal] = ACTIONS(2123), [sym_pseudo_compile_time_identifier] = ACTIONS(543), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(2403), - [sym___single_quote] = ACTIONS(2405), - [sym___c_double_quote] = ACTIONS(2407), - [sym___c_single_quote] = ACTIONS(2409), - [sym___r_double_quote] = ACTIONS(2411), - [sym___r_single_quote] = ACTIONS(2413), + [sym___double_quote] = ACTIONS(2125), + [sym___single_quote] = ACTIONS(2127), + [sym___c_double_quote] = ACTIONS(2129), + [sym___c_single_quote] = ACTIONS(2131), + [sym___r_double_quote] = ACTIONS(2133), + [sym___r_single_quote] = ACTIONS(2135), }, - [954] = { - [sym__expression] = STATE(1643), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [960] = { + [sym__expression] = STATE(2480), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [955] = { - [sym__expression] = STATE(1642), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [961] = { + [sym__expression] = STATE(2161), + [sym__expression_without_blocks] = STATE(2216), + [sym__expression_with_blocks] = STATE(2216), + [sym_inc_expression] = STATE(2216), + [sym_dec_expression] = STATE(2216), + [sym_or_block_expression] = STATE(2216), + [sym_option_propagation_expression] = STATE(2216), + [sym_result_propagation_expression] = STATE(2216), + [sym_anon_struct_value_expression] = STATE(2213), + [sym_go_expression] = STATE(2216), + [sym_spawn_expression] = STATE(2216), + [sym_parenthesized_expression] = STATE(2216), + [sym_call_expression] = STATE(2216), + [sym_type_initializer] = STATE(2213), + [sym_function_literal] = STATE(2216), + [sym_reference_expression] = STATE(2212), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2216), + [sym_receive_expression] = STATE(2216), + [sym_binary_expression] = STATE(2216), + [sym_as_type_cast_expression] = STATE(2216), + [sym__max_group] = STATE(2216), + [sym_literal] = STATE(2216), + [sym_map_init_expression] = STATE(2213), + [sym_array_creation] = STATE(2216), + [sym_fixed_array_creation] = STATE(2216), + [sym_selector_expression] = STATE(2216), + [sym_index_expression] = STATE(2216), + [sym_slice_expression] = STATE(2216), + [sym_if_expression] = STATE(2213), + [sym_compile_time_if_expression] = STATE(2213), + [sym_is_expression] = STATE(2216), + [sym_not_is_expression] = STATE(2216), + [sym_in_expression] = STATE(2216), + [sym_not_in_expression] = STATE(2216), + [sym_enum_fetch] = STATE(2216), + [sym_match_expression] = STATE(2213), + [sym_select_expression] = STATE(2213), + [sym_lock_expression] = STATE(2213), + [sym_unsafe_expression] = STATE(2213), + [sym_sql_expression] = STATE(2213), + [sym_c_string_literal] = STATE(2224), + [sym_raw_string_literal] = STATE(2224), + [sym_interpreted_string_literal] = STATE(2224), + [sym_mutability_modifiers] = STATE(478), + [sym_plain_type] = STATE(4188), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2917), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(2919), + [anon_sym_LBRACE] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_fn] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(2927), + [anon_sym_STAR] = ACTIONS(2929), + [anon_sym_struct] = ACTIONS(2931), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_go] = ACTIONS(2935), + [anon_sym_spawn] = ACTIONS(2937), + [anon_sym_json_DOTdecode] = ACTIONS(2939), + [anon_sym_LBRACK2] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2943), + [anon_sym_LT_DASH] = ACTIONS(2945), + [sym_none] = ACTIONS(2947), + [sym_true] = ACTIONS(2947), + [sym_false] = ACTIONS(2947), + [sym_nil] = ACTIONS(2947), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_DOLLARif] = ACTIONS(2951), + [anon_sym_match] = ACTIONS(2953), + [anon_sym_select] = ACTIONS(2955), + [anon_sym_lock] = ACTIONS(2957), + [anon_sym_rlock] = ACTIONS(2957), + [anon_sym_unsafe] = ACTIONS(2959), + [anon_sym_sql] = ACTIONS(2961), + [sym_int_literal] = ACTIONS(2947), + [sym_float_literal] = ACTIONS(2963), + [sym_rune_literal] = ACTIONS(2963), + [sym_pseudo_compile_time_identifier] = ACTIONS(2965), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(2967), + [sym___single_quote] = ACTIONS(2969), + [sym___c_double_quote] = ACTIONS(2971), + [sym___c_single_quote] = ACTIONS(2973), + [sym___r_double_quote] = ACTIONS(2975), + [sym___r_single_quote] = ACTIONS(2977), }, - [956] = { - [sym__expression] = STATE(1641), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [962] = { + [sym__expression] = STATE(2476), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [957] = { - [sym__expression] = STATE(1640), - [sym__expression_without_blocks] = STATE(1723), - [sym__expression_with_blocks] = STATE(1723), - [sym_inc_expression] = STATE(1723), - [sym_dec_expression] = STATE(1723), - [sym_or_block_expression] = STATE(1723), - [sym_option_propagation_expression] = STATE(1723), - [sym_result_propagation_expression] = STATE(1723), - [sym_anon_struct_value_expression] = STATE(1724), - [sym_go_expression] = STATE(1723), - [sym_spawn_expression] = STATE(1723), - [sym_parenthesized_expression] = STATE(1723), - [sym_call_expression] = STATE(1723), - [sym_type_initializer] = STATE(1724), - [sym_function_literal] = STATE(1723), - [sym_reference_expression] = STATE(1725), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1723), - [sym_receive_expression] = STATE(1723), - [sym_binary_expression] = STATE(1723), - [sym_as_type_cast_expression] = STATE(1723), - [sym__max_group] = STATE(1723), - [sym_literal] = STATE(1723), - [sym_map_init_expression] = STATE(1724), - [sym_array_creation] = STATE(1723), - [sym_fixed_array_creation] = STATE(1723), - [sym_selector_expression] = STATE(1723), - [sym_index_expression] = STATE(1723), - [sym_slice_expression] = STATE(1723), - [sym_if_expression] = STATE(1724), - [sym_compile_time_if_expression] = STATE(1724), - [sym_is_expression] = STATE(1723), - [sym_not_is_expression] = STATE(1723), - [sym_in_expression] = STATE(1723), - [sym_not_in_expression] = STATE(1723), - [sym_enum_fetch] = STATE(1723), - [sym_match_expression] = STATE(1724), - [sym_select_expression] = STATE(1724), - [sym_lock_expression] = STATE(1724), - [sym_unsafe_expression] = STATE(1724), - [sym_sql_expression] = STATE(1724), - [sym_c_string_literal] = STATE(1722), - [sym_raw_string_literal] = STATE(1722), - [sym_interpreted_string_literal] = STATE(1722), - [sym_mutability_modifiers] = STATE(782), - [sym_plain_type] = STATE(4360), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(2881), + [963] = { + [sym__expression] = STATE(2474), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(307), - [anon_sym_LBRACE] = ACTIONS(2883), - [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_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(323), - [anon_sym_go] = ACTIONS(325), - [anon_sym_spawn] = ACTIONS(327), - [anon_sym_json_DOTdecode] = ACTIONS(329), - [anon_sym_LBRACK2] = ACTIONS(331), - [anon_sym_TILDE] = ACTIONS(317), - [anon_sym_CARET] = ACTIONS(317), - [anon_sym_AMP] = ACTIONS(333), - [anon_sym_LT_DASH] = ACTIONS(335), - [sym_none] = ACTIONS(337), - [sym_true] = ACTIONS(337), - [sym_false] = ACTIONS(337), - [sym_nil] = ACTIONS(337), - [anon_sym_if] = ACTIONS(339), - [anon_sym_DOLLARif] = ACTIONS(341), - [anon_sym_match] = ACTIONS(343), - [anon_sym_select] = ACTIONS(345), - [anon_sym_lock] = ACTIONS(347), - [anon_sym_rlock] = ACTIONS(347), - [anon_sym_unsafe] = ACTIONS(349), - [anon_sym_sql] = ACTIONS(351), - [sym_int_literal] = ACTIONS(337), - [sym_float_literal] = ACTIONS(353), - [sym_rune_literal] = ACTIONS(353), - [sym_pseudo_compile_time_identifier] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(377), - [sym___single_quote] = ACTIONS(379), - [sym___c_double_quote] = ACTIONS(381), - [sym___c_single_quote] = ACTIONS(383), - [sym___r_double_quote] = ACTIONS(385), - [sym___r_single_quote] = ACTIONS(387), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [958] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4162), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [964] = { + [sym__expression] = STATE(2488), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1801), - [anon_sym_go] = ACTIONS(1803), - [anon_sym_spawn] = ACTIONS(1805), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_LT_DASH] = ACTIONS(1809), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1813), - [anon_sym_lock] = ACTIONS(1815), - [anon_sym_rlock] = ACTIONS(1815), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [959] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LF] = ACTIONS(2669), - [anon_sym_CR] = ACTIONS(2669), - [anon_sym_CR_LF] = ACTIONS(2669), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_EQ] = ACTIONS(2669), - [anon_sym___global] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_pub] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_STAR_EQ] = ACTIONS(2669), - [anon_sym_SLASH_EQ] = ACTIONS(2669), - [anon_sym_PERCENT_EQ] = ACTIONS(2669), - [anon_sym_LT_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_GT_EQ] = ACTIONS(2669), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2669), - [anon_sym_AMP_EQ] = ACTIONS(2669), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2669), - [anon_sym_PLUS_EQ] = ACTIONS(2669), - [anon_sym_DASH_EQ] = ACTIONS(2669), - [anon_sym_PIPE_EQ] = ACTIONS(2669), - [anon_sym_CARET_EQ] = ACTIONS(2669), - [anon_sym_COLON_EQ] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [anon_sym_assert] = ACTIONS(2669), - [anon_sym_defer] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_DOLLARfor] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym_AT_LBRACK] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [960] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [965] = { + [sym__expression] = STATE(2570), + [sym__expression_without_blocks] = STATE(2331), + [sym__expression_with_blocks] = STATE(2331), + [sym_inc_expression] = STATE(2331), + [sym_dec_expression] = STATE(2331), + [sym_or_block_expression] = STATE(2331), + [sym_option_propagation_expression] = STATE(2331), + [sym_result_propagation_expression] = STATE(2331), + [sym_anon_struct_value_expression] = STATE(2330), + [sym_go_expression] = STATE(2331), + [sym_spawn_expression] = STATE(2331), + [sym_parenthesized_expression] = STATE(2331), + [sym_call_expression] = STATE(2331), + [sym_type_initializer] = STATE(2330), + [sym_function_literal] = STATE(2331), + [sym_reference_expression] = STATE(2335), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2331), + [sym_receive_expression] = STATE(2331), + [sym_binary_expression] = STATE(2331), + [sym_as_type_cast_expression] = STATE(2331), + [sym__max_group] = STATE(2331), + [sym_literal] = STATE(2331), + [sym_map_init_expression] = STATE(2330), + [sym_array_creation] = STATE(2331), + [sym_fixed_array_creation] = STATE(2331), + [sym_selector_expression] = STATE(2331), + [sym_index_expression] = STATE(2331), + [sym_slice_expression] = STATE(2331), + [sym_if_expression] = STATE(2330), + [sym_compile_time_if_expression] = STATE(2330), + [sym_is_expression] = STATE(2331), + [sym_not_is_expression] = STATE(2331), + [sym_in_expression] = STATE(2331), + [sym_not_in_expression] = STATE(2331), + [sym_enum_fetch] = STATE(2331), + [sym_match_expression] = STATE(2330), + [sym_select_expression] = STATE(2330), + [sym_lock_expression] = STATE(2330), + [sym_unsafe_expression] = STATE(2330), + [sym_sql_expression] = STATE(2330), + [sym_c_string_literal] = STATE(2328), + [sym_raw_string_literal] = STATE(2328), + [sym_interpreted_string_literal] = STATE(2328), + [sym_mutability_modifiers] = STATE(480), + [sym_plain_type] = STATE(4126), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(2417), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1189), + [anon_sym_LBRACE] = ACTIONS(1191), + [anon_sym_LPAREN] = ACTIONS(1193), + [anon_sym_fn] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(2419), + [anon_sym_DASH] = ACTIONS(2419), + [anon_sym_STAR] = ACTIONS(2421), + [anon_sym_struct] = ACTIONS(1201), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(2423), + [anon_sym_go] = ACTIONS(2425), + [anon_sym_spawn] = ACTIONS(2427), + [anon_sym_json_DOTdecode] = ACTIONS(1209), + [anon_sym_LBRACK2] = ACTIONS(2429), + [anon_sym_TILDE] = ACTIONS(2419), + [anon_sym_CARET] = ACTIONS(2419), + [anon_sym_AMP] = ACTIONS(2431), + [anon_sym_LT_DASH] = ACTIONS(2433), + [sym_none] = ACTIONS(1217), + [sym_true] = ACTIONS(1217), + [sym_false] = ACTIONS(1217), + [sym_nil] = ACTIONS(1217), + [anon_sym_if] = ACTIONS(1789), + [anon_sym_DOLLARif] = ACTIONS(1221), + [anon_sym_match] = ACTIONS(1223), + [anon_sym_select] = ACTIONS(2435), + [anon_sym_lock] = ACTIONS(2437), + [anon_sym_rlock] = ACTIONS(2437), + [anon_sym_unsafe] = ACTIONS(1791), + [anon_sym_sql] = ACTIONS(1231), + [sym_int_literal] = ACTIONS(1217), + [sym_float_literal] = ACTIONS(1233), + [sym_rune_literal] = ACTIONS(1233), + [sym_pseudo_compile_time_identifier] = ACTIONS(1235), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1239), + [sym___single_quote] = ACTIONS(1241), + [sym___c_double_quote] = ACTIONS(1243), + [sym___c_single_quote] = ACTIONS(1245), + [sym___r_double_quote] = ACTIONS(1247), + [sym___r_single_quote] = ACTIONS(1249), }, - [961] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4160), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [966] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3968), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [962] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4162), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [967] = { + [sym__expression] = STATE(2462), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(3975), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1075), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(1089), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(1093), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(1103), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [963] = { - [sym__expression] = STATE(1296), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [968] = { + [sym__expression] = STATE(2464), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), - }, - [964] = { - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3444), - [anon_sym_LF] = ACTIONS(3444), - [anon_sym_CR] = ACTIONS(3444), - [anon_sym_CR_LF] = ACTIONS(3444), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3444), - [anon_sym_as] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_EQ] = ACTIONS(3444), - [anon_sym___global] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_fn] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_EQ_EQ] = ACTIONS(3444), - [anon_sym_BANG_EQ] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_pub] = ACTIONS(3444), - [anon_sym_mut] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_QMARK] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_go] = ACTIONS(3444), - [anon_sym_spawn] = ACTIONS(3444), - [anon_sym_json_DOTdecode] = ACTIONS(3444), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_LT_DASH] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(3444), - [anon_sym_AMP_CARET] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_PIPE_PIPE] = ACTIONS(3444), - [anon_sym_or] = ACTIONS(3444), - [sym_none] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_nil] = ACTIONS(3444), - [anon_sym_QMARK_DOT] = ACTIONS(3444), - [anon_sym_POUND_LBRACK] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_DOLLARif] = ACTIONS(3444), - [anon_sym_is] = ACTIONS(3444), - [anon_sym_BANGis] = ACTIONS(3444), - [anon_sym_in] = ACTIONS(3444), - [anon_sym_BANGin] = ACTIONS(3444), - [anon_sym_match] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_STAR_EQ] = ACTIONS(3444), - [anon_sym_SLASH_EQ] = ACTIONS(3444), - [anon_sym_PERCENT_EQ] = ACTIONS(3444), - [anon_sym_LT_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_GT_EQ] = ACTIONS(3444), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3444), - [anon_sym_AMP_EQ] = ACTIONS(3444), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3444), - [anon_sym_PLUS_EQ] = ACTIONS(3444), - [anon_sym_DASH_EQ] = ACTIONS(3444), - [anon_sym_PIPE_EQ] = ACTIONS(3444), - [anon_sym_CARET_EQ] = ACTIONS(3444), - [anon_sym_COLON_EQ] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_rlock] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_sql] = ACTIONS(3444), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(3444), - [sym_rune_literal] = ACTIONS(3444), - [sym_pseudo_compile_time_identifier] = ACTIONS(3444), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3444), - [anon_sym_chan] = ACTIONS(3444), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3444), - [anon_sym_assert] = ACTIONS(3444), - [anon_sym_defer] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_DOLLARfor] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_POUND] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym_AT_LBRACK] = ACTIONS(3444), - [sym___double_quote] = ACTIONS(3444), - [sym___single_quote] = ACTIONS(3444), - [sym___c_double_quote] = ACTIONS(3444), - [sym___c_single_quote] = ACTIONS(3444), - [sym___r_double_quote] = ACTIONS(3444), - [sym___r_single_quote] = ACTIONS(3444), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [965] = { - [sym__expression] = STATE(1284), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [969] = { + [sym__expression] = STATE(2493), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [966] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4164), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), + [970] = { + [sym__expression] = STATE(2465), + [sym__expression_without_blocks] = STATE(2826), + [sym__expression_with_blocks] = STATE(2826), + [sym_inc_expression] = STATE(2826), + [sym_dec_expression] = STATE(2826), + [sym_or_block_expression] = STATE(2826), + [sym_option_propagation_expression] = STATE(2826), + [sym_result_propagation_expression] = STATE(2826), + [sym_anon_struct_value_expression] = STATE(2816), + [sym_go_expression] = STATE(2826), + [sym_spawn_expression] = STATE(2826), + [sym_parenthesized_expression] = STATE(2826), + [sym_call_expression] = STATE(2826), + [sym_type_initializer] = STATE(2816), + [sym_function_literal] = STATE(2826), + [sym_reference_expression] = STATE(2849), + [sym_type_reference_expression] = STATE(3605), + [sym_unary_expression] = STATE(2826), + [sym_receive_expression] = STATE(2826), + [sym_binary_expression] = STATE(2826), + [sym_as_type_cast_expression] = STATE(2826), + [sym__max_group] = STATE(2826), + [sym_literal] = STATE(2826), + [sym_map_init_expression] = STATE(2816), + [sym_array_creation] = STATE(2826), + [sym_fixed_array_creation] = STATE(2826), + [sym_selector_expression] = STATE(2826), + [sym_index_expression] = STATE(2826), + [sym_slice_expression] = STATE(2826), + [sym_if_expression] = STATE(2816), + [sym_compile_time_if_expression] = STATE(2816), + [sym_is_expression] = STATE(2826), + [sym_not_is_expression] = STATE(2826), + [sym_in_expression] = STATE(2826), + [sym_not_in_expression] = STATE(2826), + [sym_enum_fetch] = STATE(2826), + [sym_match_expression] = STATE(2816), + [sym_select_expression] = STATE(2816), + [sym_lock_expression] = STATE(2816), + [sym_unsafe_expression] = STATE(2816), + [sym_sql_expression] = STATE(2816), + [sym_c_string_literal] = STATE(2846), + [sym_raw_string_literal] = STATE(2846), + [sym_interpreted_string_literal] = STATE(2846), + [sym_mutability_modifiers] = STATE(477), + [sym_plain_type] = STATE(4100), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(1799), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), + [anon_sym_DOT] = ACTIONS(1077), + [anon_sym_LBRACE] = ACTIONS(1079), + [anon_sym_LPAREN] = ACTIONS(1083), + [anon_sym_fn] = ACTIONS(1085), + [anon_sym_PLUS] = ACTIONS(1087), + [anon_sym_DASH] = ACTIONS(1087), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(1091), [anon_sym_mut] = ACTIONS(39), [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_go] = ACTIONS(1095), + [anon_sym_spawn] = ACTIONS(1097), + [anon_sym_json_DOTdecode] = ACTIONS(1099), + [anon_sym_LBRACK2] = ACTIONS(1101), + [anon_sym_TILDE] = ACTIONS(1087), + [anon_sym_CARET] = ACTIONS(1087), + [anon_sym_AMP] = ACTIONS(3023), + [anon_sym_LT_DASH] = ACTIONS(1105), + [sym_none] = ACTIONS(1107), + [sym_true] = ACTIONS(1107), + [sym_false] = ACTIONS(1107), + [sym_nil] = ACTIONS(1107), + [anon_sym_if] = ACTIONS(1109), + [anon_sym_DOLLARif] = ACTIONS(1113), + [anon_sym_match] = ACTIONS(1115), + [anon_sym_select] = ACTIONS(2847), + [anon_sym_lock] = ACTIONS(2849), + [anon_sym_rlock] = ACTIONS(2849), + [anon_sym_unsafe] = ACTIONS(1121), + [anon_sym_sql] = ACTIONS(1123), + [sym_int_literal] = ACTIONS(1107), + [sym_float_literal] = ACTIONS(1125), + [sym_rune_literal] = ACTIONS(1125), + [sym_pseudo_compile_time_identifier] = ACTIONS(2831), [anon_sym_shared] = ACTIONS(81), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [sym___double_quote] = ACTIONS(1129), + [sym___single_quote] = ACTIONS(1131), + [sym___c_double_quote] = ACTIONS(1133), + [sym___c_single_quote] = ACTIONS(1135), + [sym___r_double_quote] = ACTIONS(1137), + [sym___r_single_quote] = ACTIONS(1139), }, - [967] = { - [sym__expression] = STATE(1297), - [sym__expression_without_blocks] = STATE(1323), - [sym__expression_with_blocks] = STATE(1323), - [sym_inc_expression] = STATE(1323), - [sym_dec_expression] = STATE(1323), - [sym_or_block_expression] = STATE(1323), - [sym_option_propagation_expression] = STATE(1323), - [sym_result_propagation_expression] = STATE(1323), - [sym_anon_struct_value_expression] = STATE(1324), - [sym_go_expression] = STATE(1323), - [sym_spawn_expression] = STATE(1323), - [sym_parenthesized_expression] = STATE(1323), - [sym_call_expression] = STATE(1323), - [sym_type_initializer] = STATE(1324), - [sym_function_literal] = STATE(1323), - [sym_reference_expression] = STATE(1351), - [sym_type_reference_expression] = STATE(3543), - [sym_unary_expression] = STATE(1323), - [sym_receive_expression] = STATE(1323), - [sym_binary_expression] = STATE(1323), - [sym_as_type_cast_expression] = STATE(1323), - [sym__max_group] = STATE(1323), - [sym_literal] = STATE(1323), - [sym_map_init_expression] = STATE(1324), - [sym_array_creation] = STATE(1323), - [sym_fixed_array_creation] = STATE(1323), - [sym_selector_expression] = STATE(1323), - [sym_index_expression] = STATE(1323), - [sym_slice_expression] = STATE(1323), - [sym_if_expression] = STATE(1324), - [sym_compile_time_if_expression] = STATE(1324), - [sym_is_expression] = STATE(1323), - [sym_not_is_expression] = STATE(1323), - [sym_in_expression] = STATE(1323), - [sym_not_in_expression] = STATE(1323), - [sym_enum_fetch] = STATE(1323), - [sym_match_expression] = STATE(1324), - [sym_select_expression] = STATE(1324), - [sym_lock_expression] = STATE(1324), - [sym_unsafe_expression] = STATE(1324), - [sym_sql_expression] = STATE(1324), - [sym_c_string_literal] = STATE(1299), - [sym_raw_string_literal] = STATE(1299), - [sym_interpreted_string_literal] = STATE(1299), - [sym_mutability_modifiers] = STATE(806), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(1330), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1332), - [anon_sym_LBRACE] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_fn] = ACTIONS(1338), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1342), - [anon_sym_struct] = ACTIONS(1346), - [anon_sym_mut] = ACTIONS(39), - [anon_sym_QMARK] = ACTIONS(45), - [anon_sym_BANG] = ACTIONS(1348), - [anon_sym_go] = ACTIONS(1350), - [anon_sym_spawn] = ACTIONS(1352), - [anon_sym_json_DOTdecode] = ACTIONS(1354), - [anon_sym_LBRACK2] = ACTIONS(1356), - [anon_sym_TILDE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1358), - [anon_sym_LT_DASH] = ACTIONS(1360), - [sym_none] = ACTIONS(1362), - [sym_true] = ACTIONS(1362), - [sym_false] = ACTIONS(1362), - [sym_nil] = ACTIONS(1362), - [anon_sym_if] = ACTIONS(1811), - [anon_sym_DOLLARif] = ACTIONS(1366), - [anon_sym_match] = ACTIONS(1368), - [anon_sym_select] = ACTIONS(1370), - [anon_sym_lock] = ACTIONS(1372), - [anon_sym_rlock] = ACTIONS(1372), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_sql] = ACTIONS(1376), - [sym_int_literal] = ACTIONS(1362), - [sym_float_literal] = ACTIONS(1380), - [sym_rune_literal] = ACTIONS(1380), - [sym_pseudo_compile_time_identifier] = ACTIONS(1382), - [anon_sym_shared] = ACTIONS(81), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(1384), - [sym___single_quote] = ACTIONS(1386), - [sym___c_double_quote] = ACTIONS(1388), - [sym___c_single_quote] = ACTIONS(1390), - [sym___r_double_quote] = ACTIONS(1392), - [sym___r_single_quote] = ACTIONS(1394), + [971] = { + [sym_reference_expression] = STATE(4436), + [sym_type_reference_expression] = STATE(3380), + [sym_plain_type] = STATE(3419), + [sym__plain_type_without_special] = STATE(3437), + [sym_anon_struct_type] = STATE(3444), + [sym_multi_return_type] = STATE(3437), + [sym_result_type] = STATE(3437), + [sym_option_type] = STATE(3437), + [sym_qualified_type] = STATE(3380), + [sym_fixed_array_type] = STATE(3444), + [sym_array_type] = STATE(3444), + [sym_pointer_type] = STATE(3444), + [sym_wrong_pointer_type] = STATE(3444), + [sym_map_type] = STATE(3444), + [sym_channel_type] = STATE(3444), + [sym_shared_type] = STATE(3444), + [sym_thread_type] = STATE(3444), + [sym_atomic_type] = STATE(3444), + [sym_generic_type] = STATE(3444), + [sym_function_type] = STATE(3444), + [sym_identifier] = ACTIONS(3454), + [anon_sym_LF] = ACTIONS(2729), + [anon_sym_CR] = ACTIONS(2729), + [anon_sym_CR_LF] = ACTIONS(2729), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym___global] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(3460), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(3462), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(2729), + [anon_sym_COLON] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(3464), + [anon_sym_BANG] = ACTIONS(3466), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(3468), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(3470), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(3472), + [anon_sym_map_LBRACK] = ACTIONS(3474), + [anon_sym_chan] = ACTIONS(3476), + [anon_sym_thread] = ACTIONS(3478), + [anon_sym_atomic] = ACTIONS(3480), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), }, - [968] = { - [sym_reference_expression] = STATE(4418), - [sym_type_reference_expression] = STATE(3386), - [sym_plain_type] = STATE(3414), - [sym__plain_type_without_special] = STATE(3419), - [sym_anon_struct_type] = STATE(3420), - [sym_multi_return_type] = STATE(3419), - [sym_result_type] = STATE(3419), - [sym_option_type] = STATE(3419), - [sym_qualified_type] = STATE(3386), - [sym_fixed_array_type] = STATE(3420), - [sym_array_type] = STATE(3420), - [sym_pointer_type] = STATE(3420), - [sym_wrong_pointer_type] = STATE(3420), - [sym_map_type] = STATE(3420), - [sym_channel_type] = STATE(3420), - [sym_shared_type] = STATE(3420), - [sym_thread_type] = STATE(3420), - [sym_atomic_type] = STATE(3420), - [sym_generic_type] = STATE(3420), - [sym_function_type] = STATE(3420), - [sym_identifier] = ACTIONS(3446), - [anon_sym_LF] = ACTIONS(2671), - [anon_sym_CR] = ACTIONS(2671), - [anon_sym_CR_LF] = ACTIONS(2671), + [972] = { + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(1162), + [sym_plain_type] = STATE(1195), + [sym__plain_type_without_special] = STATE(1170), + [sym_anon_struct_type] = STATE(1203), + [sym_multi_return_type] = STATE(1170), + [sym_result_type] = STATE(1170), + [sym_option_type] = STATE(1170), + [sym_qualified_type] = STATE(1162), + [sym_fixed_array_type] = STATE(1203), + [sym_array_type] = STATE(1203), + [sym_pointer_type] = STATE(1203), + [sym_wrong_pointer_type] = STATE(1203), + [sym_map_type] = STATE(1203), + [sym_channel_type] = STATE(1203), + [sym_shared_type] = STATE(1203), + [sym_thread_type] = STATE(1203), + [sym_atomic_type] = STATE(1203), + [sym_generic_type] = STATE(1203), + [sym_function_type] = STATE(1203), + [sym_identifier] = ACTIONS(3482), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2671), - [anon_sym_LPAREN] = ACTIONS(3448), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(3450), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(3452), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(3454), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2671), - [anon_sym_COLON] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(3462), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(3464), - [anon_sym_map_LBRACK] = ACTIONS(3466), - [anon_sym_chan] = ACTIONS(3468), - [anon_sym_thread] = ACTIONS(3470), - [anon_sym_atomic] = ACTIONS(3472), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [sym_pseudo_compile_time_identifier] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3500), + [anon_sym_map_LBRACK] = ACTIONS(3502), + [anon_sym_chan] = ACTIONS(3504), + [anon_sym_thread] = ACTIONS(3506), + [anon_sym_atomic] = ACTIONS(3508), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), }, - [969] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [973] = { + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(1162), + [sym_plain_type] = STATE(1223), + [sym__plain_type_without_special] = STATE(1170), + [sym_anon_struct_type] = STATE(1203), + [sym_multi_return_type] = STATE(1170), + [sym_result_type] = STATE(1170), + [sym_option_type] = STATE(1170), + [sym_qualified_type] = STATE(1162), + [sym_fixed_array_type] = STATE(1203), + [sym_array_type] = STATE(1203), + [sym_pointer_type] = STATE(1203), + [sym_wrong_pointer_type] = STATE(1203), + [sym_map_type] = STATE(1203), + [sym_channel_type] = STATE(1203), + [sym_shared_type] = STATE(1203), + [sym_thread_type] = STATE(1203), + [sym_atomic_type] = STATE(1203), + [sym_generic_type] = STATE(1203), + [sym_function_type] = STATE(1203), + [sym_identifier] = ACTIONS(3482), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_RPAREN] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(607), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(607), - [sym_rune_literal] = ACTIONS(607), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(607), - [sym___single_quote] = ACTIONS(607), - [sym___c_double_quote] = ACTIONS(607), - [sym___c_single_quote] = ACTIONS(607), - [sym___r_double_quote] = ACTIONS(607), - [sym___r_single_quote] = ACTIONS(607), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_RPAREN] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [sym_pseudo_compile_time_identifier] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3500), + [anon_sym_map_LBRACK] = ACTIONS(3502), + [anon_sym_chan] = ACTIONS(3504), + [anon_sym_thread] = ACTIONS(3506), + [anon_sym_atomic] = ACTIONS(3508), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), }, - [970] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(1154), - [sym_plain_type] = STATE(1163), - [sym__plain_type_without_special] = STATE(1175), - [sym_anon_struct_type] = STATE(1167), - [sym_multi_return_type] = STATE(1175), - [sym_result_type] = STATE(1175), - [sym_option_type] = STATE(1175), - [sym_qualified_type] = STATE(1154), - [sym_fixed_array_type] = STATE(1167), - [sym_array_type] = STATE(1167), - [sym_pointer_type] = STATE(1167), - [sym_wrong_pointer_type] = STATE(1167), - [sym_map_type] = STATE(1167), - [sym_channel_type] = STATE(1167), - [sym_shared_type] = STATE(1167), - [sym_thread_type] = STATE(1167), - [sym_atomic_type] = STATE(1167), - [sym_generic_type] = STATE(1167), - [sym_function_type] = STATE(1167), - [sym_identifier] = ACTIONS(3476), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), + [974] = { + [sym_reference_expression] = STATE(4466), + [sym_type_reference_expression] = STATE(1162), + [sym_plain_type] = STATE(1167), + [sym__plain_type_without_special] = STATE(1170), + [sym_anon_struct_type] = STATE(1203), + [sym_multi_return_type] = STATE(1170), + [sym_result_type] = STATE(1170), + [sym_option_type] = STATE(1170), + [sym_qualified_type] = STATE(1162), + [sym_fixed_array_type] = STATE(1203), + [sym_array_type] = STATE(1203), + [sym_pointer_type] = STATE(1203), + [sym_wrong_pointer_type] = STATE(1203), + [sym_map_type] = STATE(1203), + [sym_channel_type] = STATE(1203), + [sym_shared_type] = STATE(1203), + [sym_thread_type] = STATE(1203), + [sym_atomic_type] = STATE(1203), + [sym_generic_type] = STATE(1203), + [sym_function_type] = STATE(1203), + [sym_identifier] = ACTIONS(3482), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3478), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3482), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3484), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_go] = ACTIONS(597), - [anon_sym_spawn] = ACTIONS(597), - [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(3490), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3492), - [anon_sym_LT_DASH] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_nil] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_select] = ACTIONS(597), - [anon_sym_lock] = ACTIONS(597), - [anon_sym_rlock] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_sql] = ACTIONS(597), - [sym_int_literal] = ACTIONS(597), - [sym_float_literal] = ACTIONS(597), - [sym_rune_literal] = ACTIONS(597), - [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3494), - [anon_sym_map_LBRACK] = ACTIONS(3496), - [anon_sym_chan] = ACTIONS(3498), - [anon_sym_thread] = ACTIONS(3500), - [anon_sym_atomic] = ACTIONS(3502), - [sym___double_quote] = ACTIONS(597), - [sym___single_quote] = ACTIONS(597), - [sym___c_double_quote] = ACTIONS(597), - [sym___c_single_quote] = ACTIONS(597), - [sym___r_double_quote] = ACTIONS(597), - [sym___r_single_quote] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_RPAREN] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3490), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(3496), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3498), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [sym_pseudo_compile_time_identifier] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3500), + [anon_sym_map_LBRACK] = ACTIONS(3502), + [anon_sym_chan] = ACTIONS(3504), + [anon_sym_thread] = ACTIONS(3506), + [anon_sym_atomic] = ACTIONS(3508), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, - [971] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(1154), - [sym_plain_type] = STATE(1193), - [sym__plain_type_without_special] = STATE(1175), - [sym_anon_struct_type] = STATE(1167), - [sym_multi_return_type] = STATE(1175), - [sym_result_type] = STATE(1175), - [sym_option_type] = STATE(1175), - [sym_qualified_type] = STATE(1154), - [sym_fixed_array_type] = STATE(1167), - [sym_array_type] = STATE(1167), - [sym_pointer_type] = STATE(1167), - [sym_wrong_pointer_type] = STATE(1167), - [sym_map_type] = STATE(1167), - [sym_channel_type] = STATE(1167), - [sym_shared_type] = STATE(1167), - [sym_thread_type] = STATE(1167), - [sym_atomic_type] = STATE(1167), - [sym_generic_type] = STATE(1167), - [sym_function_type] = STATE(1167), - [sym_identifier] = ACTIONS(3476), + [975] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [anon_sym_LF] = ACTIONS(563), [anon_sym_CR] = ACTIONS(563), [anon_sym_CR_LF] = ACTIONS(563), @@ -136841,13 +137304,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3480), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3482), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(563), @@ -136858,19 +137321,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(3484), + [anon_sym_struct] = ACTIONS(571), [anon_sym_mut] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3510), [anon_sym_go] = ACTIONS(563), [anon_sym_spawn] = ACTIONS(563), [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(3490), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_TILDE] = ACTIONS(563), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3492), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), @@ -136901,11 +137364,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(563), [sym_rune_literal] = ACTIONS(563), [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3494), - [anon_sym_map_LBRACK] = ACTIONS(3496), - [anon_sym_chan] = ACTIONS(3498), - [anon_sym_thread] = ACTIONS(3500), - [anon_sym_atomic] = ACTIONS(3502), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), [sym___double_quote] = ACTIONS(563), [sym___single_quote] = ACTIONS(563), [sym___c_double_quote] = ACTIONS(563), @@ -136913,2217 +137376,2113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(563), [sym___r_single_quote] = ACTIONS(563), }, - [972] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(1154), - [sym_plain_type] = STATE(1248), - [sym__plain_type_without_special] = STATE(1175), - [sym_anon_struct_type] = STATE(1167), - [sym_multi_return_type] = STATE(1175), - [sym_result_type] = STATE(1175), - [sym_option_type] = STATE(1175), - [sym_qualified_type] = STATE(1154), - [sym_fixed_array_type] = STATE(1167), - [sym_array_type] = STATE(1167), - [sym_pointer_type] = STATE(1167), - [sym_wrong_pointer_type] = STATE(1167), - [sym_map_type] = STATE(1167), - [sym_channel_type] = STATE(1167), - [sym_shared_type] = STATE(1167), - [sym_thread_type] = STATE(1167), - [sym_atomic_type] = STATE(1167), - [sym_generic_type] = STATE(1167), - [sym_function_type] = STATE(1167), - [sym_identifier] = ACTIONS(3476), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(495), - [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(3478), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3482), - [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(591), - [anon_sym_struct] = ACTIONS(3484), - [anon_sym_mut] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(593), - [anon_sym_LBRACK2] = ACTIONS(3490), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(3492), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(3494), - [anon_sym_map_LBRACK] = ACTIONS(3496), - [anon_sym_chan] = ACTIONS(3498), - [anon_sym_thread] = ACTIONS(3500), - [anon_sym_atomic] = ACTIONS(3502), - [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), - }, - [973] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(601), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_RPAREN] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(601), - [anon_sym_spawn] = ACTIONS(601), - [anon_sym_json_DOTdecode] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_DASH] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [sym_none] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_nil] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_DOLLARif] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_match] = ACTIONS(601), - [anon_sym_select] = ACTIONS(601), - [anon_sym_lock] = ACTIONS(601), - [anon_sym_rlock] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_sql] = ACTIONS(601), - [sym_int_literal] = ACTIONS(601), - [sym_float_literal] = ACTIONS(601), - [sym_rune_literal] = ACTIONS(601), - [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(601), - [anon_sym_map_LBRACK] = ACTIONS(601), - [anon_sym_chan] = ACTIONS(601), - [anon_sym_thread] = ACTIONS(601), - [anon_sym_atomic] = ACTIONS(601), - [sym___double_quote] = ACTIONS(601), - [sym___single_quote] = ACTIONS(601), - [sym___c_double_quote] = ACTIONS(601), - [sym___c_single_quote] = ACTIONS(601), - [sym___r_double_quote] = ACTIONS(601), - [sym___r_single_quote] = ACTIONS(601), - }, - [974] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [aux_sym_strictly_expression_list_repeat1] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(1717), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_CR] = ACTIONS(1717), - [anon_sym_CR_LF] = ACTIONS(1717), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(1717), - [anon_sym_spawn] = ACTIONS(1717), - [anon_sym_json_DOTdecode] = ACTIONS(1717), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(1717), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_nil] = ACTIONS(1717), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_DOLLARif] = ACTIONS(1717), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_select] = ACTIONS(1717), - [anon_sym_lock] = ACTIONS(1717), - [anon_sym_rlock] = ACTIONS(1717), - [anon_sym_unsafe] = ACTIONS(1717), - [anon_sym_sql] = ACTIONS(1717), - [sym_int_literal] = ACTIONS(1717), - [sym_float_literal] = ACTIONS(1717), - [sym_rune_literal] = ACTIONS(1717), - [sym_pseudo_compile_time_identifier] = ACTIONS(1717), - [anon_sym_shared] = ACTIONS(1717), - [anon_sym_map_LBRACK] = ACTIONS(1717), - [anon_sym_chan] = ACTIONS(1717), - [anon_sym_thread] = ACTIONS(1717), - [anon_sym_atomic] = ACTIONS(1717), - [anon_sym_assert] = ACTIONS(1717), - [anon_sym_defer] = ACTIONS(1717), - [anon_sym_goto] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_DOLLARfor] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(1717), - [anon_sym_asm] = ACTIONS(1717), - [anon_sym_AT_LBRACK] = ACTIONS(1717), - [sym___double_quote] = ACTIONS(1717), - [sym___single_quote] = ACTIONS(1717), - [sym___c_double_quote] = ACTIONS(1717), - [sym___c_single_quote] = ACTIONS(1717), - [sym___r_double_quote] = ACTIONS(1717), - [sym___r_single_quote] = ACTIONS(1717), - }, - [975] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), - }, [976] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_or] = ACTIONS(2059), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(2059), - [anon_sym_BANGis] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_BANGin] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), - [anon_sym_AT_LBRACK] = ACTIONS(2059), - [sym___double_quote] = ACTIONS(2059), - [sym___single_quote] = ACTIONS(2059), - [sym___c_double_quote] = ACTIONS(2059), - [sym___c_single_quote] = ACTIONS(2059), - [sym___r_double_quote] = ACTIONS(2059), - [sym___r_single_quote] = ACTIONS(2059), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(615), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_RPAREN] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(615), + [sym_rune_literal] = ACTIONS(615), + [sym_pseudo_compile_time_identifier] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(615), + [anon_sym_map_LBRACK] = ACTIONS(615), + [anon_sym_chan] = ACTIONS(615), + [anon_sym_thread] = ACTIONS(615), + [anon_sym_atomic] = ACTIONS(615), + [sym___double_quote] = ACTIONS(615), + [sym___single_quote] = ACTIONS(615), + [sym___c_double_quote] = ACTIONS(615), + [sym___c_single_quote] = ACTIONS(615), + [sym___r_double_quote] = ACTIONS(615), + [sym___r_single_quote] = ACTIONS(615), }, [977] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [aux_sym_strictly_expression_list_repeat1] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1719), + [anon_sym_CR] = ACTIONS(1719), + [anon_sym_CR_LF] = ACTIONS(1719), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_COMMA] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1719), + [anon_sym_union] = ACTIONS(1719), + [anon_sym_pub] = ACTIONS(1719), + [anon_sym_mut] = ACTIONS(1719), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_interface] = ACTIONS(1719), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1719), + [anon_sym_spawn] = ACTIONS(1719), + [anon_sym_json_DOTdecode] = ACTIONS(1719), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1719), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(1719), + [sym_true] = ACTIONS(1719), + [sym_false] = ACTIONS(1719), + [sym_nil] = ACTIONS(1719), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_DOLLARif] = ACTIONS(1719), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1719), + [anon_sym_select] = ACTIONS(1719), + [anon_sym_lock] = ACTIONS(1719), + [anon_sym_rlock] = ACTIONS(1719), + [anon_sym_unsafe] = ACTIONS(1719), + [anon_sym_sql] = ACTIONS(1719), + [sym_int_literal] = ACTIONS(1719), + [sym_float_literal] = ACTIONS(1719), + [sym_rune_literal] = ACTIONS(1719), + [sym_pseudo_compile_time_identifier] = ACTIONS(1719), + [anon_sym_shared] = ACTIONS(1719), + [anon_sym_map_LBRACK] = ACTIONS(1719), + [anon_sym_chan] = ACTIONS(1719), + [anon_sym_thread] = ACTIONS(1719), + [anon_sym_atomic] = ACTIONS(1719), + [anon_sym_assert] = ACTIONS(1719), + [anon_sym_defer] = ACTIONS(1719), + [anon_sym_goto] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_DOLLARfor] = ACTIONS(1719), + [anon_sym_for] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(1719), + [anon_sym_asm] = ACTIONS(1719), + [anon_sym_AT_LBRACK] = ACTIONS(1719), + [sym___double_quote] = ACTIONS(1719), + [sym___single_quote] = ACTIONS(1719), + [sym___c_double_quote] = ACTIONS(1719), + [sym___c_single_quote] = ACTIONS(1719), + [sym___r_double_quote] = ACTIONS(1719), + [sym___r_single_quote] = ACTIONS(1719), }, [978] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1877), - [sym_identifier] = ACTIONS(1879), - [anon_sym_LF] = ACTIONS(1879), - [anon_sym_CR] = ACTIONS(1879), - [anon_sym_CR_LF] = ACTIONS(1879), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_const] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(1879), - [anon_sym_type] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_fn] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_union] = ACTIONS(1879), - [anon_sym_pub] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_enum] = ACTIONS(1879), - [anon_sym_interface] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(1879), - [anon_sym_spawn] = ACTIONS(1879), - [anon_sym_json_DOTdecode] = ACTIONS(1879), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_LT_DASH] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_GT_GT_GT] = ACTIONS(1879), - [anon_sym_AMP_CARET] = ACTIONS(1879), - [anon_sym_AMP_AMP] = ACTIONS(1879), - [anon_sym_PIPE_PIPE] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1879), - [sym_none] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_nil] = ACTIONS(1879), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_DOLLARif] = ACTIONS(1879), - [anon_sym_is] = ACTIONS(1879), - [anon_sym_BANGis] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_BANGin] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1879), - [anon_sym_rlock] = ACTIONS(1879), - [anon_sym_unsafe] = ACTIONS(1879), - [anon_sym_sql] = ACTIONS(1879), - [sym_int_literal] = ACTIONS(1879), - [sym_float_literal] = ACTIONS(1879), - [sym_rune_literal] = ACTIONS(1879), - [sym_pseudo_compile_time_identifier] = ACTIONS(1879), - [anon_sym_shared] = ACTIONS(1879), - [anon_sym_map_LBRACK] = ACTIONS(1879), - [anon_sym_chan] = ACTIONS(1879), - [anon_sym_thread] = ACTIONS(1879), - [anon_sym_atomic] = ACTIONS(1879), - [anon_sym_assert] = ACTIONS(1879), - [anon_sym_defer] = ACTIONS(1879), - [anon_sym_goto] = ACTIONS(1879), - [anon_sym_break] = ACTIONS(1879), - [anon_sym_continue] = ACTIONS(1879), - [anon_sym_return] = ACTIONS(1879), - [anon_sym_DOLLARfor] = ACTIONS(1879), - [anon_sym_for] = ACTIONS(1879), - [anon_sym_POUND] = ACTIONS(1879), - [anon_sym_asm] = ACTIONS(1879), - [anon_sym_AT_LBRACK] = ACTIONS(1879), - [sym___double_quote] = ACTIONS(1879), - [sym___single_quote] = ACTIONS(1879), - [sym___c_double_quote] = ACTIONS(1879), - [sym___c_single_quote] = ACTIONS(1879), - [sym___r_double_quote] = ACTIONS(1879), - [sym___r_single_quote] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [979] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_CR] = ACTIONS(2041), - [anon_sym_CR_LF] = ACTIONS(2041), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_interface] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2041), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2041), - [anon_sym_AMP_CARET] = ACTIONS(2041), - [anon_sym_AMP_AMP] = ACTIONS(2041), - [anon_sym_PIPE_PIPE] = ACTIONS(2041), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2041), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), - [sym_rune_literal] = ACTIONS(2041), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2041), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), - [anon_sym_assert] = ACTIONS(2041), - [anon_sym_defer] = ACTIONS(2041), - [anon_sym_goto] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_DOLLARfor] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_POUND] = ACTIONS(2041), - [anon_sym_asm] = ACTIONS(2041), - [anon_sym_AT_LBRACK] = ACTIONS(2041), - [sym___double_quote] = ACTIONS(2041), - [sym___single_quote] = ACTIONS(2041), - [sym___c_double_quote] = ACTIONS(2041), - [sym___c_single_quote] = ACTIONS(2041), - [sym___r_double_quote] = ACTIONS(2041), - [sym___r_single_quote] = ACTIONS(2041), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1881), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_AMP_CARET] = ACTIONS(1881), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [980] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [981] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [982] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3548), - [anon_sym_LF] = ACTIONS(3548), - [anon_sym_CR] = ACTIONS(3548), - [anon_sym_CR_LF] = ACTIONS(3548), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1851), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LF] = ACTIONS(1853), + [anon_sym_CR] = ACTIONS(1853), + [anon_sym_CR_LF] = ACTIONS(1853), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3548), - [anon_sym_COMMA] = ACTIONS(3550), - [anon_sym_const] = ACTIONS(3548), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(3548), - [anon_sym_type] = ACTIONS(3548), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(3548), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3548), - [anon_sym_union] = ACTIONS(3548), - [anon_sym_pub] = ACTIONS(3548), - [anon_sym_mut] = ACTIONS(3548), - [anon_sym_enum] = ACTIONS(3548), - [anon_sym_interface] = ACTIONS(3548), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(3548), - [anon_sym_spawn] = ACTIONS(3548), - [anon_sym_json_DOTdecode] = ACTIONS(3548), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3548), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(3548), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(3548), - [sym_true] = ACTIONS(3548), - [sym_false] = ACTIONS(3548), - [sym_nil] = ACTIONS(3548), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(3548), - [anon_sym_DOLLARif] = ACTIONS(3548), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(3548), - [anon_sym_select] = ACTIONS(3548), - [anon_sym_lock] = ACTIONS(3548), - [anon_sym_rlock] = ACTIONS(3548), - [anon_sym_unsafe] = ACTIONS(3548), - [anon_sym_sql] = ACTIONS(3548), - [sym_int_literal] = ACTIONS(3548), - [sym_float_literal] = ACTIONS(3548), - [sym_rune_literal] = ACTIONS(3548), - [sym_pseudo_compile_time_identifier] = ACTIONS(3548), - [anon_sym_shared] = ACTIONS(3548), - [anon_sym_map_LBRACK] = ACTIONS(3548), - [anon_sym_chan] = ACTIONS(3548), - [anon_sym_thread] = ACTIONS(3548), - [anon_sym_atomic] = ACTIONS(3548), - [anon_sym_assert] = ACTIONS(3548), - [anon_sym_defer] = ACTIONS(3548), - [anon_sym_goto] = ACTIONS(3548), - [anon_sym_break] = ACTIONS(3548), - [anon_sym_continue] = ACTIONS(3548), - [anon_sym_return] = ACTIONS(3548), - [anon_sym_DOLLARfor] = ACTIONS(3548), - [anon_sym_for] = ACTIONS(3548), - [anon_sym_POUND] = ACTIONS(3548), - [anon_sym_asm] = ACTIONS(3548), - [anon_sym_AT_LBRACK] = ACTIONS(3548), - [sym___double_quote] = ACTIONS(3548), - [sym___single_quote] = ACTIONS(3548), - [sym___c_double_quote] = ACTIONS(3548), - [sym___c_single_quote] = ACTIONS(3548), - [sym___r_double_quote] = ACTIONS(3548), - [sym___r_single_quote] = ACTIONS(3548), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_const] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1853), + [anon_sym_type] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_union] = ACTIONS(1853), + [anon_sym_pub] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_enum] = ACTIONS(1853), + [anon_sym_interface] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_LT_DASH] = ACTIONS(1853), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1853), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_AMP_CARET] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_or] = ACTIONS(1853), + [sym_none] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_nil] = ACTIONS(1853), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_is] = ACTIONS(1853), + [anon_sym_BANGis] = ACTIONS(1853), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_BANGin] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_select] = ACTIONS(1853), + [anon_sym_lock] = ACTIONS(1853), + [anon_sym_rlock] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_sql] = ACTIONS(1853), + [sym_int_literal] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1853), + [sym_rune_literal] = ACTIONS(1853), + [sym_pseudo_compile_time_identifier] = ACTIONS(1853), + [anon_sym_shared] = ACTIONS(1853), + [anon_sym_map_LBRACK] = ACTIONS(1853), + [anon_sym_chan] = ACTIONS(1853), + [anon_sym_thread] = ACTIONS(1853), + [anon_sym_atomic] = ACTIONS(1853), + [anon_sym_assert] = ACTIONS(1853), + [anon_sym_defer] = ACTIONS(1853), + [anon_sym_goto] = ACTIONS(1853), + [anon_sym_break] = ACTIONS(1853), + [anon_sym_continue] = ACTIONS(1853), + [anon_sym_return] = ACTIONS(1853), + [anon_sym_DOLLARfor] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1853), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_asm] = ACTIONS(1853), + [anon_sym_AT_LBRACK] = ACTIONS(1853), + [sym___double_quote] = ACTIONS(1853), + [sym___single_quote] = ACTIONS(1853), + [sym___c_double_quote] = ACTIONS(1853), + [sym___c_single_quote] = ACTIONS(1853), + [sym___r_double_quote] = ACTIONS(1853), + [sym___r_single_quote] = ACTIONS(1853), }, [983] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2029), - [anon_sym_CR] = ACTIONS(2029), - [anon_sym_CR_LF] = ACTIONS(2029), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1867), + [sym_identifier] = ACTIONS(1869), + [anon_sym_LF] = ACTIONS(1869), + [anon_sym_CR] = ACTIONS(1869), + [anon_sym_CR_LF] = ACTIONS(1869), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_pub] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_interface] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2029), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2029), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(2029), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_nil] = ACTIONS(2029), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_DOLLARif] = ACTIONS(2029), - [anon_sym_is] = ACTIONS(3552), - [anon_sym_BANGis] = ACTIONS(3554), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(2029), - [anon_sym_rlock] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_sql] = ACTIONS(2029), - [sym_int_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), - [sym_rune_literal] = ACTIONS(2029), - [sym_pseudo_compile_time_identifier] = ACTIONS(2029), - [anon_sym_shared] = ACTIONS(2029), - [anon_sym_map_LBRACK] = ACTIONS(2029), - [anon_sym_chan] = ACTIONS(2029), - [anon_sym_thread] = ACTIONS(2029), - [anon_sym_atomic] = ACTIONS(2029), - [anon_sym_assert] = ACTIONS(2029), - [anon_sym_defer] = ACTIONS(2029), - [anon_sym_goto] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_DOLLARfor] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_POUND] = ACTIONS(2029), - [anon_sym_asm] = ACTIONS(2029), - [anon_sym_AT_LBRACK] = ACTIONS(2029), - [sym___double_quote] = ACTIONS(2029), - [sym___single_quote] = ACTIONS(2029), - [sym___c_double_quote] = ACTIONS(2029), - [sym___c_single_quote] = ACTIONS(2029), - [sym___r_double_quote] = ACTIONS(2029), - [sym___r_single_quote] = ACTIONS(2029), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1869), + [anon_sym_type] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_PERCENT] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(1869), + [anon_sym_GT_EQ] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_union] = ACTIONS(1869), + [anon_sym_pub] = ACTIONS(1869), + [anon_sym_mut] = ACTIONS(1869), + [anon_sym_enum] = ACTIONS(1869), + [anon_sym_interface] = ACTIONS(1869), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1869), + [anon_sym_spawn] = ACTIONS(1869), + [anon_sym_json_DOTdecode] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_LT_DASH] = ACTIONS(1869), + [anon_sym_LT_LT] = ACTIONS(1869), + [anon_sym_GT_GT] = ACTIONS(1869), + [anon_sym_GT_GT_GT] = ACTIONS(1869), + [anon_sym_AMP_CARET] = ACTIONS(1869), + [anon_sym_AMP_AMP] = ACTIONS(1869), + [anon_sym_PIPE_PIPE] = ACTIONS(1869), + [anon_sym_or] = ACTIONS(1869), + [sym_none] = ACTIONS(1869), + [sym_true] = ACTIONS(1869), + [sym_false] = ACTIONS(1869), + [sym_nil] = ACTIONS(1869), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_DOLLARif] = ACTIONS(1869), + [anon_sym_is] = ACTIONS(1869), + [anon_sym_BANGis] = ACTIONS(1869), + [anon_sym_in] = ACTIONS(1869), + [anon_sym_BANGin] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_select] = ACTIONS(1869), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_sql] = ACTIONS(1869), + [sym_int_literal] = ACTIONS(1869), + [sym_float_literal] = ACTIONS(1869), + [sym_rune_literal] = ACTIONS(1869), + [sym_pseudo_compile_time_identifier] = ACTIONS(1869), + [anon_sym_shared] = ACTIONS(1869), + [anon_sym_map_LBRACK] = ACTIONS(1869), + [anon_sym_chan] = ACTIONS(1869), + [anon_sym_thread] = ACTIONS(1869), + [anon_sym_atomic] = ACTIONS(1869), + [anon_sym_assert] = ACTIONS(1869), + [anon_sym_defer] = ACTIONS(1869), + [anon_sym_goto] = ACTIONS(1869), + [anon_sym_break] = ACTIONS(1869), + [anon_sym_continue] = ACTIONS(1869), + [anon_sym_return] = ACTIONS(1869), + [anon_sym_DOLLARfor] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1869), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_asm] = ACTIONS(1869), + [anon_sym_AT_LBRACK] = ACTIONS(1869), + [sym___double_quote] = ACTIONS(1869), + [sym___single_quote] = ACTIONS(1869), + [sym___c_double_quote] = ACTIONS(1869), + [sym___c_single_quote] = ACTIONS(1869), + [sym___r_double_quote] = ACTIONS(1869), + [sym___r_single_quote] = ACTIONS(1869), }, [984] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(1761), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_CR] = ACTIONS(1761), + [anon_sym_CR_LF] = ACTIONS(1761), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1761), + [anon_sym_type] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_pub] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1761), + [anon_sym_spawn] = ACTIONS(1761), + [anon_sym_json_DOTdecode] = ACTIONS(1761), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(1761), + [sym_true] = ACTIONS(1761), + [sym_false] = ACTIONS(1761), + [sym_nil] = ACTIONS(1761), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_DOLLARif] = ACTIONS(1761), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_select] = ACTIONS(1761), + [anon_sym_lock] = ACTIONS(1761), + [anon_sym_rlock] = ACTIONS(1761), + [anon_sym_unsafe] = ACTIONS(1761), + [anon_sym_sql] = ACTIONS(1761), + [sym_int_literal] = ACTIONS(1761), + [sym_float_literal] = ACTIONS(1761), + [sym_rune_literal] = ACTIONS(1761), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), + [anon_sym_shared] = ACTIONS(1761), + [anon_sym_map_LBRACK] = ACTIONS(1761), + [anon_sym_chan] = ACTIONS(1761), + [anon_sym_thread] = ACTIONS(1761), + [anon_sym_atomic] = ACTIONS(1761), + [anon_sym_assert] = ACTIONS(1761), + [anon_sym_defer] = ACTIONS(1761), + [anon_sym_goto] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_DOLLARfor] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1761), + [anon_sym_asm] = ACTIONS(1761), + [anon_sym_AT_LBRACK] = ACTIONS(1761), + [sym___double_quote] = ACTIONS(1761), + [sym___single_quote] = ACTIONS(1761), + [sym___c_double_quote] = ACTIONS(1761), + [sym___c_single_quote] = ACTIONS(1761), + [sym___r_double_quote] = ACTIONS(1761), + [sym___r_single_quote] = ACTIONS(1761), }, [985] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_LF] = ACTIONS(1865), + [anon_sym_CR] = ACTIONS(1865), + [anon_sym_CR_LF] = ACTIONS(1865), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_pub] = ACTIONS(1759), - [anon_sym_mut] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(1759), - [anon_sym_spawn] = ACTIONS(1759), - [anon_sym_json_DOTdecode] = ACTIONS(1759), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(1759), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_nil] = ACTIONS(1759), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_DOLLARif] = ACTIONS(1759), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_select] = ACTIONS(1759), - [anon_sym_lock] = ACTIONS(1759), - [anon_sym_rlock] = ACTIONS(1759), - [anon_sym_unsafe] = ACTIONS(1759), - [anon_sym_sql] = ACTIONS(1759), - [sym_int_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), - [sym_rune_literal] = ACTIONS(1759), - [sym_pseudo_compile_time_identifier] = ACTIONS(1759), - [anon_sym_shared] = ACTIONS(1759), - [anon_sym_map_LBRACK] = ACTIONS(1759), - [anon_sym_chan] = ACTIONS(1759), - [anon_sym_thread] = ACTIONS(1759), - [anon_sym_atomic] = ACTIONS(1759), - [anon_sym_assert] = ACTIONS(1759), - [anon_sym_defer] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_DOLLARfor] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_asm] = ACTIONS(1759), - [anon_sym_AT_LBRACK] = ACTIONS(1759), - [sym___double_quote] = ACTIONS(1759), - [sym___single_quote] = ACTIONS(1759), - [sym___c_double_quote] = ACTIONS(1759), - [sym___c_single_quote] = ACTIONS(1759), - [sym___r_double_quote] = ACTIONS(1759), - [sym___r_single_quote] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_LT_EQ] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_mut] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_interface] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1865), + [anon_sym_spawn] = ACTIONS(1865), + [anon_sym_json_DOTdecode] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1865), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(1865), + [anon_sym_PIPE_PIPE] = ACTIONS(1865), + [anon_sym_or] = ACTIONS(1865), + [sym_none] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_nil] = ACTIONS(1865), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1865), + [anon_sym_is] = ACTIONS(1865), + [anon_sym_BANGis] = ACTIONS(1865), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_BANGin] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_select] = ACTIONS(1865), + [anon_sym_lock] = ACTIONS(1865), + [anon_sym_rlock] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1865), + [sym_int_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1865), + [sym_rune_literal] = ACTIONS(1865), + [sym_pseudo_compile_time_identifier] = ACTIONS(1865), + [anon_sym_shared] = ACTIONS(1865), + [anon_sym_map_LBRACK] = ACTIONS(1865), + [anon_sym_chan] = ACTIONS(1865), + [anon_sym_thread] = ACTIONS(1865), + [anon_sym_atomic] = ACTIONS(1865), + [anon_sym_assert] = ACTIONS(1865), + [anon_sym_defer] = ACTIONS(1865), + [anon_sym_goto] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_DOLLARfor] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_asm] = ACTIONS(1865), + [anon_sym_AT_LBRACK] = ACTIONS(1865), + [sym___double_quote] = ACTIONS(1865), + [sym___single_quote] = ACTIONS(1865), + [sym___c_double_quote] = ACTIONS(1865), + [sym___c_single_quote] = ACTIONS(1865), + [sym___r_double_quote] = ACTIONS(1865), + [sym___r_single_quote] = ACTIONS(1865), }, [986] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [anon_sym_CR] = ACTIONS(2179), - [anon_sym_CR_LF] = ACTIONS(2179), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LF] = ACTIONS(2067), + [anon_sym_CR] = ACTIONS(2067), + [anon_sym_CR_LF] = ACTIONS(2067), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_GT] = ACTIONS(2179), - [anon_sym_EQ_EQ] = ACTIONS(2179), - [anon_sym_BANG_EQ] = ACTIONS(2179), - [anon_sym_LT_EQ] = ACTIONS(2179), - [anon_sym_GT_EQ] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_interface] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2179), - [anon_sym_spawn] = ACTIONS(2179), - [anon_sym_json_DOTdecode] = ACTIONS(2179), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(2179), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(2179), - [anon_sym_PIPE_PIPE] = ACTIONS(2179), - [anon_sym_or] = ACTIONS(2179), - [sym_none] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_nil] = ACTIONS(2179), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_DOLLARif] = ACTIONS(2179), - [anon_sym_is] = ACTIONS(2179), - [anon_sym_BANGis] = ACTIONS(2179), - [anon_sym_in] = ACTIONS(2179), - [anon_sym_BANGin] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_select] = ACTIONS(2179), - [anon_sym_lock] = ACTIONS(2179), - [anon_sym_rlock] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_sql] = ACTIONS(2179), - [sym_int_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_rune_literal] = ACTIONS(2179), - [sym_pseudo_compile_time_identifier] = ACTIONS(2179), - [anon_sym_shared] = ACTIONS(2179), - [anon_sym_map_LBRACK] = ACTIONS(2179), - [anon_sym_chan] = ACTIONS(2179), - [anon_sym_thread] = ACTIONS(2179), - [anon_sym_atomic] = ACTIONS(2179), - [anon_sym_assert] = ACTIONS(2179), - [anon_sym_defer] = ACTIONS(2179), - [anon_sym_goto] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_DOLLARfor] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_POUND] = ACTIONS(2179), - [anon_sym_asm] = ACTIONS(2179), - [anon_sym_AT_LBRACK] = ACTIONS(2179), - [sym___double_quote] = ACTIONS(2179), - [sym___single_quote] = ACTIONS(2179), - [sym___c_double_quote] = ACTIONS(2179), - [sym___c_single_quote] = ACTIONS(2179), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_union] = ACTIONS(2067), + [anon_sym_pub] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(2067), + [anon_sym_spawn] = ACTIONS(2067), + [anon_sym_json_DOTdecode] = ACTIONS(2067), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_or] = ACTIONS(2067), + [sym_none] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_nil] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_DOLLARif] = ACTIONS(2067), + [anon_sym_is] = ACTIONS(2067), + [anon_sym_BANGis] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_BANGin] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_select] = ACTIONS(2067), + [anon_sym_lock] = ACTIONS(2067), + [anon_sym_rlock] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_sql] = ACTIONS(2067), + [sym_int_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), + [sym_rune_literal] = ACTIONS(2067), + [sym_pseudo_compile_time_identifier] = ACTIONS(2067), + [anon_sym_shared] = ACTIONS(2067), + [anon_sym_map_LBRACK] = ACTIONS(2067), + [anon_sym_chan] = ACTIONS(2067), + [anon_sym_thread] = ACTIONS(2067), + [anon_sym_atomic] = ACTIONS(2067), + [anon_sym_assert] = ACTIONS(2067), + [anon_sym_defer] = ACTIONS(2067), + [anon_sym_goto] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_DOLLARfor] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_asm] = ACTIONS(2067), + [anon_sym_AT_LBRACK] = ACTIONS(2067), + [sym___double_quote] = ACTIONS(2067), + [sym___single_quote] = ACTIONS(2067), + [sym___c_double_quote] = ACTIONS(2067), + [sym___c_single_quote] = ACTIONS(2067), + [sym___r_double_quote] = ACTIONS(2067), + [sym___r_single_quote] = ACTIONS(2067), }, [987] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1839), - [anon_sym_CR] = ACTIONS(1839), - [anon_sym_CR_LF] = ACTIONS(1839), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1931), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_CR] = ACTIONS(1933), + [anon_sym_CR_LF] = ACTIONS(1933), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_pub] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_interface] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(1839), - [anon_sym_spawn] = ACTIONS(1839), - [anon_sym_json_DOTdecode] = ACTIONS(1839), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_nil] = ACTIONS(1839), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_select] = ACTIONS(1839), - [anon_sym_lock] = ACTIONS(1839), - [anon_sym_rlock] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1839), - [sym_int_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), - [sym_rune_literal] = ACTIONS(1839), - [sym_pseudo_compile_time_identifier] = ACTIONS(1839), - [anon_sym_shared] = ACTIONS(1839), - [anon_sym_map_LBRACK] = ACTIONS(1839), - [anon_sym_chan] = ACTIONS(1839), - [anon_sym_thread] = ACTIONS(1839), - [anon_sym_atomic] = ACTIONS(1839), - [anon_sym_assert] = ACTIONS(1839), - [anon_sym_defer] = ACTIONS(1839), - [anon_sym_goto] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_DOLLARfor] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_asm] = ACTIONS(1839), - [anon_sym_AT_LBRACK] = ACTIONS(1839), - [sym___double_quote] = ACTIONS(1839), - [sym___single_quote] = ACTIONS(1839), - [sym___c_double_quote] = ACTIONS(1839), - [sym___c_single_quote] = ACTIONS(1839), - [sym___r_double_quote] = ACTIONS(1839), - [sym___r_single_quote] = ACTIONS(1839), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_const] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1933), + [anon_sym_type] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_union] = ACTIONS(1933), + [anon_sym_pub] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_enum] = ACTIONS(1933), + [anon_sym_interface] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1933), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1933), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(3556), + [anon_sym_BANGis] = ACTIONS(3558), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), + [sym_rune_literal] = ACTIONS(1933), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1933), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [anon_sym_assert] = ACTIONS(1933), + [anon_sym_defer] = ACTIONS(1933), + [anon_sym_goto] = ACTIONS(1933), + [anon_sym_break] = ACTIONS(1933), + [anon_sym_continue] = ACTIONS(1933), + [anon_sym_return] = ACTIONS(1933), + [anon_sym_DOLLARfor] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1933), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_asm] = ACTIONS(1933), + [anon_sym_AT_LBRACK] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1933), + [sym___single_quote] = ACTIONS(1933), + [sym___c_double_quote] = ACTIONS(1933), + [sym___c_single_quote] = ACTIONS(1933), + [sym___r_double_quote] = ACTIONS(1933), + [sym___r_single_quote] = ACTIONS(1933), }, [988] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_LF] = ACTIONS(1835), - [anon_sym_CR] = ACTIONS(1835), - [anon_sym_CR_LF] = ACTIONS(1835), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(3514), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_STAR] = ACTIONS(3516), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_PERCENT] = ACTIONS(3516), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_GT] = ACTIONS(3518), - [anon_sym_EQ_EQ] = ACTIONS(3518), - [anon_sym_BANG_EQ] = ACTIONS(3518), - [anon_sym_LT_EQ] = ACTIONS(3518), - [anon_sym_GT_EQ] = ACTIONS(3518), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_pub] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(1835), - [anon_sym_spawn] = ACTIONS(1835), - [anon_sym_json_DOTdecode] = ACTIONS(1835), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(3514), - [anon_sym_AMP] = ACTIONS(3516), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(3516), - [anon_sym_GT_GT] = ACTIONS(3516), - [anon_sym_GT_GT_GT] = ACTIONS(3516), - [anon_sym_AMP_CARET] = ACTIONS(3516), - [anon_sym_AMP_AMP] = ACTIONS(3532), - [anon_sym_PIPE_PIPE] = ACTIONS(3534), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_nil] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_DOLLARif] = ACTIONS(1835), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3542), - [anon_sym_BANGin] = ACTIONS(3544), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1835), - [anon_sym_rlock] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1835), - [sym_int_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1835), - [sym_rune_literal] = ACTIONS(1835), - [sym_pseudo_compile_time_identifier] = ACTIONS(1835), - [anon_sym_shared] = ACTIONS(1835), - [anon_sym_map_LBRACK] = ACTIONS(1835), - [anon_sym_chan] = ACTIONS(1835), - [anon_sym_thread] = ACTIONS(1835), - [anon_sym_atomic] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_defer] = ACTIONS(1835), - [anon_sym_goto] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_DOLLARfor] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(1835), - [anon_sym_asm] = ACTIONS(1835), - [anon_sym_AT_LBRACK] = ACTIONS(1835), - [sym___double_quote] = ACTIONS(1835), - [sym___single_quote] = ACTIONS(1835), - [sym___c_double_quote] = ACTIONS(1835), - [sym___c_single_quote] = ACTIONS(1835), - [sym___r_double_quote] = ACTIONS(1835), - [sym___r_single_quote] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [989] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2177), - [sym_identifier] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [anon_sym_CR] = ACTIONS(2179), - [anon_sym_CR_LF] = ACTIONS(2179), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_const] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2179), - [anon_sym_type] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_GT] = ACTIONS(2179), - [anon_sym_EQ_EQ] = ACTIONS(2179), - [anon_sym_BANG_EQ] = ACTIONS(2179), - [anon_sym_LT_EQ] = ACTIONS(2179), - [anon_sym_GT_EQ] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_union] = ACTIONS(2179), - [anon_sym_pub] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_enum] = ACTIONS(2179), - [anon_sym_interface] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2179), - [anon_sym_spawn] = ACTIONS(2179), - [anon_sym_json_DOTdecode] = ACTIONS(2179), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(2179), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(2179), - [anon_sym_PIPE_PIPE] = ACTIONS(2179), - [anon_sym_or] = ACTIONS(2179), - [sym_none] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_nil] = ACTIONS(2179), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_DOLLARif] = ACTIONS(2179), - [anon_sym_is] = ACTIONS(2179), - [anon_sym_BANGis] = ACTIONS(2179), - [anon_sym_in] = ACTIONS(2179), - [anon_sym_BANGin] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_select] = ACTIONS(2179), - [anon_sym_lock] = ACTIONS(2179), - [anon_sym_rlock] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_sql] = ACTIONS(2179), - [sym_int_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_rune_literal] = ACTIONS(2179), - [sym_pseudo_compile_time_identifier] = ACTIONS(2179), - [anon_sym_shared] = ACTIONS(2179), - [anon_sym_map_LBRACK] = ACTIONS(2179), - [anon_sym_chan] = ACTIONS(2179), - [anon_sym_thread] = ACTIONS(2179), - [anon_sym_atomic] = ACTIONS(2179), - [anon_sym_assert] = ACTIONS(2179), - [anon_sym_defer] = ACTIONS(2179), - [anon_sym_goto] = ACTIONS(2179), - [anon_sym_break] = ACTIONS(2179), - [anon_sym_continue] = ACTIONS(2179), - [anon_sym_return] = ACTIONS(2179), - [anon_sym_DOLLARfor] = ACTIONS(2179), - [anon_sym_for] = ACTIONS(2179), - [anon_sym_POUND] = ACTIONS(2179), - [anon_sym_asm] = ACTIONS(2179), - [anon_sym_AT_LBRACK] = ACTIONS(2179), - [sym___double_quote] = ACTIONS(2179), - [sym___single_quote] = ACTIONS(2179), - [sym___c_double_quote] = ACTIONS(2179), - [sym___c_single_quote] = ACTIONS(2179), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [990] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(3562), - [sym_identifier] = ACTIONS(3564), - [anon_sym_LF] = ACTIONS(3564), - [anon_sym_CR] = ACTIONS(3564), - [anon_sym_CR_LF] = ACTIONS(3564), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_LF] = ACTIONS(1861), + [anon_sym_CR] = ACTIONS(1861), + [anon_sym_CR_LF] = ACTIONS(1861), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3564), - [anon_sym_const] = ACTIONS(3564), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(3564), - [anon_sym_type] = ACTIONS(3564), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(3564), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3564), - [anon_sym_union] = ACTIONS(3564), - [anon_sym_pub] = ACTIONS(3564), - [anon_sym_mut] = ACTIONS(3564), - [anon_sym_enum] = ACTIONS(3564), - [anon_sym_interface] = ACTIONS(3564), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(3564), - [anon_sym_spawn] = ACTIONS(3564), - [anon_sym_json_DOTdecode] = ACTIONS(3564), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3564), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(3564), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(3564), - [sym_true] = ACTIONS(3564), - [sym_false] = ACTIONS(3564), - [sym_nil] = ACTIONS(3564), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(3564), - [anon_sym_DOLLARif] = ACTIONS(3564), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3564), - [anon_sym_select] = ACTIONS(3564), - [anon_sym_lock] = ACTIONS(3564), - [anon_sym_rlock] = ACTIONS(3564), - [anon_sym_unsafe] = ACTIONS(3564), - [anon_sym_sql] = ACTIONS(3564), - [sym_int_literal] = ACTIONS(3564), - [sym_float_literal] = ACTIONS(3564), - [sym_rune_literal] = ACTIONS(3564), - [sym_pseudo_compile_time_identifier] = ACTIONS(3564), - [anon_sym_shared] = ACTIONS(3564), - [anon_sym_map_LBRACK] = ACTIONS(3564), - [anon_sym_chan] = ACTIONS(3564), - [anon_sym_thread] = ACTIONS(3564), - [anon_sym_atomic] = ACTIONS(3564), - [anon_sym_assert] = ACTIONS(3564), - [anon_sym_defer] = ACTIONS(3564), - [anon_sym_goto] = ACTIONS(3564), - [anon_sym_break] = ACTIONS(3564), - [anon_sym_continue] = ACTIONS(3564), - [anon_sym_return] = ACTIONS(3564), - [anon_sym_DOLLARfor] = ACTIONS(3564), - [anon_sym_for] = ACTIONS(3564), - [anon_sym_POUND] = ACTIONS(3564), - [anon_sym_asm] = ACTIONS(3564), - [anon_sym_AT_LBRACK] = ACTIONS(3564), - [sym___double_quote] = ACTIONS(3564), - [sym___single_quote] = ACTIONS(3564), - [sym___c_double_quote] = ACTIONS(3564), - [sym___c_single_quote] = ACTIONS(3564), - [sym___r_double_quote] = ACTIONS(3564), - [sym___r_single_quote] = ACTIONS(3564), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_interface] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1861), + [anon_sym_spawn] = ACTIONS(1861), + [anon_sym_json_DOTdecode] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(1861), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_nil] = ACTIONS(1861), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_DOLLARif] = ACTIONS(1861), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_select] = ACTIONS(1861), + [anon_sym_lock] = ACTIONS(1861), + [anon_sym_rlock] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_sql] = ACTIONS(1861), + [sym_int_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1861), + [sym_rune_literal] = ACTIONS(1861), + [sym_pseudo_compile_time_identifier] = ACTIONS(1861), + [anon_sym_shared] = ACTIONS(1861), + [anon_sym_map_LBRACK] = ACTIONS(1861), + [anon_sym_chan] = ACTIONS(1861), + [anon_sym_thread] = ACTIONS(1861), + [anon_sym_atomic] = ACTIONS(1861), + [anon_sym_assert] = ACTIONS(1861), + [anon_sym_defer] = ACTIONS(1861), + [anon_sym_goto] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_DOLLARfor] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_asm] = ACTIONS(1861), + [anon_sym_AT_LBRACK] = ACTIONS(1861), + [sym___double_quote] = ACTIONS(1861), + [sym___single_quote] = ACTIONS(1861), + [sym___c_double_quote] = ACTIONS(1861), + [sym___c_single_quote] = ACTIONS(1861), + [sym___r_double_quote] = ACTIONS(1861), + [sym___r_single_quote] = ACTIONS(1861), }, [991] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3578), - [anon_sym_LF] = ACTIONS(3578), - [anon_sym_CR] = ACTIONS(3578), - [anon_sym_CR_LF] = ACTIONS(3578), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3562), + [anon_sym_LF] = ACTIONS(3562), + [anon_sym_CR] = ACTIONS(3562), + [anon_sym_CR_LF] = ACTIONS(3562), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3578), - [anon_sym_const] = ACTIONS(3578), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(3578), - [anon_sym_type] = ACTIONS(3578), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(3578), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(3578), - [anon_sym_union] = ACTIONS(3578), - [anon_sym_pub] = ACTIONS(3578), - [anon_sym_mut] = ACTIONS(3578), - [anon_sym_enum] = ACTIONS(3578), - [anon_sym_interface] = ACTIONS(3578), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(3578), - [anon_sym_spawn] = ACTIONS(3578), - [anon_sym_json_DOTdecode] = ACTIONS(3578), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(3578), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(3578), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(3578), - [sym_true] = ACTIONS(3578), - [sym_false] = ACTIONS(3578), - [sym_nil] = ACTIONS(3578), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(3578), - [anon_sym_DOLLARif] = ACTIONS(3578), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(3578), - [anon_sym_select] = ACTIONS(3578), - [anon_sym_lock] = ACTIONS(3578), - [anon_sym_rlock] = ACTIONS(3578), - [anon_sym_unsafe] = ACTIONS(3578), - [anon_sym_sql] = ACTIONS(3578), - [sym_int_literal] = ACTIONS(3578), - [sym_float_literal] = ACTIONS(3578), - [sym_rune_literal] = ACTIONS(3578), - [sym_pseudo_compile_time_identifier] = ACTIONS(3578), - [anon_sym_shared] = ACTIONS(3578), - [anon_sym_map_LBRACK] = ACTIONS(3578), - [anon_sym_chan] = ACTIONS(3578), - [anon_sym_thread] = ACTIONS(3578), - [anon_sym_atomic] = ACTIONS(3578), - [anon_sym_assert] = ACTIONS(3578), - [anon_sym_defer] = ACTIONS(3578), - [anon_sym_goto] = ACTIONS(3578), - [anon_sym_break] = ACTIONS(3578), - [anon_sym_continue] = ACTIONS(3578), - [anon_sym_return] = ACTIONS(3578), - [anon_sym_DOLLARfor] = ACTIONS(3578), - [anon_sym_for] = ACTIONS(3578), - [anon_sym_POUND] = ACTIONS(3578), - [anon_sym_asm] = ACTIONS(3578), - [anon_sym_AT_LBRACK] = ACTIONS(3578), - [sym___double_quote] = ACTIONS(3578), - [sym___single_quote] = ACTIONS(3578), - [sym___c_double_quote] = ACTIONS(3578), - [sym___c_single_quote] = ACTIONS(3578), - [sym___r_double_quote] = ACTIONS(3578), - [sym___r_single_quote] = ACTIONS(3578), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3562), + [anon_sym_COMMA] = ACTIONS(3564), + [anon_sym_const] = ACTIONS(3562), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(3562), + [anon_sym_type] = ACTIONS(3562), + [anon_sym_PIPE] = ACTIONS(3522), + [anon_sym_fn] = ACTIONS(3562), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_STAR] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3524), + [anon_sym_PERCENT] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3526), + [anon_sym_GT] = ACTIONS(3526), + [anon_sym_EQ_EQ] = ACTIONS(3526), + [anon_sym_BANG_EQ] = ACTIONS(3526), + [anon_sym_LT_EQ] = ACTIONS(3526), + [anon_sym_GT_EQ] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3562), + [anon_sym_union] = ACTIONS(3562), + [anon_sym_pub] = ACTIONS(3562), + [anon_sym_mut] = ACTIONS(3562), + [anon_sym_enum] = ACTIONS(3562), + [anon_sym_interface] = ACTIONS(3562), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(3562), + [anon_sym_spawn] = ACTIONS(3562), + [anon_sym_json_DOTdecode] = ACTIONS(3562), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3562), + [anon_sym_CARET] = ACTIONS(3522), + [anon_sym_AMP] = ACTIONS(3524), + [anon_sym_LT_DASH] = ACTIONS(3562), + [anon_sym_LT_LT] = ACTIONS(3524), + [anon_sym_GT_GT] = ACTIONS(3524), + [anon_sym_GT_GT_GT] = ACTIONS(3524), + [anon_sym_AMP_CARET] = ACTIONS(3524), + [anon_sym_AMP_AMP] = ACTIONS(3540), + [anon_sym_PIPE_PIPE] = ACTIONS(3542), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(3562), + [sym_true] = ACTIONS(3562), + [sym_false] = ACTIONS(3562), + [sym_nil] = ACTIONS(3562), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3562), + [anon_sym_DOLLARif] = ACTIONS(3562), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3550), + [anon_sym_BANGin] = ACTIONS(3552), + [anon_sym_match] = ACTIONS(3562), + [anon_sym_select] = ACTIONS(3562), + [anon_sym_lock] = ACTIONS(3562), + [anon_sym_rlock] = ACTIONS(3562), + [anon_sym_unsafe] = ACTIONS(3562), + [anon_sym_sql] = ACTIONS(3562), + [sym_int_literal] = ACTIONS(3562), + [sym_float_literal] = ACTIONS(3562), + [sym_rune_literal] = ACTIONS(3562), + [sym_pseudo_compile_time_identifier] = ACTIONS(3562), + [anon_sym_shared] = ACTIONS(3562), + [anon_sym_map_LBRACK] = ACTIONS(3562), + [anon_sym_chan] = ACTIONS(3562), + [anon_sym_thread] = ACTIONS(3562), + [anon_sym_atomic] = ACTIONS(3562), + [anon_sym_assert] = ACTIONS(3562), + [anon_sym_defer] = ACTIONS(3562), + [anon_sym_goto] = ACTIONS(3562), + [anon_sym_break] = ACTIONS(3562), + [anon_sym_continue] = ACTIONS(3562), + [anon_sym_return] = ACTIONS(3562), + [anon_sym_DOLLARfor] = ACTIONS(3562), + [anon_sym_for] = ACTIONS(3562), + [anon_sym_POUND] = ACTIONS(3562), + [anon_sym_asm] = ACTIONS(3562), + [anon_sym_AT_LBRACK] = ACTIONS(3562), + [sym___double_quote] = ACTIONS(3562), + [sym___single_quote] = ACTIONS(3562), + [sym___c_double_quote] = ACTIONS(3562), + [sym___c_single_quote] = ACTIONS(3562), + [sym___r_double_quote] = ACTIONS(3562), + [sym___r_single_quote] = ACTIONS(3562), }, [992] = { - [sym_else_branch] = STATE(1116), - [ts_builtin_sym_end] = ACTIONS(2513), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LF] = ACTIONS(2515), - [anon_sym_CR] = ACTIONS(2515), - [anon_sym_CR_LF] = ACTIONS(2515), + [sym_else_branch] = STATE(1123), + [ts_builtin_sym_end] = ACTIONS(2633), + [sym_identifier] = ACTIONS(2635), + [anon_sym_LF] = ACTIONS(2635), + [anon_sym_CR] = ACTIONS(2635), + [anon_sym_CR_LF] = ACTIONS(2635), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_COMMA] = ACTIONS(2515), - [anon_sym_const] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym___global] = ACTIONS(2515), - [anon_sym_type] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2515), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), - [anon_sym_EQ_EQ] = ACTIONS(2515), - [anon_sym_BANG_EQ] = ACTIONS(2515), - [anon_sym_LT_EQ] = ACTIONS(2515), - [anon_sym_GT_EQ] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_union] = ACTIONS(2515), - [anon_sym_pub] = ACTIONS(2515), - [anon_sym_mut] = ACTIONS(2515), - [anon_sym_enum] = ACTIONS(2515), - [anon_sym_interface] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_QMARK] = ACTIONS(2515), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_go] = ACTIONS(2515), - [anon_sym_spawn] = ACTIONS(2515), - [anon_sym_json_DOTdecode] = ACTIONS(2515), - [anon_sym_LBRACK2] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_CARET] = ACTIONS(2515), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_LT_DASH] = ACTIONS(2515), - [anon_sym_LT_LT] = ACTIONS(2515), - [anon_sym_GT_GT] = ACTIONS(2515), - [anon_sym_GT_GT_GT] = ACTIONS(2515), - [anon_sym_AMP_CARET] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2515), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_or] = ACTIONS(2515), - [sym_none] = ACTIONS(2515), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_nil] = ACTIONS(2515), - [anon_sym_QMARK_DOT] = ACTIONS(2515), - [anon_sym_POUND_LBRACK] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(3580), - [anon_sym_DOLLARif] = ACTIONS(2515), - [anon_sym_is] = ACTIONS(2515), - [anon_sym_BANGis] = ACTIONS(2515), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_BANGin] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_select] = ACTIONS(2515), - [anon_sym_lock] = ACTIONS(2515), - [anon_sym_rlock] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_sql] = ACTIONS(2515), - [sym_int_literal] = ACTIONS(2515), - [sym_float_literal] = ACTIONS(2515), - [sym_rune_literal] = ACTIONS(2515), - [sym_pseudo_compile_time_identifier] = ACTIONS(2515), - [anon_sym_shared] = ACTIONS(2515), - [anon_sym_map_LBRACK] = ACTIONS(2515), - [anon_sym_chan] = ACTIONS(2515), - [anon_sym_thread] = ACTIONS(2515), - [anon_sym_atomic] = ACTIONS(2515), - [anon_sym_assert] = ACTIONS(2515), - [anon_sym_defer] = ACTIONS(2515), - [anon_sym_goto] = ACTIONS(2515), - [anon_sym_break] = ACTIONS(2515), - [anon_sym_continue] = ACTIONS(2515), - [anon_sym_return] = ACTIONS(2515), - [anon_sym_DOLLARfor] = ACTIONS(2515), - [anon_sym_for] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(2515), - [anon_sym_asm] = ACTIONS(2515), - [anon_sym_AT_LBRACK] = ACTIONS(2515), - [sym___double_quote] = ACTIONS(2515), - [sym___single_quote] = ACTIONS(2515), - [sym___c_double_quote] = ACTIONS(2515), - [sym___c_single_quote] = ACTIONS(2515), - [sym___r_double_quote] = ACTIONS(2515), - [sym___r_single_quote] = ACTIONS(2515), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_as] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [anon_sym_const] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym___global] = ACTIONS(2635), + [anon_sym_type] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_union] = ACTIONS(2635), + [anon_sym_pub] = ACTIONS(2635), + [anon_sym_mut] = ACTIONS(2635), + [anon_sym_enum] = ACTIONS(2635), + [anon_sym_interface] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_QMARK] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_go] = ACTIONS(2635), + [anon_sym_spawn] = ACTIONS(2635), + [anon_sym_json_DOTdecode] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_AMP_CARET] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [sym_none] = ACTIONS(2635), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_nil] = ACTIONS(2635), + [anon_sym_QMARK_DOT] = ACTIONS(2635), + [anon_sym_POUND_LBRACK] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(3566), + [anon_sym_DOLLARif] = ACTIONS(2635), + [anon_sym_is] = ACTIONS(2635), + [anon_sym_BANGis] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_BANGin] = ACTIONS(2635), + [anon_sym_match] = ACTIONS(2635), + [anon_sym_select] = ACTIONS(2635), + [anon_sym_lock] = ACTIONS(2635), + [anon_sym_rlock] = ACTIONS(2635), + [anon_sym_unsafe] = ACTIONS(2635), + [anon_sym_sql] = ACTIONS(2635), + [sym_int_literal] = ACTIONS(2635), + [sym_float_literal] = ACTIONS(2635), + [sym_rune_literal] = ACTIONS(2635), + [sym_pseudo_compile_time_identifier] = ACTIONS(2635), + [anon_sym_shared] = ACTIONS(2635), + [anon_sym_map_LBRACK] = ACTIONS(2635), + [anon_sym_chan] = ACTIONS(2635), + [anon_sym_thread] = ACTIONS(2635), + [anon_sym_atomic] = ACTIONS(2635), + [anon_sym_assert] = ACTIONS(2635), + [anon_sym_defer] = ACTIONS(2635), + [anon_sym_goto] = ACTIONS(2635), + [anon_sym_break] = ACTIONS(2635), + [anon_sym_continue] = ACTIONS(2635), + [anon_sym_return] = ACTIONS(2635), + [anon_sym_DOLLARfor] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2635), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_asm] = ACTIONS(2635), + [anon_sym_AT_LBRACK] = ACTIONS(2635), + [sym___double_quote] = ACTIONS(2635), + [sym___single_quote] = ACTIONS(2635), + [sym___c_double_quote] = ACTIONS(2635), + [sym___c_single_quote] = ACTIONS(2635), + [sym___r_double_quote] = ACTIONS(2635), + [sym___r_single_quote] = ACTIONS(2635), }, [993] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, + [994] = { + [sym_else_branch] = STATE(1124), + [ts_builtin_sym_end] = ACTIONS(2503), + [sym_identifier] = ACTIONS(2505), + [anon_sym_LF] = ACTIONS(2505), + [anon_sym_CR] = ACTIONS(2505), + [anon_sym_CR_LF] = ACTIONS(2505), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2505), + [anon_sym_const] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym___global] = ACTIONS(2505), + [anon_sym_type] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_SLASH] = ACTIONS(2505), + [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_GT] = ACTIONS(2505), + [anon_sym_EQ_EQ] = ACTIONS(2505), + [anon_sym_BANG_EQ] = ACTIONS(2505), + [anon_sym_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_EQ] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_union] = ACTIONS(2505), + [anon_sym_pub] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_enum] = ACTIONS(2505), + [anon_sym_interface] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_QMARK] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_go] = ACTIONS(2505), + [anon_sym_spawn] = ACTIONS(2505), + [anon_sym_json_DOTdecode] = ACTIONS(2505), + [anon_sym_LBRACK2] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_CARET] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_LT_DASH] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_GT_GT] = ACTIONS(2505), + [anon_sym_GT_GT_GT] = ACTIONS(2505), + [anon_sym_AMP_CARET] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_PIPE_PIPE] = ACTIONS(2505), + [anon_sym_or] = ACTIONS(2505), + [sym_none] = ACTIONS(2505), + [sym_true] = ACTIONS(2505), + [sym_false] = ACTIONS(2505), + [sym_nil] = ACTIONS(2505), + [anon_sym_QMARK_DOT] = ACTIONS(2505), + [anon_sym_POUND_LBRACK] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(3566), + [anon_sym_DOLLARif] = ACTIONS(2505), + [anon_sym_is] = ACTIONS(2505), + [anon_sym_BANGis] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2505), + [anon_sym_BANGin] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_select] = ACTIONS(2505), + [anon_sym_lock] = ACTIONS(2505), + [anon_sym_rlock] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_sql] = ACTIONS(2505), + [sym_int_literal] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2505), + [sym_rune_literal] = ACTIONS(2505), + [sym_pseudo_compile_time_identifier] = ACTIONS(2505), + [anon_sym_shared] = ACTIONS(2505), + [anon_sym_map_LBRACK] = ACTIONS(2505), + [anon_sym_chan] = ACTIONS(2505), + [anon_sym_thread] = ACTIONS(2505), + [anon_sym_atomic] = ACTIONS(2505), + [anon_sym_assert] = ACTIONS(2505), + [anon_sym_defer] = ACTIONS(2505), + [anon_sym_goto] = ACTIONS(2505), + [anon_sym_break] = ACTIONS(2505), + [anon_sym_continue] = ACTIONS(2505), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_DOLLARfor] = ACTIONS(2505), + [anon_sym_for] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2505), + [anon_sym_asm] = ACTIONS(2505), + [anon_sym_AT_LBRACK] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2505), + [sym___single_quote] = ACTIONS(2505), + [sym___c_double_quote] = ACTIONS(2505), + [sym___c_single_quote] = ACTIONS(2505), + [sym___r_double_quote] = ACTIONS(2505), + [sym___r_single_quote] = ACTIONS(2505), + }, + [995] = { + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1859), + [sym_identifier] = ACTIONS(1861), + [anon_sym_LF] = ACTIONS(1861), + [anon_sym_CR] = ACTIONS(1861), + [anon_sym_CR_LF] = ACTIONS(1861), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_const] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1861), + [anon_sym_type] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_union] = ACTIONS(1861), + [anon_sym_pub] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_enum] = ACTIONS(1861), + [anon_sym_interface] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1861), + [anon_sym_spawn] = ACTIONS(1861), + [anon_sym_json_DOTdecode] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(1861), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_nil] = ACTIONS(1861), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_DOLLARif] = ACTIONS(1861), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_select] = ACTIONS(1861), + [anon_sym_lock] = ACTIONS(1861), + [anon_sym_rlock] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_sql] = ACTIONS(1861), + [sym_int_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1861), + [sym_rune_literal] = ACTIONS(1861), + [sym_pseudo_compile_time_identifier] = ACTIONS(1861), + [anon_sym_shared] = ACTIONS(1861), + [anon_sym_map_LBRACK] = ACTIONS(1861), + [anon_sym_chan] = ACTIONS(1861), + [anon_sym_thread] = ACTIONS(1861), + [anon_sym_atomic] = ACTIONS(1861), + [anon_sym_assert] = ACTIONS(1861), + [anon_sym_defer] = ACTIONS(1861), + [anon_sym_goto] = ACTIONS(1861), + [anon_sym_break] = ACTIONS(1861), + [anon_sym_continue] = ACTIONS(1861), + [anon_sym_return] = ACTIONS(1861), + [anon_sym_DOLLARfor] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_asm] = ACTIONS(1861), + [anon_sym_AT_LBRACK] = ACTIONS(1861), + [sym___double_quote] = ACTIONS(1861), + [sym___single_quote] = ACTIONS(1861), + [sym___c_double_quote] = ACTIONS(1861), + [sym___c_single_quote] = ACTIONS(1861), + [sym___r_double_quote] = ACTIONS(1861), + [sym___r_single_quote] = ACTIONS(1861), + }, + [996] = { + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(3582), [sym_identifier] = ACTIONS(3584), [anon_sym_LF] = ACTIONS(3584), [anon_sym_CR] = ACTIONS(3584), [anon_sym_CR_LF] = ACTIONS(3584), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), [anon_sym_LBRACE] = ACTIONS(3584), [anon_sym_const] = ACTIONS(3584), - [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3520), [anon_sym___global] = ACTIONS(3584), [anon_sym_type] = ACTIONS(3584), - [anon_sym_PIPE] = ACTIONS(3558), + [anon_sym_PIPE] = ACTIONS(3568), [anon_sym_fn] = ACTIONS(3584), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3584), + [anon_sym_DASH] = ACTIONS(3584), + [anon_sym_STAR] = ACTIONS(3584), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), [anon_sym_struct] = ACTIONS(3584), [anon_sym_union] = ACTIONS(3584), [anon_sym_pub] = ACTIONS(3584), [anon_sym_mut] = ACTIONS(3584), [anon_sym_enum] = ACTIONS(3584), [anon_sym_interface] = ACTIONS(3584), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), [anon_sym_go] = ACTIONS(3584), [anon_sym_spawn] = ACTIONS(3584), [anon_sym_json_DOTdecode] = ACTIONS(3584), - [anon_sym_LBRACK2] = ACTIONS(3530), + [anon_sym_LBRACK2] = ACTIONS(3538), [anon_sym_TILDE] = ACTIONS(3584), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), + [anon_sym_CARET] = ACTIONS(3584), + [anon_sym_AMP] = ACTIONS(3584), [anon_sym_LT_DASH] = ACTIONS(3584), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_or] = ACTIONS(3536), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3544), [sym_none] = ACTIONS(3584), [sym_true] = ACTIONS(3584), [sym_false] = ACTIONS(3584), [sym_nil] = ACTIONS(3584), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), [anon_sym_if] = ACTIONS(3584), [anon_sym_DOLLARif] = ACTIONS(3584), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), [anon_sym_match] = ACTIONS(3584), [anon_sym_select] = ACTIONS(3584), [anon_sym_lock] = ACTIONS(3584), @@ -139157,781 +139516,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3584), [sym___r_single_quote] = ACTIONS(3584), }, - [994] = { - [sym_else_branch] = STATE(1120), - [ts_builtin_sym_end] = ACTIONS(2507), - [sym_identifier] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_CR] = ACTIONS(2509), - [anon_sym_CR_LF] = ACTIONS(2509), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_COMMA] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym___global] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2509), - [anon_sym_BANG_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_union] = ACTIONS(2509), - [anon_sym_pub] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_enum] = ACTIONS(2509), - [anon_sym_interface] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2509), - [anon_sym_AMP_CARET] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_PIPE_PIPE] = ACTIONS(2509), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2509), - [anon_sym_POUND_LBRACK] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(3580), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [anon_sym_assert] = ACTIONS(2509), - [anon_sym_defer] = ACTIONS(2509), - [anon_sym_goto] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_DOLLARfor] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_asm] = ACTIONS(2509), - [anon_sym_AT_LBRACK] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2509), - [sym___single_quote] = ACTIONS(2509), - [sym___c_double_quote] = ACTIONS(2509), - [sym___c_single_quote] = ACTIONS(2509), - [sym___r_double_quote] = ACTIONS(2509), - [sym___r_single_quote] = ACTIONS(2509), - }, - [995] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1833), - [sym_identifier] = ACTIONS(1835), - [anon_sym_LF] = ACTIONS(1835), - [anon_sym_CR] = ACTIONS(1835), - [anon_sym_CR_LF] = ACTIONS(1835), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_const] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(1835), - [anon_sym_type] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_union] = ACTIONS(1835), - [anon_sym_pub] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_enum] = ACTIONS(1835), - [anon_sym_interface] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(1835), - [anon_sym_spawn] = ACTIONS(1835), - [anon_sym_json_DOTdecode] = ACTIONS(1835), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_nil] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_DOLLARif] = ACTIONS(1835), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1835), - [anon_sym_rlock] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1835), - [sym_int_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1835), - [sym_rune_literal] = ACTIONS(1835), - [sym_pseudo_compile_time_identifier] = ACTIONS(1835), - [anon_sym_shared] = ACTIONS(1835), - [anon_sym_map_LBRACK] = ACTIONS(1835), - [anon_sym_chan] = ACTIONS(1835), - [anon_sym_thread] = ACTIONS(1835), - [anon_sym_atomic] = ACTIONS(1835), - [anon_sym_assert] = ACTIONS(1835), - [anon_sym_defer] = ACTIONS(1835), - [anon_sym_goto] = ACTIONS(1835), - [anon_sym_break] = ACTIONS(1835), - [anon_sym_continue] = ACTIONS(1835), - [anon_sym_return] = ACTIONS(1835), - [anon_sym_DOLLARfor] = ACTIONS(1835), - [anon_sym_for] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(1835), - [anon_sym_asm] = ACTIONS(1835), - [anon_sym_AT_LBRACK] = ACTIONS(1835), - [sym___double_quote] = ACTIONS(1835), - [sym___single_quote] = ACTIONS(1835), - [sym___c_double_quote] = ACTIONS(1835), - [sym___c_single_quote] = ACTIONS(1835), - [sym___r_double_quote] = ACTIONS(1835), - [sym___r_single_quote] = ACTIONS(1835), - }, - [996] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), - }, [997] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1847), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_const] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1849), + [anon_sym_type] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_union] = ACTIONS(1849), + [anon_sym_pub] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_enum] = ACTIONS(1849), + [anon_sym_interface] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [anon_sym_assert] = ACTIONS(1849), + [anon_sym_defer] = ACTIONS(1849), + [anon_sym_goto] = ACTIONS(1849), + [anon_sym_break] = ACTIONS(1849), + [anon_sym_continue] = ACTIONS(1849), + [anon_sym_return] = ACTIONS(1849), + [anon_sym_DOLLARfor] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_asm] = ACTIONS(1849), + [anon_sym_AT_LBRACK] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [998] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), - }, - [999] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2009), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_const] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2011), - [anon_sym_type] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_union] = ACTIONS(2011), - [anon_sym_pub] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_enum] = ACTIONS(2011), - [anon_sym_interface] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [anon_sym_assert] = ACTIONS(2011), - [anon_sym_defer] = ACTIONS(2011), - [anon_sym_goto] = ACTIONS(2011), - [anon_sym_break] = ACTIONS(2011), - [anon_sym_continue] = ACTIONS(2011), - [anon_sym_return] = ACTIONS(2011), - [anon_sym_DOLLARfor] = ACTIONS(2011), - [anon_sym_for] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_asm] = ACTIONS(2011), - [anon_sym_AT_LBRACK] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), - }, - [1000] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(1837), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1839), - [anon_sym_CR] = ACTIONS(1839), - [anon_sym_CR_LF] = ACTIONS(1839), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_const] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_union] = ACTIONS(1839), - [anon_sym_pub] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_enum] = ACTIONS(1839), - [anon_sym_interface] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(1839), - [anon_sym_spawn] = ACTIONS(1839), - [anon_sym_json_DOTdecode] = ACTIONS(1839), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_or] = ACTIONS(3536), - [sym_none] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_nil] = ACTIONS(1839), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_select] = ACTIONS(1839), - [anon_sym_lock] = ACTIONS(1839), - [anon_sym_rlock] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1839), - [sym_int_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), - [sym_rune_literal] = ACTIONS(1839), - [sym_pseudo_compile_time_identifier] = ACTIONS(1839), - [anon_sym_shared] = ACTIONS(1839), - [anon_sym_map_LBRACK] = ACTIONS(1839), - [anon_sym_chan] = ACTIONS(1839), - [anon_sym_thread] = ACTIONS(1839), - [anon_sym_atomic] = ACTIONS(1839), - [anon_sym_assert] = ACTIONS(1839), - [anon_sym_defer] = ACTIONS(1839), - [anon_sym_goto] = ACTIONS(1839), - [anon_sym_break] = ACTIONS(1839), - [anon_sym_continue] = ACTIONS(1839), - [anon_sym_return] = ACTIONS(1839), - [anon_sym_DOLLARfor] = ACTIONS(1839), - [anon_sym_for] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_asm] = ACTIONS(1839), - [anon_sym_AT_LBRACK] = ACTIONS(1839), - [sym___double_quote] = ACTIONS(1839), - [sym___single_quote] = ACTIONS(1839), - [sym___c_double_quote] = ACTIONS(1839), - [sym___c_single_quote] = ACTIONS(1839), - [sym___r_double_quote] = ACTIONS(1839), - [sym___r_single_quote] = ACTIONS(1839), - }, - [1001] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), [ts_builtin_sym_end] = ACTIONS(3586), [sym_identifier] = ACTIONS(3588), [anon_sym_LF] = ACTIONS(3588), [anon_sym_CR] = ACTIONS(3588), [anon_sym_CR_LF] = ACTIONS(3588), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(3508), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), [anon_sym_LBRACE] = ACTIONS(3588), [anon_sym_const] = ACTIONS(3588), - [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_LPAREN] = ACTIONS(3520), [anon_sym___global] = ACTIONS(3588), [anon_sym_type] = ACTIONS(3588), - [anon_sym_PIPE] = ACTIONS(3558), + [anon_sym_PIPE] = ACTIONS(3568), [anon_sym_fn] = ACTIONS(3588), - [anon_sym_PLUS] = ACTIONS(3588), - [anon_sym_DASH] = ACTIONS(3588), - [anon_sym_STAR] = ACTIONS(3588), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(3566), - [anon_sym_GT] = ACTIONS(3566), - [anon_sym_EQ_EQ] = ACTIONS(3566), - [anon_sym_BANG_EQ] = ACTIONS(3566), - [anon_sym_LT_EQ] = ACTIONS(3566), - [anon_sym_GT_EQ] = ACTIONS(3566), - [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), [anon_sym_struct] = ACTIONS(3588), [anon_sym_union] = ACTIONS(3588), [anon_sym_pub] = ACTIONS(3588), [anon_sym_mut] = ACTIONS(3588), [anon_sym_enum] = ACTIONS(3588), [anon_sym_interface] = ACTIONS(3588), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3524), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), [anon_sym_go] = ACTIONS(3588), [anon_sym_spawn] = ACTIONS(3588), [anon_sym_json_DOTdecode] = ACTIONS(3588), - [anon_sym_LBRACK2] = ACTIONS(3530), + [anon_sym_LBRACK2] = ACTIONS(3538), [anon_sym_TILDE] = ACTIONS(3588), - [anon_sym_CARET] = ACTIONS(3588), - [anon_sym_AMP] = ACTIONS(3588), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), [anon_sym_LT_DASH] = ACTIONS(3588), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(3568), - [anon_sym_PIPE_PIPE] = ACTIONS(3570), - [anon_sym_or] = ACTIONS(3536), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3544), [sym_none] = ACTIONS(3588), [sym_true] = ACTIONS(3588), [sym_false] = ACTIONS(3588), [sym_nil] = ACTIONS(3588), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), [anon_sym_if] = ACTIONS(3588), [anon_sym_DOLLARif] = ACTIONS(3588), - [anon_sym_is] = ACTIONS(3538), - [anon_sym_BANGis] = ACTIONS(3540), - [anon_sym_in] = ACTIONS(3572), - [anon_sym_BANGin] = ACTIONS(3574), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), [anon_sym_match] = ACTIONS(3588), [anon_sym_select] = ACTIONS(3588), [anon_sym_lock] = ACTIONS(3588), @@ -139965,941 +139718,1747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3588), [sym___r_single_quote] = ACTIONS(3588), }, + [999] = { + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3590), + [sym_identifier] = ACTIONS(3592), + [anon_sym_LF] = ACTIONS(3592), + [anon_sym_CR] = ACTIONS(3592), + [anon_sym_CR_LF] = ACTIONS(3592), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3592), + [anon_sym_const] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(3592), + [anon_sym_type] = ACTIONS(3592), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(3592), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3592), + [anon_sym_union] = ACTIONS(3592), + [anon_sym_pub] = ACTIONS(3592), + [anon_sym_mut] = ACTIONS(3592), + [anon_sym_enum] = ACTIONS(3592), + [anon_sym_interface] = ACTIONS(3592), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(3592), + [anon_sym_spawn] = ACTIONS(3592), + [anon_sym_json_DOTdecode] = ACTIONS(3592), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3592), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(3592), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(3592), + [sym_true] = ACTIONS(3592), + [sym_false] = ACTIONS(3592), + [sym_nil] = ACTIONS(3592), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3592), + [anon_sym_DOLLARif] = ACTIONS(3592), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), + [anon_sym_match] = ACTIONS(3592), + [anon_sym_select] = ACTIONS(3592), + [anon_sym_lock] = ACTIONS(3592), + [anon_sym_rlock] = ACTIONS(3592), + [anon_sym_unsafe] = ACTIONS(3592), + [anon_sym_sql] = ACTIONS(3592), + [sym_int_literal] = ACTIONS(3592), + [sym_float_literal] = ACTIONS(3592), + [sym_rune_literal] = ACTIONS(3592), + [sym_pseudo_compile_time_identifier] = ACTIONS(3592), + [anon_sym_shared] = ACTIONS(3592), + [anon_sym_map_LBRACK] = ACTIONS(3592), + [anon_sym_chan] = ACTIONS(3592), + [anon_sym_thread] = ACTIONS(3592), + [anon_sym_atomic] = ACTIONS(3592), + [anon_sym_assert] = ACTIONS(3592), + [anon_sym_defer] = ACTIONS(3592), + [anon_sym_goto] = ACTIONS(3592), + [anon_sym_break] = ACTIONS(3592), + [anon_sym_continue] = ACTIONS(3592), + [anon_sym_return] = ACTIONS(3592), + [anon_sym_DOLLARfor] = ACTIONS(3592), + [anon_sym_for] = ACTIONS(3592), + [anon_sym_POUND] = ACTIONS(3592), + [anon_sym_asm] = ACTIONS(3592), + [anon_sym_AT_LBRACK] = ACTIONS(3592), + [sym___double_quote] = ACTIONS(3592), + [sym___single_quote] = ACTIONS(3592), + [sym___c_double_quote] = ACTIONS(3592), + [sym___c_single_quote] = ACTIONS(3592), + [sym___r_double_quote] = ACTIONS(3592), + [sym___r_single_quote] = ACTIONS(3592), + }, + [1000] = { + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, + [1001] = { + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), + }, [1002] = { - [sym_type_parameters] = STATE(4283), - [sym_argument_list] = STATE(1056), - [sym_or_block] = STATE(1047), - [ts_builtin_sym_end] = ACTIONS(2057), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(3594), + [sym_identifier] = ACTIONS(3596), + [anon_sym_LF] = ACTIONS(3596), + [anon_sym_CR] = ACTIONS(3596), + [anon_sym_CR_LF] = ACTIONS(3596), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3506), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_const] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(3512), - [anon_sym___global] = ACTIONS(2059), - [anon_sym_type] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(3558), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(3558), - [anon_sym_DASH] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(3560), - [anon_sym_SLASH] = ACTIONS(3560), - [anon_sym_PERCENT] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(3520), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_union] = ACTIONS(2059), - [anon_sym_pub] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_enum] = ACTIONS(2059), - [anon_sym_interface] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_QMARK] = ACTIONS(3526), - [anon_sym_BANG] = ACTIONS(3528), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), - [anon_sym_LBRACK2] = ACTIONS(3530), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(3558), - [anon_sym_AMP] = ACTIONS(3560), - [anon_sym_LT_DASH] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(3560), - [anon_sym_GT_GT] = ACTIONS(3560), - [anon_sym_GT_GT_GT] = ACTIONS(3560), - [anon_sym_AMP_CARET] = ACTIONS(3560), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_or] = ACTIONS(2059), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(3506), - [anon_sym_POUND_LBRACK] = ACTIONS(3530), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(2059), - [anon_sym_BANGis] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_BANGin] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [anon_sym_assert] = ACTIONS(2059), - [anon_sym_defer] = ACTIONS(2059), - [anon_sym_goto] = ACTIONS(2059), - [anon_sym_break] = ACTIONS(2059), - [anon_sym_continue] = ACTIONS(2059), - [anon_sym_return] = ACTIONS(2059), - [anon_sym_DOLLARfor] = ACTIONS(2059), - [anon_sym_for] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_asm] = ACTIONS(2059), - [anon_sym_AT_LBRACK] = ACTIONS(2059), - [sym___double_quote] = ACTIONS(2059), - [sym___single_quote] = ACTIONS(2059), - [sym___c_double_quote] = ACTIONS(2059), - [sym___c_single_quote] = ACTIONS(2059), - [sym___r_double_quote] = ACTIONS(2059), - [sym___r_single_quote] = ACTIONS(2059), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(3516), + [anon_sym_LBRACE] = ACTIONS(3596), + [anon_sym_const] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(3596), + [anon_sym_type] = ACTIONS(3596), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(3596), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(3596), + [anon_sym_union] = ACTIONS(3596), + [anon_sym_pub] = ACTIONS(3596), + [anon_sym_mut] = ACTIONS(3596), + [anon_sym_enum] = ACTIONS(3596), + [anon_sym_interface] = ACTIONS(3596), + [anon_sym_PLUS_PLUS] = ACTIONS(3530), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(3596), + [anon_sym_spawn] = ACTIONS(3596), + [anon_sym_json_DOTdecode] = ACTIONS(3596), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(3596), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(3596), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(3580), + [anon_sym_or] = ACTIONS(3544), + [sym_none] = ACTIONS(3596), + [sym_true] = ACTIONS(3596), + [sym_false] = ACTIONS(3596), + [sym_nil] = ACTIONS(3596), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(3596), + [anon_sym_DOLLARif] = ACTIONS(3596), + [anon_sym_is] = ACTIONS(3546), + [anon_sym_BANGis] = ACTIONS(3548), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), + [anon_sym_match] = ACTIONS(3596), + [anon_sym_select] = ACTIONS(3596), + [anon_sym_lock] = ACTIONS(3596), + [anon_sym_rlock] = ACTIONS(3596), + [anon_sym_unsafe] = ACTIONS(3596), + [anon_sym_sql] = ACTIONS(3596), + [sym_int_literal] = ACTIONS(3596), + [sym_float_literal] = ACTIONS(3596), + [sym_rune_literal] = ACTIONS(3596), + [sym_pseudo_compile_time_identifier] = ACTIONS(3596), + [anon_sym_shared] = ACTIONS(3596), + [anon_sym_map_LBRACK] = ACTIONS(3596), + [anon_sym_chan] = ACTIONS(3596), + [anon_sym_thread] = ACTIONS(3596), + [anon_sym_atomic] = ACTIONS(3596), + [anon_sym_assert] = ACTIONS(3596), + [anon_sym_defer] = ACTIONS(3596), + [anon_sym_goto] = ACTIONS(3596), + [anon_sym_break] = ACTIONS(3596), + [anon_sym_continue] = ACTIONS(3596), + [anon_sym_return] = ACTIONS(3596), + [anon_sym_DOLLARfor] = ACTIONS(3596), + [anon_sym_for] = ACTIONS(3596), + [anon_sym_POUND] = ACTIONS(3596), + [anon_sym_asm] = ACTIONS(3596), + [anon_sym_AT_LBRACK] = ACTIONS(3596), + [sym___double_quote] = ACTIONS(3596), + [sym___single_quote] = ACTIONS(3596), + [sym___c_double_quote] = ACTIONS(3596), + [sym___c_single_quote] = ACTIONS(3596), + [sym___r_double_quote] = ACTIONS(3596), + [sym___r_single_quote] = ACTIONS(3596), }, [1003] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LF] = ACTIONS(2067), + [anon_sym_CR] = ACTIONS(2067), + [anon_sym_CR_LF] = ACTIONS(2067), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym___global] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_DOLLARelse] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), - [anon_sym_AT_LBRACK] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2865), - [sym___single_quote] = ACTIONS(2865), - [sym___c_double_quote] = ACTIONS(2865), - [sym___c_single_quote] = ACTIONS(2865), - [sym___r_double_quote] = ACTIONS(2865), - [sym___r_single_quote] = ACTIONS(2865), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_union] = ACTIONS(2067), + [anon_sym_pub] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(2067), + [anon_sym_spawn] = ACTIONS(2067), + [anon_sym_json_DOTdecode] = ACTIONS(2067), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_or] = ACTIONS(2067), + [sym_none] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_nil] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_DOLLARif] = ACTIONS(2067), + [anon_sym_is] = ACTIONS(2067), + [anon_sym_BANGis] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_BANGin] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_select] = ACTIONS(2067), + [anon_sym_lock] = ACTIONS(2067), + [anon_sym_rlock] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_sql] = ACTIONS(2067), + [sym_int_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), + [sym_rune_literal] = ACTIONS(2067), + [sym_pseudo_compile_time_identifier] = ACTIONS(2067), + [anon_sym_shared] = ACTIONS(2067), + [anon_sym_map_LBRACK] = ACTIONS(2067), + [anon_sym_chan] = ACTIONS(2067), + [anon_sym_thread] = ACTIONS(2067), + [anon_sym_atomic] = ACTIONS(2067), + [anon_sym_assert] = ACTIONS(2067), + [anon_sym_defer] = ACTIONS(2067), + [anon_sym_goto] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_DOLLARfor] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_POUND] = ACTIONS(2067), + [anon_sym_asm] = ACTIONS(2067), + [anon_sym_AT_LBRACK] = ACTIONS(2067), + [sym___double_quote] = ACTIONS(2067), + [sym___single_quote] = ACTIONS(2067), + [sym___c_double_quote] = ACTIONS(2067), + [sym___c_single_quote] = ACTIONS(2067), + [sym___r_double_quote] = ACTIONS(2067), + [sym___r_single_quote] = ACTIONS(2067), }, [1004] = { - [sym_reference_expression] = STATE(4398), - [sym_type_reference_expression] = STATE(1305), - [sym_plain_type] = STATE(1367), - [sym__plain_type_without_special] = STATE(1325), - [sym_anon_struct_type] = STATE(1331), - [sym_multi_return_type] = STATE(1325), - [sym_result_type] = STATE(1325), - [sym_option_type] = STATE(1325), - [sym_qualified_type] = STATE(1305), - [sym_fixed_array_type] = STATE(1331), - [sym_array_type] = STATE(1331), - [sym_pointer_type] = STATE(1331), - [sym_wrong_pointer_type] = STATE(1331), - [sym_map_type] = STATE(1331), - [sym_channel_type] = STATE(1331), - [sym_shared_type] = STATE(1331), - [sym_thread_type] = STATE(1331), - [sym_atomic_type] = STATE(1331), - [sym_generic_type] = STATE(1331), - [sym_function_type] = STATE(1331), - [sym_identifier] = ACTIONS(3590), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [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(3598), - [anon_sym_mut] = ACTIONS(593), - [anon_sym_COLON] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(591), - [anon_sym_LBRACK2] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(593), - [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(593), - [sym_none] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_nil] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_if] = ACTIONS(593), - [anon_sym_DOLLARif] = ACTIONS(593), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(591), - [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(591), - [sym_rune_literal] = ACTIONS(591), - [sym_pseudo_compile_time_identifier] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(3608), - [anon_sym_map_LBRACK] = ACTIONS(3610), - [anon_sym_chan] = ACTIONS(3612), - [anon_sym_thread] = ACTIONS(3614), - [anon_sym_atomic] = ACTIONS(3616), - [sym___double_quote] = ACTIONS(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), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1863), + [sym_identifier] = ACTIONS(1865), + [anon_sym_LF] = ACTIONS(1865), + [anon_sym_CR] = ACTIONS(1865), + [anon_sym_CR_LF] = ACTIONS(1865), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_const] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1865), + [anon_sym_type] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_LT_EQ] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_union] = ACTIONS(1865), + [anon_sym_pub] = ACTIONS(1865), + [anon_sym_mut] = ACTIONS(1865), + [anon_sym_enum] = ACTIONS(1865), + [anon_sym_interface] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1865), + [anon_sym_spawn] = ACTIONS(1865), + [anon_sym_json_DOTdecode] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(1865), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(1865), + [anon_sym_PIPE_PIPE] = ACTIONS(1865), + [anon_sym_or] = ACTIONS(1865), + [sym_none] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_nil] = ACTIONS(1865), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1865), + [anon_sym_is] = ACTIONS(1865), + [anon_sym_BANGis] = ACTIONS(1865), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_BANGin] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_select] = ACTIONS(1865), + [anon_sym_lock] = ACTIONS(1865), + [anon_sym_rlock] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1865), + [sym_int_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1865), + [sym_rune_literal] = ACTIONS(1865), + [sym_pseudo_compile_time_identifier] = ACTIONS(1865), + [anon_sym_shared] = ACTIONS(1865), + [anon_sym_map_LBRACK] = ACTIONS(1865), + [anon_sym_chan] = ACTIONS(1865), + [anon_sym_thread] = ACTIONS(1865), + [anon_sym_atomic] = ACTIONS(1865), + [anon_sym_assert] = ACTIONS(1865), + [anon_sym_defer] = ACTIONS(1865), + [anon_sym_goto] = ACTIONS(1865), + [anon_sym_break] = ACTIONS(1865), + [anon_sym_continue] = ACTIONS(1865), + [anon_sym_return] = ACTIONS(1865), + [anon_sym_DOLLARfor] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_asm] = ACTIONS(1865), + [anon_sym_AT_LBRACK] = ACTIONS(1865), + [sym___double_quote] = ACTIONS(1865), + [sym___single_quote] = ACTIONS(1865), + [sym___c_double_quote] = ACTIONS(1865), + [sym___c_single_quote] = ACTIONS(1865), + [sym___r_double_quote] = ACTIONS(1865), + [sym___r_single_quote] = ACTIONS(1865), }, [1005] = { - [sym_type_parameters] = STATE(1076), - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), + [sym_type_parameters] = STATE(4230), + [sym_argument_list] = STATE(1033), + [sym_or_block] = STATE(1030), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym___global] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2761), - [anon_sym_BANG_EQ] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_EQ] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_pub] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2761), - [anon_sym_AMP_CARET] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_PIPE_PIPE] = ACTIONS(2761), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2761), - [anon_sym_POUND_LBRACK] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2761), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [anon_sym_assert] = ACTIONS(2761), - [anon_sym_defer] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_DOLLARfor] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_POUND] = ACTIONS(2761), - [anon_sym_asm] = ACTIONS(2761), - [anon_sym_AT_LBRACK] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), + [anon_sym_DOT] = ACTIONS(3514), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_const] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym___global] = ACTIONS(1881), + [anon_sym_type] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3568), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_SLASH] = ACTIONS(3570), + [anon_sym_PERCENT] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(3572), + [anon_sym_GT] = ACTIONS(3572), + [anon_sym_EQ_EQ] = ACTIONS(3572), + [anon_sym_BANG_EQ] = ACTIONS(3572), + [anon_sym_LT_EQ] = ACTIONS(3572), + [anon_sym_GT_EQ] = ACTIONS(3572), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_union] = ACTIONS(1881), + [anon_sym_pub] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_enum] = ACTIONS(1881), + [anon_sym_interface] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3536), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3538), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3568), + [anon_sym_AMP] = ACTIONS(3570), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3570), + [anon_sym_GT_GT] = ACTIONS(3570), + [anon_sym_GT_GT_GT] = ACTIONS(3570), + [anon_sym_AMP_CARET] = ACTIONS(3570), + [anon_sym_AMP_AMP] = ACTIONS(3578), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3514), + [anon_sym_POUND_LBRACK] = ACTIONS(3538), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(3574), + [anon_sym_BANGin] = ACTIONS(3576), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [anon_sym_assert] = ACTIONS(1881), + [anon_sym_defer] = ACTIONS(1881), + [anon_sym_goto] = ACTIONS(1881), + [anon_sym_break] = ACTIONS(1881), + [anon_sym_continue] = ACTIONS(1881), + [anon_sym_return] = ACTIONS(1881), + [anon_sym_DOLLARfor] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_asm] = ACTIONS(1881), + [anon_sym_AT_LBRACK] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [1006] = { - [ts_builtin_sym_end] = ACTIONS(2853), - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_const] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym___global] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_union] = ACTIONS(2855), - [anon_sym_pub] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_enum] = ACTIONS(2855), - [anon_sym_interface] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_DOLLARelse] = ACTIONS(3618), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [anon_sym_assert] = ACTIONS(2855), - [anon_sym_defer] = ACTIONS(2855), - [anon_sym_goto] = ACTIONS(2855), - [anon_sym_break] = ACTIONS(2855), - [anon_sym_continue] = ACTIONS(2855), - [anon_sym_return] = ACTIONS(2855), - [anon_sym_DOLLARfor] = ACTIONS(2855), - [anon_sym_for] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_asm] = ACTIONS(2855), - [anon_sym_AT_LBRACK] = ACTIONS(2855), - [sym___double_quote] = ACTIONS(2855), - [sym___single_quote] = ACTIONS(2855), - [sym___c_double_quote] = ACTIONS(2855), - [sym___c_single_quote] = ACTIONS(2855), - [sym___r_double_quote] = ACTIONS(2855), - [sym___r_single_quote] = ACTIONS(2855), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_const] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym___global] = ACTIONS(2873), + [anon_sym_type] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_union] = ACTIONS(2873), + [anon_sym_pub] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_DOLLARelse] = ACTIONS(3598), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [anon_sym_assert] = ACTIONS(2873), + [anon_sym_defer] = ACTIONS(2873), + [anon_sym_goto] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_DOLLARfor] = ACTIONS(2873), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2873), + [anon_sym_asm] = ACTIONS(2873), + [anon_sym_AT_LBRACK] = ACTIONS(2873), + [sym___double_quote] = ACTIONS(2873), + [sym___single_quote] = ACTIONS(2873), + [sym___c_double_quote] = ACTIONS(2873), + [sym___c_single_quote] = ACTIONS(2873), + [sym___r_double_quote] = ACTIONS(2873), + [sym___r_single_quote] = ACTIONS(2873), }, [1007] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2685), + [anon_sym_CR] = ACTIONS(2685), + [anon_sym_CR_LF] = ACTIONS(2685), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_else] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym___global] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2685), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2685), + [anon_sym_AMP_CARET] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2685), + [anon_sym_POUND_LBRACK] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2685), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2685), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_defer] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_DOLLARfor] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_asm] = ACTIONS(2685), + [anon_sym_AT_LBRACK] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2685), + [sym___single_quote] = ACTIONS(2685), + [sym___c_double_quote] = ACTIONS(2685), + [sym___c_single_quote] = ACTIONS(2685), + [sym___r_double_quote] = ACTIONS(2685), + [sym___r_single_quote] = ACTIONS(2685), }, [1008] = { - [ts_builtin_sym_end] = ACTIONS(2679), - [sym_identifier] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2681), - [anon_sym_CR] = ACTIONS(2681), - [anon_sym_CR_LF] = ACTIONS(2681), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_as] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_COMMA] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym___global] = ACTIONS(2681), - [anon_sym_type] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_union] = ACTIONS(2681), - [anon_sym_pub] = ACTIONS(2681), - [anon_sym_mut] = ACTIONS(2681), - [anon_sym_enum] = ACTIONS(2681), - [anon_sym_interface] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_go] = ACTIONS(2681), - [anon_sym_spawn] = ACTIONS(2681), - [anon_sym_json_DOTdecode] = ACTIONS(2681), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_AMP_CARET] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [sym_none] = ACTIONS(2681), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_nil] = ACTIONS(2681), - [anon_sym_QMARK_DOT] = ACTIONS(2681), - [anon_sym_POUND_LBRACK] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_DOLLARif] = ACTIONS(2681), - [anon_sym_DOLLARelse] = ACTIONS(3620), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_BANGis] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_BANGin] = ACTIONS(2681), - [anon_sym_match] = ACTIONS(2681), - [anon_sym_select] = ACTIONS(2681), - [anon_sym_lock] = ACTIONS(2681), - [anon_sym_rlock] = ACTIONS(2681), - [anon_sym_unsafe] = ACTIONS(2681), - [anon_sym_sql] = ACTIONS(2681), - [sym_int_literal] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), - [sym_rune_literal] = ACTIONS(2681), - [sym_pseudo_compile_time_identifier] = ACTIONS(2681), - [anon_sym_shared] = ACTIONS(2681), - [anon_sym_map_LBRACK] = ACTIONS(2681), - [anon_sym_chan] = ACTIONS(2681), - [anon_sym_thread] = ACTIONS(2681), - [anon_sym_atomic] = ACTIONS(2681), - [anon_sym_assert] = ACTIONS(2681), - [anon_sym_defer] = ACTIONS(2681), - [anon_sym_goto] = ACTIONS(2681), - [anon_sym_break] = ACTIONS(2681), - [anon_sym_continue] = ACTIONS(2681), - [anon_sym_return] = ACTIONS(2681), - [anon_sym_DOLLARfor] = ACTIONS(2681), - [anon_sym_for] = ACTIONS(2681), - [anon_sym_POUND] = ACTIONS(2681), - [anon_sym_asm] = ACTIONS(2681), - [anon_sym_AT_LBRACK] = ACTIONS(2681), - [sym___double_quote] = ACTIONS(2681), - [sym___single_quote] = ACTIONS(2681), - [sym___c_double_quote] = ACTIONS(2681), - [sym___c_single_quote] = ACTIONS(2681), - [sym___r_double_quote] = ACTIONS(2681), - [sym___r_single_quote] = ACTIONS(2681), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_DOLLARelse] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), }, [1009] = { - [sym_reference_expression] = STATE(4398), - [sym_type_reference_expression] = STATE(1305), - [sym_plain_type] = STATE(1360), - [sym__plain_type_without_special] = STATE(1325), - [sym_anon_struct_type] = STATE(1331), - [sym_multi_return_type] = STATE(1325), - [sym_result_type] = STATE(1325), - [sym_option_type] = STATE(1325), - [sym_qualified_type] = STATE(1305), - [sym_fixed_array_type] = STATE(1331), - [sym_array_type] = STATE(1331), - [sym_pointer_type] = STATE(1331), - [sym_wrong_pointer_type] = STATE(1331), - [sym_map_type] = STATE(1331), - [sym_channel_type] = STATE(1331), - [sym_shared_type] = STATE(1331), - [sym_thread_type] = STATE(1331), - [sym_atomic_type] = STATE(1331), - [sym_generic_type] = STATE(1331), - [sym_function_type] = STATE(1331), - [sym_identifier] = ACTIONS(3590), + [sym_reference_expression] = STATE(4409), + [sym_type_reference_expression] = STATE(1307), + [sym_plain_type] = STATE(1331), + [sym__plain_type_without_special] = STATE(1352), + [sym_anon_struct_type] = STATE(1353), + [sym_multi_return_type] = STATE(1352), + [sym_result_type] = STATE(1352), + [sym_option_type] = STATE(1352), + [sym_qualified_type] = STATE(1307), + [sym_fixed_array_type] = STATE(1353), + [sym_array_type] = STATE(1353), + [sym_pointer_type] = STATE(1353), + [sym_wrong_pointer_type] = STATE(1353), + [sym_map_type] = STATE(1353), + [sym_channel_type] = STATE(1353), + [sym_shared_type] = STATE(1353), + [sym_thread_type] = STATE(1353), + [sym_atomic_type] = STATE(1353), + [sym_generic_type] = STATE(1353), + [sym_function_type] = STATE(1353), + [sym_identifier] = ACTIONS(3600), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3592), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3594), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3596), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3598), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_COLON] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), - [anon_sym_go] = ACTIONS(597), - [anon_sym_spawn] = ACTIONS(597), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(3604), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(3606), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_nil] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(597), - [anon_sym_select] = ACTIONS(597), - [anon_sym_lock] = ACTIONS(597), - [anon_sym_rlock] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_sql] = ACTIONS(597), - [sym_int_literal] = ACTIONS(597), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3608), - [anon_sym_map_LBRACK] = ACTIONS(3610), - [anon_sym_chan] = ACTIONS(3612), - [anon_sym_thread] = ACTIONS(3614), - [anon_sym_atomic] = ACTIONS(3616), - [sym___double_quote] = ACTIONS(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), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_RBRACE] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(581), + [anon_sym_LBRACK2] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(581), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(581), + [anon_sym_AMP_CARET] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(581), + [sym_rune_literal] = ACTIONS(581), + [sym_pseudo_compile_time_identifier] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3618), + [anon_sym_map_LBRACK] = ACTIONS(3620), + [anon_sym_chan] = ACTIONS(3622), + [anon_sym_thread] = ACTIONS(3624), + [anon_sym_atomic] = ACTIONS(3626), + [sym___double_quote] = ACTIONS(581), + [sym___single_quote] = ACTIONS(581), + [sym___c_double_quote] = ACTIONS(581), + [sym___c_single_quote] = ACTIONS(581), + [sym___r_double_quote] = ACTIONS(581), + [sym___r_single_quote] = ACTIONS(581), }, [1010] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(601), + [sym_reference_expression] = STATE(4409), + [sym_type_reference_expression] = STATE(1307), + [sym_plain_type] = STATE(1330), + [sym__plain_type_without_special] = STATE(1352), + [sym_anon_struct_type] = STATE(1353), + [sym_multi_return_type] = STATE(1352), + [sym_result_type] = STATE(1352), + [sym_option_type] = STATE(1352), + [sym_qualified_type] = STATE(1307), + [sym_fixed_array_type] = STATE(1353), + [sym_array_type] = STATE(1353), + [sym_pointer_type] = STATE(1353), + [sym_wrong_pointer_type] = STATE(1353), + [sym_map_type] = STATE(1353), + [sym_channel_type] = STATE(1353), + [sym_shared_type] = STATE(1353), + [sym_thread_type] = STATE(1353), + [sym_atomic_type] = STATE(1353), + [sym_generic_type] = STATE(1353), + [sym_function_type] = STATE(1353), + [sym_identifier] = ACTIONS(3600), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_RBRACE] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(601), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(601), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_go] = ACTIONS(601), - [anon_sym_spawn] = ACTIONS(601), - [anon_sym_json_DOTdecode] = ACTIONS(599), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_TILDE] = ACTIONS(599), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [sym_none] = ACTIONS(601), - [sym_true] = ACTIONS(601), - [sym_false] = ACTIONS(601), - [sym_nil] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_if] = ACTIONS(601), - [anon_sym_DOLLARif] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_match] = ACTIONS(601), - [anon_sym_select] = ACTIONS(601), - [anon_sym_lock] = ACTIONS(601), - [anon_sym_rlock] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_sql] = ACTIONS(601), - [sym_int_literal] = ACTIONS(601), - [sym_float_literal] = ACTIONS(599), - [sym_rune_literal] = ACTIONS(599), - [sym_pseudo_compile_time_identifier] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(601), - [anon_sym_map_LBRACK] = ACTIONS(599), - [anon_sym_chan] = ACTIONS(601), - [anon_sym_thread] = ACTIONS(601), - [anon_sym_atomic] = ACTIONS(601), - [sym___double_quote] = ACTIONS(599), - [sym___single_quote] = ACTIONS(599), - [sym___c_double_quote] = ACTIONS(599), - [sym___c_single_quote] = ACTIONS(599), - [sym___r_double_quote] = ACTIONS(599), - [sym___r_single_quote] = ACTIONS(599), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_RBRACE] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(617), + [anon_sym_LBRACK2] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(617), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(617), + [sym_rune_literal] = ACTIONS(617), + [sym_pseudo_compile_time_identifier] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3618), + [anon_sym_map_LBRACK] = ACTIONS(3620), + [anon_sym_chan] = ACTIONS(3622), + [anon_sym_thread] = ACTIONS(3624), + [anon_sym_atomic] = ACTIONS(3626), + [sym___double_quote] = ACTIONS(617), + [sym___single_quote] = ACTIONS(617), + [sym___c_double_quote] = ACTIONS(617), + [sym___c_single_quote] = ACTIONS(617), + [sym___r_double_quote] = ACTIONS(617), + [sym___r_single_quote] = ACTIONS(617), }, [1011] = { - [sym_reference_expression] = STATE(4398), - [sym_type_reference_expression] = STATE(1305), - [sym_plain_type] = STATE(1342), - [sym__plain_type_without_special] = STATE(1325), - [sym_anon_struct_type] = STATE(1331), - [sym_multi_return_type] = STATE(1325), - [sym_result_type] = STATE(1325), - [sym_option_type] = STATE(1325), - [sym_qualified_type] = STATE(1305), - [sym_fixed_array_type] = STATE(1331), - [sym_array_type] = STATE(1331), - [sym_pointer_type] = STATE(1331), - [sym_wrong_pointer_type] = STATE(1331), - [sym_map_type] = STATE(1331), - [sym_channel_type] = STATE(1331), - [sym_shared_type] = STATE(1331), - [sym_thread_type] = STATE(1331), - [sym_atomic_type] = STATE(1331), - [sym_generic_type] = STATE(1331), - [sym_function_type] = STATE(1331), - [sym_identifier] = ACTIONS(3590), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2685), + [anon_sym_CR] = ACTIONS(2685), + [anon_sym_CR_LF] = ACTIONS(2685), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym___global] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2685), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2685), + [anon_sym_AMP_CARET] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2685), + [anon_sym_POUND_LBRACK] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_DOLLARelse] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2685), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2685), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_defer] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_DOLLARfor] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_asm] = ACTIONS(2685), + [anon_sym_AT_LBRACK] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2685), + [sym___single_quote] = ACTIONS(2685), + [sym___c_double_quote] = ACTIONS(2685), + [sym___c_single_quote] = ACTIONS(2685), + [sym___r_double_quote] = ACTIONS(2685), + [sym___r_single_quote] = ACTIONS(2685), + }, + [1012] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [1013] = { + [sym_reference_expression] = STATE(4409), + [sym_type_reference_expression] = STATE(1307), + [sym_plain_type] = STATE(1324), + [sym__plain_type_without_special] = STATE(1352), + [sym_anon_struct_type] = STATE(1353), + [sym_multi_return_type] = STATE(1352), + [sym_result_type] = STATE(1352), + [sym_option_type] = STATE(1352), + [sym_qualified_type] = STATE(1307), + [sym_fixed_array_type] = STATE(1353), + [sym_array_type] = STATE(1353), + [sym_pointer_type] = STATE(1353), + [sym_wrong_pointer_type] = STATE(1353), + [sym_map_type] = STATE(1353), + [sym_channel_type] = STATE(1353), + [sym_shared_type] = STATE(1353), + [sym_thread_type] = STATE(1353), + [sym_atomic_type] = STATE(1353), + [sym_generic_type] = STATE(1353), + [sym_function_type] = STATE(1353), + [sym_identifier] = ACTIONS(3600), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_RBRACE] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3602), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3604), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3606), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3608), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3610), + [anon_sym_BANG] = ACTIONS(3612), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(621), + [anon_sym_LBRACK2] = ACTIONS(3614), + [anon_sym_TILDE] = ACTIONS(621), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(3616), + [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(621), + [sym_rune_literal] = ACTIONS(621), + [sym_pseudo_compile_time_identifier] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3618), + [anon_sym_map_LBRACK] = ACTIONS(3620), + [anon_sym_chan] = ACTIONS(3622), + [anon_sym_thread] = ACTIONS(3624), + [anon_sym_atomic] = ACTIONS(3626), + [sym___double_quote] = ACTIONS(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), + }, + [1014] = { + [sym_type_parameters] = STATE(1080), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), + }, + [1015] = { + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2643), + [anon_sym_LF] = ACTIONS(2643), + [anon_sym_CR] = ACTIONS(2643), + [anon_sym_CR_LF] = ACTIONS(2643), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym___global] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_pub] = ACTIONS(2643), + [anon_sym_mut] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_interface] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_QMARK] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_go] = ACTIONS(2643), + [anon_sym_spawn] = ACTIONS(2643), + [anon_sym_json_DOTdecode] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_AMP_CARET] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [sym_none] = ACTIONS(2643), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_nil] = ACTIONS(2643), + [anon_sym_QMARK_DOT] = ACTIONS(2643), + [anon_sym_POUND_LBRACK] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_DOLLARif] = ACTIONS(2643), + [anon_sym_DOLLARelse] = ACTIONS(3628), + [anon_sym_is] = ACTIONS(2643), + [anon_sym_BANGis] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_BANGin] = ACTIONS(2643), + [anon_sym_match] = ACTIONS(2643), + [anon_sym_select] = ACTIONS(2643), + [anon_sym_lock] = ACTIONS(2643), + [anon_sym_rlock] = ACTIONS(2643), + [anon_sym_unsafe] = ACTIONS(2643), + [anon_sym_sql] = ACTIONS(2643), + [sym_int_literal] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2643), + [sym_rune_literal] = ACTIONS(2643), + [sym_pseudo_compile_time_identifier] = ACTIONS(2643), + [anon_sym_shared] = ACTIONS(2643), + [anon_sym_map_LBRACK] = ACTIONS(2643), + [anon_sym_chan] = ACTIONS(2643), + [anon_sym_thread] = ACTIONS(2643), + [anon_sym_atomic] = ACTIONS(2643), + [anon_sym_assert] = ACTIONS(2643), + [anon_sym_defer] = ACTIONS(2643), + [anon_sym_goto] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_DOLLARfor] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_POUND] = ACTIONS(2643), + [anon_sym_asm] = ACTIONS(2643), + [anon_sym_AT_LBRACK] = ACTIONS(2643), + [sym___double_quote] = ACTIONS(2643), + [sym___single_quote] = ACTIONS(2643), + [sym___c_double_quote] = ACTIONS(2643), + [sym___c_single_quote] = ACTIONS(2643), + [sym___r_double_quote] = ACTIONS(2643), + [sym___r_single_quote] = ACTIONS(2643), + }, + [1016] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(563), [anon_sym_as] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_COMMA] = ACTIONS(559), [anon_sym_RBRACE] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3592), + [anon_sym_LPAREN] = ACTIONS(3630), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3594), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3596), + [anon_sym_STAR] = ACTIONS(3632), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(559), [anon_sym_LT] = ACTIONS(563), @@ -140910,20 +141469,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(559), [anon_sym_LBRACK] = ACTIONS(559), [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(3598), + [anon_sym_struct] = ACTIONS(571), [anon_sym_mut] = ACTIONS(563), [anon_sym_COLON] = ACTIONS(559), [anon_sym_PLUS_PLUS] = ACTIONS(559), [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(3600), - [anon_sym_BANG] = ACTIONS(3602), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3634), [anon_sym_go] = ACTIONS(563), [anon_sym_spawn] = ACTIONS(563), [anon_sym_json_DOTdecode] = ACTIONS(559), - [anon_sym_LBRACK2] = ACTIONS(3604), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_TILDE] = ACTIONS(559), [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(3606), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_DASH] = ACTIONS(559), [anon_sym_LT_LT] = ACTIONS(559), [anon_sym_GT_GT] = ACTIONS(563), @@ -140954,11 +141513,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(559), [sym_rune_literal] = ACTIONS(559), [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3608), - [anon_sym_map_LBRACK] = ACTIONS(3610), - [anon_sym_chan] = ACTIONS(3612), - [anon_sym_thread] = ACTIONS(3614), - [anon_sym_atomic] = ACTIONS(3616), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), [sym___double_quote] = ACTIONS(559), [sym___single_quote] = ACTIONS(559), [sym___c_double_quote] = ACTIONS(559), @@ -140966,1198 +141525,899 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(559), [sym___r_single_quote] = ACTIONS(559), }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_DOLLARelse] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), - }, - [1013] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), + [1017] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(615), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_RBRACE] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_RBRACK] = ACTIONS(603), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_RBRACE] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(615), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_RBRACK] = ACTIONS(613), [anon_sym_struct] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_COLON] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3626), - [anon_sym_go] = ACTIONS(607), - [anon_sym_spawn] = ACTIONS(607), - [anon_sym_json_DOTdecode] = ACTIONS(603), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_TILDE] = ACTIONS(603), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(603), - [anon_sym_AMP_CARET] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [sym_none] = ACTIONS(607), - [sym_true] = ACTIONS(607), - [sym_false] = ACTIONS(607), - [sym_nil] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_if] = ACTIONS(607), - [anon_sym_DOLLARif] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_match] = ACTIONS(607), - [anon_sym_select] = ACTIONS(607), - [anon_sym_lock] = ACTIONS(607), - [anon_sym_rlock] = ACTIONS(607), - [anon_sym_unsafe] = ACTIONS(607), - [anon_sym_sql] = ACTIONS(607), - [sym_int_literal] = ACTIONS(607), - [sym_float_literal] = ACTIONS(603), - [sym_rune_literal] = ACTIONS(603), - [sym_pseudo_compile_time_identifier] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [sym___double_quote] = ACTIONS(603), - [sym___single_quote] = ACTIONS(603), - [sym___c_double_quote] = ACTIONS(603), - [sym___c_single_quote] = ACTIONS(603), - [sym___r_double_quote] = ACTIONS(603), - [sym___r_single_quote] = ACTIONS(603), - }, - [1014] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym___global] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), - [anon_sym_AT_LBRACK] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2865), - [sym___single_quote] = ACTIONS(2865), - [sym___c_double_quote] = ACTIONS(2865), - [sym___c_single_quote] = ACTIONS(2865), - [sym___r_double_quote] = ACTIONS(2865), - [sym___r_single_quote] = ACTIONS(2865), - }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), - }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(2919), - [sym_identifier] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2921), - [anon_sym_CR] = ACTIONS(2921), - [anon_sym_CR_LF] = ACTIONS(2921), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_const] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym___global] = ACTIONS(2921), - [anon_sym_type] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [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(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_union] = ACTIONS(2921), - [anon_sym_pub] = ACTIONS(2921), - [anon_sym_mut] = ACTIONS(2921), - [anon_sym_enum] = ACTIONS(2921), - [anon_sym_interface] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_go] = ACTIONS(2921), - [anon_sym_spawn] = ACTIONS(2921), - [anon_sym_json_DOTdecode] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [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(2921), - [sym_none] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_nil] = ACTIONS(2921), - [anon_sym_QMARK_DOT] = ACTIONS(2921), - [anon_sym_POUND_LBRACK] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_DOLLARif] = ACTIONS(2921), - [anon_sym_is] = ACTIONS(2921), - [anon_sym_BANGis] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_BANGin] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [anon_sym_lock] = ACTIONS(2921), - [anon_sym_rlock] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_sql] = ACTIONS(2921), - [sym_int_literal] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2921), - [sym_rune_literal] = ACTIONS(2921), - [sym_pseudo_compile_time_identifier] = ACTIONS(2921), - [anon_sym_shared] = ACTIONS(2921), - [anon_sym_map_LBRACK] = ACTIONS(2921), - [anon_sym_chan] = ACTIONS(2921), - [anon_sym_thread] = ACTIONS(2921), - [anon_sym_atomic] = ACTIONS(2921), - [anon_sym_assert] = ACTIONS(2921), - [anon_sym_defer] = ACTIONS(2921), - [anon_sym_goto] = ACTIONS(2921), - [anon_sym_break] = ACTIONS(2921), - [anon_sym_continue] = ACTIONS(2921), - [anon_sym_return] = ACTIONS(2921), - [anon_sym_DOLLARfor] = ACTIONS(2921), - [anon_sym_for] = ACTIONS(2921), - [anon_sym_POUND] = ACTIONS(2921), - [anon_sym_asm] = ACTIONS(2921), - [anon_sym_AT_LBRACK] = ACTIONS(2921), - [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), - }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(3369), - [sym_identifier] = ACTIONS(3371), - [anon_sym_LF] = ACTIONS(3371), - [anon_sym_CR] = ACTIONS(3371), - [anon_sym_CR_LF] = ACTIONS(3371), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym___global] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_union] = ACTIONS(3371), - [anon_sym_pub] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3371), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3371), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3371), - [anon_sym_AMP_CARET] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3371), - [anon_sym_POUND_LBRACK] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3371), - [sym_rune_literal] = ACTIONS(3371), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3371), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [anon_sym_assert] = ACTIONS(3371), - [anon_sym_defer] = ACTIONS(3371), - [anon_sym_goto] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_DOLLARfor] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_POUND] = ACTIONS(3371), - [anon_sym_asm] = ACTIONS(3371), - [anon_sym_AT_LBRACK] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3371), - [sym___single_quote] = ACTIONS(3371), - [sym___c_double_quote] = ACTIONS(3371), - [sym___c_single_quote] = ACTIONS(3371), - [sym___r_double_quote] = ACTIONS(3371), - [sym___r_single_quote] = ACTIONS(3371), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_go] = ACTIONS(615), + [anon_sym_spawn] = ACTIONS(615), + [anon_sym_json_DOTdecode] = ACTIONS(613), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_TILDE] = ACTIONS(613), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [sym_none] = ACTIONS(615), + [sym_true] = ACTIONS(615), + [sym_false] = ACTIONS(615), + [sym_nil] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_if] = ACTIONS(615), + [anon_sym_DOLLARif] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_match] = ACTIONS(615), + [anon_sym_select] = ACTIONS(615), + [anon_sym_lock] = ACTIONS(615), + [anon_sym_rlock] = ACTIONS(615), + [anon_sym_unsafe] = ACTIONS(615), + [anon_sym_sql] = ACTIONS(615), + [sym_int_literal] = ACTIONS(615), + [sym_float_literal] = ACTIONS(613), + [sym_rune_literal] = ACTIONS(613), + [sym_pseudo_compile_time_identifier] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(615), + [anon_sym_map_LBRACK] = ACTIONS(613), + [anon_sym_chan] = ACTIONS(615), + [anon_sym_thread] = ACTIONS(615), + [anon_sym_atomic] = ACTIONS(615), + [sym___double_quote] = ACTIONS(613), + [sym___single_quote] = ACTIONS(613), + [sym___c_double_quote] = ACTIONS(613), + [sym___c_single_quote] = ACTIONS(613), + [sym___r_double_quote] = ACTIONS(613), + [sym___r_single_quote] = ACTIONS(613), }, [1018] = { - [ts_builtin_sym_end] = ACTIONS(2911), - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3229), + [anon_sym_LF] = ACTIONS(3229), + [anon_sym_CR] = ACTIONS(3229), + [anon_sym_CR_LF] = ACTIONS(3229), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_const] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym___global] = ACTIONS(2913), - [anon_sym_type] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_union] = ACTIONS(2913), - [anon_sym_pub] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_enum] = ACTIONS(2913), - [anon_sym_interface] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [anon_sym_assert] = ACTIONS(2913), - [anon_sym_defer] = ACTIONS(2913), - [anon_sym_goto] = ACTIONS(2913), - [anon_sym_break] = ACTIONS(2913), - [anon_sym_continue] = ACTIONS(2913), - [anon_sym_return] = ACTIONS(2913), - [anon_sym_DOLLARfor] = ACTIONS(2913), - [anon_sym_for] = ACTIONS(2913), - [anon_sym_POUND] = ACTIONS(2913), - [anon_sym_asm] = ACTIONS(2913), - [anon_sym_AT_LBRACK] = ACTIONS(2913), - [sym___double_quote] = ACTIONS(2913), - [sym___single_quote] = ACTIONS(2913), - [sym___c_double_quote] = ACTIONS(2913), - [sym___c_single_quote] = ACTIONS(2913), - [sym___r_double_quote] = ACTIONS(2913), - [sym___r_single_quote] = ACTIONS(2913), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [anon_sym_const] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym___global] = ACTIONS(3229), + [anon_sym_type] = ACTIONS(3229), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3229), + [anon_sym_union] = ACTIONS(3229), + [anon_sym_pub] = ACTIONS(3229), + [anon_sym_mut] = ACTIONS(3229), + [anon_sym_enum] = ACTIONS(3229), + [anon_sym_interface] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3229), + [anon_sym_spawn] = ACTIONS(3229), + [anon_sym_json_DOTdecode] = ACTIONS(3229), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3229), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_or] = ACTIONS(3229), + [sym_none] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_nil] = ACTIONS(3229), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_DOLLARif] = ACTIONS(3229), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3229), + [anon_sym_select] = ACTIONS(3229), + [anon_sym_lock] = ACTIONS(3229), + [anon_sym_rlock] = ACTIONS(3229), + [anon_sym_unsafe] = ACTIONS(3229), + [anon_sym_sql] = ACTIONS(3229), + [sym_int_literal] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3229), + [sym_rune_literal] = ACTIONS(3229), + [sym_pseudo_compile_time_identifier] = ACTIONS(3229), + [anon_sym_shared] = ACTIONS(3229), + [anon_sym_map_LBRACK] = ACTIONS(3229), + [anon_sym_chan] = ACTIONS(3229), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3229), + [anon_sym_assert] = ACTIONS(3229), + [anon_sym_defer] = ACTIONS(3229), + [anon_sym_goto] = ACTIONS(3229), + [anon_sym_break] = ACTIONS(3229), + [anon_sym_continue] = ACTIONS(3229), + [anon_sym_return] = ACTIONS(3229), + [anon_sym_DOLLARfor] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3229), + [anon_sym_POUND] = ACTIONS(3229), + [anon_sym_asm] = ACTIONS(3229), + [anon_sym_AT_LBRACK] = ACTIONS(3229), + [sym___double_quote] = ACTIONS(3229), + [sym___single_quote] = ACTIONS(3229), + [sym___c_double_quote] = ACTIONS(3229), + [sym___c_single_quote] = ACTIONS(3229), + [sym___r_double_quote] = ACTIONS(3229), + [sym___r_single_quote] = ACTIONS(3229), }, [1019] = { - [ts_builtin_sym_end] = ACTIONS(3373), - [sym_identifier] = ACTIONS(3375), - [anon_sym_LF] = ACTIONS(3375), - [anon_sym_CR] = ACTIONS(3375), - [anon_sym_CR_LF] = ACTIONS(3375), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3382), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_CR] = ACTIONS(3382), + [anon_sym_CR_LF] = ACTIONS(3382), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym___global] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_union] = ACTIONS(3375), - [anon_sym_pub] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3375), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3375), - [anon_sym_AMP_CARET] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3375), - [anon_sym_POUND_LBRACK] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3375), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3375), - [sym_rune_literal] = ACTIONS(3375), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3375), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [anon_sym_assert] = ACTIONS(3375), - [anon_sym_defer] = ACTIONS(3375), - [anon_sym_goto] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_DOLLARfor] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_POUND] = ACTIONS(3375), - [anon_sym_asm] = ACTIONS(3375), - [anon_sym_AT_LBRACK] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3375), - [sym___single_quote] = ACTIONS(3375), - [sym___c_double_quote] = ACTIONS(3375), - [sym___c_single_quote] = ACTIONS(3375), - [sym___r_double_quote] = ACTIONS(3375), - [sym___r_single_quote] = ACTIONS(3375), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym___global] = ACTIONS(3382), + [anon_sym_type] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_union] = ACTIONS(3382), + [anon_sym_pub] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3382), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3382), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3382), + [anon_sym_AMP_CARET] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3382), + [anon_sym_POUND_LBRACK] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3382), + [sym_rune_literal] = ACTIONS(3382), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3382), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [anon_sym_assert] = ACTIONS(3382), + [anon_sym_defer] = ACTIONS(3382), + [anon_sym_goto] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_DOLLARfor] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_POUND] = ACTIONS(3382), + [anon_sym_asm] = ACTIONS(3382), + [anon_sym_AT_LBRACK] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3382), + [sym___single_quote] = ACTIONS(3382), + [sym___c_double_quote] = ACTIONS(3382), + [sym___c_single_quote] = ACTIONS(3382), + [sym___r_double_quote] = ACTIONS(3382), + [sym___r_single_quote] = ACTIONS(3382), }, [1020] = { - [ts_builtin_sym_end] = ACTIONS(2869), - [sym_identifier] = ACTIONS(2867), - [anon_sym_LF] = ACTIONS(2867), - [anon_sym_CR] = ACTIONS(2867), - [anon_sym_CR_LF] = ACTIONS(2867), + [ts_builtin_sym_end] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3265), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_CR] = ACTIONS(3265), + [anon_sym_CR_LF] = ACTIONS(3265), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_as] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym___global] = ACTIONS(2867), - [anon_sym_type] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_fn] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_union] = ACTIONS(2867), - [anon_sym_pub] = ACTIONS(2867), - [anon_sym_mut] = ACTIONS(2867), - [anon_sym_enum] = ACTIONS(2867), - [anon_sym_interface] = ACTIONS(2867), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_go] = ACTIONS(2867), - [anon_sym_spawn] = ACTIONS(2867), - [anon_sym_json_DOTdecode] = ACTIONS(2867), - [anon_sym_LBRACK2] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_LT_DASH] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2867), - [anon_sym_GT_GT_GT] = ACTIONS(2867), - [anon_sym_AMP_CARET] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_or] = ACTIONS(2867), - [sym_none] = ACTIONS(2867), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [sym_nil] = ACTIONS(2867), - [anon_sym_QMARK_DOT] = ACTIONS(2867), - [anon_sym_POUND_LBRACK] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_DOLLARif] = ACTIONS(2867), - [anon_sym_is] = ACTIONS(2867), - [anon_sym_BANGis] = ACTIONS(2867), - [anon_sym_in] = ACTIONS(2867), - [anon_sym_BANGin] = ACTIONS(2867), - [anon_sym_match] = ACTIONS(2867), - [anon_sym_select] = ACTIONS(2867), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(2867), - [anon_sym_sql] = ACTIONS(2867), - [sym_int_literal] = ACTIONS(2867), - [sym_float_literal] = ACTIONS(2867), - [sym_rune_literal] = ACTIONS(2867), - [sym_pseudo_compile_time_identifier] = ACTIONS(2867), - [anon_sym_shared] = ACTIONS(2867), - [anon_sym_map_LBRACK] = ACTIONS(2867), - [anon_sym_chan] = ACTIONS(2867), - [anon_sym_thread] = ACTIONS(2867), - [anon_sym_atomic] = ACTIONS(2867), - [anon_sym_assert] = ACTIONS(2867), - [anon_sym_defer] = ACTIONS(2867), - [anon_sym_goto] = ACTIONS(2867), - [anon_sym_break] = ACTIONS(2867), - [anon_sym_continue] = ACTIONS(2867), - [anon_sym_return] = ACTIONS(2867), - [anon_sym_DOLLARfor] = ACTIONS(2867), - [anon_sym_for] = ACTIONS(2867), - [anon_sym_POUND] = ACTIONS(2867), - [anon_sym_asm] = ACTIONS(2867), - [anon_sym_AT_LBRACK] = ACTIONS(2867), - [sym___double_quote] = ACTIONS(2867), - [sym___single_quote] = ACTIONS(2867), - [sym___c_double_quote] = ACTIONS(2867), - [sym___c_single_quote] = ACTIONS(2867), - [sym___r_double_quote] = ACTIONS(2867), - [sym___r_single_quote] = ACTIONS(2867), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(3265), + [anon_sym_const] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym___global] = ACTIONS(3265), + [anon_sym_type] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_union] = ACTIONS(3265), + [anon_sym_pub] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_enum] = ACTIONS(3265), + [anon_sym_interface] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3265), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3265), + [anon_sym_POUND_LBRACK] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3265), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3265), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + [sym_rune_literal] = ACTIONS(3265), + [sym_pseudo_compile_time_identifier] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3265), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [anon_sym_assert] = ACTIONS(3265), + [anon_sym_defer] = ACTIONS(3265), + [anon_sym_goto] = ACTIONS(3265), + [anon_sym_break] = ACTIONS(3265), + [anon_sym_continue] = ACTIONS(3265), + [anon_sym_return] = ACTIONS(3265), + [anon_sym_DOLLARfor] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3265), + [anon_sym_POUND] = ACTIONS(3265), + [anon_sym_asm] = ACTIONS(3265), + [anon_sym_AT_LBRACK] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3265), + [sym___single_quote] = ACTIONS(3265), + [sym___c_double_quote] = ACTIONS(3265), + [sym___c_single_quote] = ACTIONS(3265), + [sym___r_double_quote] = ACTIONS(3265), + [sym___r_single_quote] = ACTIONS(3265), }, [1021] = { - [ts_builtin_sym_end] = ACTIONS(3403), - [sym_identifier] = ACTIONS(3405), - [anon_sym_LF] = ACTIONS(3405), - [anon_sym_CR] = ACTIONS(3405), - [anon_sym_CR_LF] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_as] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym___global] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_fn] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3405), - [anon_sym_union] = ACTIONS(3405), - [anon_sym_pub] = ACTIONS(3405), - [anon_sym_mut] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_go] = ACTIONS(3405), - [anon_sym_spawn] = ACTIONS(3405), - [anon_sym_json_DOTdecode] = ACTIONS(3405), - [anon_sym_LBRACK2] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_LT_LT] = ACTIONS(3405), - [anon_sym_GT_GT] = ACTIONS(3405), - [anon_sym_GT_GT_GT] = ACTIONS(3405), - [anon_sym_AMP_CARET] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [sym_none] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_nil] = ACTIONS(3405), - [anon_sym_QMARK_DOT] = ACTIONS(3405), - [anon_sym_POUND_LBRACK] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_DOLLARif] = ACTIONS(3405), - [anon_sym_is] = ACTIONS(3405), - [anon_sym_BANGis] = ACTIONS(3405), - [anon_sym_in] = ACTIONS(3405), - [anon_sym_BANGin] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_select] = ACTIONS(3405), - [anon_sym_lock] = ACTIONS(3405), - [anon_sym_rlock] = ACTIONS(3405), - [anon_sym_unsafe] = ACTIONS(3405), - [anon_sym_sql] = ACTIONS(3405), - [sym_int_literal] = ACTIONS(3405), - [sym_float_literal] = ACTIONS(3405), - [sym_rune_literal] = ACTIONS(3405), - [sym_pseudo_compile_time_identifier] = ACTIONS(3405), - [anon_sym_shared] = ACTIONS(3405), - [anon_sym_map_LBRACK] = ACTIONS(3405), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3405), - [anon_sym_atomic] = ACTIONS(3405), - [anon_sym_assert] = ACTIONS(3405), - [anon_sym_defer] = ACTIONS(3405), - [anon_sym_goto] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_DOLLARfor] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_asm] = ACTIONS(3405), - [anon_sym_AT_LBRACK] = ACTIONS(3405), - [sym___double_quote] = ACTIONS(3405), - [sym___single_quote] = ACTIONS(3405), - [sym___c_double_quote] = ACTIONS(3405), - [sym___c_single_quote] = ACTIONS(3405), - [sym___r_double_quote] = ACTIONS(3405), - [sym___r_single_quote] = ACTIONS(3405), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym___global] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_union] = ACTIONS(3237), + [anon_sym_pub] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [anon_sym_assert] = ACTIONS(3237), + [anon_sym_defer] = ACTIONS(3237), + [anon_sym_goto] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_DOLLARfor] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_asm] = ACTIONS(3237), + [anon_sym_AT_LBRACK] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3237), + [sym___single_quote] = ACTIONS(3237), + [sym___c_double_quote] = ACTIONS(3237), + [sym___c_single_quote] = ACTIONS(3237), + [sym___r_double_quote] = ACTIONS(3237), + [sym___r_single_quote] = ACTIONS(3237), }, [1022] = { - [ts_builtin_sym_end] = ACTIONS(3407), - [sym_identifier] = ACTIONS(3409), - [anon_sym_LF] = ACTIONS(3409), - [anon_sym_CR] = ACTIONS(3409), - [anon_sym_CR_LF] = ACTIONS(3409), + [ts_builtin_sym_end] = ACTIONS(3195), + [sym_identifier] = ACTIONS(3197), + [anon_sym_LF] = ACTIONS(3197), + [anon_sym_CR] = ACTIONS(3197), + [anon_sym_CR_LF] = ACTIONS(3197), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_as] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym___global] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_fn] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3409), - [anon_sym_union] = ACTIONS(3409), - [anon_sym_pub] = ACTIONS(3409), - [anon_sym_mut] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_go] = ACTIONS(3409), - [anon_sym_spawn] = ACTIONS(3409), - [anon_sym_json_DOTdecode] = ACTIONS(3409), - [anon_sym_LBRACK2] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_LT_LT] = ACTIONS(3409), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_GT_GT_GT] = ACTIONS(3409), - [anon_sym_AMP_CARET] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [sym_none] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_nil] = ACTIONS(3409), - [anon_sym_QMARK_DOT] = ACTIONS(3409), - [anon_sym_POUND_LBRACK] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_DOLLARif] = ACTIONS(3409), - [anon_sym_is] = ACTIONS(3409), - [anon_sym_BANGis] = ACTIONS(3409), - [anon_sym_in] = ACTIONS(3409), - [anon_sym_BANGin] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_select] = ACTIONS(3409), - [anon_sym_lock] = ACTIONS(3409), - [anon_sym_rlock] = ACTIONS(3409), - [anon_sym_unsafe] = ACTIONS(3409), - [anon_sym_sql] = ACTIONS(3409), - [sym_int_literal] = ACTIONS(3409), - [sym_float_literal] = ACTIONS(3409), - [sym_rune_literal] = ACTIONS(3409), - [sym_pseudo_compile_time_identifier] = ACTIONS(3409), - [anon_sym_shared] = ACTIONS(3409), - [anon_sym_map_LBRACK] = ACTIONS(3409), - [anon_sym_chan] = ACTIONS(3409), - [anon_sym_thread] = ACTIONS(3409), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(3409), - [anon_sym_defer] = ACTIONS(3409), - [anon_sym_goto] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_DOLLARfor] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_asm] = ACTIONS(3409), - [anon_sym_AT_LBRACK] = ACTIONS(3409), - [sym___double_quote] = ACTIONS(3409), - [sym___single_quote] = ACTIONS(3409), - [sym___c_double_quote] = ACTIONS(3409), - [sym___c_single_quote] = ACTIONS(3409), - [sym___r_double_quote] = ACTIONS(3409), - [sym___r_single_quote] = ACTIONS(3409), + [anon_sym_DOT] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_const] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym___global] = ACTIONS(3197), + [anon_sym_type] = ACTIONS(3197), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_fn] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_PERCENT] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3197), + [anon_sym_union] = ACTIONS(3197), + [anon_sym_pub] = ACTIONS(3197), + [anon_sym_mut] = ACTIONS(3197), + [anon_sym_enum] = ACTIONS(3197), + [anon_sym_interface] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_go] = ACTIONS(3197), + [anon_sym_spawn] = ACTIONS(3197), + [anon_sym_json_DOTdecode] = ACTIONS(3197), + [anon_sym_LBRACK2] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_CARET] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_LT_DASH] = ACTIONS(3197), + [anon_sym_LT_LT] = ACTIONS(3197), + [anon_sym_GT_GT] = ACTIONS(3197), + [anon_sym_GT_GT_GT] = ACTIONS(3197), + [anon_sym_AMP_CARET] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [sym_none] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_nil] = ACTIONS(3197), + [anon_sym_QMARK_DOT] = ACTIONS(3197), + [anon_sym_POUND_LBRACK] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_DOLLARif] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_BANGis] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_BANGin] = ACTIONS(3197), + [anon_sym_match] = ACTIONS(3197), + [anon_sym_select] = ACTIONS(3197), + [anon_sym_lock] = ACTIONS(3197), + [anon_sym_rlock] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(3197), + [anon_sym_sql] = ACTIONS(3197), + [sym_int_literal] = ACTIONS(3197), + [sym_float_literal] = ACTIONS(3197), + [sym_rune_literal] = ACTIONS(3197), + [sym_pseudo_compile_time_identifier] = ACTIONS(3197), + [anon_sym_shared] = ACTIONS(3197), + [anon_sym_map_LBRACK] = ACTIONS(3197), + [anon_sym_chan] = ACTIONS(3197), + [anon_sym_thread] = ACTIONS(3197), + [anon_sym_atomic] = ACTIONS(3197), + [anon_sym_assert] = ACTIONS(3197), + [anon_sym_defer] = ACTIONS(3197), + [anon_sym_goto] = ACTIONS(3197), + [anon_sym_break] = ACTIONS(3197), + [anon_sym_continue] = ACTIONS(3197), + [anon_sym_return] = ACTIONS(3197), + [anon_sym_DOLLARfor] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3197), + [anon_sym_POUND] = ACTIONS(3197), + [anon_sym_asm] = ACTIONS(3197), + [anon_sym_AT_LBRACK] = ACTIONS(3197), + [sym___double_quote] = ACTIONS(3197), + [sym___single_quote] = ACTIONS(3197), + [sym___c_double_quote] = ACTIONS(3197), + [sym___c_single_quote] = ACTIONS(3197), + [sym___r_double_quote] = ACTIONS(3197), + [sym___r_single_quote] = ACTIONS(3197), }, [1023] = { - [ts_builtin_sym_end] = ACTIONS(3415), - [sym_identifier] = ACTIONS(3417), - [anon_sym_LF] = ACTIONS(3417), - [anon_sym_CR] = ACTIONS(3417), - [anon_sym_CR_LF] = ACTIONS(3417), + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3253), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_CR] = ACTIONS(3253), + [anon_sym_CR_LF] = ACTIONS(3253), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_as] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym___global] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_fn] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_EQ_EQ] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3417), - [anon_sym_union] = ACTIONS(3417), - [anon_sym_pub] = ACTIONS(3417), - [anon_sym_mut] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_go] = ACTIONS(3417), - [anon_sym_spawn] = ACTIONS(3417), - [anon_sym_json_DOTdecode] = ACTIONS(3417), - [anon_sym_LBRACK2] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_LT_LT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3417), - [anon_sym_GT_GT_GT] = ACTIONS(3417), - [anon_sym_AMP_CARET] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [sym_none] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_nil] = ACTIONS(3417), - [anon_sym_QMARK_DOT] = ACTIONS(3417), - [anon_sym_POUND_LBRACK] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_DOLLARif] = ACTIONS(3417), - [anon_sym_is] = ACTIONS(3417), - [anon_sym_BANGis] = ACTIONS(3417), - [anon_sym_in] = ACTIONS(3417), - [anon_sym_BANGin] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_lock] = ACTIONS(3417), - [anon_sym_rlock] = ACTIONS(3417), - [anon_sym_unsafe] = ACTIONS(3417), - [anon_sym_sql] = ACTIONS(3417), - [sym_int_literal] = ACTIONS(3417), - [sym_float_literal] = ACTIONS(3417), - [sym_rune_literal] = ACTIONS(3417), - [sym_pseudo_compile_time_identifier] = ACTIONS(3417), - [anon_sym_shared] = ACTIONS(3417), - [anon_sym_map_LBRACK] = ACTIONS(3417), - [anon_sym_chan] = ACTIONS(3417), - [anon_sym_thread] = ACTIONS(3417), - [anon_sym_atomic] = ACTIONS(3417), - [anon_sym_assert] = ACTIONS(3417), - [anon_sym_defer] = ACTIONS(3417), - [anon_sym_goto] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_DOLLARfor] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_asm] = ACTIONS(3417), - [anon_sym_AT_LBRACK] = ACTIONS(3417), - [sym___double_quote] = ACTIONS(3417), - [sym___single_quote] = ACTIONS(3417), - [sym___c_double_quote] = ACTIONS(3417), - [sym___c_single_quote] = ACTIONS(3417), - [sym___r_double_quote] = ACTIONS(3417), - [sym___r_single_quote] = ACTIONS(3417), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_const] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym___global] = ACTIONS(3253), + [anon_sym_type] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_union] = ACTIONS(3253), + [anon_sym_pub] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_enum] = ACTIONS(3253), + [anon_sym_interface] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3253), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3253), + [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3253), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + [sym_rune_literal] = ACTIONS(3253), + [sym_pseudo_compile_time_identifier] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3253), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [anon_sym_assert] = ACTIONS(3253), + [anon_sym_defer] = ACTIONS(3253), + [anon_sym_goto] = ACTIONS(3253), + [anon_sym_break] = ACTIONS(3253), + [anon_sym_continue] = ACTIONS(3253), + [anon_sym_return] = ACTIONS(3253), + [anon_sym_DOLLARfor] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3253), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_asm] = ACTIONS(3253), + [anon_sym_AT_LBRACK] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3253), + [sym___single_quote] = ACTIONS(3253), + [sym___c_double_quote] = ACTIONS(3253), + [sym___c_single_quote] = ACTIONS(3253), + [sym___r_double_quote] = ACTIONS(3253), + [sym___r_single_quote] = ACTIONS(3253), }, [1024] = { + [ts_builtin_sym_end] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_CR] = ACTIONS(3295), + [anon_sym_CR_LF] = ACTIONS(3295), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_as] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym___global] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_fn] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_PERCENT] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_EQ_EQ] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_LT_EQ] = ACTIONS(3295), + [anon_sym_GT_EQ] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_union] = ACTIONS(3295), + [anon_sym_pub] = ACTIONS(3295), + [anon_sym_mut] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_go] = ACTIONS(3295), + [anon_sym_spawn] = ACTIONS(3295), + [anon_sym_json_DOTdecode] = ACTIONS(3295), + [anon_sym_LBRACK2] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_GT_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_CARET] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [sym_none] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_nil] = ACTIONS(3295), + [anon_sym_QMARK_DOT] = ACTIONS(3295), + [anon_sym_POUND_LBRACK] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_DOLLARif] = ACTIONS(3295), + [anon_sym_is] = ACTIONS(3295), + [anon_sym_BANGis] = ACTIONS(3295), + [anon_sym_in] = ACTIONS(3295), + [anon_sym_BANGin] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3295), + [anon_sym_select] = ACTIONS(3295), + [anon_sym_lock] = ACTIONS(3295), + [anon_sym_rlock] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_sql] = ACTIONS(3295), + [sym_int_literal] = ACTIONS(3295), + [sym_float_literal] = ACTIONS(3295), + [sym_rune_literal] = ACTIONS(3295), + [sym_pseudo_compile_time_identifier] = ACTIONS(3295), + [anon_sym_shared] = ACTIONS(3295), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3295), + [anon_sym_thread] = ACTIONS(3295), + [anon_sym_atomic] = ACTIONS(3295), + [anon_sym_assert] = ACTIONS(3295), + [anon_sym_defer] = ACTIONS(3295), + [anon_sym_goto] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_DOLLARfor] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(3295), + [anon_sym_asm] = ACTIONS(3295), + [anon_sym_AT_LBRACK] = ACTIONS(3295), + [sym___double_quote] = ACTIONS(3295), + [sym___single_quote] = ACTIONS(3295), + [sym___c_double_quote] = ACTIONS(3295), + [sym___c_single_quote] = ACTIONS(3295), + [sym___r_double_quote] = ACTIONS(3295), + [sym___r_single_quote] = ACTIONS(3295), + }, + [1025] = { + [ts_builtin_sym_end] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3420), + [anon_sym_LF] = ACTIONS(3420), + [anon_sym_CR] = ACTIONS(3420), + [anon_sym_CR_LF] = ACTIONS(3420), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_COMMA] = ACTIONS(3420), + [anon_sym_const] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym___global] = ACTIONS(3420), + [anon_sym_type] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_fn] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_LT_EQ] = ACTIONS(3420), + [anon_sym_GT_EQ] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(3420), + [anon_sym_union] = ACTIONS(3420), + [anon_sym_pub] = ACTIONS(3420), + [anon_sym_mut] = ACTIONS(3420), + [anon_sym_enum] = ACTIONS(3420), + [anon_sym_interface] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_QMARK] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3420), + [anon_sym_json_DOTdecode] = ACTIONS(3420), + [anon_sym_LBRACK2] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_CARET] = ACTIONS(3420), + [anon_sym_AMP] = ACTIONS(3420), + [anon_sym_LT_DASH] = ACTIONS(3420), + [anon_sym_LT_LT] = ACTIONS(3420), + [anon_sym_GT_GT] = ACTIONS(3420), + [anon_sym_GT_GT_GT] = ACTIONS(3420), + [anon_sym_AMP_CARET] = ACTIONS(3420), + [anon_sym_AMP_AMP] = ACTIONS(3420), + [anon_sym_PIPE_PIPE] = ACTIONS(3420), + [anon_sym_or] = ACTIONS(3420), + [sym_none] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_nil] = ACTIONS(3420), + [anon_sym_QMARK_DOT] = ACTIONS(3420), + [anon_sym_POUND_LBRACK] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_DOLLARif] = ACTIONS(3420), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_BANGin] = ACTIONS(3420), + [anon_sym_match] = ACTIONS(3420), + [anon_sym_select] = ACTIONS(3420), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_sql] = ACTIONS(3420), + [sym_int_literal] = ACTIONS(3420), + [sym_float_literal] = ACTIONS(3420), + [sym_rune_literal] = ACTIONS(3420), + [sym_pseudo_compile_time_identifier] = ACTIONS(3420), + [anon_sym_shared] = ACTIONS(3420), + [anon_sym_map_LBRACK] = ACTIONS(3420), + [anon_sym_chan] = ACTIONS(3420), + [anon_sym_thread] = ACTIONS(3420), + [anon_sym_atomic] = ACTIONS(3420), + [anon_sym_assert] = ACTIONS(3420), + [anon_sym_defer] = ACTIONS(3420), + [anon_sym_goto] = ACTIONS(3420), + [anon_sym_break] = ACTIONS(3420), + [anon_sym_continue] = ACTIONS(3420), + [anon_sym_return] = ACTIONS(3420), + [anon_sym_DOLLARfor] = ACTIONS(3420), + [anon_sym_for] = ACTIONS(3420), + [anon_sym_POUND] = ACTIONS(3420), + [anon_sym_asm] = ACTIONS(3420), + [anon_sym_AT_LBRACK] = ACTIONS(3420), + [sym___double_quote] = ACTIONS(3420), + [sym___single_quote] = ACTIONS(3420), + [sym___c_double_quote] = ACTIONS(3420), + [sym___c_single_quote] = ACTIONS(3420), + [sym___r_double_quote] = ACTIONS(3420), + [sym___r_single_quote] = ACTIONS(3420), + }, + [1026] = { [ts_builtin_sym_end] = ACTIONS(2979), [sym_identifier] = ACTIONS(2981), [anon_sym_LF] = ACTIONS(2981), @@ -142256,468 +142516,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2981), [sym___r_single_quote] = ACTIONS(2981), }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym___global] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_pub] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_defer] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_DOLLARfor] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym_AT_LBRACK] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), - }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym___global] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_pub] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_CARET] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_PIPE_PIPE] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [anon_sym_assert] = ACTIONS(3247), - [anon_sym_defer] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_DOLLARfor] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_POUND] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym_AT_LBRACK] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3247), - [sym___single_quote] = ACTIONS(3247), - [sym___c_double_quote] = ACTIONS(3247), - [sym___c_single_quote] = ACTIONS(3247), - [sym___r_double_quote] = ACTIONS(3247), - [sym___r_single_quote] = ACTIONS(3247), - }, [1027] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_CR] = ACTIONS(2895), + [anon_sym_CR_LF] = ACTIONS(2895), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_DOT] = ACTIONS(2895), + [anon_sym_as] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_COMMA] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym___global] = ACTIONS(2895), + [anon_sym_type] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [anon_sym_LT_EQ] = ACTIONS(2895), + [anon_sym_GT_EQ] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_pub] = ACTIONS(2895), + [anon_sym_mut] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_interface] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2895), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2895), + [anon_sym_go] = ACTIONS(2895), + [anon_sym_spawn] = ACTIONS(2895), + [anon_sym_json_DOTdecode] = ACTIONS(2895), + [anon_sym_LBRACK2] = ACTIONS(2895), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_LT_DASH] = ACTIONS(2895), + [anon_sym_LT_LT] = ACTIONS(2895), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_GT_GT_GT] = ACTIONS(2895), + [anon_sym_AMP_CARET] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_or] = ACTIONS(2895), + [sym_none] = ACTIONS(2895), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_nil] = ACTIONS(2895), + [anon_sym_QMARK_DOT] = ACTIONS(2895), + [anon_sym_POUND_LBRACK] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_is] = ACTIONS(2895), + [anon_sym_BANGis] = ACTIONS(2895), + [anon_sym_in] = ACTIONS(2895), + [anon_sym_BANGin] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2895), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2895), + [anon_sym_rlock] = ACTIONS(2895), + [anon_sym_unsafe] = ACTIONS(2895), + [anon_sym_sql] = ACTIONS(2895), + [sym_int_literal] = ACTIONS(2895), + [sym_float_literal] = ACTIONS(2895), + [sym_rune_literal] = ACTIONS(2895), + [sym_pseudo_compile_time_identifier] = ACTIONS(2895), + [anon_sym_shared] = ACTIONS(2895), + [anon_sym_map_LBRACK] = ACTIONS(2895), + [anon_sym_chan] = ACTIONS(2895), + [anon_sym_thread] = ACTIONS(2895), + [anon_sym_atomic] = ACTIONS(2895), + [anon_sym_assert] = ACTIONS(2895), + [anon_sym_defer] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_DOLLARfor] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_POUND] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym_AT_LBRACK] = ACTIONS(2895), + [sym___double_quote] = ACTIONS(2895), + [sym___single_quote] = ACTIONS(2895), + [sym___c_double_quote] = ACTIONS(2895), + [sym___c_single_quote] = ACTIONS(2895), + [sym___r_double_quote] = ACTIONS(2895), + [sym___r_single_quote] = ACTIONS(2895), }, [1028] = { - [ts_builtin_sym_end] = ACTIONS(2989), - [sym_identifier] = ACTIONS(2991), - [anon_sym_LF] = ACTIONS(2991), - [anon_sym_CR] = ACTIONS(2991), - [anon_sym_CR_LF] = ACTIONS(2991), + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_const] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym___global] = ACTIONS(2991), - [anon_sym_type] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_fn] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2991), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2991), - [anon_sym_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2991), - [anon_sym_union] = ACTIONS(2991), - [anon_sym_pub] = ACTIONS(2991), - [anon_sym_mut] = ACTIONS(2991), - [anon_sym_enum] = ACTIONS(2991), - [anon_sym_interface] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_go] = ACTIONS(2991), - [anon_sym_spawn] = ACTIONS(2991), - [anon_sym_json_DOTdecode] = ACTIONS(2991), - [anon_sym_LBRACK2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_LT_DASH] = ACTIONS(2991), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2991), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_AMP_CARET] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [sym_none] = ACTIONS(2991), - [sym_true] = ACTIONS(2991), - [sym_false] = ACTIONS(2991), - [sym_nil] = ACTIONS(2991), - [anon_sym_QMARK_DOT] = ACTIONS(2991), - [anon_sym_POUND_LBRACK] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_BANGis] = ACTIONS(2991), - [anon_sym_in] = ACTIONS(2991), - [anon_sym_BANGin] = ACTIONS(2991), - [anon_sym_match] = ACTIONS(2991), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_lock] = ACTIONS(2991), - [anon_sym_rlock] = ACTIONS(2991), - [anon_sym_unsafe] = ACTIONS(2991), - [anon_sym_sql] = ACTIONS(2991), - [sym_int_literal] = ACTIONS(2991), - [sym_float_literal] = ACTIONS(2991), - [sym_rune_literal] = ACTIONS(2991), - [sym_pseudo_compile_time_identifier] = ACTIONS(2991), - [anon_sym_shared] = ACTIONS(2991), - [anon_sym_map_LBRACK] = ACTIONS(2991), - [anon_sym_chan] = ACTIONS(2991), - [anon_sym_thread] = ACTIONS(2991), - [anon_sym_atomic] = ACTIONS(2991), - [anon_sym_assert] = ACTIONS(2991), - [anon_sym_defer] = ACTIONS(2991), - [anon_sym_goto] = ACTIONS(2991), - [anon_sym_break] = ACTIONS(2991), - [anon_sym_continue] = ACTIONS(2991), - [anon_sym_return] = ACTIONS(2991), - [anon_sym_DOLLARfor] = ACTIONS(2991), - [anon_sym_for] = ACTIONS(2991), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_asm] = ACTIONS(2991), - [anon_sym_AT_LBRACK] = ACTIONS(2991), - [sym___double_quote] = ACTIONS(2991), - [sym___single_quote] = ACTIONS(2991), - [sym___c_double_quote] = ACTIONS(2991), - [sym___c_single_quote] = ACTIONS(2991), - [sym___r_double_quote] = ACTIONS(2991), - [sym___r_single_quote] = ACTIONS(2991), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym___global] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_pub] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_interface] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2891), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2891), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_or] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2891), + [anon_sym_POUND_LBRACK] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + [anon_sym_assert] = ACTIONS(2891), + [anon_sym_defer] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_DOLLARfor] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_POUND] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym_AT_LBRACK] = ACTIONS(2891), + [sym___double_quote] = ACTIONS(2891), + [sym___single_quote] = ACTIONS(2891), + [sym___c_double_quote] = ACTIONS(2891), + [sym___c_single_quote] = ACTIONS(2891), + [sym___r_double_quote] = ACTIONS(2891), + [sym___r_single_quote] = ACTIONS(2891), }, [1029] = { + [ts_builtin_sym_end] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3185), + [anon_sym_LF] = ACTIONS(3185), + [anon_sym_CR] = ACTIONS(3185), + [anon_sym_CR_LF] = ACTIONS(3185), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3185), + [anon_sym_as] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_COMMA] = ACTIONS(3185), + [anon_sym_const] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym___global] = ACTIONS(3185), + [anon_sym_type] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(3185), + [anon_sym_fn] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_PERCENT] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_EQ_EQ] = ACTIONS(3185), + [anon_sym_BANG_EQ] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_union] = ACTIONS(3185), + [anon_sym_pub] = ACTIONS(3185), + [anon_sym_mut] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_QMARK] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_go] = ACTIONS(3185), + [anon_sym_spawn] = ACTIONS(3185), + [anon_sym_json_DOTdecode] = ACTIONS(3185), + [anon_sym_LBRACK2] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_LT_DASH] = ACTIONS(3185), + [anon_sym_LT_LT] = ACTIONS(3185), + [anon_sym_GT_GT] = ACTIONS(3185), + [anon_sym_GT_GT_GT] = ACTIONS(3185), + [anon_sym_AMP_CARET] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_PIPE_PIPE] = ACTIONS(3185), + [anon_sym_or] = ACTIONS(3185), + [sym_none] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_nil] = ACTIONS(3185), + [anon_sym_QMARK_DOT] = ACTIONS(3185), + [anon_sym_POUND_LBRACK] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_DOLLARif] = ACTIONS(3185), + [anon_sym_is] = ACTIONS(3185), + [anon_sym_BANGis] = ACTIONS(3185), + [anon_sym_in] = ACTIONS(3185), + [anon_sym_BANGin] = ACTIONS(3185), + [anon_sym_match] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_rlock] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_sql] = ACTIONS(3185), + [sym_int_literal] = ACTIONS(3185), + [sym_float_literal] = ACTIONS(3185), + [sym_rune_literal] = ACTIONS(3185), + [sym_pseudo_compile_time_identifier] = ACTIONS(3185), + [anon_sym_shared] = ACTIONS(3185), + [anon_sym_map_LBRACK] = ACTIONS(3185), + [anon_sym_chan] = ACTIONS(3185), + [anon_sym_thread] = ACTIONS(3185), + [anon_sym_atomic] = ACTIONS(3185), + [anon_sym_assert] = ACTIONS(3185), + [anon_sym_defer] = ACTIONS(3185), + [anon_sym_goto] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_DOLLARfor] = ACTIONS(3185), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_POUND] = ACTIONS(3185), + [anon_sym_asm] = ACTIONS(3185), + [anon_sym_AT_LBRACK] = ACTIONS(3185), + [sym___double_quote] = ACTIONS(3185), + [sym___single_quote] = ACTIONS(3185), + [sym___c_double_quote] = ACTIONS(3185), + [sym___c_single_quote] = ACTIONS(3185), + [sym___r_double_quote] = ACTIONS(3185), + [sym___r_single_quote] = ACTIONS(3185), + }, + [1030] = { + [ts_builtin_sym_end] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3452), + [anon_sym_LF] = ACTIONS(3452), + [anon_sym_CR] = ACTIONS(3452), + [anon_sym_CR_LF] = ACTIONS(3452), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3452), + [anon_sym_as] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_COMMA] = ACTIONS(3452), + [anon_sym_const] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym___global] = ACTIONS(3452), + [anon_sym_type] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_PERCENT] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_GT] = ACTIONS(3452), + [anon_sym_EQ_EQ] = ACTIONS(3452), + [anon_sym_BANG_EQ] = ACTIONS(3452), + [anon_sym_LT_EQ] = ACTIONS(3452), + [anon_sym_GT_EQ] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_union] = ACTIONS(3452), + [anon_sym_pub] = ACTIONS(3452), + [anon_sym_mut] = ACTIONS(3452), + [anon_sym_enum] = ACTIONS(3452), + [anon_sym_interface] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [anon_sym_QMARK] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_go] = ACTIONS(3452), + [anon_sym_spawn] = ACTIONS(3452), + [anon_sym_json_DOTdecode] = ACTIONS(3452), + [anon_sym_LBRACK2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_CARET] = ACTIONS(3452), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_LT_DASH] = ACTIONS(3452), + [anon_sym_LT_LT] = ACTIONS(3452), + [anon_sym_GT_GT] = ACTIONS(3452), + [anon_sym_GT_GT_GT] = ACTIONS(3452), + [anon_sym_AMP_CARET] = ACTIONS(3452), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE_PIPE] = ACTIONS(3452), + [anon_sym_or] = ACTIONS(3452), + [sym_none] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_nil] = ACTIONS(3452), + [anon_sym_QMARK_DOT] = ACTIONS(3452), + [anon_sym_POUND_LBRACK] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_DOLLARif] = ACTIONS(3452), + [anon_sym_is] = ACTIONS(3452), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_in] = ACTIONS(3452), + [anon_sym_BANGin] = ACTIONS(3452), + [anon_sym_match] = ACTIONS(3452), + [anon_sym_select] = ACTIONS(3452), + [anon_sym_lock] = ACTIONS(3452), + [anon_sym_rlock] = ACTIONS(3452), + [anon_sym_unsafe] = ACTIONS(3452), + [anon_sym_sql] = ACTIONS(3452), + [sym_int_literal] = ACTIONS(3452), + [sym_float_literal] = ACTIONS(3452), + [sym_rune_literal] = ACTIONS(3452), + [sym_pseudo_compile_time_identifier] = ACTIONS(3452), + [anon_sym_shared] = ACTIONS(3452), + [anon_sym_map_LBRACK] = ACTIONS(3452), + [anon_sym_chan] = ACTIONS(3452), + [anon_sym_thread] = ACTIONS(3452), + [anon_sym_atomic] = ACTIONS(3452), + [anon_sym_assert] = ACTIONS(3452), + [anon_sym_defer] = ACTIONS(3452), + [anon_sym_goto] = ACTIONS(3452), + [anon_sym_break] = ACTIONS(3452), + [anon_sym_continue] = ACTIONS(3452), + [anon_sym_return] = ACTIONS(3452), + [anon_sym_DOLLARfor] = ACTIONS(3452), + [anon_sym_for] = ACTIONS(3452), + [anon_sym_POUND] = ACTIONS(3452), + [anon_sym_asm] = ACTIONS(3452), + [anon_sym_AT_LBRACK] = ACTIONS(3452), + [sym___double_quote] = ACTIONS(3452), + [sym___single_quote] = ACTIONS(3452), + [sym___c_double_quote] = ACTIONS(3452), + [sym___c_single_quote] = ACTIONS(3452), + [sym___r_double_quote] = ACTIONS(3452), + [sym___r_single_quote] = ACTIONS(3452), + }, + [1031] = { + [ts_builtin_sym_end] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_CR] = ACTIONS(3424), + [anon_sym_CR_LF] = ACTIONS(3424), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_as] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym___global] = ACTIONS(3424), + [anon_sym_type] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_fn] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [anon_sym_pub] = ACTIONS(3424), + [anon_sym_mut] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_go] = ACTIONS(3424), + [anon_sym_spawn] = ACTIONS(3424), + [anon_sym_json_DOTdecode] = ACTIONS(3424), + [anon_sym_LBRACK2] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_GT_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_CARET] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_or] = ACTIONS(3424), + [sym_none] = ACTIONS(3424), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_nil] = ACTIONS(3424), + [anon_sym_QMARK_DOT] = ACTIONS(3424), + [anon_sym_POUND_LBRACK] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_DOLLARif] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3424), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3424), + [anon_sym_select] = ACTIONS(3424), + [anon_sym_lock] = ACTIONS(3424), + [anon_sym_rlock] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_sql] = ACTIONS(3424), + [sym_int_literal] = ACTIONS(3424), + [sym_float_literal] = ACTIONS(3424), + [sym_rune_literal] = ACTIONS(3424), + [sym_pseudo_compile_time_identifier] = ACTIONS(3424), + [anon_sym_shared] = ACTIONS(3424), + [anon_sym_map_LBRACK] = ACTIONS(3424), + [anon_sym_chan] = ACTIONS(3424), + [anon_sym_thread] = ACTIONS(3424), + [anon_sym_atomic] = ACTIONS(3424), + [anon_sym_assert] = ACTIONS(3424), + [anon_sym_defer] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_DOLLARfor] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_POUND] = ACTIONS(3424), + [anon_sym_asm] = ACTIONS(3424), + [anon_sym_AT_LBRACK] = ACTIONS(3424), + [sym___double_quote] = ACTIONS(3424), + [sym___single_quote] = ACTIONS(3424), + [sym___c_double_quote] = ACTIONS(3424), + [sym___c_single_quote] = ACTIONS(3424), + [sym___r_double_quote] = ACTIONS(3424), + [sym___r_single_quote] = ACTIONS(3424), + }, + [1032] = { + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym___global] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_union] = ACTIONS(3261), + [anon_sym_pub] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [sym_pseudo_compile_time_identifier] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_defer] = ACTIONS(3261), + [anon_sym_goto] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_DOLLARfor] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_asm] = ACTIONS(3261), + [anon_sym_AT_LBRACK] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), + }, + [1033] = { + [ts_builtin_sym_end] = ACTIONS(3434), + [sym_identifier] = ACTIONS(3436), + [anon_sym_LF] = ACTIONS(3436), + [anon_sym_CR] = ACTIONS(3436), + [anon_sym_CR_LF] = ACTIONS(3436), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3436), + [anon_sym_as] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_COMMA] = ACTIONS(3436), + [anon_sym_const] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym___global] = ACTIONS(3436), + [anon_sym_type] = ACTIONS(3436), + [anon_sym_PIPE] = ACTIONS(3436), + [anon_sym_fn] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_PERCENT] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_GT] = ACTIONS(3436), + [anon_sym_EQ_EQ] = ACTIONS(3436), + [anon_sym_BANG_EQ] = ACTIONS(3436), + [anon_sym_LT_EQ] = ACTIONS(3436), + [anon_sym_GT_EQ] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3436), + [anon_sym_union] = ACTIONS(3436), + [anon_sym_pub] = ACTIONS(3436), + [anon_sym_mut] = ACTIONS(3436), + [anon_sym_enum] = ACTIONS(3436), + [anon_sym_interface] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_QMARK] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_go] = ACTIONS(3436), + [anon_sym_spawn] = ACTIONS(3436), + [anon_sym_json_DOTdecode] = ACTIONS(3436), + [anon_sym_LBRACK2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_CARET] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3436), + [anon_sym_LT_DASH] = ACTIONS(3436), + [anon_sym_LT_LT] = ACTIONS(3436), + [anon_sym_GT_GT] = ACTIONS(3436), + [anon_sym_GT_GT_GT] = ACTIONS(3436), + [anon_sym_AMP_CARET] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3436), + [anon_sym_or] = ACTIONS(3436), + [sym_none] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_nil] = ACTIONS(3436), + [anon_sym_QMARK_DOT] = ACTIONS(3436), + [anon_sym_POUND_LBRACK] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_DOLLARif] = ACTIONS(3436), + [anon_sym_is] = ACTIONS(3436), + [anon_sym_BANGis] = ACTIONS(3436), + [anon_sym_in] = ACTIONS(3436), + [anon_sym_BANGin] = ACTIONS(3436), + [anon_sym_match] = ACTIONS(3436), + [anon_sym_select] = ACTIONS(3436), + [anon_sym_lock] = ACTIONS(3436), + [anon_sym_rlock] = ACTIONS(3436), + [anon_sym_unsafe] = ACTIONS(3436), + [anon_sym_sql] = ACTIONS(3436), + [sym_int_literal] = ACTIONS(3436), + [sym_float_literal] = ACTIONS(3436), + [sym_rune_literal] = ACTIONS(3436), + [sym_pseudo_compile_time_identifier] = ACTIONS(3436), + [anon_sym_shared] = ACTIONS(3436), + [anon_sym_map_LBRACK] = ACTIONS(3436), + [anon_sym_chan] = ACTIONS(3436), + [anon_sym_thread] = ACTIONS(3436), + [anon_sym_atomic] = ACTIONS(3436), + [anon_sym_assert] = ACTIONS(3436), + [anon_sym_defer] = ACTIONS(3436), + [anon_sym_goto] = ACTIONS(3436), + [anon_sym_break] = ACTIONS(3436), + [anon_sym_continue] = ACTIONS(3436), + [anon_sym_return] = ACTIONS(3436), + [anon_sym_DOLLARfor] = ACTIONS(3436), + [anon_sym_for] = ACTIONS(3436), + [anon_sym_POUND] = ACTIONS(3436), + [anon_sym_asm] = ACTIONS(3436), + [anon_sym_AT_LBRACK] = ACTIONS(3436), + [sym___double_quote] = ACTIONS(3436), + [sym___single_quote] = ACTIONS(3436), + [sym___c_double_quote] = ACTIONS(3436), + [sym___c_single_quote] = ACTIONS(3436), + [sym___r_double_quote] = ACTIONS(3436), + [sym___r_single_quote] = ACTIONS(3436), + }, + [1034] = { + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym___global] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_interface] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [anon_sym_assert] = ACTIONS(3027), + [anon_sym_defer] = ACTIONS(3027), + [anon_sym_goto] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_DOLLARfor] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_asm] = ACTIONS(3027), + [anon_sym_AT_LBRACK] = ACTIONS(3027), + [sym___double_quote] = ACTIONS(3027), + [sym___single_quote] = ACTIONS(3027), + [sym___c_double_quote] = ACTIONS(3027), + [sym___c_single_quote] = ACTIONS(3027), + [sym___r_double_quote] = ACTIONS(3027), + [sym___r_single_quote] = ACTIONS(3027), + }, + [1035] = { + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2985), + [sym___single_quote] = ACTIONS(2985), + [sym___c_double_quote] = ACTIONS(2985), + [sym___c_single_quote] = ACTIONS(2985), + [sym___r_double_quote] = ACTIONS(2985), + [sym___r_single_quote] = ACTIONS(2985), + }, + [1036] = { + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2907), + [anon_sym_CR] = ACTIONS(2907), + [anon_sym_CR_LF] = ACTIONS(2907), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2907), + [anon_sym_as] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym___global] = ACTIONS(2907), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_BANG_EQ] = ACTIONS(2907), + [anon_sym_LT_EQ] = ACTIONS(2907), + [anon_sym_GT_EQ] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_pub] = ACTIONS(2907), + [anon_sym_mut] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_interface] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2907), + [anon_sym_spawn] = ACTIONS(2907), + [anon_sym_json_DOTdecode] = ACTIONS(2907), + [anon_sym_LBRACK2] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_CARET] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2907), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2907), + [anon_sym_GT_GT_GT] = ACTIONS(2907), + [anon_sym_AMP_CARET] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_PIPE_PIPE] = ACTIONS(2907), + [anon_sym_or] = ACTIONS(2907), + [sym_none] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_nil] = ACTIONS(2907), + [anon_sym_QMARK_DOT] = ACTIONS(2907), + [anon_sym_POUND_LBRACK] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_DOLLARif] = ACTIONS(2907), + [anon_sym_is] = ACTIONS(2907), + [anon_sym_BANGis] = ACTIONS(2907), + [anon_sym_in] = ACTIONS(2907), + [anon_sym_BANGin] = ACTIONS(2907), + [anon_sym_match] = ACTIONS(2907), + [anon_sym_select] = ACTIONS(2907), + [anon_sym_lock] = ACTIONS(2907), + [anon_sym_rlock] = ACTIONS(2907), + [anon_sym_unsafe] = ACTIONS(2907), + [anon_sym_sql] = ACTIONS(2907), + [sym_int_literal] = ACTIONS(2907), + [sym_float_literal] = ACTIONS(2907), + [sym_rune_literal] = ACTIONS(2907), + [sym_pseudo_compile_time_identifier] = ACTIONS(2907), + [anon_sym_shared] = ACTIONS(2907), + [anon_sym_map_LBRACK] = ACTIONS(2907), + [anon_sym_chan] = ACTIONS(2907), + [anon_sym_thread] = ACTIONS(2907), + [anon_sym_atomic] = ACTIONS(2907), + [anon_sym_assert] = ACTIONS(2907), + [anon_sym_defer] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_DOLLARfor] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_POUND] = ACTIONS(2907), + [anon_sym_asm] = ACTIONS(2907), + [anon_sym_AT_LBRACK] = ACTIONS(2907), + [sym___double_quote] = ACTIONS(2907), + [sym___single_quote] = ACTIONS(2907), + [sym___c_double_quote] = ACTIONS(2907), + [sym___c_single_quote] = ACTIONS(2907), + [sym___r_double_quote] = ACTIONS(2907), + [sym___r_single_quote] = ACTIONS(2907), + }, + [1037] = { [ts_builtin_sym_end] = ACTIONS(3225), [sym_identifier] = ACTIONS(3227), [anon_sym_LF] = ACTIONS(3227), [anon_sym_CR] = ACTIONS(3227), [anon_sym_CR_LF] = ACTIONS(3227), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), [anon_sym_LBRACE] = ACTIONS(3227), [anon_sym_COMMA] = ACTIONS(3227), [anon_sym_const] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), [anon_sym___global] = ACTIONS(3227), [anon_sym_type] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3229), [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_EQ] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3232), [anon_sym_struct] = ACTIONS(3227), [anon_sym_union] = ACTIONS(3227), [anon_sym_pub] = ACTIONS(3227), [anon_sym_mut] = ACTIONS(3227), [anon_sym_enum] = ACTIONS(3227), [anon_sym_interface] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), [anon_sym_go] = ACTIONS(3227), [anon_sym_spawn] = ACTIONS(3227), [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3227), + [anon_sym_LBRACK2] = ACTIONS(3229), [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3227), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3227), - [anon_sym_AMP_CARET] = ACTIONS(3227), - [anon_sym_AMP_AMP] = ACTIONS(3227), - [anon_sym_PIPE_PIPE] = ACTIONS(3227), - [anon_sym_or] = ACTIONS(3227), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_or] = ACTIONS(3229), [sym_none] = ACTIONS(3227), [sym_true] = ACTIONS(3227), [sym_false] = ACTIONS(3227), [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3227), - [anon_sym_POUND_LBRACK] = ACTIONS(3227), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), [anon_sym_if] = ACTIONS(3227), [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3227), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3227), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), [anon_sym_match] = ACTIONS(3227), [anon_sym_select] = ACTIONS(3227), [anon_sym_lock] = ACTIONS(3227), @@ -142751,3769 +143605,1789 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3227), [sym___r_single_quote] = ACTIONS(3227), }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(3229), - [sym_identifier] = ACTIONS(3231), - [anon_sym_LF] = ACTIONS(3231), - [anon_sym_CR] = ACTIONS(3231), - [anon_sym_CR_LF] = ACTIONS(3231), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym___global] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_union] = ACTIONS(3231), - [anon_sym_pub] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3231), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3231), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3231), - [anon_sym_AMP_CARET] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3231), - [anon_sym_POUND_LBRACK] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3231), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3231), - [sym_rune_literal] = ACTIONS(3231), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3231), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [anon_sym_assert] = ACTIONS(3231), - [anon_sym_defer] = ACTIONS(3231), - [anon_sym_goto] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_DOLLARfor] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_POUND] = ACTIONS(3231), - [anon_sym_asm] = ACTIONS(3231), - [anon_sym_AT_LBRACK] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3231), - [sym___single_quote] = ACTIONS(3231), - [sym___c_double_quote] = ACTIONS(3231), - [sym___c_single_quote] = ACTIONS(3231), - [sym___r_double_quote] = ACTIONS(3231), - [sym___r_single_quote] = ACTIONS(3231), - }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(3253), - [sym_identifier] = ACTIONS(3255), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_CR] = ACTIONS(3255), - [anon_sym_CR_LF] = ACTIONS(3255), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym___global] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3255), - [anon_sym_BANG_EQ] = ACTIONS(3255), - [anon_sym_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_EQ] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_union] = ACTIONS(3255), - [anon_sym_pub] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3255), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3255), - [anon_sym_LT_LT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3255), - [anon_sym_AMP_CARET] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3255), - [anon_sym_POUND_LBRACK] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3255), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3255), - [sym_rune_literal] = ACTIONS(3255), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3255), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [anon_sym_assert] = ACTIONS(3255), - [anon_sym_defer] = ACTIONS(3255), - [anon_sym_goto] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_DOLLARfor] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_POUND] = ACTIONS(3255), - [anon_sym_asm] = ACTIONS(3255), - [anon_sym_AT_LBRACK] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3255), - [sym___single_quote] = ACTIONS(3255), - [sym___c_double_quote] = ACTIONS(3255), - [sym___c_single_quote] = ACTIONS(3255), - [sym___r_double_quote] = ACTIONS(3255), - [sym___r_single_quote] = ACTIONS(3255), - }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(3061), - [sym_identifier] = ACTIONS(3063), - [anon_sym_LF] = ACTIONS(3063), - [anon_sym_CR] = ACTIONS(3063), - [anon_sym_CR_LF] = ACTIONS(3063), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3063), - [anon_sym_as] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_const] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym___global] = ACTIONS(3063), - [anon_sym_type] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_fn] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3063), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3063), - [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(3061), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_union] = ACTIONS(3063), - [anon_sym_pub] = ACTIONS(3063), - [anon_sym_mut] = ACTIONS(3063), - [anon_sym_enum] = ACTIONS(3063), - [anon_sym_interface] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3628), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3063), - [anon_sym_json_DOTdecode] = ACTIONS(3063), - [anon_sym_LBRACK2] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_LT_DASH] = ACTIONS(3063), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3063), - [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(3063), - [sym_none] = ACTIONS(3063), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [sym_nil] = ACTIONS(3063), - [anon_sym_QMARK_DOT] = ACTIONS(3063), - [anon_sym_POUND_LBRACK] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_DOLLARif] = ACTIONS(3063), - [anon_sym_is] = ACTIONS(3063), - [anon_sym_BANGis] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_BANGin] = ACTIONS(3063), - [anon_sym_match] = ACTIONS(3063), - [anon_sym_select] = ACTIONS(3063), - [anon_sym_lock] = ACTIONS(3063), - [anon_sym_rlock] = ACTIONS(3063), - [anon_sym_unsafe] = ACTIONS(3063), - [anon_sym_sql] = ACTIONS(3063), - [sym_int_literal] = ACTIONS(3063), - [sym_float_literal] = ACTIONS(3063), - [sym_rune_literal] = ACTIONS(3063), - [sym_pseudo_compile_time_identifier] = ACTIONS(3063), - [anon_sym_shared] = ACTIONS(3063), - [anon_sym_map_LBRACK] = ACTIONS(3063), - [anon_sym_chan] = ACTIONS(3063), - [anon_sym_thread] = ACTIONS(3063), - [anon_sym_atomic] = ACTIONS(3063), - [anon_sym_assert] = ACTIONS(3063), - [anon_sym_defer] = ACTIONS(3063), - [anon_sym_goto] = ACTIONS(3063), - [anon_sym_break] = ACTIONS(3063), - [anon_sym_continue] = ACTIONS(3063), - [anon_sym_return] = ACTIONS(3063), - [anon_sym_DOLLARfor] = ACTIONS(3063), - [anon_sym_for] = ACTIONS(3063), - [anon_sym_POUND] = ACTIONS(3063), - [anon_sym_asm] = ACTIONS(3063), - [anon_sym_AT_LBRACK] = ACTIONS(3063), - [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), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym___global] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_EQ] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_pub] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3207), - [anon_sym_AMP_CARET] = ACTIONS(3207), - [anon_sym_AMP_AMP] = ACTIONS(3207), - [anon_sym_PIPE_PIPE] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [anon_sym_assert] = ACTIONS(3207), - [anon_sym_defer] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_DOLLARfor] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_POUND] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym_AT_LBRACK] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3207), - [sym___single_quote] = ACTIONS(3207), - [sym___c_double_quote] = ACTIONS(3207), - [sym___c_single_quote] = ACTIONS(3207), - [sym___r_double_quote] = ACTIONS(3207), - [sym___r_single_quote] = ACTIONS(3207), - }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(3419), - [sym_identifier] = ACTIONS(3421), - [anon_sym_LF] = ACTIONS(3421), - [anon_sym_CR] = ACTIONS(3421), - [anon_sym_CR_LF] = ACTIONS(3421), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_as] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym___global] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_fn] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_EQ_EQ] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_union] = ACTIONS(3421), - [anon_sym_pub] = ACTIONS(3421), - [anon_sym_mut] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_go] = ACTIONS(3421), - [anon_sym_spawn] = ACTIONS(3421), - [anon_sym_json_DOTdecode] = ACTIONS(3421), - [anon_sym_LBRACK2] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_LT_LT] = ACTIONS(3421), - [anon_sym_GT_GT] = ACTIONS(3421), - [anon_sym_GT_GT_GT] = ACTIONS(3421), - [anon_sym_AMP_CARET] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [sym_none] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_nil] = ACTIONS(3421), - [anon_sym_QMARK_DOT] = ACTIONS(3421), - [anon_sym_POUND_LBRACK] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_DOLLARif] = ACTIONS(3421), - [anon_sym_is] = ACTIONS(3421), - [anon_sym_BANGis] = ACTIONS(3421), - [anon_sym_in] = ACTIONS(3421), - [anon_sym_BANGin] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_lock] = ACTIONS(3421), - [anon_sym_rlock] = ACTIONS(3421), - [anon_sym_unsafe] = ACTIONS(3421), - [anon_sym_sql] = ACTIONS(3421), - [sym_int_literal] = ACTIONS(3421), - [sym_float_literal] = ACTIONS(3421), - [sym_rune_literal] = ACTIONS(3421), - [sym_pseudo_compile_time_identifier] = ACTIONS(3421), - [anon_sym_shared] = ACTIONS(3421), - [anon_sym_map_LBRACK] = ACTIONS(3421), - [anon_sym_chan] = ACTIONS(3421), - [anon_sym_thread] = ACTIONS(3421), - [anon_sym_atomic] = ACTIONS(3421), - [anon_sym_assert] = ACTIONS(3421), - [anon_sym_defer] = ACTIONS(3421), - [anon_sym_goto] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_DOLLARfor] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_asm] = ACTIONS(3421), - [anon_sym_AT_LBRACK] = ACTIONS(3421), - [sym___double_quote] = ACTIONS(3421), - [sym___single_quote] = ACTIONS(3421), - [sym___c_double_quote] = ACTIONS(3421), - [sym___c_single_quote] = ACTIONS(3421), - [sym___r_double_quote] = ACTIONS(3421), - [sym___r_single_quote] = ACTIONS(3421), - }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(3423), - [sym_identifier] = ACTIONS(3425), - [anon_sym_LF] = ACTIONS(3425), - [anon_sym_CR] = ACTIONS(3425), - [anon_sym_CR_LF] = ACTIONS(3425), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym___global] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_fn] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_PERCENT] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_EQ_EQ] = ACTIONS(3425), - [anon_sym_BANG_EQ] = ACTIONS(3425), - [anon_sym_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3425), - [anon_sym_union] = ACTIONS(3425), - [anon_sym_pub] = ACTIONS(3425), - [anon_sym_mut] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_go] = ACTIONS(3425), - [anon_sym_spawn] = ACTIONS(3425), - [anon_sym_json_DOTdecode] = ACTIONS(3425), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_LT_DASH] = ACTIONS(3425), - [anon_sym_LT_LT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3425), - [anon_sym_GT_GT_GT] = ACTIONS(3425), - [anon_sym_AMP_CARET] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [sym_none] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_nil] = ACTIONS(3425), - [anon_sym_QMARK_DOT] = ACTIONS(3425), - [anon_sym_POUND_LBRACK] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_DOLLARif] = ACTIONS(3425), - [anon_sym_is] = ACTIONS(3425), - [anon_sym_BANGis] = ACTIONS(3425), - [anon_sym_in] = ACTIONS(3425), - [anon_sym_BANGin] = ACTIONS(3425), - [anon_sym_match] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_lock] = ACTIONS(3425), - [anon_sym_rlock] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3425), - [anon_sym_sql] = ACTIONS(3425), - [sym_int_literal] = ACTIONS(3425), - [sym_float_literal] = ACTIONS(3425), - [sym_rune_literal] = ACTIONS(3425), - [sym_pseudo_compile_time_identifier] = ACTIONS(3425), - [anon_sym_shared] = ACTIONS(3425), - [anon_sym_map_LBRACK] = ACTIONS(3425), - [anon_sym_chan] = ACTIONS(3425), - [anon_sym_thread] = ACTIONS(3425), - [anon_sym_atomic] = ACTIONS(3425), - [anon_sym_assert] = ACTIONS(3425), - [anon_sym_defer] = ACTIONS(3425), - [anon_sym_goto] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_DOLLARfor] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_asm] = ACTIONS(3425), - [anon_sym_AT_LBRACK] = ACTIONS(3425), - [sym___double_quote] = ACTIONS(3425), - [sym___single_quote] = ACTIONS(3425), - [sym___c_double_quote] = ACTIONS(3425), - [sym___c_single_quote] = ACTIONS(3425), - [sym___r_double_quote] = ACTIONS(3425), - [sym___r_single_quote] = ACTIONS(3425), - }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(3257), - [sym_identifier] = ACTIONS(3259), - [anon_sym_LF] = ACTIONS(3259), - [anon_sym_CR] = ACTIONS(3259), - [anon_sym_CR_LF] = ACTIONS(3259), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym___global] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3259), - [anon_sym_BANG_EQ] = ACTIONS(3259), - [anon_sym_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_EQ] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_union] = ACTIONS(3259), - [anon_sym_pub] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3259), - [anon_sym_LT_LT] = ACTIONS(3259), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3259), - [anon_sym_AMP_CARET] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_PIPE_PIPE] = ACTIONS(3259), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3259), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3259), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [anon_sym_assert] = ACTIONS(3259), - [anon_sym_defer] = ACTIONS(3259), - [anon_sym_goto] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_DOLLARfor] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_POUND] = ACTIONS(3259), - [anon_sym_asm] = ACTIONS(3259), - [anon_sym_AT_LBRACK] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3259), - [sym___single_quote] = ACTIONS(3259), - [sym___c_double_quote] = ACTIONS(3259), - [sym___c_single_quote] = ACTIONS(3259), - [sym___r_double_quote] = ACTIONS(3259), - [sym___r_single_quote] = ACTIONS(3259), - }, - [1037] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_const] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym___global] = ACTIONS(3199), - [anon_sym_type] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_union] = ACTIONS(3199), - [anon_sym_pub] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_enum] = ACTIONS(3199), - [anon_sym_interface] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [anon_sym_assert] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_DOLLARfor] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym_AT_LBRACK] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), - }, [1038] = { - [ts_builtin_sym_end] = ACTIONS(3313), - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), + [ts_builtin_sym_end] = ACTIONS(3267), + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym___global] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_union] = ACTIONS(3315), - [anon_sym_pub] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3315), - [sym_rune_literal] = ACTIONS(3315), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [anon_sym_assert] = ACTIONS(3315), - [anon_sym_defer] = ACTIONS(3315), - [anon_sym_goto] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_DOLLARfor] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_POUND] = ACTIONS(3315), - [anon_sym_asm] = ACTIONS(3315), - [anon_sym_AT_LBRACK] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3315), - [sym___single_quote] = ACTIONS(3315), - [sym___c_double_quote] = ACTIONS(3315), - [sym___c_single_quote] = ACTIONS(3315), - [sym___r_double_quote] = ACTIONS(3315), - [sym___r_single_quote] = ACTIONS(3315), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym___global] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_union] = ACTIONS(3269), + [anon_sym_pub] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3636), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3269), + [anon_sym_AMP_CARET] = ACTIONS(3269), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3269), + [anon_sym_POUND_LBRACK] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3269), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [sym_pseudo_compile_time_identifier] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [anon_sym_assert] = ACTIONS(3269), + [anon_sym_defer] = ACTIONS(3269), + [anon_sym_goto] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_DOLLARfor] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(3269), + [anon_sym_asm] = ACTIONS(3269), + [anon_sym_AT_LBRACK] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3269), + [sym___single_quote] = ACTIONS(3269), + [sym___c_double_quote] = ACTIONS(3269), + [sym___c_single_quote] = ACTIONS(3269), + [sym___r_double_quote] = ACTIONS(3269), + [sym___r_single_quote] = ACTIONS(3269), }, [1039] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3392), + [anon_sym_LF] = ACTIONS(3392), + [anon_sym_CR] = ACTIONS(3392), + [anon_sym_CR_LF] = ACTIONS(3392), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym___global] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2761), - [anon_sym_BANG_EQ] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_EQ] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_pub] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2761), - [anon_sym_AMP_CARET] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_PIPE_PIPE] = ACTIONS(2761), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2761), - [anon_sym_POUND_LBRACK] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2761), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [anon_sym_assert] = ACTIONS(2761), - [anon_sym_defer] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_DOLLARfor] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_POUND] = ACTIONS(2761), - [anon_sym_asm] = ACTIONS(2761), - [anon_sym_AT_LBRACK] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_as] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3392), + [anon_sym_const] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym___global] = ACTIONS(3392), + [anon_sym_type] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3392), + [anon_sym_fn] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_GT] = ACTIONS(3392), + [anon_sym_EQ_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_LT_EQ] = ACTIONS(3392), + [anon_sym_GT_EQ] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_union] = ACTIONS(3392), + [anon_sym_pub] = ACTIONS(3392), + [anon_sym_mut] = ACTIONS(3392), + [anon_sym_enum] = ACTIONS(3392), + [anon_sym_interface] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3392), + [anon_sym_json_DOTdecode] = ACTIONS(3392), + [anon_sym_LBRACK2] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(3392), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_GT_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_CARET] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [sym_none] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_nil] = ACTIONS(3392), + [anon_sym_QMARK_DOT] = ACTIONS(3392), + [anon_sym_POUND_LBRACK] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_DOLLARif] = ACTIONS(3392), + [anon_sym_is] = ACTIONS(3392), + [anon_sym_BANGis] = ACTIONS(3392), + [anon_sym_in] = ACTIONS(3392), + [anon_sym_BANGin] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_select] = ACTIONS(3392), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3392), + [anon_sym_sql] = ACTIONS(3392), + [sym_int_literal] = ACTIONS(3392), + [sym_float_literal] = ACTIONS(3392), + [sym_rune_literal] = ACTIONS(3392), + [sym_pseudo_compile_time_identifier] = ACTIONS(3392), + [anon_sym_shared] = ACTIONS(3392), + [anon_sym_map_LBRACK] = ACTIONS(3392), + [anon_sym_chan] = ACTIONS(3392), + [anon_sym_thread] = ACTIONS(3392), + [anon_sym_atomic] = ACTIONS(3392), + [anon_sym_assert] = ACTIONS(3392), + [anon_sym_defer] = ACTIONS(3392), + [anon_sym_goto] = ACTIONS(3392), + [anon_sym_break] = ACTIONS(3392), + [anon_sym_continue] = ACTIONS(3392), + [anon_sym_return] = ACTIONS(3392), + [anon_sym_DOLLARfor] = ACTIONS(3392), + [anon_sym_for] = ACTIONS(3392), + [anon_sym_POUND] = ACTIONS(3392), + [anon_sym_asm] = ACTIONS(3392), + [anon_sym_AT_LBRACK] = ACTIONS(3392), + [sym___double_quote] = ACTIONS(3392), + [sym___single_quote] = ACTIONS(3392), + [sym___c_double_quote] = ACTIONS(3392), + [sym___c_single_quote] = ACTIONS(3392), + [sym___r_double_quote] = ACTIONS(3392), + [sym___r_single_quote] = ACTIONS(3392), }, [1040] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2915), + [anon_sym_CR] = ACTIONS(2915), + [anon_sym_CR_LF] = ACTIONS(2915), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(2915), + [anon_sym_as] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_COMMA] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym___global] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_fn] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_BANG_EQ] = ACTIONS(2915), + [anon_sym_LT_EQ] = ACTIONS(2915), + [anon_sym_GT_EQ] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_pub] = ACTIONS(2915), + [anon_sym_mut] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_interface] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_QMARK] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_go] = ACTIONS(2915), + [anon_sym_spawn] = ACTIONS(2915), + [anon_sym_json_DOTdecode] = ACTIONS(2915), + [anon_sym_LBRACK2] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_CARET] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2915), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2915), + [anon_sym_GT_GT_GT] = ACTIONS(2915), + [anon_sym_AMP_CARET] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_PIPE_PIPE] = ACTIONS(2915), + [anon_sym_or] = ACTIONS(2915), + [sym_none] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_nil] = ACTIONS(2915), + [anon_sym_QMARK_DOT] = ACTIONS(2915), + [anon_sym_POUND_LBRACK] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_DOLLARif] = ACTIONS(2915), + [anon_sym_is] = ACTIONS(2915), + [anon_sym_BANGis] = ACTIONS(2915), + [anon_sym_in] = ACTIONS(2915), + [anon_sym_BANGin] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_select] = ACTIONS(2915), + [anon_sym_lock] = ACTIONS(2915), + [anon_sym_rlock] = ACTIONS(2915), + [anon_sym_unsafe] = ACTIONS(2915), + [anon_sym_sql] = ACTIONS(2915), + [sym_int_literal] = ACTIONS(2915), + [sym_float_literal] = ACTIONS(2915), + [sym_rune_literal] = ACTIONS(2915), + [sym_pseudo_compile_time_identifier] = ACTIONS(2915), + [anon_sym_shared] = ACTIONS(2915), + [anon_sym_map_LBRACK] = ACTIONS(2915), + [anon_sym_chan] = ACTIONS(2915), + [anon_sym_thread] = ACTIONS(2915), + [anon_sym_atomic] = ACTIONS(2915), + [anon_sym_assert] = ACTIONS(2915), + [anon_sym_defer] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_DOLLARfor] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_POUND] = ACTIONS(2915), + [anon_sym_asm] = ACTIONS(2915), + [anon_sym_AT_LBRACK] = ACTIONS(2915), + [sym___double_quote] = ACTIONS(2915), + [sym___single_quote] = ACTIONS(2915), + [sym___c_double_quote] = ACTIONS(2915), + [sym___c_single_quote] = ACTIONS(2915), + [sym___r_double_quote] = ACTIONS(2915), + [sym___r_single_quote] = ACTIONS(2915), }, [1041] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(3217), + [anon_sym_CR] = ACTIONS(3217), + [anon_sym_CR_LF] = ACTIONS(3217), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym___global] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_union] = ACTIONS(3217), + [anon_sym_pub] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3217), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3217), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3219), + [anon_sym_AMP_CARET] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3217), + [sym_rune_literal] = ACTIONS(3217), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3217), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [anon_sym_assert] = ACTIONS(3217), + [anon_sym_defer] = ACTIONS(3217), + [anon_sym_goto] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_DOLLARfor] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_POUND] = ACTIONS(3217), + [anon_sym_asm] = ACTIONS(3217), + [anon_sym_AT_LBRACK] = ACTIONS(3217), + [sym___double_quote] = ACTIONS(3217), + [sym___single_quote] = ACTIONS(3217), + [sym___c_double_quote] = ACTIONS(3217), + [sym___c_single_quote] = ACTIONS(3217), + [sym___r_double_quote] = ACTIONS(3217), + [sym___r_single_quote] = ACTIONS(3217), }, [1042] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3432), + [anon_sym_LF] = ACTIONS(3432), + [anon_sym_CR] = ACTIONS(3432), + [anon_sym_CR_LF] = ACTIONS(3432), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_const] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym___global] = ACTIONS(3187), - [anon_sym_type] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_union] = ACTIONS(3187), - [anon_sym_pub] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_enum] = ACTIONS(3187), - [anon_sym_interface] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [anon_sym_assert] = ACTIONS(3187), - [anon_sym_defer] = ACTIONS(3187), - [anon_sym_goto] = ACTIONS(3187), - [anon_sym_break] = ACTIONS(3187), - [anon_sym_continue] = ACTIONS(3187), - [anon_sym_return] = ACTIONS(3187), - [anon_sym_DOLLARfor] = ACTIONS(3187), - [anon_sym_for] = ACTIONS(3187), - [anon_sym_POUND] = ACTIONS(3187), - [anon_sym_asm] = ACTIONS(3187), - [anon_sym_AT_LBRACK] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [anon_sym_DOT] = ACTIONS(3432), + [anon_sym_as] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [anon_sym_const] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym___global] = ACTIONS(3432), + [anon_sym_type] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3432), + [anon_sym_fn] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_LT] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_struct] = ACTIONS(3432), + [anon_sym_union] = ACTIONS(3432), + [anon_sym_pub] = ACTIONS(3432), + [anon_sym_mut] = ACTIONS(3432), + [anon_sym_enum] = ACTIONS(3432), + [anon_sym_interface] = ACTIONS(3432), + [anon_sym_PLUS_PLUS] = ACTIONS(3432), + [anon_sym_DASH_DASH] = ACTIONS(3432), + [anon_sym_QMARK] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_go] = ACTIONS(3432), + [anon_sym_spawn] = ACTIONS(3432), + [anon_sym_json_DOTdecode] = ACTIONS(3432), + [anon_sym_LBRACK2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_CARET] = ACTIONS(3432), + [anon_sym_AMP] = ACTIONS(3432), + [anon_sym_LT_DASH] = ACTIONS(3432), + [anon_sym_LT_LT] = ACTIONS(3432), + [anon_sym_GT_GT] = ACTIONS(3432), + [anon_sym_GT_GT_GT] = ACTIONS(3432), + [anon_sym_AMP_CARET] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_or] = ACTIONS(3432), + [sym_none] = ACTIONS(3432), + [sym_true] = ACTIONS(3432), + [sym_false] = ACTIONS(3432), + [sym_nil] = ACTIONS(3432), + [anon_sym_QMARK_DOT] = ACTIONS(3432), + [anon_sym_POUND_LBRACK] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_DOLLARif] = ACTIONS(3432), + [anon_sym_is] = ACTIONS(3432), + [anon_sym_BANGis] = ACTIONS(3432), + [anon_sym_in] = ACTIONS(3432), + [anon_sym_BANGin] = ACTIONS(3432), + [anon_sym_match] = ACTIONS(3432), + [anon_sym_select] = ACTIONS(3432), + [anon_sym_lock] = ACTIONS(3432), + [anon_sym_rlock] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_sql] = ACTIONS(3432), + [sym_int_literal] = ACTIONS(3432), + [sym_float_literal] = ACTIONS(3432), + [sym_rune_literal] = ACTIONS(3432), + [sym_pseudo_compile_time_identifier] = ACTIONS(3432), + [anon_sym_shared] = ACTIONS(3432), + [anon_sym_map_LBRACK] = ACTIONS(3432), + [anon_sym_chan] = ACTIONS(3432), + [anon_sym_thread] = ACTIONS(3432), + [anon_sym_atomic] = ACTIONS(3432), + [anon_sym_assert] = ACTIONS(3432), + [anon_sym_defer] = ACTIONS(3432), + [anon_sym_goto] = ACTIONS(3432), + [anon_sym_break] = ACTIONS(3432), + [anon_sym_continue] = ACTIONS(3432), + [anon_sym_return] = ACTIONS(3432), + [anon_sym_DOLLARfor] = ACTIONS(3432), + [anon_sym_for] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(3432), + [anon_sym_asm] = ACTIONS(3432), + [anon_sym_AT_LBRACK] = ACTIONS(3432), + [sym___double_quote] = ACTIONS(3432), + [sym___single_quote] = ACTIONS(3432), + [sym___c_double_quote] = ACTIONS(3432), + [sym___c_single_quote] = ACTIONS(3432), + [sym___r_double_quote] = ACTIONS(3432), + [sym___r_single_quote] = ACTIONS(3432), }, [1043] = { - [ts_builtin_sym_end] = ACTIONS(3201), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym___global] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_union] = ACTIONS(3203), - [anon_sym_pub] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [anon_sym_assert] = ACTIONS(3203), - [anon_sym_defer] = ACTIONS(3203), - [anon_sym_goto] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_DOLLARfor] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_POUND] = ACTIONS(3203), - [anon_sym_asm] = ACTIONS(3203), - [anon_sym_AT_LBRACK] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym___global] = ACTIONS(3013), + [anon_sym_type] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_pub] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_defer] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_DOLLARfor] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym_AT_LBRACK] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, [1044] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LF] = ACTIONS(2669), - [anon_sym_CR] = ACTIONS(2669), - [anon_sym_CR_LF] = ACTIONS(2669), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3416), + [anon_sym_LF] = ACTIONS(3416), + [anon_sym_CR] = ACTIONS(3416), + [anon_sym_CR_LF] = ACTIONS(3416), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym___global] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_pub] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [anon_sym_assert] = ACTIONS(2669), - [anon_sym_defer] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_DOLLARfor] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym_AT_LBRACK] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [anon_sym_DOT] = ACTIONS(3416), + [anon_sym_as] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_COMMA] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym___global] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_PIPE] = ACTIONS(3416), + [anon_sym_fn] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_PERCENT] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3416), + [anon_sym_BANG_EQ] = ACTIONS(3416), + [anon_sym_LT_EQ] = ACTIONS(3416), + [anon_sym_GT_EQ] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_struct] = ACTIONS(3416), + [anon_sym_union] = ACTIONS(3416), + [anon_sym_pub] = ACTIONS(3416), + [anon_sym_mut] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [anon_sym_QMARK] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_go] = ACTIONS(3416), + [anon_sym_spawn] = ACTIONS(3416), + [anon_sym_json_DOTdecode] = ACTIONS(3416), + [anon_sym_LBRACK2] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_CARET] = ACTIONS(3416), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(3416), + [anon_sym_LT_LT] = ACTIONS(3416), + [anon_sym_GT_GT] = ACTIONS(3416), + [anon_sym_GT_GT_GT] = ACTIONS(3416), + [anon_sym_AMP_CARET] = ACTIONS(3416), + [anon_sym_AMP_AMP] = ACTIONS(3416), + [anon_sym_PIPE_PIPE] = ACTIONS(3416), + [anon_sym_or] = ACTIONS(3416), + [sym_none] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_nil] = ACTIONS(3416), + [anon_sym_QMARK_DOT] = ACTIONS(3416), + [anon_sym_POUND_LBRACK] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_DOLLARif] = ACTIONS(3416), + [anon_sym_is] = ACTIONS(3416), + [anon_sym_BANGis] = ACTIONS(3416), + [anon_sym_in] = ACTIONS(3416), + [anon_sym_BANGin] = ACTIONS(3416), + [anon_sym_match] = ACTIONS(3416), + [anon_sym_select] = ACTIONS(3416), + [anon_sym_lock] = ACTIONS(3416), + [anon_sym_rlock] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_sql] = ACTIONS(3416), + [sym_int_literal] = ACTIONS(3416), + [sym_float_literal] = ACTIONS(3416), + [sym_rune_literal] = ACTIONS(3416), + [sym_pseudo_compile_time_identifier] = ACTIONS(3416), + [anon_sym_shared] = ACTIONS(3416), + [anon_sym_map_LBRACK] = ACTIONS(3416), + [anon_sym_chan] = ACTIONS(3416), + [anon_sym_thread] = ACTIONS(3416), + [anon_sym_atomic] = ACTIONS(3416), + [anon_sym_assert] = ACTIONS(3416), + [anon_sym_defer] = ACTIONS(3416), + [anon_sym_goto] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_DOLLARfor] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_POUND] = ACTIONS(3416), + [anon_sym_asm] = ACTIONS(3416), + [anon_sym_AT_LBRACK] = ACTIONS(3416), + [sym___double_quote] = ACTIONS(3416), + [sym___single_quote] = ACTIONS(3416), + [sym___c_double_quote] = ACTIONS(3416), + [sym___c_single_quote] = ACTIONS(3416), + [sym___r_double_quote] = ACTIONS(3416), + [sym___r_single_quote] = ACTIONS(3416), }, [1045] = { - [ts_builtin_sym_end] = ACTIONS(3241), - [sym_identifier] = ACTIONS(3243), - [anon_sym_LF] = ACTIONS(3243), - [anon_sym_CR] = ACTIONS(3243), - [anon_sym_CR_LF] = ACTIONS(3243), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_CR] = ACTIONS(3404), + [anon_sym_CR_LF] = ACTIONS(3404), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym___global] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3243), - [anon_sym_BANG_EQ] = ACTIONS(3243), - [anon_sym_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_EQ] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_pub] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3243), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3243), - [anon_sym_LT_LT] = ACTIONS(3243), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3243), - [anon_sym_AMP_CARET] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_PIPE_PIPE] = ACTIONS(3243), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3243), - [anon_sym_POUND_LBRACK] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3243), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3243), - [sym_rune_literal] = ACTIONS(3243), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3243), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [anon_sym_assert] = ACTIONS(3243), - [anon_sym_defer] = ACTIONS(3243), - [anon_sym_goto] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_DOLLARfor] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_POUND] = ACTIONS(3243), - [anon_sym_asm] = ACTIONS(3243), - [anon_sym_AT_LBRACK] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3243), - [sym___single_quote] = ACTIONS(3243), - [sym___c_double_quote] = ACTIONS(3243), - [sym___c_single_quote] = ACTIONS(3243), - [sym___r_double_quote] = ACTIONS(3243), - [sym___r_single_quote] = ACTIONS(3243), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_as] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3404), + [anon_sym_const] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym___global] = ACTIONS(3404), + [anon_sym_type] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_fn] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_LT_EQ] = ACTIONS(3404), + [anon_sym_GT_EQ] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3404), + [anon_sym_union] = ACTIONS(3404), + [anon_sym_pub] = ACTIONS(3404), + [anon_sym_mut] = ACTIONS(3404), + [anon_sym_enum] = ACTIONS(3404), + [anon_sym_interface] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_go] = ACTIONS(3404), + [anon_sym_spawn] = ACTIONS(3404), + [anon_sym_json_DOTdecode] = ACTIONS(3404), + [anon_sym_LBRACK2] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_GT_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_CARET] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_or] = ACTIONS(3404), + [sym_none] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_nil] = ACTIONS(3404), + [anon_sym_QMARK_DOT] = ACTIONS(3404), + [anon_sym_POUND_LBRACK] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_DOLLARif] = ACTIONS(3404), + [anon_sym_is] = ACTIONS(3404), + [anon_sym_BANGis] = ACTIONS(3404), + [anon_sym_in] = ACTIONS(3404), + [anon_sym_BANGin] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3404), + [anon_sym_lock] = ACTIONS(3404), + [anon_sym_rlock] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_sql] = ACTIONS(3404), + [sym_int_literal] = ACTIONS(3404), + [sym_float_literal] = ACTIONS(3404), + [sym_rune_literal] = ACTIONS(3404), + [sym_pseudo_compile_time_identifier] = ACTIONS(3404), + [anon_sym_shared] = ACTIONS(3404), + [anon_sym_map_LBRACK] = ACTIONS(3404), + [anon_sym_chan] = ACTIONS(3404), + [anon_sym_thread] = ACTIONS(3404), + [anon_sym_atomic] = ACTIONS(3404), + [anon_sym_assert] = ACTIONS(3404), + [anon_sym_defer] = ACTIONS(3404), + [anon_sym_goto] = ACTIONS(3404), + [anon_sym_break] = ACTIONS(3404), + [anon_sym_continue] = ACTIONS(3404), + [anon_sym_return] = ACTIONS(3404), + [anon_sym_DOLLARfor] = ACTIONS(3404), + [anon_sym_for] = ACTIONS(3404), + [anon_sym_POUND] = ACTIONS(3404), + [anon_sym_asm] = ACTIONS(3404), + [anon_sym_AT_LBRACK] = ACTIONS(3404), + [sym___double_quote] = ACTIONS(3404), + [sym___single_quote] = ACTIONS(3404), + [sym___c_double_quote] = ACTIONS(3404), + [sym___c_single_quote] = ACTIONS(3404), + [sym___r_double_quote] = ACTIONS(3404), + [sym___r_single_quote] = ACTIONS(3404), }, [1046] = { - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LF] = ACTIONS(3335), - [anon_sym_CR] = ACTIONS(3335), - [anon_sym_CR_LF] = ACTIONS(3335), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym___global] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_union] = ACTIONS(3335), - [anon_sym_pub] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3335), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3335), - [anon_sym_AMP_CARET] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_PIPE_PIPE] = ACTIONS(3335), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3335), - [anon_sym_POUND_LBRACK] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3335), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_defer] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_DOLLARfor] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_asm] = ACTIONS(3335), - [anon_sym_AT_LBRACK] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), + [anon_sym_DOT] = ACTIONS(3412), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym___global] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_BANG_EQ] = ACTIONS(3412), + [anon_sym_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_EQ] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_union] = ACTIONS(3412), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_CARET] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3412), + [anon_sym_POUND_LBRACK] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_defer] = ACTIONS(3412), + [anon_sym_goto] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_DOLLARfor] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_POUND] = ACTIONS(3412), + [anon_sym_asm] = ACTIONS(3412), + [anon_sym_AT_LBRACK] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), }, [1047] = { - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3263), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_CR] = ACTIONS(3263), - [anon_sym_CR_LF] = ACTIONS(3263), + [ts_builtin_sym_end] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3444), + [anon_sym_LF] = ACTIONS(3444), + [anon_sym_CR] = ACTIONS(3444), + [anon_sym_CR_LF] = ACTIONS(3444), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym___global] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3263), - [anon_sym_BANG_EQ] = ACTIONS(3263), - [anon_sym_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_EQ] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_union] = ACTIONS(3263), - [anon_sym_pub] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3263), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3263), - [anon_sym_LT_LT] = ACTIONS(3263), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3263), - [anon_sym_AMP_CARET] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3263), - [anon_sym_POUND_LBRACK] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3263), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3263), - [sym_rune_literal] = ACTIONS(3263), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3263), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [anon_sym_assert] = ACTIONS(3263), - [anon_sym_defer] = ACTIONS(3263), - [anon_sym_goto] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_DOLLARfor] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_POUND] = ACTIONS(3263), - [anon_sym_asm] = ACTIONS(3263), - [anon_sym_AT_LBRACK] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3263), - [sym___single_quote] = ACTIONS(3263), - [sym___c_double_quote] = ACTIONS(3263), - [sym___c_single_quote] = ACTIONS(3263), - [sym___r_double_quote] = ACTIONS(3263), - [sym___r_single_quote] = ACTIONS(3263), + [anon_sym_DOT] = ACTIONS(3444), + [anon_sym_as] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_const] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym___global] = ACTIONS(3444), + [anon_sym_type] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3444), + [anon_sym_fn] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_PERCENT] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_GT] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3444), + [anon_sym_BANG_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3444), + [anon_sym_GT_EQ] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_union] = ACTIONS(3444), + [anon_sym_pub] = ACTIONS(3444), + [anon_sym_mut] = ACTIONS(3444), + [anon_sym_enum] = ACTIONS(3444), + [anon_sym_interface] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_QMARK] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_go] = ACTIONS(3444), + [anon_sym_spawn] = ACTIONS(3444), + [anon_sym_json_DOTdecode] = ACTIONS(3444), + [anon_sym_LBRACK2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_CARET] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_LT_DASH] = ACTIONS(3444), + [anon_sym_LT_LT] = ACTIONS(3444), + [anon_sym_GT_GT] = ACTIONS(3444), + [anon_sym_GT_GT_GT] = ACTIONS(3444), + [anon_sym_AMP_CARET] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_PIPE_PIPE] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3444), + [sym_none] = ACTIONS(3444), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [sym_nil] = ACTIONS(3444), + [anon_sym_QMARK_DOT] = ACTIONS(3444), + [anon_sym_POUND_LBRACK] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_DOLLARif] = ACTIONS(3444), + [anon_sym_is] = ACTIONS(3444), + [anon_sym_BANGis] = ACTIONS(3444), + [anon_sym_in] = ACTIONS(3444), + [anon_sym_BANGin] = ACTIONS(3444), + [anon_sym_match] = ACTIONS(3444), + [anon_sym_select] = ACTIONS(3444), + [anon_sym_lock] = ACTIONS(3444), + [anon_sym_rlock] = ACTIONS(3444), + [anon_sym_unsafe] = ACTIONS(3444), + [anon_sym_sql] = ACTIONS(3444), + [sym_int_literal] = ACTIONS(3444), + [sym_float_literal] = ACTIONS(3444), + [sym_rune_literal] = ACTIONS(3444), + [sym_pseudo_compile_time_identifier] = ACTIONS(3444), + [anon_sym_shared] = ACTIONS(3444), + [anon_sym_map_LBRACK] = ACTIONS(3444), + [anon_sym_chan] = ACTIONS(3444), + [anon_sym_thread] = ACTIONS(3444), + [anon_sym_atomic] = ACTIONS(3444), + [anon_sym_assert] = ACTIONS(3444), + [anon_sym_defer] = ACTIONS(3444), + [anon_sym_goto] = ACTIONS(3444), + [anon_sym_break] = ACTIONS(3444), + [anon_sym_continue] = ACTIONS(3444), + [anon_sym_return] = ACTIONS(3444), + [anon_sym_DOLLARfor] = ACTIONS(3444), + [anon_sym_for] = ACTIONS(3444), + [anon_sym_POUND] = ACTIONS(3444), + [anon_sym_asm] = ACTIONS(3444), + [anon_sym_AT_LBRACK] = ACTIONS(3444), + [sym___double_quote] = ACTIONS(3444), + [sym___single_quote] = ACTIONS(3444), + [sym___c_double_quote] = ACTIONS(3444), + [sym___c_single_quote] = ACTIONS(3444), + [sym___r_double_quote] = ACTIONS(3444), + [sym___r_single_quote] = ACTIONS(3444), }, [1048] = { - [ts_builtin_sym_end] = ACTIONS(3411), - [sym_identifier] = ACTIONS(3413), - [anon_sym_LF] = ACTIONS(3413), - [anon_sym_CR] = ACTIONS(3413), - [anon_sym_CR_LF] = ACTIONS(3413), + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3388), + [anon_sym_LF] = ACTIONS(3388), + [anon_sym_CR] = ACTIONS(3388), + [anon_sym_CR_LF] = ACTIONS(3388), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_as] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym___global] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_fn] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_GT] = ACTIONS(3413), - [anon_sym_EQ_EQ] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_EQ] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3413), - [anon_sym_union] = ACTIONS(3413), - [anon_sym_pub] = ACTIONS(3413), - [anon_sym_mut] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_go] = ACTIONS(3413), - [anon_sym_spawn] = ACTIONS(3413), - [anon_sym_json_DOTdecode] = ACTIONS(3413), - [anon_sym_LBRACK2] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_LT_LT] = ACTIONS(3413), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_GT_GT_GT] = ACTIONS(3413), - [anon_sym_AMP_CARET] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [sym_none] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_nil] = ACTIONS(3413), - [anon_sym_QMARK_DOT] = ACTIONS(3413), - [anon_sym_POUND_LBRACK] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_DOLLARif] = ACTIONS(3413), - [anon_sym_is] = ACTIONS(3413), - [anon_sym_BANGis] = ACTIONS(3413), - [anon_sym_in] = ACTIONS(3413), - [anon_sym_BANGin] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_select] = ACTIONS(3413), - [anon_sym_lock] = ACTIONS(3413), - [anon_sym_rlock] = ACTIONS(3413), - [anon_sym_unsafe] = ACTIONS(3413), - [anon_sym_sql] = ACTIONS(3413), - [sym_int_literal] = ACTIONS(3413), - [sym_float_literal] = ACTIONS(3413), - [sym_rune_literal] = ACTIONS(3413), - [sym_pseudo_compile_time_identifier] = ACTIONS(3413), - [anon_sym_shared] = ACTIONS(3413), - [anon_sym_map_LBRACK] = ACTIONS(3413), - [anon_sym_chan] = ACTIONS(3413), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_defer] = ACTIONS(3413), - [anon_sym_goto] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_DOLLARfor] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_asm] = ACTIONS(3413), - [anon_sym_AT_LBRACK] = ACTIONS(3413), - [sym___double_quote] = ACTIONS(3413), - [sym___single_quote] = ACTIONS(3413), - [sym___c_double_quote] = ACTIONS(3413), - [sym___c_single_quote] = ACTIONS(3413), - [sym___r_double_quote] = ACTIONS(3413), - [sym___r_single_quote] = ACTIONS(3413), + [anon_sym_DOT] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_const] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym___global] = ACTIONS(3388), + [anon_sym_type] = ACTIONS(3388), + [anon_sym_PIPE] = ACTIONS(3388), + [anon_sym_fn] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_PERCENT] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_GT] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_struct] = ACTIONS(3388), + [anon_sym_union] = ACTIONS(3388), + [anon_sym_pub] = ACTIONS(3388), + [anon_sym_mut] = ACTIONS(3388), + [anon_sym_enum] = ACTIONS(3388), + [anon_sym_interface] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_go] = ACTIONS(3388), + [anon_sym_spawn] = ACTIONS(3388), + [anon_sym_json_DOTdecode] = ACTIONS(3388), + [anon_sym_LBRACK2] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3388), + [anon_sym_LT_DASH] = ACTIONS(3388), + [anon_sym_LT_LT] = ACTIONS(3388), + [anon_sym_GT_GT] = ACTIONS(3388), + [anon_sym_GT_GT_GT] = ACTIONS(3388), + [anon_sym_AMP_CARET] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3388), + [sym_none] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_nil] = ACTIONS(3388), + [anon_sym_QMARK_DOT] = ACTIONS(3388), + [anon_sym_POUND_LBRACK] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_DOLLARif] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_BANGis] = ACTIONS(3388), + [anon_sym_in] = ACTIONS(3388), + [anon_sym_BANGin] = ACTIONS(3388), + [anon_sym_match] = ACTIONS(3388), + [anon_sym_select] = ACTIONS(3388), + [anon_sym_lock] = ACTIONS(3388), + [anon_sym_rlock] = ACTIONS(3388), + [anon_sym_unsafe] = ACTIONS(3388), + [anon_sym_sql] = ACTIONS(3388), + [sym_int_literal] = ACTIONS(3388), + [sym_float_literal] = ACTIONS(3388), + [sym_rune_literal] = ACTIONS(3388), + [sym_pseudo_compile_time_identifier] = ACTIONS(3388), + [anon_sym_shared] = ACTIONS(3388), + [anon_sym_map_LBRACK] = ACTIONS(3388), + [anon_sym_chan] = ACTIONS(3388), + [anon_sym_thread] = ACTIONS(3388), + [anon_sym_atomic] = ACTIONS(3388), + [anon_sym_assert] = ACTIONS(3388), + [anon_sym_defer] = ACTIONS(3388), + [anon_sym_goto] = ACTIONS(3388), + [anon_sym_break] = ACTIONS(3388), + [anon_sym_continue] = ACTIONS(3388), + [anon_sym_return] = ACTIONS(3388), + [anon_sym_DOLLARfor] = ACTIONS(3388), + [anon_sym_for] = ACTIONS(3388), + [anon_sym_POUND] = ACTIONS(3388), + [anon_sym_asm] = ACTIONS(3388), + [anon_sym_AT_LBRACK] = ACTIONS(3388), + [sym___double_quote] = ACTIONS(3388), + [sym___single_quote] = ACTIONS(3388), + [sym___c_double_quote] = ACTIONS(3388), + [sym___c_single_quote] = ACTIONS(3388), + [sym___r_double_quote] = ACTIONS(3388), + [sym___r_single_quote] = ACTIONS(3388), }, [1049] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), + [ts_builtin_sym_end] = ACTIONS(3350), + [sym_identifier] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_CR] = ACTIONS(3352), + [anon_sym_CR_LF] = ACTIONS(3352), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [sym_pseudo_compile_time_identifier] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), + [anon_sym_DOT] = ACTIONS(3352), + [anon_sym_as] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_COMMA] = ACTIONS(3352), + [anon_sym_const] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym___global] = ACTIONS(3352), + [anon_sym_type] = ACTIONS(3352), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_fn] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_struct] = ACTIONS(3352), + [anon_sym_union] = ACTIONS(3352), + [anon_sym_pub] = ACTIONS(3352), + [anon_sym_mut] = ACTIONS(3352), + [anon_sym_enum] = ACTIONS(3352), + [anon_sym_interface] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_QMARK] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_go] = ACTIONS(3352), + [anon_sym_spawn] = ACTIONS(3352), + [anon_sym_json_DOTdecode] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_or] = ACTIONS(3352), + [sym_none] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_nil] = ACTIONS(3352), + [anon_sym_QMARK_DOT] = ACTIONS(3352), + [anon_sym_POUND_LBRACK] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_DOLLARif] = ACTIONS(3352), + [anon_sym_is] = ACTIONS(3352), + [anon_sym_BANGis] = ACTIONS(3352), + [anon_sym_in] = ACTIONS(3352), + [anon_sym_BANGin] = ACTIONS(3352), + [anon_sym_match] = ACTIONS(3352), + [anon_sym_select] = ACTIONS(3352), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3352), + [anon_sym_sql] = ACTIONS(3352), + [sym_int_literal] = ACTIONS(3352), + [sym_float_literal] = ACTIONS(3352), + [sym_rune_literal] = ACTIONS(3352), + [sym_pseudo_compile_time_identifier] = ACTIONS(3352), + [anon_sym_shared] = ACTIONS(3352), + [anon_sym_map_LBRACK] = ACTIONS(3352), + [anon_sym_chan] = ACTIONS(3352), + [anon_sym_thread] = ACTIONS(3352), + [anon_sym_atomic] = ACTIONS(3352), + [anon_sym_assert] = ACTIONS(3352), + [anon_sym_defer] = ACTIONS(3352), + [anon_sym_goto] = ACTIONS(3352), + [anon_sym_break] = ACTIONS(3352), + [anon_sym_continue] = ACTIONS(3352), + [anon_sym_return] = ACTIONS(3352), + [anon_sym_DOLLARfor] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3352), + [anon_sym_POUND] = ACTIONS(3352), + [anon_sym_asm] = ACTIONS(3352), + [anon_sym_AT_LBRACK] = ACTIONS(3352), + [sym___double_quote] = ACTIONS(3352), + [sym___single_quote] = ACTIONS(3352), + [sym___c_double_quote] = ACTIONS(3352), + [sym___c_single_quote] = ACTIONS(3352), + [sym___r_double_quote] = ACTIONS(3352), + [sym___r_single_quote] = ACTIONS(3352), }, [1050] = { - [ts_builtin_sym_end] = ACTIONS(3399), - [sym_identifier] = ACTIONS(3401), - [anon_sym_LF] = ACTIONS(3401), - [anon_sym_CR] = ACTIONS(3401), - [anon_sym_CR_LF] = ACTIONS(3401), + [ts_builtin_sym_end] = ACTIONS(3346), + [sym_identifier] = ACTIONS(3348), + [anon_sym_LF] = ACTIONS(3348), + [anon_sym_CR] = ACTIONS(3348), + [anon_sym_CR_LF] = ACTIONS(3348), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_as] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym___global] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_fn] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_union] = ACTIONS(3401), - [anon_sym_pub] = ACTIONS(3401), - [anon_sym_mut] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(3401), - [anon_sym_spawn] = ACTIONS(3401), - [anon_sym_json_DOTdecode] = ACTIONS(3401), - [anon_sym_LBRACK2] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_LT_LT] = ACTIONS(3401), - [anon_sym_GT_GT] = ACTIONS(3401), - [anon_sym_GT_GT_GT] = ACTIONS(3401), - [anon_sym_AMP_CARET] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [sym_none] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_nil] = ACTIONS(3401), - [anon_sym_QMARK_DOT] = ACTIONS(3401), - [anon_sym_POUND_LBRACK] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_DOLLARif] = ACTIONS(3401), - [anon_sym_is] = ACTIONS(3401), - [anon_sym_BANGis] = ACTIONS(3401), - [anon_sym_in] = ACTIONS(3401), - [anon_sym_BANGin] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_select] = ACTIONS(3401), - [anon_sym_lock] = ACTIONS(3401), - [anon_sym_rlock] = ACTIONS(3401), - [anon_sym_unsafe] = ACTIONS(3401), - [anon_sym_sql] = ACTIONS(3401), - [sym_int_literal] = ACTIONS(3401), - [sym_float_literal] = ACTIONS(3401), - [sym_rune_literal] = ACTIONS(3401), - [sym_pseudo_compile_time_identifier] = ACTIONS(3401), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3401), - [anon_sym_chan] = ACTIONS(3401), - [anon_sym_thread] = ACTIONS(3401), - [anon_sym_atomic] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_defer] = ACTIONS(3401), - [anon_sym_goto] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_DOLLARfor] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_asm] = ACTIONS(3401), - [anon_sym_AT_LBRACK] = ACTIONS(3401), - [sym___double_quote] = ACTIONS(3401), - [sym___single_quote] = ACTIONS(3401), - [sym___c_double_quote] = ACTIONS(3401), - [sym___c_single_quote] = ACTIONS(3401), - [sym___r_double_quote] = ACTIONS(3401), - [sym___r_single_quote] = ACTIONS(3401), + [anon_sym_DOT] = ACTIONS(3348), + [anon_sym_as] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_COMMA] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym___global] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_PIPE] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_PERCENT] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_GT] = ACTIONS(3348), + [anon_sym_EQ_EQ] = ACTIONS(3348), + [anon_sym_BANG_EQ] = ACTIONS(3348), + [anon_sym_LT_EQ] = ACTIONS(3348), + [anon_sym_GT_EQ] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_struct] = ACTIONS(3348), + [anon_sym_union] = ACTIONS(3348), + [anon_sym_pub] = ACTIONS(3348), + [anon_sym_mut] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [anon_sym_QMARK] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3348), + [anon_sym_json_DOTdecode] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_CARET] = ACTIONS(3348), + [anon_sym_AMP] = ACTIONS(3348), + [anon_sym_LT_DASH] = ACTIONS(3348), + [anon_sym_LT_LT] = ACTIONS(3348), + [anon_sym_GT_GT] = ACTIONS(3348), + [anon_sym_GT_GT_GT] = ACTIONS(3348), + [anon_sym_AMP_CARET] = ACTIONS(3348), + [anon_sym_AMP_AMP] = ACTIONS(3348), + [anon_sym_PIPE_PIPE] = ACTIONS(3348), + [anon_sym_or] = ACTIONS(3348), + [sym_none] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_nil] = ACTIONS(3348), + [anon_sym_QMARK_DOT] = ACTIONS(3348), + [anon_sym_POUND_LBRACK] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_DOLLARif] = ACTIONS(3348), + [anon_sym_is] = ACTIONS(3348), + [anon_sym_BANGis] = ACTIONS(3348), + [anon_sym_in] = ACTIONS(3348), + [anon_sym_BANGin] = ACTIONS(3348), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3348), + [anon_sym_lock] = ACTIONS(3348), + [anon_sym_rlock] = ACTIONS(3348), + [anon_sym_unsafe] = ACTIONS(3348), + [anon_sym_sql] = ACTIONS(3348), + [sym_int_literal] = ACTIONS(3348), + [sym_float_literal] = ACTIONS(3348), + [sym_rune_literal] = ACTIONS(3348), + [sym_pseudo_compile_time_identifier] = ACTIONS(3348), + [anon_sym_shared] = ACTIONS(3348), + [anon_sym_map_LBRACK] = ACTIONS(3348), + [anon_sym_chan] = ACTIONS(3348), + [anon_sym_thread] = ACTIONS(3348), + [anon_sym_atomic] = ACTIONS(3348), + [anon_sym_assert] = ACTIONS(3348), + [anon_sym_defer] = ACTIONS(3348), + [anon_sym_goto] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_DOLLARfor] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_POUND] = ACTIONS(3348), + [anon_sym_asm] = ACTIONS(3348), + [anon_sym_AT_LBRACK] = ACTIONS(3348), + [sym___double_quote] = ACTIONS(3348), + [sym___single_quote] = ACTIONS(3348), + [sym___c_double_quote] = ACTIONS(3348), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3348), + [sym___r_single_quote] = ACTIONS(3348), }, [1051] = { - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3362), + [anon_sym_LF] = ACTIONS(3362), + [anon_sym_CR] = ACTIONS(3362), + [anon_sym_CR_LF] = ACTIONS(3362), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym___global] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_pub] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3339), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3339), - [anon_sym_AMP_CARET] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3339), - [anon_sym_POUND_LBRACK] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3339), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_defer] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_DOLLARfor] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_POUND] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym_AT_LBRACK] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym___global] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_union] = ACTIONS(3362), + [anon_sym_pub] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3362), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3362), + [anon_sym_POUND_LBRACK] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3362), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3362), + [sym_rune_literal] = ACTIONS(3362), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3362), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [anon_sym_assert] = ACTIONS(3362), + [anon_sym_defer] = ACTIONS(3362), + [anon_sym_goto] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_DOLLARfor] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_POUND] = ACTIONS(3362), + [anon_sym_asm] = ACTIONS(3362), + [anon_sym_AT_LBRACK] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3362), + [sym___single_quote] = ACTIONS(3362), + [sym___c_double_quote] = ACTIONS(3362), + [sym___c_single_quote] = ACTIONS(3362), + [sym___r_double_quote] = ACTIONS(3362), + [sym___r_single_quote] = ACTIONS(3362), }, [1052] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LF] = ACTIONS(3391), - [anon_sym_CR] = ACTIONS(3391), - [anon_sym_CR_LF] = ACTIONS(3391), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3133), + [anon_sym_LF] = ACTIONS(3133), + [anon_sym_CR] = ACTIONS(3133), + [anon_sym_CR_LF] = ACTIONS(3133), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_pub] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3391), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3391), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3391), - [anon_sym_AMP_CARET] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3391), - [anon_sym_POUND_LBRACK] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3391), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3391), - [sym_rune_literal] = ACTIONS(3391), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3391), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_defer] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_DOLLARfor] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(3391), - [anon_sym_asm] = ACTIONS(3391), - [anon_sym_AT_LBRACK] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3391), - [sym___single_quote] = ACTIONS(3391), - [sym___c_double_quote] = ACTIONS(3391), - [sym___c_single_quote] = ACTIONS(3391), - [sym___r_double_quote] = ACTIONS(3391), - [sym___r_single_quote] = ACTIONS(3391), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_COMMA] = ACTIONS(3133), + [anon_sym_const] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym___global] = ACTIONS(3133), + [anon_sym_type] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_EQ_EQ] = ACTIONS(3133), + [anon_sym_BANG_EQ] = ACTIONS(3133), + [anon_sym_LT_EQ] = ACTIONS(3133), + [anon_sym_GT_EQ] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_union] = ACTIONS(3133), + [anon_sym_pub] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3133), + [anon_sym_DASH_DASH] = ACTIONS(3133), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3133), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3133), + [anon_sym_LT_LT] = ACTIONS(3133), + [anon_sym_GT_GT] = ACTIONS(3133), + [anon_sym_GT_GT_GT] = ACTIONS(3133), + [anon_sym_AMP_CARET] = ACTIONS(3133), + [anon_sym_AMP_AMP] = ACTIONS(3133), + [anon_sym_PIPE_PIPE] = ACTIONS(3133), + [anon_sym_or] = ACTIONS(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3133), + [anon_sym_POUND_LBRACK] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3133), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3133), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), + [sym_rune_literal] = ACTIONS(3133), + [sym_pseudo_compile_time_identifier] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3133), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [anon_sym_assert] = ACTIONS(3133), + [anon_sym_defer] = ACTIONS(3133), + [anon_sym_goto] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_DOLLARfor] = ACTIONS(3133), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3133), + [anon_sym_asm] = ACTIONS(3133), + [anon_sym_AT_LBRACK] = ACTIONS(3133), + [sym___double_quote] = ACTIONS(3133), + [sym___single_quote] = ACTIONS(3133), + [sym___c_double_quote] = ACTIONS(3133), + [sym___c_single_quote] = ACTIONS(3133), + [sym___r_double_quote] = ACTIONS(3133), + [sym___r_single_quote] = ACTIONS(3133), }, [1053] = { - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3099), + [anon_sym_LF] = ACTIONS(3099), + [anon_sym_CR] = ACTIONS(3099), + [anon_sym_CR_LF] = ACTIONS(3099), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym___global] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_pub] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_defer] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_DOLLARfor] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_POUND] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym_AT_LBRACK] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), + [anon_sym_DOT] = ACTIONS(3099), + [anon_sym_as] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_COMMA] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym___global] = ACTIONS(3099), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_fn] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_BANG_EQ] = ACTIONS(3099), + [anon_sym_LT_EQ] = ACTIONS(3099), + [anon_sym_GT_EQ] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_pub] = ACTIONS(3099), + [anon_sym_mut] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_interface] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_QMARK] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_go] = ACTIONS(3099), + [anon_sym_spawn] = ACTIONS(3099), + [anon_sym_json_DOTdecode] = ACTIONS(3099), + [anon_sym_LBRACK2] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_CARET] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_LT_DASH] = ACTIONS(3099), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(3099), + [anon_sym_GT_GT_GT] = ACTIONS(3099), + [anon_sym_AMP_CARET] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_PIPE_PIPE] = ACTIONS(3099), + [anon_sym_or] = ACTIONS(3099), + [sym_none] = ACTIONS(3099), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_nil] = ACTIONS(3099), + [anon_sym_QMARK_DOT] = ACTIONS(3099), + [anon_sym_POUND_LBRACK] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_DOLLARif] = ACTIONS(3099), + [anon_sym_is] = ACTIONS(3099), + [anon_sym_BANGis] = ACTIONS(3099), + [anon_sym_in] = ACTIONS(3099), + [anon_sym_BANGin] = ACTIONS(3099), + [anon_sym_match] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_rlock] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_sql] = ACTIONS(3099), + [sym_int_literal] = ACTIONS(3099), + [sym_float_literal] = ACTIONS(3099), + [sym_rune_literal] = ACTIONS(3099), + [sym_pseudo_compile_time_identifier] = ACTIONS(3099), + [anon_sym_shared] = ACTIONS(3099), + [anon_sym_map_LBRACK] = ACTIONS(3099), + [anon_sym_chan] = ACTIONS(3099), + [anon_sym_thread] = ACTIONS(3099), + [anon_sym_atomic] = ACTIONS(3099), + [anon_sym_assert] = ACTIONS(3099), + [anon_sym_defer] = ACTIONS(3099), + [anon_sym_goto] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_DOLLARfor] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_asm] = ACTIONS(3099), + [anon_sym_AT_LBRACK] = ACTIONS(3099), + [sym___double_quote] = ACTIONS(3099), + [sym___single_quote] = ACTIONS(3099), + [sym___c_double_quote] = ACTIONS(3099), + [sym___c_single_quote] = ACTIONS(3099), + [sym___r_double_quote] = ACTIONS(3099), + [sym___r_single_quote] = ACTIONS(3099), }, [1054] = { - [ts_builtin_sym_end] = ACTIONS(3096), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3428), + [anon_sym_LF] = ACTIONS(3428), + [anon_sym_CR] = ACTIONS(3428), + [anon_sym_CR_LF] = ACTIONS(3428), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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(3096), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_as] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_const] = ACTIONS(3428), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym___global] = ACTIONS(3428), + [anon_sym_type] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_fn] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_union] = ACTIONS(3428), + [anon_sym_pub] = ACTIONS(3428), + [anon_sym_mut] = ACTIONS(3428), + [anon_sym_enum] = ACTIONS(3428), + [anon_sym_interface] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_go] = ACTIONS(3428), + [anon_sym_spawn] = ACTIONS(3428), + [anon_sym_json_DOTdecode] = ACTIONS(3428), + [anon_sym_LBRACK2] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_LT_DASH] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3428), + [anon_sym_GT_GT_GT] = ACTIONS(3428), + [anon_sym_AMP_CARET] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_or] = ACTIONS(3428), + [sym_none] = ACTIONS(3428), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_nil] = ACTIONS(3428), + [anon_sym_QMARK_DOT] = ACTIONS(3428), + [anon_sym_POUND_LBRACK] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_DOLLARif] = ACTIONS(3428), + [anon_sym_is] = ACTIONS(3428), + [anon_sym_BANGis] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3428), + [anon_sym_BANGin] = ACTIONS(3428), + [anon_sym_match] = ACTIONS(3428), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3428), + [anon_sym_rlock] = ACTIONS(3428), + [anon_sym_unsafe] = ACTIONS(3428), + [anon_sym_sql] = ACTIONS(3428), + [sym_int_literal] = ACTIONS(3428), + [sym_float_literal] = ACTIONS(3428), + [sym_rune_literal] = ACTIONS(3428), + [sym_pseudo_compile_time_identifier] = ACTIONS(3428), + [anon_sym_shared] = ACTIONS(3428), + [anon_sym_map_LBRACK] = ACTIONS(3428), + [anon_sym_chan] = ACTIONS(3428), + [anon_sym_thread] = ACTIONS(3428), + [anon_sym_atomic] = ACTIONS(3428), + [anon_sym_assert] = ACTIONS(3428), + [anon_sym_defer] = ACTIONS(3428), + [anon_sym_goto] = ACTIONS(3428), + [anon_sym_break] = ACTIONS(3428), + [anon_sym_continue] = ACTIONS(3428), + [anon_sym_return] = ACTIONS(3428), + [anon_sym_DOLLARfor] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3428), + [anon_sym_POUND] = ACTIONS(3428), + [anon_sym_asm] = ACTIONS(3428), + [anon_sym_AT_LBRACK] = ACTIONS(3428), + [sym___double_quote] = ACTIONS(3428), + [sym___single_quote] = ACTIONS(3428), + [sym___c_double_quote] = ACTIONS(3428), + [sym___c_single_quote] = ACTIONS(3428), + [sym___r_double_quote] = ACTIONS(3428), + [sym___r_single_quote] = ACTIONS(3428), }, [1055] = { - [ts_builtin_sym_end] = ACTIONS(3106), - [sym_identifier] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_CR] = ACTIONS(3103), - [anon_sym_CR_LF] = ACTIONS(3103), + [ts_builtin_sym_end] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3201), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_CR] = ACTIONS(3201), + [anon_sym_CR_LF] = ACTIONS(3201), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_const] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym___global] = ACTIONS(3103), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_union] = ACTIONS(3103), - [anon_sym_pub] = ACTIONS(3103), - [anon_sym_mut] = ACTIONS(3103), - [anon_sym_enum] = ACTIONS(3103), - [anon_sym_interface] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3103), - [anon_sym_spawn] = ACTIONS(3103), - [anon_sym_json_DOTdecode] = ACTIONS(3103), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3103), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_nil] = ACTIONS(3103), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_DOLLARif] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_rlock] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_sql] = ACTIONS(3103), - [sym_int_literal] = ACTIONS(3103), - [sym_float_literal] = ACTIONS(3103), - [sym_rune_literal] = ACTIONS(3103), - [sym_pseudo_compile_time_identifier] = ACTIONS(3103), - [anon_sym_shared] = ACTIONS(3103), - [anon_sym_map_LBRACK] = ACTIONS(3103), - [anon_sym_chan] = ACTIONS(3103), - [anon_sym_thread] = ACTIONS(3103), - [anon_sym_atomic] = ACTIONS(3103), - [anon_sym_assert] = ACTIONS(3103), - [anon_sym_defer] = ACTIONS(3103), - [anon_sym_goto] = ACTIONS(3103), - [anon_sym_break] = ACTIONS(3103), - [anon_sym_continue] = ACTIONS(3103), - [anon_sym_return] = ACTIONS(3103), - [anon_sym_DOLLARfor] = ACTIONS(3103), - [anon_sym_for] = ACTIONS(3103), - [anon_sym_POUND] = ACTIONS(3103), - [anon_sym_asm] = ACTIONS(3103), - [anon_sym_AT_LBRACK] = ACTIONS(3103), - [sym___double_quote] = ACTIONS(3103), - [sym___single_quote] = ACTIONS(3103), - [sym___c_double_quote] = ACTIONS(3103), - [sym___c_single_quote] = ACTIONS(3103), - [sym___r_double_quote] = ACTIONS(3103), - [sym___r_single_quote] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3201), + [anon_sym_as] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3201), + [anon_sym_const] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym___global] = ACTIONS(3201), + [anon_sym_type] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3201), + [anon_sym_BANG_EQ] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3201), + [anon_sym_GT_EQ] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_union] = ACTIONS(3201), + [anon_sym_pub] = ACTIONS(3201), + [anon_sym_mut] = ACTIONS(3201), + [anon_sym_enum] = ACTIONS(3201), + [anon_sym_interface] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_QMARK] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_go] = ACTIONS(3201), + [anon_sym_spawn] = ACTIONS(3201), + [anon_sym_json_DOTdecode] = ACTIONS(3201), + [anon_sym_LBRACK2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_LT_DASH] = ACTIONS(3201), + [anon_sym_LT_LT] = ACTIONS(3201), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_GT_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_CARET] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_or] = ACTIONS(3201), + [sym_none] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_nil] = ACTIONS(3201), + [anon_sym_QMARK_DOT] = ACTIONS(3201), + [anon_sym_POUND_LBRACK] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_DOLLARif] = ACTIONS(3201), + [anon_sym_is] = ACTIONS(3201), + [anon_sym_BANGis] = ACTIONS(3201), + [anon_sym_in] = ACTIONS(3201), + [anon_sym_BANGin] = ACTIONS(3201), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_lock] = ACTIONS(3201), + [anon_sym_rlock] = ACTIONS(3201), + [anon_sym_unsafe] = ACTIONS(3201), + [anon_sym_sql] = ACTIONS(3201), + [sym_int_literal] = ACTIONS(3201), + [sym_float_literal] = ACTIONS(3201), + [sym_rune_literal] = ACTIONS(3201), + [sym_pseudo_compile_time_identifier] = ACTIONS(3201), + [anon_sym_shared] = ACTIONS(3201), + [anon_sym_map_LBRACK] = ACTIONS(3201), + [anon_sym_chan] = ACTIONS(3201), + [anon_sym_thread] = ACTIONS(3201), + [anon_sym_atomic] = ACTIONS(3201), + [anon_sym_assert] = ACTIONS(3201), + [anon_sym_defer] = ACTIONS(3201), + [anon_sym_goto] = ACTIONS(3201), + [anon_sym_break] = ACTIONS(3201), + [anon_sym_continue] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3201), + [anon_sym_DOLLARfor] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(3201), + [anon_sym_asm] = ACTIONS(3201), + [anon_sym_AT_LBRACK] = ACTIONS(3201), + [sym___double_quote] = ACTIONS(3201), + [sym___single_quote] = ACTIONS(3201), + [sym___c_double_quote] = ACTIONS(3201), + [sym___c_single_quote] = ACTIONS(3201), + [sym___r_double_quote] = ACTIONS(3201), + [sym___r_single_quote] = ACTIONS(3201), }, [1056] = { - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3267), - [anon_sym_CR] = ACTIONS(3267), - [anon_sym_CR_LF] = ACTIONS(3267), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_COMMA] = ACTIONS(3267), - [anon_sym_const] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym___global] = ACTIONS(3267), - [anon_sym_type] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3267), - [anon_sym_BANG_EQ] = ACTIONS(3267), - [anon_sym_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_EQ] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_union] = ACTIONS(3267), - [anon_sym_pub] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_enum] = ACTIONS(3267), - [anon_sym_interface] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3267), - [anon_sym_LT_LT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3267), - [anon_sym_AMP_CARET] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_PIPE_PIPE] = ACTIONS(3267), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3267), - [anon_sym_POUND_LBRACK] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3267), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3267), - [sym_rune_literal] = ACTIONS(3267), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3267), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [anon_sym_assert] = ACTIONS(3267), - [anon_sym_defer] = ACTIONS(3267), - [anon_sym_goto] = ACTIONS(3267), - [anon_sym_break] = ACTIONS(3267), - [anon_sym_continue] = ACTIONS(3267), - [anon_sym_return] = ACTIONS(3267), - [anon_sym_DOLLARfor] = ACTIONS(3267), - [anon_sym_for] = ACTIONS(3267), - [anon_sym_POUND] = ACTIONS(3267), - [anon_sym_asm] = ACTIONS(3267), - [anon_sym_AT_LBRACK] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3267), - [sym___single_quote] = ACTIONS(3267), - [sym___c_double_quote] = ACTIONS(3267), - [sym___c_single_quote] = ACTIONS(3267), - [sym___r_double_quote] = ACTIONS(3267), - [sym___r_single_quote] = ACTIONS(3267), - }, - [1057] = { - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3211), - [anon_sym_LF] = ACTIONS(3211), - [anon_sym_CR] = ACTIONS(3211), - [anon_sym_CR_LF] = ACTIONS(3211), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym___global] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3211), - [anon_sym_BANG_EQ] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_pub] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3211), - [anon_sym_LT_LT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3211), - [anon_sym_AMP_CARET] = ACTIONS(3211), - [anon_sym_AMP_AMP] = ACTIONS(3211), - [anon_sym_PIPE_PIPE] = ACTIONS(3211), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3211), - [anon_sym_POUND_LBRACK] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [anon_sym_assert] = ACTIONS(3211), - [anon_sym_defer] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_DOLLARfor] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym_AT_LBRACK] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3211), - [sym___single_quote] = ACTIONS(3211), - [sym___c_double_quote] = ACTIONS(3211), - [sym___c_single_quote] = ACTIONS(3211), - [sym___r_double_quote] = ACTIONS(3211), - [sym___r_single_quote] = ACTIONS(3211), - }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LF] = ACTIONS(3387), - [anon_sym_CR] = ACTIONS(3387), - [anon_sym_CR_LF] = ACTIONS(3387), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym___global] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_EQ] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(3387), - [anon_sym_pub] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3387), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3387), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3387), - [anon_sym_AMP_CARET] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3387), - [anon_sym_POUND_LBRACK] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3387), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3387), - [sym_rune_literal] = ACTIONS(3387), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3387), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_defer] = ACTIONS(3387), - [anon_sym_goto] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_DOLLARfor] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_POUND] = ACTIONS(3387), - [anon_sym_asm] = ACTIONS(3387), - [anon_sym_AT_LBRACK] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3387), - [sym___single_quote] = ACTIONS(3387), - [sym___c_double_quote] = ACTIONS(3387), - [sym___c_single_quote] = ACTIONS(3387), - [sym___r_double_quote] = ACTIONS(3387), - [sym___r_single_quote] = ACTIONS(3387), - }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(3221), - [sym_identifier] = ACTIONS(3223), - [anon_sym_LF] = ACTIONS(3223), - [anon_sym_CR] = ACTIONS(3223), - [anon_sym_CR_LF] = ACTIONS(3223), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym___global] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_EQ] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_union] = ACTIONS(3223), - [anon_sym_pub] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3223), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3223), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3223), - [anon_sym_AMP_CARET] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3223), - [anon_sym_POUND_LBRACK] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3223), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3223), - [sym_rune_literal] = ACTIONS(3223), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3223), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [anon_sym_assert] = ACTIONS(3223), - [anon_sym_defer] = ACTIONS(3223), - [anon_sym_goto] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_DOLLARfor] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_POUND] = ACTIONS(3223), - [anon_sym_asm] = ACTIONS(3223), - [anon_sym_AT_LBRACK] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3223), - [sym___single_quote] = ACTIONS(3223), - [sym___c_double_quote] = ACTIONS(3223), - [sym___c_single_quote] = ACTIONS(3223), - [sym___r_double_quote] = ACTIONS(3223), - [sym___r_single_quote] = ACTIONS(3223), - }, - [1060] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym___global] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3271), - [anon_sym_BANG_EQ] = ACTIONS(3271), - [anon_sym_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_EQ] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_union] = ACTIONS(3271), - [anon_sym_pub] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3271), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3271), - [anon_sym_AMP_CARET] = ACTIONS(3271), - [anon_sym_AMP_AMP] = ACTIONS(3271), - [anon_sym_PIPE_PIPE] = ACTIONS(3271), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3271), - [anon_sym_POUND_LBRACK] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3271), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [anon_sym_assert] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_goto] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_DOLLARfor] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_POUND] = ACTIONS(3271), - [anon_sym_asm] = ACTIONS(3271), - [anon_sym_AT_LBRACK] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), - }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(3273), - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_as] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym___global] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_union] = ACTIONS(3275), - [anon_sym_pub] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3275), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3275), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_GT_GT_GT] = ACTIONS(3275), - [anon_sym_AMP_CARET] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_QMARK_DOT] = ACTIONS(3275), - [anon_sym_POUND_LBRACK] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_BANGis] = ACTIONS(3275), - [anon_sym_in] = ACTIONS(3275), - [anon_sym_BANGin] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3275), - [sym_rune_literal] = ACTIONS(3275), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3275), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [anon_sym_assert] = ACTIONS(3275), - [anon_sym_defer] = ACTIONS(3275), - [anon_sym_goto] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_DOLLARfor] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_POUND] = ACTIONS(3275), - [anon_sym_asm] = ACTIONS(3275), - [anon_sym_AT_LBRACK] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3275), - [sym___single_quote] = ACTIONS(3275), - [sym___c_double_quote] = ACTIONS(3275), - [sym___c_single_quote] = ACTIONS(3275), - [sym___r_double_quote] = ACTIONS(3275), - [sym___r_single_quote] = ACTIONS(3275), - }, - [1062] = { - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_CR] = ACTIONS(3383), - [anon_sym_CR_LF] = ACTIONS(3383), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym___global] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_union] = ACTIONS(3383), - [anon_sym_pub] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3383), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3383), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3383), - [anon_sym_AMP_CARET] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3383), - [anon_sym_POUND_LBRACK] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3383), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3383), - [sym_rune_literal] = ACTIONS(3383), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3383), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_defer] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_DOLLARfor] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_POUND] = ACTIONS(3383), - [anon_sym_asm] = ACTIONS(3383), - [anon_sym_AT_LBRACK] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3383), - [sym___single_quote] = ACTIONS(3383), - [sym___c_double_quote] = ACTIONS(3383), - [sym___c_single_quote] = ACTIONS(3383), - [sym___r_double_quote] = ACTIONS(3383), - [sym___r_single_quote] = ACTIONS(3383), - }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(3089), - [sym_identifier] = ACTIONS(3091), - [anon_sym_LF] = ACTIONS(3091), - [anon_sym_CR] = ACTIONS(3091), - [anon_sym_CR_LF] = ACTIONS(3091), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_const] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym___global] = ACTIONS(3091), - [anon_sym_type] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3091), - [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(3096), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_union] = ACTIONS(3091), - [anon_sym_pub] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_enum] = ACTIONS(3091), - [anon_sym_interface] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3091), - [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(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [anon_sym_lock] = ACTIONS(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), - [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [anon_sym_assert] = ACTIONS(3091), - [anon_sym_defer] = ACTIONS(3091), - [anon_sym_goto] = ACTIONS(3091), - [anon_sym_break] = ACTIONS(3091), - [anon_sym_continue] = ACTIONS(3091), - [anon_sym_return] = ACTIONS(3091), - [anon_sym_DOLLARfor] = ACTIONS(3091), - [anon_sym_for] = ACTIONS(3091), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_asm] = ACTIONS(3091), - [anon_sym_AT_LBRACK] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), - }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3379), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_CR] = ACTIONS(3379), - [anon_sym_CR_LF] = ACTIONS(3379), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym___global] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_union] = ACTIONS(3379), - [anon_sym_pub] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3379), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3379), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3379), - [anon_sym_AMP_CARET] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3379), - [anon_sym_POUND_LBRACK] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3379), - [sym_rune_literal] = ACTIONS(3379), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3379), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_defer] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_DOLLARfor] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_POUND] = ACTIONS(3379), - [anon_sym_asm] = ACTIONS(3379), - [anon_sym_AT_LBRACK] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3379), - [sym___single_quote] = ACTIONS(3379), - [sym___c_double_quote] = ACTIONS(3379), - [sym___c_single_quote] = ACTIONS(3379), - [sym___r_double_quote] = ACTIONS(3379), - [sym___r_single_quote] = ACTIONS(3379), - }, - [1065] = { - [ts_builtin_sym_end] = ACTIONS(3277), - [sym_identifier] = ACTIONS(3279), - [anon_sym_LF] = ACTIONS(3279), - [anon_sym_CR] = ACTIONS(3279), - [anon_sym_CR_LF] = ACTIONS(3279), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym___global] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_EQ] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_union] = ACTIONS(3279), - [anon_sym_pub] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3279), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3279), - [anon_sym_AMP_CARET] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3279), - [anon_sym_POUND_LBRACK] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3279), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3279), - [sym_rune_literal] = ACTIONS(3279), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3279), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [anon_sym_assert] = ACTIONS(3279), - [anon_sym_defer] = ACTIONS(3279), - [anon_sym_goto] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_DOLLARfor] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_POUND] = ACTIONS(3279), - [anon_sym_asm] = ACTIONS(3279), - [anon_sym_AT_LBRACK] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3279), - [sym___single_quote] = ACTIONS(3279), - [sym___c_double_quote] = ACTIONS(3279), - [sym___c_single_quote] = ACTIONS(3279), - [sym___r_double_quote] = ACTIONS(3279), - [sym___r_single_quote] = ACTIONS(3279), - }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(2667), - [sym_identifier] = ACTIONS(2669), - [anon_sym_LF] = ACTIONS(2669), - [anon_sym_CR] = ACTIONS(2669), - [anon_sym_CR_LF] = ACTIONS(2669), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_const] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym___global] = ACTIONS(2669), - [anon_sym_type] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_union] = ACTIONS(2669), - [anon_sym_pub] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_enum] = ACTIONS(2669), - [anon_sym_interface] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [anon_sym_assert] = ACTIONS(2669), - [anon_sym_defer] = ACTIONS(2669), - [anon_sym_goto] = ACTIONS(2669), - [anon_sym_break] = ACTIONS(2669), - [anon_sym_continue] = ACTIONS(2669), - [anon_sym_return] = ACTIONS(2669), - [anon_sym_DOLLARfor] = ACTIONS(2669), - [anon_sym_for] = ACTIONS(2669), - [anon_sym_POUND] = ACTIONS(2669), - [anon_sym_asm] = ACTIONS(2669), - [anon_sym_AT_LBRACK] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), - }, - [1067] = { - [ts_builtin_sym_end] = ACTIONS(3435), - [sym_identifier] = ACTIONS(3437), - [anon_sym_LF] = ACTIONS(3437), - [anon_sym_CR] = ACTIONS(3437), - [anon_sym_CR_LF] = ACTIONS(3437), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym___global] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_union] = ACTIONS(3437), - [anon_sym_pub] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3437), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3437), - [anon_sym_AMP_CARET] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3437), - [anon_sym_POUND_LBRACK] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3437), - [sym_rune_literal] = ACTIONS(3437), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3437), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [anon_sym_assert] = ACTIONS(3437), - [anon_sym_defer] = ACTIONS(3437), - [anon_sym_goto] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_DOLLARfor] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_asm] = ACTIONS(3437), - [anon_sym_AT_LBRACK] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3437), - [sym___single_quote] = ACTIONS(3437), - [sym___c_double_quote] = ACTIONS(3437), - [sym___c_single_quote] = ACTIONS(3437), - [sym___r_double_quote] = ACTIONS(3437), - [sym___r_single_quote] = ACTIONS(3437), - }, - [1068] = { [ts_builtin_sym_end] = ACTIONS(3281), [sym_identifier] = ACTIONS(3283), [anon_sym_LF] = ACTIONS(3283), @@ -146612,997 +145486,2383 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3283), [sym___r_single_quote] = ACTIONS(3283), }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(3438), + [sym_identifier] = ACTIONS(3440), + [anon_sym_LF] = ACTIONS(3440), + [anon_sym_CR] = ACTIONS(3440), + [anon_sym_CR_LF] = ACTIONS(3440), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_const] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym___global] = ACTIONS(3440), + [anon_sym_type] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_fn] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3440), + [anon_sym_EQ_EQ] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3440), + [anon_sym_LT_EQ] = ACTIONS(3440), + [anon_sym_GT_EQ] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3440), + [anon_sym_union] = ACTIONS(3440), + [anon_sym_pub] = ACTIONS(3440), + [anon_sym_mut] = ACTIONS(3440), + [anon_sym_enum] = ACTIONS(3440), + [anon_sym_interface] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_QMARK] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_go] = ACTIONS(3440), + [anon_sym_spawn] = ACTIONS(3440), + [anon_sym_json_DOTdecode] = ACTIONS(3440), + [anon_sym_LBRACK2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3440), + [anon_sym_LT_DASH] = ACTIONS(3440), + [anon_sym_LT_LT] = ACTIONS(3440), + [anon_sym_GT_GT] = ACTIONS(3440), + [anon_sym_GT_GT_GT] = ACTIONS(3440), + [anon_sym_AMP_CARET] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_PIPE_PIPE] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3440), + [sym_none] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_nil] = ACTIONS(3440), + [anon_sym_QMARK_DOT] = ACTIONS(3440), + [anon_sym_POUND_LBRACK] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_DOLLARif] = ACTIONS(3440), + [anon_sym_is] = ACTIONS(3440), + [anon_sym_BANGis] = ACTIONS(3440), + [anon_sym_in] = ACTIONS(3440), + [anon_sym_BANGin] = ACTIONS(3440), + [anon_sym_match] = ACTIONS(3440), + [anon_sym_select] = ACTIONS(3440), + [anon_sym_lock] = ACTIONS(3440), + [anon_sym_rlock] = ACTIONS(3440), + [anon_sym_unsafe] = ACTIONS(3440), + [anon_sym_sql] = ACTIONS(3440), + [sym_int_literal] = ACTIONS(3440), + [sym_float_literal] = ACTIONS(3440), + [sym_rune_literal] = ACTIONS(3440), + [sym_pseudo_compile_time_identifier] = ACTIONS(3440), + [anon_sym_shared] = ACTIONS(3440), + [anon_sym_map_LBRACK] = ACTIONS(3440), + [anon_sym_chan] = ACTIONS(3440), + [anon_sym_thread] = ACTIONS(3440), + [anon_sym_atomic] = ACTIONS(3440), + [anon_sym_assert] = ACTIONS(3440), + [anon_sym_defer] = ACTIONS(3440), + [anon_sym_goto] = ACTIONS(3440), + [anon_sym_break] = ACTIONS(3440), + [anon_sym_continue] = ACTIONS(3440), + [anon_sym_return] = ACTIONS(3440), + [anon_sym_DOLLARfor] = ACTIONS(3440), + [anon_sym_for] = ACTIONS(3440), + [anon_sym_POUND] = ACTIONS(3440), + [anon_sym_asm] = ACTIONS(3440), + [anon_sym_AT_LBRACK] = ACTIONS(3440), + [sym___double_quote] = ACTIONS(3440), + [sym___single_quote] = ACTIONS(3440), + [sym___c_double_quote] = ACTIONS(3440), + [sym___c_single_quote] = ACTIONS(3440), + [sym___r_double_quote] = ACTIONS(3440), + [sym___r_single_quote] = ACTIONS(3440), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(3207), + [sym_identifier] = ACTIONS(3209), + [anon_sym_LF] = ACTIONS(3209), + [anon_sym_CR] = ACTIONS(3209), + [anon_sym_CR_LF] = ACTIONS(3209), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3209), + [anon_sym_as] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_COMMA] = ACTIONS(3209), + [anon_sym_const] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym___global] = ACTIONS(3209), + [anon_sym_type] = ACTIONS(3209), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_fn] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_SLASH] = ACTIONS(3209), + [anon_sym_PERCENT] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT_EQ] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3209), + [anon_sym_union] = ACTIONS(3209), + [anon_sym_pub] = ACTIONS(3209), + [anon_sym_mut] = ACTIONS(3209), + [anon_sym_enum] = ACTIONS(3209), + [anon_sym_interface] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_QMARK] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_go] = ACTIONS(3209), + [anon_sym_spawn] = ACTIONS(3209), + [anon_sym_json_DOTdecode] = ACTIONS(3209), + [anon_sym_LBRACK2] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_LT_DASH] = ACTIONS(3209), + [anon_sym_LT_LT] = ACTIONS(3209), + [anon_sym_GT_GT] = ACTIONS(3209), + [anon_sym_GT_GT_GT] = ACTIONS(3209), + [anon_sym_AMP_CARET] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_PIPE_PIPE] = ACTIONS(3209), + [anon_sym_or] = ACTIONS(3209), + [sym_none] = ACTIONS(3209), + [sym_true] = ACTIONS(3209), + [sym_false] = ACTIONS(3209), + [sym_nil] = ACTIONS(3209), + [anon_sym_QMARK_DOT] = ACTIONS(3209), + [anon_sym_POUND_LBRACK] = ACTIONS(3209), + [anon_sym_if] = ACTIONS(3209), + [anon_sym_DOLLARif] = ACTIONS(3209), + [anon_sym_is] = ACTIONS(3209), + [anon_sym_BANGis] = ACTIONS(3209), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_BANGin] = ACTIONS(3209), + [anon_sym_match] = ACTIONS(3209), + [anon_sym_select] = ACTIONS(3209), + [anon_sym_lock] = ACTIONS(3209), + [anon_sym_rlock] = ACTIONS(3209), + [anon_sym_unsafe] = ACTIONS(3209), + [anon_sym_sql] = ACTIONS(3209), + [sym_int_literal] = ACTIONS(3209), + [sym_float_literal] = ACTIONS(3209), + [sym_rune_literal] = ACTIONS(3209), + [sym_pseudo_compile_time_identifier] = ACTIONS(3209), + [anon_sym_shared] = ACTIONS(3209), + [anon_sym_map_LBRACK] = ACTIONS(3209), + [anon_sym_chan] = ACTIONS(3209), + [anon_sym_thread] = ACTIONS(3209), + [anon_sym_atomic] = ACTIONS(3209), + [anon_sym_assert] = ACTIONS(3209), + [anon_sym_defer] = ACTIONS(3209), + [anon_sym_goto] = ACTIONS(3209), + [anon_sym_break] = ACTIONS(3209), + [anon_sym_continue] = ACTIONS(3209), + [anon_sym_return] = ACTIONS(3209), + [anon_sym_DOLLARfor] = ACTIONS(3209), + [anon_sym_for] = ACTIONS(3209), + [anon_sym_POUND] = ACTIONS(3209), + [anon_sym_asm] = ACTIONS(3209), + [anon_sym_AT_LBRACK] = ACTIONS(3209), + [sym___double_quote] = ACTIONS(3209), + [sym___single_quote] = ACTIONS(3209), + [sym___c_double_quote] = ACTIONS(3209), + [sym___c_single_quote] = ACTIONS(3209), + [sym___r_double_quote] = ACTIONS(3209), + [sym___r_single_quote] = ACTIONS(3209), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3177), + [anon_sym_LF] = ACTIONS(3177), + [anon_sym_CR] = ACTIONS(3177), + [anon_sym_CR_LF] = ACTIONS(3177), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_COMMA] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym___global] = ACTIONS(3177), + [anon_sym_type] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_fn] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_SLASH] = ACTIONS(3177), + [anon_sym_PERCENT] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3177), + [anon_sym_BANG_EQ] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3177), + [anon_sym_pub] = ACTIONS(3177), + [anon_sym_mut] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3177), + [anon_sym_DASH_DASH] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_go] = ACTIONS(3177), + [anon_sym_spawn] = ACTIONS(3177), + [anon_sym_json_DOTdecode] = ACTIONS(3177), + [anon_sym_LBRACK2] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_CARET] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_LT_DASH] = ACTIONS(3177), + [anon_sym_LT_LT] = ACTIONS(3177), + [anon_sym_GT_GT] = ACTIONS(3177), + [anon_sym_GT_GT_GT] = ACTIONS(3177), + [anon_sym_AMP_CARET] = ACTIONS(3177), + [anon_sym_AMP_AMP] = ACTIONS(3177), + [anon_sym_PIPE_PIPE] = ACTIONS(3177), + [anon_sym_or] = ACTIONS(3177), + [sym_none] = ACTIONS(3177), + [sym_true] = ACTIONS(3177), + [sym_false] = ACTIONS(3177), + [sym_nil] = ACTIONS(3177), + [anon_sym_QMARK_DOT] = ACTIONS(3177), + [anon_sym_POUND_LBRACK] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_DOLLARif] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3177), + [anon_sym_BANGis] = ACTIONS(3177), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_rlock] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_sql] = ACTIONS(3177), + [sym_int_literal] = ACTIONS(3177), + [sym_float_literal] = ACTIONS(3177), + [sym_rune_literal] = ACTIONS(3177), + [sym_pseudo_compile_time_identifier] = ACTIONS(3177), + [anon_sym_shared] = ACTIONS(3177), + [anon_sym_map_LBRACK] = ACTIONS(3177), + [anon_sym_chan] = ACTIONS(3177), + [anon_sym_thread] = ACTIONS(3177), + [anon_sym_atomic] = ACTIONS(3177), + [anon_sym_assert] = ACTIONS(3177), + [anon_sym_defer] = ACTIONS(3177), + [anon_sym_goto] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_DOLLARfor] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_POUND] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3177), + [anon_sym_AT_LBRACK] = ACTIONS(3177), + [sym___double_quote] = ACTIONS(3177), + [sym___single_quote] = ACTIONS(3177), + [sym___c_double_quote] = ACTIONS(3177), + [sym___c_single_quote] = ACTIONS(3177), + [sym___r_double_quote] = ACTIONS(3177), + [sym___r_single_quote] = ACTIONS(3177), + }, + [1060] = { + [ts_builtin_sym_end] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3181), + [anon_sym_LF] = ACTIONS(3181), + [anon_sym_CR] = ACTIONS(3181), + [anon_sym_CR_LF] = ACTIONS(3181), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3181), + [anon_sym_as] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_COMMA] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym___global] = ACTIONS(3181), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_SLASH] = ACTIONS(3181), + [anon_sym_PERCENT] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_GT] = ACTIONS(3181), + [anon_sym_EQ_EQ] = ACTIONS(3181), + [anon_sym_BANG_EQ] = ACTIONS(3181), + [anon_sym_LT_EQ] = ACTIONS(3181), + [anon_sym_GT_EQ] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_pub] = ACTIONS(3181), + [anon_sym_mut] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_go] = ACTIONS(3181), + [anon_sym_spawn] = ACTIONS(3181), + [anon_sym_json_DOTdecode] = ACTIONS(3181), + [anon_sym_LBRACK2] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_LT_DASH] = ACTIONS(3181), + [anon_sym_LT_LT] = ACTIONS(3181), + [anon_sym_GT_GT] = ACTIONS(3181), + [anon_sym_GT_GT_GT] = ACTIONS(3181), + [anon_sym_AMP_CARET] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_PIPE_PIPE] = ACTIONS(3181), + [anon_sym_or] = ACTIONS(3181), + [sym_none] = ACTIONS(3181), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [sym_nil] = ACTIONS(3181), + [anon_sym_QMARK_DOT] = ACTIONS(3181), + [anon_sym_POUND_LBRACK] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_DOLLARif] = ACTIONS(3181), + [anon_sym_is] = ACTIONS(3181), + [anon_sym_BANGis] = ACTIONS(3181), + [anon_sym_in] = ACTIONS(3181), + [anon_sym_BANGin] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_rlock] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_sql] = ACTIONS(3181), + [sym_int_literal] = ACTIONS(3181), + [sym_float_literal] = ACTIONS(3181), + [sym_rune_literal] = ACTIONS(3181), + [sym_pseudo_compile_time_identifier] = ACTIONS(3181), + [anon_sym_shared] = ACTIONS(3181), + [anon_sym_map_LBRACK] = ACTIONS(3181), + [anon_sym_chan] = ACTIONS(3181), + [anon_sym_thread] = ACTIONS(3181), + [anon_sym_atomic] = ACTIONS(3181), + [anon_sym_assert] = ACTIONS(3181), + [anon_sym_defer] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_DOLLARfor] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym_AT_LBRACK] = ACTIONS(3181), + [sym___double_quote] = ACTIONS(3181), + [sym___single_quote] = ACTIONS(3181), + [sym___c_double_quote] = ACTIONS(3181), + [sym___c_single_quote] = ACTIONS(3181), + [sym___r_double_quote] = ACTIONS(3181), + [sym___r_single_quote] = ACTIONS(3181), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3193), + [anon_sym_LF] = ACTIONS(3193), + [anon_sym_CR] = ACTIONS(3193), + [anon_sym_CR_LF] = ACTIONS(3193), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym___global] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_PIPE] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_PERCENT] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_pub] = ACTIONS(3193), + [anon_sym_mut] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_go] = ACTIONS(3193), + [anon_sym_spawn] = ACTIONS(3193), + [anon_sym_json_DOTdecode] = ACTIONS(3193), + [anon_sym_LBRACK2] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_LT_DASH] = ACTIONS(3193), + [anon_sym_LT_LT] = ACTIONS(3193), + [anon_sym_GT_GT] = ACTIONS(3193), + [anon_sym_GT_GT_GT] = ACTIONS(3193), + [anon_sym_AMP_CARET] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_nil] = ACTIONS(3193), + [anon_sym_QMARK_DOT] = ACTIONS(3193), + [anon_sym_POUND_LBRACK] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_DOLLARif] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3193), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_BANGin] = ACTIONS(3193), + [anon_sym_match] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_lock] = ACTIONS(3193), + [anon_sym_rlock] = ACTIONS(3193), + [anon_sym_unsafe] = ACTIONS(3193), + [anon_sym_sql] = ACTIONS(3193), + [sym_int_literal] = ACTIONS(3193), + [sym_float_literal] = ACTIONS(3193), + [sym_rune_literal] = ACTIONS(3193), + [sym_pseudo_compile_time_identifier] = ACTIONS(3193), + [anon_sym_shared] = ACTIONS(3193), + [anon_sym_map_LBRACK] = ACTIONS(3193), + [anon_sym_chan] = ACTIONS(3193), + [anon_sym_thread] = ACTIONS(3193), + [anon_sym_atomic] = ACTIONS(3193), + [anon_sym_assert] = ACTIONS(3193), + [anon_sym_defer] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_DOLLARfor] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_POUND] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym_AT_LBRACK] = ACTIONS(3193), + [sym___double_quote] = ACTIONS(3193), + [sym___single_quote] = ACTIONS(3193), + [sym___c_double_quote] = ACTIONS(3193), + [sym___c_single_quote] = ACTIONS(3193), + [sym___r_double_quote] = ACTIONS(3193), + [sym___r_single_quote] = ACTIONS(3193), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(3203), + [sym_identifier] = ACTIONS(3205), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_CR] = ACTIONS(3205), + [anon_sym_CR_LF] = ACTIONS(3205), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3205), + [anon_sym_as] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_COMMA] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym___global] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_fn] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_PERCENT] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_pub] = ACTIONS(3205), + [anon_sym_mut] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_QMARK] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_go] = ACTIONS(3205), + [anon_sym_spawn] = ACTIONS(3205), + [anon_sym_json_DOTdecode] = ACTIONS(3205), + [anon_sym_LBRACK2] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_LT_DASH] = ACTIONS(3205), + [anon_sym_LT_LT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3205), + [anon_sym_GT_GT_GT] = ACTIONS(3205), + [anon_sym_AMP_CARET] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_or] = ACTIONS(3205), + [sym_none] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_nil] = ACTIONS(3205), + [anon_sym_QMARK_DOT] = ACTIONS(3205), + [anon_sym_POUND_LBRACK] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_DOLLARif] = ACTIONS(3205), + [anon_sym_is] = ACTIONS(3205), + [anon_sym_BANGis] = ACTIONS(3205), + [anon_sym_in] = ACTIONS(3205), + [anon_sym_BANGin] = ACTIONS(3205), + [anon_sym_match] = ACTIONS(3205), + [anon_sym_select] = ACTIONS(3205), + [anon_sym_lock] = ACTIONS(3205), + [anon_sym_rlock] = ACTIONS(3205), + [anon_sym_unsafe] = ACTIONS(3205), + [anon_sym_sql] = ACTIONS(3205), + [sym_int_literal] = ACTIONS(3205), + [sym_float_literal] = ACTIONS(3205), + [sym_rune_literal] = ACTIONS(3205), + [sym_pseudo_compile_time_identifier] = ACTIONS(3205), + [anon_sym_shared] = ACTIONS(3205), + [anon_sym_map_LBRACK] = ACTIONS(3205), + [anon_sym_chan] = ACTIONS(3205), + [anon_sym_thread] = ACTIONS(3205), + [anon_sym_atomic] = ACTIONS(3205), + [anon_sym_assert] = ACTIONS(3205), + [anon_sym_defer] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_DOLLARfor] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_POUND] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym_AT_LBRACK] = ACTIONS(3205), + [sym___double_quote] = ACTIONS(3205), + [sym___single_quote] = ACTIONS(3205), + [sym___c_double_quote] = ACTIONS(3205), + [sym___c_single_quote] = ACTIONS(3205), + [sym___r_double_quote] = ACTIONS(3205), + [sym___r_single_quote] = ACTIONS(3205), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(3211), + [sym_identifier] = ACTIONS(3213), + [anon_sym_LF] = ACTIONS(3213), + [anon_sym_CR] = ACTIONS(3213), + [anon_sym_CR_LF] = ACTIONS(3213), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_as] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_COMMA] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym___global] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [anon_sym_EQ_EQ] = ACTIONS(3213), + [anon_sym_BANG_EQ] = ACTIONS(3213), + [anon_sym_LT_EQ] = ACTIONS(3213), + [anon_sym_GT_EQ] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_pub] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3213), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3213), + [anon_sym_LT_LT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3213), + [anon_sym_GT_GT_GT] = ACTIONS(3213), + [anon_sym_AMP_CARET] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_PIPE_PIPE] = ACTIONS(3213), + [anon_sym_or] = ACTIONS(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_QMARK_DOT] = ACTIONS(3213), + [anon_sym_POUND_LBRACK] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_is] = ACTIONS(3213), + [anon_sym_BANGis] = ACTIONS(3213), + [anon_sym_in] = ACTIONS(3213), + [anon_sym_BANGin] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3213), + [sym_rune_literal] = ACTIONS(3213), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3213), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [anon_sym_assert] = ACTIONS(3213), + [anon_sym_defer] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_DOLLARfor] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_POUND] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym_AT_LBRACK] = ACTIONS(3213), + [sym___double_quote] = ACTIONS(3213), + [sym___single_quote] = ACTIONS(3213), + [sym___c_double_quote] = ACTIONS(3213), + [sym___c_single_quote] = ACTIONS(3213), + [sym___r_double_quote] = ACTIONS(3213), + [sym___r_single_quote] = ACTIONS(3213), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3448), + [anon_sym_LF] = ACTIONS(3448), + [anon_sym_CR] = ACTIONS(3448), + [anon_sym_CR_LF] = ACTIONS(3448), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3448), + [anon_sym_as] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_COMMA] = ACTIONS(3448), + [anon_sym_const] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym___global] = ACTIONS(3448), + [anon_sym_type] = ACTIONS(3448), + [anon_sym_PIPE] = ACTIONS(3448), + [anon_sym_fn] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_GT] = ACTIONS(3448), + [anon_sym_EQ_EQ] = ACTIONS(3448), + [anon_sym_BANG_EQ] = ACTIONS(3448), + [anon_sym_LT_EQ] = ACTIONS(3448), + [anon_sym_GT_EQ] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_union] = ACTIONS(3448), + [anon_sym_pub] = ACTIONS(3448), + [anon_sym_mut] = ACTIONS(3448), + [anon_sym_enum] = ACTIONS(3448), + [anon_sym_interface] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_QMARK] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_go] = ACTIONS(3448), + [anon_sym_spawn] = ACTIONS(3448), + [anon_sym_json_DOTdecode] = ACTIONS(3448), + [anon_sym_LBRACK2] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_CARET] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT_DASH] = ACTIONS(3448), + [anon_sym_LT_LT] = ACTIONS(3448), + [anon_sym_GT_GT] = ACTIONS(3448), + [anon_sym_GT_GT_GT] = ACTIONS(3448), + [anon_sym_AMP_CARET] = ACTIONS(3448), + [anon_sym_AMP_AMP] = ACTIONS(3448), + [anon_sym_PIPE_PIPE] = ACTIONS(3448), + [anon_sym_or] = ACTIONS(3448), + [sym_none] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_nil] = ACTIONS(3448), + [anon_sym_QMARK_DOT] = ACTIONS(3448), + [anon_sym_POUND_LBRACK] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_DOLLARif] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3448), + [anon_sym_BANGis] = ACTIONS(3448), + [anon_sym_in] = ACTIONS(3448), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_match] = ACTIONS(3448), + [anon_sym_select] = ACTIONS(3448), + [anon_sym_lock] = ACTIONS(3448), + [anon_sym_rlock] = ACTIONS(3448), + [anon_sym_unsafe] = ACTIONS(3448), + [anon_sym_sql] = ACTIONS(3448), + [sym_int_literal] = ACTIONS(3448), + [sym_float_literal] = ACTIONS(3448), + [sym_rune_literal] = ACTIONS(3448), + [sym_pseudo_compile_time_identifier] = ACTIONS(3448), + [anon_sym_shared] = ACTIONS(3448), + [anon_sym_map_LBRACK] = ACTIONS(3448), + [anon_sym_chan] = ACTIONS(3448), + [anon_sym_thread] = ACTIONS(3448), + [anon_sym_atomic] = ACTIONS(3448), + [anon_sym_assert] = ACTIONS(3448), + [anon_sym_defer] = ACTIONS(3448), + [anon_sym_goto] = ACTIONS(3448), + [anon_sym_break] = ACTIONS(3448), + [anon_sym_continue] = ACTIONS(3448), + [anon_sym_return] = ACTIONS(3448), + [anon_sym_DOLLARfor] = ACTIONS(3448), + [anon_sym_for] = ACTIONS(3448), + [anon_sym_POUND] = ACTIONS(3448), + [anon_sym_asm] = ACTIONS(3448), + [anon_sym_AT_LBRACK] = ACTIONS(3448), + [sym___double_quote] = ACTIONS(3448), + [sym___single_quote] = ACTIONS(3448), + [sym___c_double_quote] = ACTIONS(3448), + [sym___c_single_quote] = ACTIONS(3448), + [sym___r_double_quote] = ACTIONS(3448), + [sym___r_single_quote] = ACTIONS(3448), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(3406), + [sym_identifier] = ACTIONS(3408), + [anon_sym_LF] = ACTIONS(3408), + [anon_sym_CR] = ACTIONS(3408), + [anon_sym_CR_LF] = ACTIONS(3408), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3408), + [anon_sym_as] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_COMMA] = ACTIONS(3408), + [anon_sym_const] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym___global] = ACTIONS(3408), + [anon_sym_type] = ACTIONS(3408), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_fn] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_PERCENT] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_GT] = ACTIONS(3408), + [anon_sym_EQ_EQ] = ACTIONS(3408), + [anon_sym_BANG_EQ] = ACTIONS(3408), + [anon_sym_LT_EQ] = ACTIONS(3408), + [anon_sym_GT_EQ] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_union] = ACTIONS(3408), + [anon_sym_pub] = ACTIONS(3408), + [anon_sym_mut] = ACTIONS(3408), + [anon_sym_enum] = ACTIONS(3408), + [anon_sym_interface] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_QMARK] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3408), + [anon_sym_spawn] = ACTIONS(3408), + [anon_sym_json_DOTdecode] = ACTIONS(3408), + [anon_sym_LBRACK2] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_CARET] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_LT_DASH] = ACTIONS(3408), + [anon_sym_LT_LT] = ACTIONS(3408), + [anon_sym_GT_GT] = ACTIONS(3408), + [anon_sym_GT_GT_GT] = ACTIONS(3408), + [anon_sym_AMP_CARET] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_PIPE_PIPE] = ACTIONS(3408), + [anon_sym_or] = ACTIONS(3408), + [sym_none] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_nil] = ACTIONS(3408), + [anon_sym_QMARK_DOT] = ACTIONS(3408), + [anon_sym_POUND_LBRACK] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_DOLLARif] = ACTIONS(3408), + [anon_sym_is] = ACTIONS(3408), + [anon_sym_BANGis] = ACTIONS(3408), + [anon_sym_in] = ACTIONS(3408), + [anon_sym_BANGin] = ACTIONS(3408), + [anon_sym_match] = ACTIONS(3408), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_sql] = ACTIONS(3408), + [sym_int_literal] = ACTIONS(3408), + [sym_float_literal] = ACTIONS(3408), + [sym_rune_literal] = ACTIONS(3408), + [sym_pseudo_compile_time_identifier] = ACTIONS(3408), + [anon_sym_shared] = ACTIONS(3408), + [anon_sym_map_LBRACK] = ACTIONS(3408), + [anon_sym_chan] = ACTIONS(3408), + [anon_sym_thread] = ACTIONS(3408), + [anon_sym_atomic] = ACTIONS(3408), + [anon_sym_assert] = ACTIONS(3408), + [anon_sym_defer] = ACTIONS(3408), + [anon_sym_goto] = ACTIONS(3408), + [anon_sym_break] = ACTIONS(3408), + [anon_sym_continue] = ACTIONS(3408), + [anon_sym_return] = ACTIONS(3408), + [anon_sym_DOLLARfor] = ACTIONS(3408), + [anon_sym_for] = ACTIONS(3408), + [anon_sym_POUND] = ACTIONS(3408), + [anon_sym_asm] = ACTIONS(3408), + [anon_sym_AT_LBRACK] = ACTIONS(3408), + [sym___double_quote] = ACTIONS(3408), + [sym___single_quote] = ACTIONS(3408), + [sym___c_double_quote] = ACTIONS(3408), + [sym___c_single_quote] = ACTIONS(3408), + [sym___r_double_quote] = ACTIONS(3408), + [sym___r_single_quote] = ACTIONS(3408), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3189), + [anon_sym_LF] = ACTIONS(3189), + [anon_sym_CR] = ACTIONS(3189), + [anon_sym_CR_LF] = ACTIONS(3189), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_const] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym___global] = ACTIONS(3189), + [anon_sym_type] = ACTIONS(3189), + [anon_sym_PIPE] = ACTIONS(3189), + [anon_sym_fn] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_PERCENT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_union] = ACTIONS(3189), + [anon_sym_pub] = ACTIONS(3189), + [anon_sym_mut] = ACTIONS(3189), + [anon_sym_enum] = ACTIONS(3189), + [anon_sym_interface] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_go] = ACTIONS(3189), + [anon_sym_spawn] = ACTIONS(3189), + [anon_sym_json_DOTdecode] = ACTIONS(3189), + [anon_sym_LBRACK2] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_CARET] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT_DASH] = ACTIONS(3189), + [anon_sym_LT_LT] = ACTIONS(3189), + [anon_sym_GT_GT] = ACTIONS(3189), + [anon_sym_GT_GT_GT] = ACTIONS(3189), + [anon_sym_AMP_CARET] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [sym_none] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_nil] = ACTIONS(3189), + [anon_sym_QMARK_DOT] = ACTIONS(3189), + [anon_sym_POUND_LBRACK] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_DOLLARif] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_BANGis] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_BANGin] = ACTIONS(3189), + [anon_sym_match] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_lock] = ACTIONS(3189), + [anon_sym_rlock] = ACTIONS(3189), + [anon_sym_unsafe] = ACTIONS(3189), + [anon_sym_sql] = ACTIONS(3189), + [sym_int_literal] = ACTIONS(3189), + [sym_float_literal] = ACTIONS(3189), + [sym_rune_literal] = ACTIONS(3189), + [sym_pseudo_compile_time_identifier] = ACTIONS(3189), + [anon_sym_shared] = ACTIONS(3189), + [anon_sym_map_LBRACK] = ACTIONS(3189), + [anon_sym_chan] = ACTIONS(3189), + [anon_sym_thread] = ACTIONS(3189), + [anon_sym_atomic] = ACTIONS(3189), + [anon_sym_assert] = ACTIONS(3189), + [anon_sym_defer] = ACTIONS(3189), + [anon_sym_goto] = ACTIONS(3189), + [anon_sym_break] = ACTIONS(3189), + [anon_sym_continue] = ACTIONS(3189), + [anon_sym_return] = ACTIONS(3189), + [anon_sym_DOLLARfor] = ACTIONS(3189), + [anon_sym_for] = ACTIONS(3189), + [anon_sym_POUND] = ACTIONS(3189), + [anon_sym_asm] = ACTIONS(3189), + [anon_sym_AT_LBRACK] = ACTIONS(3189), + [sym___double_quote] = ACTIONS(3189), + [sym___single_quote] = ACTIONS(3189), + [sym___c_double_quote] = ACTIONS(3189), + [sym___c_single_quote] = ACTIONS(3189), + [sym___r_double_quote] = ACTIONS(3189), + [sym___r_single_quote] = ACTIONS(3189), + }, + [1067] = { + [ts_builtin_sym_end] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3173), + [anon_sym_LF] = ACTIONS(3173), + [anon_sym_CR] = ACTIONS(3173), + [anon_sym_CR_LF] = ACTIONS(3173), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3173), + [anon_sym_as] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_const] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym___global] = ACTIONS(3173), + [anon_sym_type] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3173), + [anon_sym_fn] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_PERCENT] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_GT] = ACTIONS(3173), + [anon_sym_EQ_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_LT_EQ] = ACTIONS(3173), + [anon_sym_GT_EQ] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3173), + [anon_sym_union] = ACTIONS(3173), + [anon_sym_pub] = ACTIONS(3173), + [anon_sym_mut] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_QMARK] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_go] = ACTIONS(3173), + [anon_sym_spawn] = ACTIONS(3173), + [anon_sym_json_DOTdecode] = ACTIONS(3173), + [anon_sym_LBRACK2] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_CARET] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_LT_DASH] = ACTIONS(3173), + [anon_sym_LT_LT] = ACTIONS(3173), + [anon_sym_GT_GT] = ACTIONS(3173), + [anon_sym_GT_GT_GT] = ACTIONS(3173), + [anon_sym_AMP_CARET] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_PIPE_PIPE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3173), + [sym_none] = ACTIONS(3173), + [sym_true] = ACTIONS(3173), + [sym_false] = ACTIONS(3173), + [sym_nil] = ACTIONS(3173), + [anon_sym_QMARK_DOT] = ACTIONS(3173), + [anon_sym_POUND_LBRACK] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_DOLLARif] = ACTIONS(3173), + [anon_sym_is] = ACTIONS(3173), + [anon_sym_BANGis] = ACTIONS(3173), + [anon_sym_in] = ACTIONS(3173), + [anon_sym_BANGin] = ACTIONS(3173), + [anon_sym_match] = ACTIONS(3173), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3173), + [anon_sym_rlock] = ACTIONS(3173), + [anon_sym_unsafe] = ACTIONS(3173), + [anon_sym_sql] = ACTIONS(3173), + [sym_int_literal] = ACTIONS(3173), + [sym_float_literal] = ACTIONS(3173), + [sym_rune_literal] = ACTIONS(3173), + [sym_pseudo_compile_time_identifier] = ACTIONS(3173), + [anon_sym_shared] = ACTIONS(3173), + [anon_sym_map_LBRACK] = ACTIONS(3173), + [anon_sym_chan] = ACTIONS(3173), + [anon_sym_thread] = ACTIONS(3173), + [anon_sym_atomic] = ACTIONS(3173), + [anon_sym_assert] = ACTIONS(3173), + [anon_sym_defer] = ACTIONS(3173), + [anon_sym_goto] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_DOLLARfor] = ACTIONS(3173), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_POUND] = ACTIONS(3173), + [anon_sym_asm] = ACTIONS(3173), + [anon_sym_AT_LBRACK] = ACTIONS(3173), + [sym___double_quote] = ACTIONS(3173), + [sym___single_quote] = ACTIONS(3173), + [sym___c_double_quote] = ACTIONS(3173), + [sym___c_single_quote] = ACTIONS(3173), + [sym___r_double_quote] = ACTIONS(3173), + [sym___r_single_quote] = ACTIONS(3173), + }, + [1068] = { + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_COMMA] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym___global] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_pub] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3245), + [anon_sym_POUND_LBRACK] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3245), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [sym_pseudo_compile_time_identifier] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [anon_sym_assert] = ACTIONS(3245), + [anon_sym_defer] = ACTIONS(3245), + [anon_sym_goto] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_DOLLARfor] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_asm] = ACTIONS(3245), + [anon_sym_AT_LBRACK] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), + }, [1069] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3311), + [anon_sym_LF] = ACTIONS(3311), + [anon_sym_CR] = ACTIONS(3311), + [anon_sym_CR_LF] = ACTIONS(3311), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3106), - [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(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_COMMA] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym___global] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_union] = ACTIONS(3311), + [anon_sym_pub] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3311), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3311), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3311), + [anon_sym_AMP_CARET] = ACTIONS(3311), + [anon_sym_AMP_AMP] = ACTIONS(3311), + [anon_sym_PIPE_PIPE] = ACTIONS(3311), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3311), + [anon_sym_POUND_LBRACK] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3311), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3311), + [sym_rune_literal] = ACTIONS(3311), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3311), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [anon_sym_assert] = ACTIONS(3311), + [anon_sym_defer] = ACTIONS(3311), + [anon_sym_goto] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_DOLLARfor] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_POUND] = ACTIONS(3311), + [anon_sym_asm] = ACTIONS(3311), + [anon_sym_AT_LBRACK] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3311), + [sym___single_quote] = ACTIONS(3311), + [sym___c_double_quote] = ACTIONS(3311), + [sym___c_single_quote] = ACTIONS(3311), + [sym___r_double_quote] = ACTIONS(3311), + [sym___r_single_quote] = ACTIONS(3311), }, [1070] = { - [ts_builtin_sym_end] = ACTIONS(3353), - [sym_identifier] = ACTIONS(3355), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_CR] = ACTIONS(3355), - [anon_sym_CR_LF] = ACTIONS(3355), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym___global] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_union] = ACTIONS(3355), - [anon_sym_pub] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3355), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3355), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3355), - [anon_sym_AMP_CARET] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3355), - [anon_sym_POUND_LBRACK] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3355), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3355), - [sym_rune_literal] = ACTIONS(3355), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3355), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [anon_sym_assert] = ACTIONS(3355), - [anon_sym_defer] = ACTIONS(3355), - [anon_sym_goto] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_DOLLARfor] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_POUND] = ACTIONS(3355), - [anon_sym_asm] = ACTIONS(3355), - [anon_sym_AT_LBRACK] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3355), - [sym___single_quote] = ACTIONS(3355), - [sym___c_double_quote] = ACTIONS(3355), - [sym___c_single_quote] = ACTIONS(3355), - [sym___r_double_quote] = ACTIONS(3355), - [sym___r_single_quote] = ACTIONS(3355), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_interface] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_defer] = ACTIONS(2727), + [anon_sym_goto] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_DOLLARfor] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_asm] = ACTIONS(2727), + [anon_sym_AT_LBRACK] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), }, [1071] = { - [ts_builtin_sym_end] = ACTIONS(3285), - [sym_identifier] = ACTIONS(3287), - [anon_sym_LF] = ACTIONS(3287), - [anon_sym_CR] = ACTIONS(3287), - [anon_sym_CR_LF] = ACTIONS(3287), + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3400), + [anon_sym_LF] = ACTIONS(3400), + [anon_sym_CR] = ACTIONS(3400), + [anon_sym_CR_LF] = ACTIONS(3400), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3287), - [anon_sym_as] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_COMMA] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym___global] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_PIPE] = ACTIONS(3287), - [anon_sym_fn] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_STAR] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_PERCENT] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_GT] = ACTIONS(3287), - [anon_sym_EQ_EQ] = ACTIONS(3287), - [anon_sym_BANG_EQ] = ACTIONS(3287), - [anon_sym_LT_EQ] = ACTIONS(3287), - [anon_sym_GT_EQ] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_struct] = ACTIONS(3287), - [anon_sym_union] = ACTIONS(3287), - [anon_sym_pub] = ACTIONS(3287), - [anon_sym_mut] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_go] = ACTIONS(3287), - [anon_sym_spawn] = ACTIONS(3287), - [anon_sym_json_DOTdecode] = ACTIONS(3287), - [anon_sym_LBRACK2] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_CARET] = ACTIONS(3287), - [anon_sym_AMP] = ACTIONS(3287), - [anon_sym_LT_DASH] = ACTIONS(3287), - [anon_sym_LT_LT] = ACTIONS(3287), - [anon_sym_GT_GT] = ACTIONS(3287), - [anon_sym_GT_GT_GT] = ACTIONS(3287), - [anon_sym_AMP_CARET] = ACTIONS(3287), - [anon_sym_AMP_AMP] = ACTIONS(3287), - [anon_sym_PIPE_PIPE] = ACTIONS(3287), - [anon_sym_or] = ACTIONS(3287), - [sym_none] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_nil] = ACTIONS(3287), - [anon_sym_QMARK_DOT] = ACTIONS(3287), - [anon_sym_POUND_LBRACK] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_DOLLARif] = ACTIONS(3287), - [anon_sym_is] = ACTIONS(3287), - [anon_sym_BANGis] = ACTIONS(3287), - [anon_sym_in] = ACTIONS(3287), - [anon_sym_BANGin] = ACTIONS(3287), - [anon_sym_match] = ACTIONS(3287), - [anon_sym_select] = ACTIONS(3287), - [anon_sym_lock] = ACTIONS(3287), - [anon_sym_rlock] = ACTIONS(3287), - [anon_sym_unsafe] = ACTIONS(3287), - [anon_sym_sql] = ACTIONS(3287), - [sym_int_literal] = ACTIONS(3287), - [sym_float_literal] = ACTIONS(3287), - [sym_rune_literal] = ACTIONS(3287), - [sym_pseudo_compile_time_identifier] = ACTIONS(3287), - [anon_sym_shared] = ACTIONS(3287), - [anon_sym_map_LBRACK] = ACTIONS(3287), - [anon_sym_chan] = ACTIONS(3287), - [anon_sym_thread] = ACTIONS(3287), - [anon_sym_atomic] = ACTIONS(3287), - [anon_sym_assert] = ACTIONS(3287), - [anon_sym_defer] = ACTIONS(3287), - [anon_sym_goto] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_DOLLARfor] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_POUND] = ACTIONS(3287), - [anon_sym_asm] = ACTIONS(3287), - [anon_sym_AT_LBRACK] = ACTIONS(3287), - [sym___double_quote] = ACTIONS(3287), - [sym___single_quote] = ACTIONS(3287), - [sym___c_double_quote] = ACTIONS(3287), - [sym___c_single_quote] = ACTIONS(3287), - [sym___r_double_quote] = ACTIONS(3287), - [sym___r_single_quote] = ACTIONS(3287), + [anon_sym_DOT] = ACTIONS(3400), + [anon_sym_as] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_COMMA] = ACTIONS(3400), + [anon_sym_const] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym___global] = ACTIONS(3400), + [anon_sym_type] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3400), + [anon_sym_fn] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_STAR] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_PERCENT] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_GT] = ACTIONS(3400), + [anon_sym_EQ_EQ] = ACTIONS(3400), + [anon_sym_BANG_EQ] = ACTIONS(3400), + [anon_sym_LT_EQ] = ACTIONS(3400), + [anon_sym_GT_EQ] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_struct] = ACTIONS(3400), + [anon_sym_union] = ACTIONS(3400), + [anon_sym_pub] = ACTIONS(3400), + [anon_sym_mut] = ACTIONS(3400), + [anon_sym_enum] = ACTIONS(3400), + [anon_sym_interface] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_QMARK] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3400), + [anon_sym_json_DOTdecode] = ACTIONS(3400), + [anon_sym_LBRACK2] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(3400), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_GT_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_CARET] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_or] = ACTIONS(3400), + [sym_none] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_nil] = ACTIONS(3400), + [anon_sym_QMARK_DOT] = ACTIONS(3400), + [anon_sym_POUND_LBRACK] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_DOLLARif] = ACTIONS(3400), + [anon_sym_is] = ACTIONS(3400), + [anon_sym_BANGis] = ACTIONS(3400), + [anon_sym_in] = ACTIONS(3400), + [anon_sym_BANGin] = ACTIONS(3400), + [anon_sym_match] = ACTIONS(3400), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3400), + [anon_sym_rlock] = ACTIONS(3400), + [anon_sym_unsafe] = ACTIONS(3400), + [anon_sym_sql] = ACTIONS(3400), + [sym_int_literal] = ACTIONS(3400), + [sym_float_literal] = ACTIONS(3400), + [sym_rune_literal] = ACTIONS(3400), + [sym_pseudo_compile_time_identifier] = ACTIONS(3400), + [anon_sym_shared] = ACTIONS(3400), + [anon_sym_map_LBRACK] = ACTIONS(3400), + [anon_sym_chan] = ACTIONS(3400), + [anon_sym_thread] = ACTIONS(3400), + [anon_sym_atomic] = ACTIONS(3400), + [anon_sym_assert] = ACTIONS(3400), + [anon_sym_defer] = ACTIONS(3400), + [anon_sym_goto] = ACTIONS(3400), + [anon_sym_break] = ACTIONS(3400), + [anon_sym_continue] = ACTIONS(3400), + [anon_sym_return] = ACTIONS(3400), + [anon_sym_DOLLARfor] = ACTIONS(3400), + [anon_sym_for] = ACTIONS(3400), + [anon_sym_POUND] = ACTIONS(3400), + [anon_sym_asm] = ACTIONS(3400), + [anon_sym_AT_LBRACK] = ACTIONS(3400), + [sym___double_quote] = ACTIONS(3400), + [sym___single_quote] = ACTIONS(3400), + [sym___c_double_quote] = ACTIONS(3400), + [sym___c_single_quote] = ACTIONS(3400), + [sym___r_double_quote] = ACTIONS(3400), + [sym___r_single_quote] = ACTIONS(3400), }, [1072] = { - [ts_builtin_sym_end] = ACTIONS(3289), - [sym_identifier] = ACTIONS(3291), - [anon_sym_LF] = ACTIONS(3291), - [anon_sym_CR] = ACTIONS(3291), - [anon_sym_CR_LF] = ACTIONS(3291), + [ts_builtin_sym_end] = ACTIONS(2897), + [sym_identifier] = ACTIONS(2899), + [anon_sym_LF] = ACTIONS(2899), + [anon_sym_CR] = ACTIONS(2899), + [anon_sym_CR_LF] = ACTIONS(2899), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_as] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_COMMA] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym___global] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_fn] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_EQ_EQ] = ACTIONS(3291), - [anon_sym_BANG_EQ] = ACTIONS(3291), - [anon_sym_LT_EQ] = ACTIONS(3291), - [anon_sym_GT_EQ] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_union] = ACTIONS(3291), - [anon_sym_pub] = ACTIONS(3291), - [anon_sym_mut] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_go] = ACTIONS(3291), - [anon_sym_spawn] = ACTIONS(3291), - [anon_sym_json_DOTdecode] = ACTIONS(3291), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_CARET] = ACTIONS(3291), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(3291), - [anon_sym_LT_LT] = ACTIONS(3291), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_GT_GT_GT] = ACTIONS(3291), - [anon_sym_AMP_CARET] = ACTIONS(3291), - [anon_sym_AMP_AMP] = ACTIONS(3291), - [anon_sym_PIPE_PIPE] = ACTIONS(3291), - [anon_sym_or] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_nil] = ACTIONS(3291), - [anon_sym_QMARK_DOT] = ACTIONS(3291), - [anon_sym_POUND_LBRACK] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_DOLLARif] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_BANGis] = ACTIONS(3291), - [anon_sym_in] = ACTIONS(3291), - [anon_sym_BANGin] = ACTIONS(3291), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_rlock] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_sql] = ACTIONS(3291), - [sym_int_literal] = ACTIONS(3291), - [sym_float_literal] = ACTIONS(3291), - [sym_rune_literal] = ACTIONS(3291), - [sym_pseudo_compile_time_identifier] = ACTIONS(3291), - [anon_sym_shared] = ACTIONS(3291), - [anon_sym_map_LBRACK] = ACTIONS(3291), - [anon_sym_chan] = ACTIONS(3291), - [anon_sym_thread] = ACTIONS(3291), - [anon_sym_atomic] = ACTIONS(3291), - [anon_sym_assert] = ACTIONS(3291), - [anon_sym_defer] = ACTIONS(3291), - [anon_sym_goto] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_DOLLARfor] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_POUND] = ACTIONS(3291), - [anon_sym_asm] = ACTIONS(3291), - [anon_sym_AT_LBRACK] = ACTIONS(3291), - [sym___double_quote] = ACTIONS(3291), - [sym___single_quote] = ACTIONS(3291), - [sym___c_double_quote] = ACTIONS(3291), - [sym___c_single_quote] = ACTIONS(3291), - [sym___r_double_quote] = ACTIONS(3291), - [sym___r_single_quote] = ACTIONS(3291), + [anon_sym_DOT] = ACTIONS(2899), + [anon_sym_as] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_COMMA] = ACTIONS(2899), + [anon_sym_const] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym___global] = ACTIONS(2899), + [anon_sym_type] = ACTIONS(2899), + [anon_sym_PIPE] = ACTIONS(2899), + [anon_sym_fn] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2899), + [anon_sym_PERCENT] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2899), + [anon_sym_GT] = ACTIONS(2899), + [anon_sym_EQ_EQ] = ACTIONS(2899), + [anon_sym_BANG_EQ] = ACTIONS(2899), + [anon_sym_LT_EQ] = ACTIONS(2899), + [anon_sym_GT_EQ] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_union] = ACTIONS(2899), + [anon_sym_pub] = ACTIONS(2899), + [anon_sym_mut] = ACTIONS(2899), + [anon_sym_enum] = ACTIONS(2899), + [anon_sym_interface] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_QMARK] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_go] = ACTIONS(2899), + [anon_sym_spawn] = ACTIONS(2899), + [anon_sym_json_DOTdecode] = ACTIONS(2899), + [anon_sym_LBRACK2] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_LT_DASH] = ACTIONS(2899), + [anon_sym_LT_LT] = ACTIONS(2899), + [anon_sym_GT_GT] = ACTIONS(2899), + [anon_sym_GT_GT_GT] = ACTIONS(2899), + [anon_sym_AMP_CARET] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2899), + [anon_sym_PIPE_PIPE] = ACTIONS(2899), + [anon_sym_or] = ACTIONS(2899), + [sym_none] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_nil] = ACTIONS(2899), + [anon_sym_QMARK_DOT] = ACTIONS(2899), + [anon_sym_POUND_LBRACK] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_DOLLARif] = ACTIONS(2899), + [anon_sym_is] = ACTIONS(2899), + [anon_sym_BANGis] = ACTIONS(2899), + [anon_sym_in] = ACTIONS(2899), + [anon_sym_BANGin] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2899), + [anon_sym_rlock] = ACTIONS(2899), + [anon_sym_unsafe] = ACTIONS(2899), + [anon_sym_sql] = ACTIONS(2899), + [sym_int_literal] = ACTIONS(2899), + [sym_float_literal] = ACTIONS(2899), + [sym_rune_literal] = ACTIONS(2899), + [sym_pseudo_compile_time_identifier] = ACTIONS(2899), + [anon_sym_shared] = ACTIONS(2899), + [anon_sym_map_LBRACK] = ACTIONS(2899), + [anon_sym_chan] = ACTIONS(2899), + [anon_sym_thread] = ACTIONS(2899), + [anon_sym_atomic] = ACTIONS(2899), + [anon_sym_assert] = ACTIONS(2899), + [anon_sym_defer] = ACTIONS(2899), + [anon_sym_goto] = ACTIONS(2899), + [anon_sym_break] = ACTIONS(2899), + [anon_sym_continue] = ACTIONS(2899), + [anon_sym_return] = ACTIONS(2899), + [anon_sym_DOLLARfor] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2899), + [anon_sym_POUND] = ACTIONS(2899), + [anon_sym_asm] = ACTIONS(2899), + [anon_sym_AT_LBRACK] = ACTIONS(2899), + [sym___double_quote] = ACTIONS(2899), + [sym___single_quote] = ACTIONS(2899), + [sym___c_double_quote] = ACTIONS(2899), + [sym___c_single_quote] = ACTIONS(2899), + [sym___r_double_quote] = ACTIONS(2899), + [sym___r_single_quote] = ACTIONS(2899), }, [1073] = { - [ts_builtin_sym_end] = ACTIONS(3293), - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), + [ts_builtin_sym_end] = ACTIONS(2901), + [sym_identifier] = ACTIONS(2903), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_CR] = ACTIONS(2903), + [anon_sym_CR_LF] = ACTIONS(2903), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym___global] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_EQ] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_union] = ACTIONS(3295), - [anon_sym_pub] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3295), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_CARET] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3295), - [anon_sym_POUND_LBRACK] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3295), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3295), - [sym_rune_literal] = ACTIONS(3295), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [anon_sym_assert] = ACTIONS(3295), - [anon_sym_defer] = ACTIONS(3295), - [anon_sym_goto] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_DOLLARfor] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_POUND] = ACTIONS(3295), - [anon_sym_asm] = ACTIONS(3295), - [anon_sym_AT_LBRACK] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3295), - [sym___single_quote] = ACTIONS(3295), - [sym___c_double_quote] = ACTIONS(3295), - [sym___c_single_quote] = ACTIONS(3295), - [sym___r_double_quote] = ACTIONS(3295), - [sym___r_single_quote] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_as] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_COMMA] = ACTIONS(2903), + [anon_sym_const] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym___global] = ACTIONS(2903), + [anon_sym_type] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2903), + [anon_sym_fn] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_PERCENT] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_union] = ACTIONS(2903), + [anon_sym_pub] = ACTIONS(2903), + [anon_sym_mut] = ACTIONS(2903), + [anon_sym_enum] = ACTIONS(2903), + [anon_sym_interface] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_QMARK] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2903), + [anon_sym_json_DOTdecode] = ACTIONS(2903), + [anon_sym_LBRACK2] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_LT_DASH] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_GT_GT_GT] = ACTIONS(2903), + [anon_sym_AMP_CARET] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [sym_none] = ACTIONS(2903), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_nil] = ACTIONS(2903), + [anon_sym_QMARK_DOT] = ACTIONS(2903), + [anon_sym_POUND_LBRACK] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_DOLLARif] = ACTIONS(2903), + [anon_sym_is] = ACTIONS(2903), + [anon_sym_BANGis] = ACTIONS(2903), + [anon_sym_in] = ACTIONS(2903), + [anon_sym_BANGin] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_select] = ACTIONS(2903), + [anon_sym_lock] = ACTIONS(2903), + [anon_sym_rlock] = ACTIONS(2903), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2903), + [sym_int_literal] = ACTIONS(2903), + [sym_float_literal] = ACTIONS(2903), + [sym_rune_literal] = ACTIONS(2903), + [sym_pseudo_compile_time_identifier] = ACTIONS(2903), + [anon_sym_shared] = ACTIONS(2903), + [anon_sym_map_LBRACK] = ACTIONS(2903), + [anon_sym_chan] = ACTIONS(2903), + [anon_sym_thread] = ACTIONS(2903), + [anon_sym_atomic] = ACTIONS(2903), + [anon_sym_assert] = ACTIONS(2903), + [anon_sym_defer] = ACTIONS(2903), + [anon_sym_goto] = ACTIONS(2903), + [anon_sym_break] = ACTIONS(2903), + [anon_sym_continue] = ACTIONS(2903), + [anon_sym_return] = ACTIONS(2903), + [anon_sym_DOLLARfor] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2903), + [anon_sym_POUND] = ACTIONS(2903), + [anon_sym_asm] = ACTIONS(2903), + [anon_sym_AT_LBRACK] = ACTIONS(2903), + [sym___double_quote] = ACTIONS(2903), + [sym___single_quote] = ACTIONS(2903), + [sym___c_double_quote] = ACTIONS(2903), + [sym___c_single_quote] = ACTIONS(2903), + [sym___r_double_quote] = ACTIONS(2903), + [sym___r_single_quote] = ACTIONS(2903), }, [1074] = { - [ts_builtin_sym_end] = ACTIONS(3345), - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym___global] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_EQ] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_pub] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3347), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_CARET] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3347), - [anon_sym_POUND_LBRACK] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [anon_sym_assert] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_DOLLARfor] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_asm] = ACTIONS(3347), - [anon_sym_AT_LBRACK] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_as] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_COMMA] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym___global] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_PERCENT] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_GT] = ACTIONS(3145), + [anon_sym_EQ_EQ] = ACTIONS(3145), + [anon_sym_BANG_EQ] = ACTIONS(3145), + [anon_sym_LT_EQ] = ACTIONS(3145), + [anon_sym_GT_EQ] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_union] = ACTIONS(3145), + [anon_sym_pub] = ACTIONS(3145), + [anon_sym_mut] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_go] = ACTIONS(3145), + [anon_sym_spawn] = ACTIONS(3145), + [anon_sym_json_DOTdecode] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3145), + [anon_sym_GT_GT] = ACTIONS(3145), + [anon_sym_GT_GT_GT] = ACTIONS(3145), + [anon_sym_AMP_CARET] = ACTIONS(3145), + [anon_sym_AMP_AMP] = ACTIONS(3145), + [anon_sym_PIPE_PIPE] = ACTIONS(3145), + [anon_sym_or] = ACTIONS(3145), + [sym_none] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_nil] = ACTIONS(3145), + [anon_sym_QMARK_DOT] = ACTIONS(3145), + [anon_sym_POUND_LBRACK] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_DOLLARif] = ACTIONS(3145), + [anon_sym_is] = ACTIONS(3145), + [anon_sym_BANGis] = ACTIONS(3145), + [anon_sym_in] = ACTIONS(3145), + [anon_sym_BANGin] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_rlock] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_sql] = ACTIONS(3145), + [sym_int_literal] = ACTIONS(3145), + [sym_float_literal] = ACTIONS(3145), + [sym_rune_literal] = ACTIONS(3145), + [sym_pseudo_compile_time_identifier] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_defer] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_DOLLARfor] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3145), + [anon_sym_asm] = ACTIONS(3145), + [anon_sym_AT_LBRACK] = ACTIONS(3145), + [sym___double_quote] = ACTIONS(3145), + [sym___single_quote] = ACTIONS(3145), + [sym___c_double_quote] = ACTIONS(3145), + [sym___c_single_quote] = ACTIONS(3145), + [sym___r_double_quote] = ACTIONS(3145), + [sym___r_single_quote] = ACTIONS(3145), }, [1075] = { - [ts_builtin_sym_end] = ACTIONS(3349), - [sym_identifier] = ACTIONS(3351), - [anon_sym_LF] = ACTIONS(3351), - [anon_sym_CR] = ACTIONS(3351), - [anon_sym_CR_LF] = ACTIONS(3351), + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3141), + [anon_sym_LF] = ACTIONS(3141), + [anon_sym_CR] = ACTIONS(3141), + [anon_sym_CR_LF] = ACTIONS(3141), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym___global] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_union] = ACTIONS(3351), - [anon_sym_pub] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3351), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3351), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3351), - [anon_sym_AMP_CARET] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3351), - [anon_sym_POUND_LBRACK] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3351), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3351), - [sym_rune_literal] = ACTIONS(3351), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3351), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [anon_sym_assert] = ACTIONS(3351), - [anon_sym_defer] = ACTIONS(3351), - [anon_sym_goto] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_DOLLARfor] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_POUND] = ACTIONS(3351), - [anon_sym_asm] = ACTIONS(3351), - [anon_sym_AT_LBRACK] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3351), - [sym___single_quote] = ACTIONS(3351), - [sym___c_double_quote] = ACTIONS(3351), - [sym___c_single_quote] = ACTIONS(3351), - [sym___r_double_quote] = ACTIONS(3351), - [sym___r_single_quote] = ACTIONS(3351), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_const] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym___global] = ACTIONS(3141), + [anon_sym_type] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_union] = ACTIONS(3141), + [anon_sym_pub] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3141), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3141), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_GT_GT_GT] = ACTIONS(3141), + [anon_sym_AMP_CARET] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(3141), + [anon_sym_PIPE_PIPE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3141), + [anon_sym_POUND_LBRACK] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3141), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), + [sym_rune_literal] = ACTIONS(3141), + [sym_pseudo_compile_time_identifier] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3141), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [anon_sym_assert] = ACTIONS(3141), + [anon_sym_defer] = ACTIONS(3141), + [anon_sym_goto] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_DOLLARfor] = ACTIONS(3141), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_POUND] = ACTIONS(3141), + [anon_sym_asm] = ACTIONS(3141), + [anon_sym_AT_LBRACK] = ACTIONS(3141), + [sym___double_quote] = ACTIONS(3141), + [sym___single_quote] = ACTIONS(3141), + [sym___c_double_quote] = ACTIONS(3141), + [sym___c_single_quote] = ACTIONS(3141), + [sym___r_double_quote] = ACTIONS(3141), + [sym___r_single_quote] = ACTIONS(3141), + }, + [1076] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym___global] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_union] = ACTIONS(3257), + [anon_sym_pub] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_defer] = ACTIONS(3257), + [anon_sym_goto] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_DOLLARfor] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_asm] = ACTIONS(3257), + [anon_sym_AT_LBRACK] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3257), + [sym___single_quote] = ACTIONS(3257), + [sym___c_double_quote] = ACTIONS(3257), + [sym___c_single_quote] = ACTIONS(3257), + [sym___r_double_quote] = ACTIONS(3257), + [sym___r_single_quote] = ACTIONS(3257), + }, + [1077] = { + [ts_builtin_sym_end] = ACTIONS(3222), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LF] = ACTIONS(3219), + [anon_sym_CR] = ACTIONS(3219), + [anon_sym_CR_LF] = ACTIONS(3219), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym___global] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_pub] = ACTIONS(3219), + [anon_sym_mut] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3219), + [anon_sym_spawn] = ACTIONS(3219), + [anon_sym_json_DOTdecode] = ACTIONS(3219), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3219), + [anon_sym_AMP_CARET] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_nil] = ACTIONS(3219), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_DOLLARif] = ACTIONS(3219), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3219), + [anon_sym_select] = ACTIONS(3219), + [anon_sym_lock] = ACTIONS(3219), + [anon_sym_rlock] = ACTIONS(3219), + [anon_sym_unsafe] = ACTIONS(3219), + [anon_sym_sql] = ACTIONS(3219), + [sym_int_literal] = ACTIONS(3219), + [sym_float_literal] = ACTIONS(3219), + [sym_rune_literal] = ACTIONS(3219), + [sym_pseudo_compile_time_identifier] = ACTIONS(3219), + [anon_sym_shared] = ACTIONS(3219), + [anon_sym_map_LBRACK] = ACTIONS(3219), + [anon_sym_chan] = ACTIONS(3219), + [anon_sym_thread] = ACTIONS(3219), + [anon_sym_atomic] = ACTIONS(3219), + [anon_sym_assert] = ACTIONS(3219), + [anon_sym_defer] = ACTIONS(3219), + [anon_sym_goto] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_DOLLARfor] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_POUND] = ACTIONS(3219), + [anon_sym_asm] = ACTIONS(3219), + [anon_sym_AT_LBRACK] = ACTIONS(3219), + [sym___double_quote] = ACTIONS(3219), + [sym___single_quote] = ACTIONS(3219), + [sym___c_double_quote] = ACTIONS(3219), + [sym___c_single_quote] = ACTIONS(3219), + [sym___r_double_quote] = ACTIONS(3219), + [sym___r_single_quote] = ACTIONS(3219), }, - [1076] = { - [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), + [1078] = { + [ts_builtin_sym_end] = ACTIONS(2909), + [sym_identifier] = ACTIONS(2911), + [anon_sym_LF] = ACTIONS(2911), + [anon_sym_CR] = ACTIONS(2911), + [anon_sym_CR_LF] = ACTIONS(2911), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_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_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [sym_pseudo_compile_time_identifier] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(2911), + [anon_sym_as] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_COMMA] = ACTIONS(2911), + [anon_sym_const] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym___global] = ACTIONS(2911), + [anon_sym_type] = ACTIONS(2911), + [anon_sym_PIPE] = ACTIONS(2911), + [anon_sym_fn] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_PERCENT] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_GT] = ACTIONS(2911), + [anon_sym_EQ_EQ] = ACTIONS(2911), + [anon_sym_BANG_EQ] = ACTIONS(2911), + [anon_sym_LT_EQ] = ACTIONS(2911), + [anon_sym_GT_EQ] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_union] = ACTIONS(2911), + [anon_sym_pub] = ACTIONS(2911), + [anon_sym_mut] = ACTIONS(2911), + [anon_sym_enum] = ACTIONS(2911), + [anon_sym_interface] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_go] = ACTIONS(2911), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(2911), + [anon_sym_LBRACK2] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_CARET] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_LT_DASH] = ACTIONS(2911), + [anon_sym_LT_LT] = ACTIONS(2911), + [anon_sym_GT_GT] = ACTIONS(2911), + [anon_sym_GT_GT_GT] = ACTIONS(2911), + [anon_sym_AMP_CARET] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_PIPE_PIPE] = ACTIONS(2911), + [anon_sym_or] = ACTIONS(2911), + [sym_none] = ACTIONS(2911), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_nil] = ACTIONS(2911), + [anon_sym_QMARK_DOT] = ACTIONS(2911), + [anon_sym_POUND_LBRACK] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_DOLLARif] = ACTIONS(2911), + [anon_sym_is] = ACTIONS(2911), + [anon_sym_BANGis] = ACTIONS(2911), + [anon_sym_in] = ACTIONS(2911), + [anon_sym_BANGin] = ACTIONS(2911), + [anon_sym_match] = ACTIONS(2911), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2911), + [anon_sym_rlock] = ACTIONS(2911), + [anon_sym_unsafe] = ACTIONS(2911), + [anon_sym_sql] = ACTIONS(2911), + [sym_int_literal] = ACTIONS(2911), + [sym_float_literal] = ACTIONS(2911), + [sym_rune_literal] = ACTIONS(2911), + [sym_pseudo_compile_time_identifier] = ACTIONS(2911), + [anon_sym_shared] = ACTIONS(2911), + [anon_sym_map_LBRACK] = ACTIONS(2911), + [anon_sym_chan] = ACTIONS(2911), + [anon_sym_thread] = ACTIONS(2911), + [anon_sym_atomic] = ACTIONS(2911), + [anon_sym_assert] = ACTIONS(2911), + [anon_sym_defer] = ACTIONS(2911), + [anon_sym_goto] = ACTIONS(2911), + [anon_sym_break] = ACTIONS(2911), + [anon_sym_continue] = ACTIONS(2911), + [anon_sym_return] = ACTIONS(2911), + [anon_sym_DOLLARfor] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2911), + [anon_sym_POUND] = ACTIONS(2911), + [anon_sym_asm] = ACTIONS(2911), + [anon_sym_AT_LBRACK] = ACTIONS(2911), + [sym___double_quote] = ACTIONS(2911), + [sym___single_quote] = ACTIONS(2911), + [sym___c_double_quote] = ACTIONS(2911), + [sym___c_single_quote] = ACTIONS(2911), + [sym___r_double_quote] = ACTIONS(2911), + [sym___r_single_quote] = ACTIONS(2911), }, - [1077] = { - [ts_builtin_sym_end] = ACTIONS(3361), - [sym_identifier] = ACTIONS(3363), - [anon_sym_LF] = ACTIONS(3363), - [anon_sym_CR] = ACTIONS(3363), - [anon_sym_CR_LF] = ACTIONS(3363), + [1079] = { + [ts_builtin_sym_end] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LF] = ACTIONS(3275), + [anon_sym_CR] = ACTIONS(3275), + [anon_sym_CR_LF] = ACTIONS(3275), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym___global] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_union] = ACTIONS(3363), - [anon_sym_pub] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3363), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3363), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3363), - [anon_sym_AMP_CARET] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3363), - [anon_sym_POUND_LBRACK] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3363), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3363), - [sym_rune_literal] = ACTIONS(3363), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3363), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [anon_sym_assert] = ACTIONS(3363), - [anon_sym_defer] = ACTIONS(3363), - [anon_sym_goto] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_DOLLARfor] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_POUND] = ACTIONS(3363), - [anon_sym_asm] = ACTIONS(3363), - [anon_sym_AT_LBRACK] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3363), - [sym___single_quote] = ACTIONS(3363), - [sym___c_double_quote] = ACTIONS(3363), - [sym___c_single_quote] = ACTIONS(3363), - [sym___r_double_quote] = ACTIONS(3363), - [sym___r_single_quote] = ACTIONS(3363), + [anon_sym_DOT] = ACTIONS(3275), + [anon_sym_as] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym___global] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_PIPE] = ACTIONS(3275), + [anon_sym_fn] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_struct] = ACTIONS(3275), + [anon_sym_union] = ACTIONS(3275), + [anon_sym_pub] = ACTIONS(3275), + [anon_sym_mut] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_QMARK] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_go] = ACTIONS(3275), + [anon_sym_spawn] = ACTIONS(3275), + [anon_sym_json_DOTdecode] = ACTIONS(3275), + [anon_sym_LBRACK2] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym_LT_DASH] = ACTIONS(3275), + [anon_sym_LT_LT] = ACTIONS(3275), + [anon_sym_GT_GT] = ACTIONS(3275), + [anon_sym_GT_GT_GT] = ACTIONS(3275), + [anon_sym_AMP_CARET] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_or] = ACTIONS(3275), + [sym_none] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_nil] = ACTIONS(3275), + [anon_sym_QMARK_DOT] = ACTIONS(3275), + [anon_sym_POUND_LBRACK] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_DOLLARif] = ACTIONS(3275), + [anon_sym_is] = ACTIONS(3275), + [anon_sym_BANGis] = ACTIONS(3275), + [anon_sym_in] = ACTIONS(3275), + [anon_sym_BANGin] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3275), + [anon_sym_select] = ACTIONS(3275), + [anon_sym_lock] = ACTIONS(3275), + [anon_sym_rlock] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_sql] = ACTIONS(3275), + [sym_int_literal] = ACTIONS(3275), + [sym_float_literal] = ACTIONS(3275), + [sym_rune_literal] = ACTIONS(3275), + [sym_pseudo_compile_time_identifier] = ACTIONS(3275), + [anon_sym_shared] = ACTIONS(3275), + [anon_sym_map_LBRACK] = ACTIONS(3275), + [anon_sym_chan] = ACTIONS(3275), + [anon_sym_thread] = ACTIONS(3275), + [anon_sym_atomic] = ACTIONS(3275), + [anon_sym_assert] = ACTIONS(3275), + [anon_sym_defer] = ACTIONS(3275), + [anon_sym_goto] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_DOLLARfor] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_POUND] = ACTIONS(3275), + [anon_sym_asm] = ACTIONS(3275), + [anon_sym_AT_LBRACK] = ACTIONS(3275), + [sym___double_quote] = ACTIONS(3275), + [sym___single_quote] = ACTIONS(3275), + [sym___c_double_quote] = ACTIONS(3275), + [sym___c_single_quote] = ACTIONS(3275), + [sym___r_double_quote] = ACTIONS(3275), + [sym___r_single_quote] = ACTIONS(3275), }, - [1078] = { - [ts_builtin_sym_end] = ACTIONS(3365), - [sym_identifier] = ACTIONS(3367), - [anon_sym_LF] = ACTIONS(3367), - [anon_sym_CR] = ACTIONS(3367), - [anon_sym_CR_LF] = ACTIONS(3367), + [1080] = { + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym___global] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_union] = ACTIONS(3367), - [anon_sym_pub] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3367), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3367), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3367), - [anon_sym_AMP_CARET] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3367), - [anon_sym_POUND_LBRACK] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3367), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3367), - [sym_rune_literal] = ACTIONS(3367), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3367), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [anon_sym_assert] = ACTIONS(3367), - [anon_sym_defer] = ACTIONS(3367), - [anon_sym_goto] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_DOLLARfor] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(3367), - [anon_sym_asm] = ACTIONS(3367), - [anon_sym_AT_LBRACK] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3367), - [sym___single_quote] = ACTIONS(3367), - [sym___c_double_quote] = ACTIONS(3367), - [sym___c_single_quote] = ACTIONS(3367), - [sym___r_double_quote] = ACTIONS(3367), - [sym___r_single_quote] = ACTIONS(3367), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym___global] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_union] = ACTIONS(3370), + [anon_sym_pub] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_AMP_CARET] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3370), + [anon_sym_POUND_LBRACK] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [anon_sym_assert] = ACTIONS(3370), + [anon_sym_defer] = ACTIONS(3370), + [anon_sym_goto] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_DOLLARfor] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_asm] = ACTIONS(3370), + [anon_sym_AT_LBRACK] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), }, - [1079] = { + [1081] = { [ts_builtin_sym_end] = ACTIONS(3127), [sym_identifier] = ACTIONS(3129), [anon_sym_LF] = ACTIONS(3129), @@ -147701,2878 +147961,3571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3129), [sym___r_single_quote] = ACTIONS(3129), }, - [1080] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym___global] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_pub] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_DOLLARfor] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_POUND] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym_AT_LBRACK] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [1081] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [anon_sym_assert] = ACTIONS(3191), - [anon_sym_defer] = ACTIONS(3191), - [anon_sym_goto] = ACTIONS(3191), - [anon_sym_break] = ACTIONS(3191), - [anon_sym_continue] = ACTIONS(3191), - [anon_sym_return] = ACTIONS(3191), - [anon_sym_DOLLARfor] = ACTIONS(3191), - [anon_sym_for] = ACTIONS(3191), - [anon_sym_POUND] = ACTIONS(3191), - [anon_sym_asm] = ACTIONS(3191), - [anon_sym_AT_LBRACK] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), - }, [1082] = { - [ts_builtin_sym_end] = ACTIONS(3357), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_CR] = ACTIONS(3359), - [anon_sym_CR_LF] = ACTIONS(3359), + [ts_builtin_sym_end] = ACTIONS(3326), + [sym_identifier] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_CR] = ACTIONS(3328), + [anon_sym_CR_LF] = ACTIONS(3328), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym___global] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_union] = ACTIONS(3359), - [anon_sym_pub] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3359), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_CARET] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3359), - [anon_sym_POUND_LBRACK] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3359), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3359), - [sym_rune_literal] = ACTIONS(3359), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3359), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_defer] = ACTIONS(3359), - [anon_sym_goto] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_DOLLARfor] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3359), - [anon_sym_asm] = ACTIONS(3359), - [anon_sym_AT_LBRACK] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3359), - [sym___single_quote] = ACTIONS(3359), - [sym___c_double_quote] = ACTIONS(3359), - [sym___c_single_quote] = ACTIONS(3359), - [sym___r_double_quote] = ACTIONS(3359), - [sym___r_single_quote] = ACTIONS(3359), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_COMMA] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym___global] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3328), + [anon_sym_BANG_EQ] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_pub] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3328), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3328), + [anon_sym_AMP_CARET] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_PIPE_PIPE] = ACTIONS(3328), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3328), + [anon_sym_POUND_LBRACK] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3328), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + [anon_sym_assert] = ACTIONS(3328), + [anon_sym_defer] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_DOLLARfor] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym_AT_LBRACK] = ACTIONS(3328), + [sym___double_quote] = ACTIONS(3328), + [sym___single_quote] = ACTIONS(3328), + [sym___c_double_quote] = ACTIONS(3328), + [sym___c_single_quote] = ACTIONS(3328), + [sym___r_double_quote] = ACTIONS(3328), + [sym___r_single_quote] = ACTIONS(3328), }, [1083] = { - [ts_builtin_sym_end] = ACTIONS(3395), - [sym_identifier] = ACTIONS(3397), - [anon_sym_LF] = ACTIONS(3397), - [anon_sym_CR] = ACTIONS(3397), - [anon_sym_CR_LF] = ACTIONS(3397), + [ts_builtin_sym_end] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_CR] = ACTIONS(3332), + [anon_sym_CR_LF] = ACTIONS(3332), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_as] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym___global] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_fn] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_GT] = ACTIONS(3397), - [anon_sym_EQ_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_union] = ACTIONS(3397), - [anon_sym_pub] = ACTIONS(3397), - [anon_sym_mut] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_go] = ACTIONS(3397), - [anon_sym_spawn] = ACTIONS(3397), - [anon_sym_json_DOTdecode] = ACTIONS(3397), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_LT_LT] = ACTIONS(3397), - [anon_sym_GT_GT] = ACTIONS(3397), - [anon_sym_GT_GT_GT] = ACTIONS(3397), - [anon_sym_AMP_CARET] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [sym_none] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_nil] = ACTIONS(3397), - [anon_sym_QMARK_DOT] = ACTIONS(3397), - [anon_sym_POUND_LBRACK] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_DOLLARif] = ACTIONS(3397), - [anon_sym_is] = ACTIONS(3397), - [anon_sym_BANGis] = ACTIONS(3397), - [anon_sym_in] = ACTIONS(3397), - [anon_sym_BANGin] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_select] = ACTIONS(3397), - [anon_sym_lock] = ACTIONS(3397), - [anon_sym_rlock] = ACTIONS(3397), - [anon_sym_unsafe] = ACTIONS(3397), - [anon_sym_sql] = ACTIONS(3397), - [sym_int_literal] = ACTIONS(3397), - [sym_float_literal] = ACTIONS(3397), - [sym_rune_literal] = ACTIONS(3397), - [sym_pseudo_compile_time_identifier] = ACTIONS(3397), - [anon_sym_shared] = ACTIONS(3397), - [anon_sym_map_LBRACK] = ACTIONS(3397), - [anon_sym_chan] = ACTIONS(3397), - [anon_sym_thread] = ACTIONS(3397), - [anon_sym_atomic] = ACTIONS(3397), - [anon_sym_assert] = ACTIONS(3397), - [anon_sym_defer] = ACTIONS(3397), - [anon_sym_goto] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_DOLLARfor] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_asm] = ACTIONS(3397), - [anon_sym_AT_LBRACK] = ACTIONS(3397), - [sym___double_quote] = ACTIONS(3397), - [sym___single_quote] = ACTIONS(3397), - [sym___c_double_quote] = ACTIONS(3397), - [sym___c_single_quote] = ACTIONS(3397), - [sym___r_double_quote] = ACTIONS(3397), - [sym___r_single_quote] = ACTIONS(3397), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_as] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym___global] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_EQ_EQ] = ACTIONS(3332), + [anon_sym_BANG_EQ] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_pub] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3332), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3332), + [anon_sym_AMP_CARET] = ACTIONS(3332), + [anon_sym_AMP_AMP] = ACTIONS(3332), + [anon_sym_PIPE_PIPE] = ACTIONS(3332), + [anon_sym_or] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_QMARK_DOT] = ACTIONS(3332), + [anon_sym_POUND_LBRACK] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_is] = ACTIONS(3332), + [anon_sym_BANGis] = ACTIONS(3332), + [anon_sym_in] = ACTIONS(3332), + [anon_sym_BANGin] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3332), + [sym_rune_literal] = ACTIONS(3332), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3332), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), + [anon_sym_assert] = ACTIONS(3332), + [anon_sym_defer] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_DOLLARfor] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym_AT_LBRACK] = ACTIONS(3332), + [sym___double_quote] = ACTIONS(3332), + [sym___single_quote] = ACTIONS(3332), + [sym___c_double_quote] = ACTIONS(3332), + [sym___c_single_quote] = ACTIONS(3332), + [sym___r_double_quote] = ACTIONS(3332), + [sym___r_single_quote] = ACTIONS(3332), }, [1084] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [anon_sym_assert] = ACTIONS(3183), - [anon_sym_defer] = ACTIONS(3183), - [anon_sym_goto] = ACTIONS(3183), - [anon_sym_break] = ACTIONS(3183), - [anon_sym_continue] = ACTIONS(3183), - [anon_sym_return] = ACTIONS(3183), - [anon_sym_DOLLARfor] = ACTIONS(3183), - [anon_sym_for] = ACTIONS(3183), - [anon_sym_POUND] = ACTIONS(3183), - [anon_sym_asm] = ACTIONS(3183), - [anon_sym_AT_LBRACK] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym___global] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_pub] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3336), + [anon_sym_POUND_LBRACK] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3336), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_defer] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_DOLLARfor] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym_AT_LBRACK] = ACTIONS(3336), + [sym___double_quote] = ACTIONS(3336), + [sym___single_quote] = ACTIONS(3336), + [sym___c_double_quote] = ACTIONS(3336), + [sym___c_single_quote] = ACTIONS(3336), + [sym___r_double_quote] = ACTIONS(3336), + [sym___r_single_quote] = ACTIONS(3336), }, [1085] = { - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3215), - [anon_sym_LF] = ACTIONS(3215), - [anon_sym_CR] = ACTIONS(3215), - [anon_sym_CR_LF] = ACTIONS(3215), + [ts_builtin_sym_end] = ACTIONS(3342), + [sym_identifier] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_CR] = ACTIONS(3344), + [anon_sym_CR_LF] = ACTIONS(3344), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym___global] = ACTIONS(3215), - [anon_sym_type] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_pub] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_interface] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3215), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3215), - [anon_sym_AMP_CARET] = ACTIONS(3215), - [anon_sym_AMP_AMP] = ACTIONS(3215), - [anon_sym_PIPE_PIPE] = ACTIONS(3215), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3215), - [anon_sym_POUND_LBRACK] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3215), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [anon_sym_assert] = ACTIONS(3215), - [anon_sym_defer] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_DOLLARfor] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym_AT_LBRACK] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3215), - [sym___single_quote] = ACTIONS(3215), - [sym___c_double_quote] = ACTIONS(3215), - [sym___c_single_quote] = ACTIONS(3215), - [sym___r_double_quote] = ACTIONS(3215), - [sym___r_single_quote] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym___global] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_fn] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_LT_EQ] = ACTIONS(3344), + [anon_sym_GT_EQ] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_union] = ACTIONS(3344), + [anon_sym_pub] = ACTIONS(3344), + [anon_sym_mut] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_go] = ACTIONS(3344), + [anon_sym_spawn] = ACTIONS(3344), + [anon_sym_json_DOTdecode] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_CARET] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_GT_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_CARET] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_or] = ACTIONS(3344), + [sym_none] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_nil] = ACTIONS(3344), + [anon_sym_QMARK_DOT] = ACTIONS(3344), + [anon_sym_POUND_LBRACK] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3344), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_BANGin] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_select] = ACTIONS(3344), + [anon_sym_lock] = ACTIONS(3344), + [anon_sym_rlock] = ACTIONS(3344), + [anon_sym_unsafe] = ACTIONS(3344), + [anon_sym_sql] = ACTIONS(3344), + [sym_int_literal] = ACTIONS(3344), + [sym_float_literal] = ACTIONS(3344), + [sym_rune_literal] = ACTIONS(3344), + [sym_pseudo_compile_time_identifier] = ACTIONS(3344), + [anon_sym_shared] = ACTIONS(3344), + [anon_sym_map_LBRACK] = ACTIONS(3344), + [anon_sym_chan] = ACTIONS(3344), + [anon_sym_thread] = ACTIONS(3344), + [anon_sym_atomic] = ACTIONS(3344), + [anon_sym_assert] = ACTIONS(3344), + [anon_sym_defer] = ACTIONS(3344), + [anon_sym_goto] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_DOLLARfor] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_POUND] = ACTIONS(3344), + [anon_sym_asm] = ACTIONS(3344), + [anon_sym_AT_LBRACK] = ACTIONS(3344), + [sym___double_quote] = ACTIONS(3344), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3344), + [sym___c_single_quote] = ACTIONS(3344), + [sym___r_double_quote] = ACTIONS(3344), + [sym___r_single_quote] = ACTIONS(3344), }, [1086] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym___global] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_pub] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_interface] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [anon_sym_assert] = ACTIONS(2943), - [anon_sym_defer] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_DOLLARfor] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym_AT_LBRACK] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym___global] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_pub] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_defer] = ACTIONS(3340), + [anon_sym_goto] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_DOLLARfor] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3340), + [anon_sym_asm] = ACTIONS(3340), + [anon_sym_AT_LBRACK] = ACTIONS(3340), + [sym___double_quote] = ACTIONS(3340), + [sym___single_quote] = ACTIONS(3340), + [sym___c_double_quote] = ACTIONS(3340), + [sym___c_single_quote] = ACTIONS(3340), + [sym___r_double_quote] = ACTIONS(3340), + [sym___r_single_quote] = ACTIONS(3340), }, [1087] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym___global] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_union] = ACTIONS(3343), - [anon_sym_pub] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3343), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3343), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3343), - [anon_sym_AMP_CARET] = ACTIONS(3343), - [anon_sym_AMP_AMP] = ACTIONS(3343), - [anon_sym_PIPE_PIPE] = ACTIONS(3343), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3343), - [anon_sym_POUND_LBRACK] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3343), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3343), - [sym_rune_literal] = ACTIONS(3343), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3343), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [anon_sym_assert] = ACTIONS(3343), - [anon_sym_defer] = ACTIONS(3343), - [anon_sym_goto] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_DOLLARfor] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_POUND] = ACTIONS(3343), - [anon_sym_asm] = ACTIONS(3343), - [anon_sym_AT_LBRACK] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3343), - [sym___single_quote] = ACTIONS(3343), - [sym___c_double_quote] = ACTIONS(3343), - [sym___c_single_quote] = ACTIONS(3343), - [sym___r_double_quote] = ACTIONS(3343), - [sym___r_single_quote] = ACTIONS(3343), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym___global] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_pub] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_defer] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_DOLLARfor] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym_AT_LBRACK] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), }, [1088] = { - [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), + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym___global] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_union] = ACTIONS(3331), - [anon_sym_pub] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3331), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3331), - [anon_sym_AMP_CARET] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_PIPE_PIPE] = ACTIONS(3331), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3331), - [anon_sym_POUND_LBRACK] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3331), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_DOLLARfor] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_asm] = ACTIONS(3331), - [anon_sym_AT_LBRACK] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), }, [1089] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_CR] = ACTIONS(3059), - [anon_sym_CR_LF] = ACTIONS(3059), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3059), - [anon_sym_as] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_const] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym___global] = ACTIONS(3059), - [anon_sym_type] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_fn] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3059), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_union] = ACTIONS(3059), - [anon_sym_pub] = ACTIONS(3059), - [anon_sym_mut] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_interface] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_go] = ACTIONS(3059), - [anon_sym_spawn] = ACTIONS(3059), - [anon_sym_json_DOTdecode] = ACTIONS(3059), - [anon_sym_LBRACK2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_GT_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_CARET] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_or] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_nil] = ACTIONS(3059), - [anon_sym_QMARK_DOT] = ACTIONS(3059), - [anon_sym_POUND_LBRACK] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_DOLLARif] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_BANGis] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3059), - [anon_sym_BANGin] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3059), - [anon_sym_select] = ACTIONS(3059), - [anon_sym_lock] = ACTIONS(3059), - [anon_sym_rlock] = ACTIONS(3059), - [anon_sym_unsafe] = ACTIONS(3059), - [anon_sym_sql] = ACTIONS(3059), - [sym_int_literal] = ACTIONS(3059), - [sym_float_literal] = ACTIONS(3059), - [sym_rune_literal] = ACTIONS(3059), - [sym_pseudo_compile_time_identifier] = ACTIONS(3059), - [anon_sym_shared] = ACTIONS(3059), - [anon_sym_map_LBRACK] = ACTIONS(3059), - [anon_sym_chan] = ACTIONS(3059), - [anon_sym_thread] = ACTIONS(3059), - [anon_sym_atomic] = ACTIONS(3059), - [anon_sym_assert] = ACTIONS(3059), - [anon_sym_defer] = ACTIONS(3059), - [anon_sym_goto] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_DOLLARfor] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_POUND] = ACTIONS(3059), - [anon_sym_asm] = ACTIONS(3059), - [anon_sym_AT_LBRACK] = ACTIONS(3059), - [sym___double_quote] = ACTIONS(3059), - [sym___single_quote] = ACTIONS(3059), - [sym___c_double_quote] = ACTIONS(3059), - [sym___c_single_quote] = ACTIONS(3059), - [sym___r_double_quote] = ACTIONS(3059), - [sym___r_single_quote] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym___global] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_pub] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_defer] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_DOLLARfor] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym_AT_LBRACK] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3009), + [sym___single_quote] = ACTIONS(3009), + [sym___c_double_quote] = ACTIONS(3009), + [sym___c_single_quote] = ACTIONS(3009), + [sym___r_double_quote] = ACTIONS(3009), + [sym___r_single_quote] = ACTIONS(3009), }, [1090] = { - [ts_builtin_sym_end] = ACTIONS(2945), - [sym_identifier] = ACTIONS(2947), - [anon_sym_LF] = ACTIONS(2947), - [anon_sym_CR] = ACTIONS(2947), - [anon_sym_CR_LF] = ACTIONS(2947), + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_const] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym___global] = ACTIONS(2947), - [anon_sym_type] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_EQ] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_union] = ACTIONS(2947), - [anon_sym_pub] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2947), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2947), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_CARET] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2947), - [anon_sym_POUND_LBRACK] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), - [anon_sym_assert] = ACTIONS(2947), - [anon_sym_defer] = ACTIONS(2947), - [anon_sym_goto] = ACTIONS(2947), - [anon_sym_break] = ACTIONS(2947), - [anon_sym_continue] = ACTIONS(2947), - [anon_sym_return] = ACTIONS(2947), - [anon_sym_DOLLARfor] = ACTIONS(2947), - [anon_sym_for] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_asm] = ACTIONS(2947), - [anon_sym_AT_LBRACK] = ACTIONS(2947), - [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(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym___global] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + [anon_sym_AT_LBRACK] = ACTIONS(3356), + [sym___double_quote] = ACTIONS(3356), + [sym___single_quote] = ACTIONS(3356), + [sym___c_double_quote] = ACTIONS(3356), + [sym___c_single_quote] = ACTIONS(3356), + [sym___r_double_quote] = ACTIONS(3356), + [sym___r_single_quote] = ACTIONS(3356), }, [1091] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_CR] = ACTIONS(3327), - [anon_sym_CR_LF] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym___global] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_pub] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3327), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3327), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3327), - [anon_sym_AMP_CARET] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3327), - [anon_sym_POUND_LBRACK] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3327), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3327), - [sym_rune_literal] = ACTIONS(3327), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3327), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_defer] = ACTIONS(3327), - [anon_sym_goto] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_DOLLARfor] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_POUND] = ACTIONS(3327), - [anon_sym_asm] = ACTIONS(3327), - [anon_sym_AT_LBRACK] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3327), - [sym___single_quote] = ACTIONS(3327), - [sym___c_double_quote] = ACTIONS(3327), - [sym___c_single_quote] = ACTIONS(3327), - [sym___r_double_quote] = ACTIONS(3327), - [sym___r_single_quote] = ACTIONS(3327), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym___global] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3378), + [anon_sym_BANG_EQ] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_pub] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3378), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3378), + [anon_sym_AMP_CARET] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_PIPE_PIPE] = ACTIONS(3378), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3378), + [anon_sym_POUND_LBRACK] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3378), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [anon_sym_assert] = ACTIONS(3378), + [anon_sym_defer] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_DOLLARfor] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym_AT_LBRACK] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), }, [1092] = { - [ts_builtin_sym_end] = ACTIONS(2949), - [sym_identifier] = ACTIONS(2951), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_CR] = ACTIONS(2951), - [anon_sym_CR_LF] = ACTIONS(2951), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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(2949), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_const] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym___global] = ACTIONS(2989), + [anon_sym_type] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_union] = ACTIONS(2989), + [anon_sym_pub] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [anon_sym_assert] = ACTIONS(2989), + [anon_sym_defer] = ACTIONS(2989), + [anon_sym_goto] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_DOLLARfor] = ACTIONS(2989), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_asm] = ACTIONS(2989), + [anon_sym_AT_LBRACK] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2989), + [sym___single_quote] = ACTIONS(2989), + [sym___c_double_quote] = ACTIONS(2989), + [sym___c_single_quote] = ACTIONS(2989), + [sym___r_double_quote] = ACTIONS(2989), + [sym___r_single_quote] = ACTIONS(2989), }, [1093] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LF] = ACTIONS(3323), - [anon_sym_CR] = ACTIONS(3323), - [anon_sym_CR_LF] = ACTIONS(3323), + [ts_builtin_sym_end] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3291), + [anon_sym_LF] = ACTIONS(3291), + [anon_sym_CR] = ACTIONS(3291), + [anon_sym_CR_LF] = ACTIONS(3291), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym___global] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_union] = ACTIONS(3323), - [anon_sym_pub] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3323), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3323), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3323), - [anon_sym_AMP_CARET] = ACTIONS(3323), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3323), - [anon_sym_POUND_LBRACK] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3323), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3323), - [sym_rune_literal] = ACTIONS(3323), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3323), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_defer] = ACTIONS(3323), - [anon_sym_goto] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_DOLLARfor] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_POUND] = ACTIONS(3323), - [anon_sym_asm] = ACTIONS(3323), - [anon_sym_AT_LBRACK] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3323), - [sym___single_quote] = ACTIONS(3323), - [sym___c_double_quote] = ACTIONS(3323), - [sym___c_single_quote] = ACTIONS(3323), - [sym___r_double_quote] = ACTIONS(3323), - [sym___r_single_quote] = ACTIONS(3323), + [anon_sym_DOT] = ACTIONS(3291), + [anon_sym_as] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_COMMA] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym___global] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_PIPE] = ACTIONS(3291), + [anon_sym_fn] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_PERCENT] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3291), + [anon_sym_EQ_EQ] = ACTIONS(3291), + [anon_sym_BANG_EQ] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3291), + [anon_sym_GT_EQ] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_struct] = ACTIONS(3291), + [anon_sym_union] = ACTIONS(3291), + [anon_sym_pub] = ACTIONS(3291), + [anon_sym_mut] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_go] = ACTIONS(3291), + [anon_sym_spawn] = ACTIONS(3291), + [anon_sym_json_DOTdecode] = ACTIONS(3291), + [anon_sym_LBRACK2] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3291), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_LT_DASH] = ACTIONS(3291), + [anon_sym_LT_LT] = ACTIONS(3291), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym_GT_GT_GT] = ACTIONS(3291), + [anon_sym_AMP_CARET] = ACTIONS(3291), + [anon_sym_AMP_AMP] = ACTIONS(3291), + [anon_sym_PIPE_PIPE] = ACTIONS(3291), + [anon_sym_or] = ACTIONS(3291), + [sym_none] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_nil] = ACTIONS(3291), + [anon_sym_QMARK_DOT] = ACTIONS(3291), + [anon_sym_POUND_LBRACK] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_DOLLARif] = ACTIONS(3291), + [anon_sym_is] = ACTIONS(3291), + [anon_sym_BANGis] = ACTIONS(3291), + [anon_sym_in] = ACTIONS(3291), + [anon_sym_BANGin] = ACTIONS(3291), + [anon_sym_match] = ACTIONS(3291), + [anon_sym_select] = ACTIONS(3291), + [anon_sym_lock] = ACTIONS(3291), + [anon_sym_rlock] = ACTIONS(3291), + [anon_sym_unsafe] = ACTIONS(3291), + [anon_sym_sql] = ACTIONS(3291), + [sym_int_literal] = ACTIONS(3291), + [sym_float_literal] = ACTIONS(3291), + [sym_rune_literal] = ACTIONS(3291), + [sym_pseudo_compile_time_identifier] = ACTIONS(3291), + [anon_sym_shared] = ACTIONS(3291), + [anon_sym_map_LBRACK] = ACTIONS(3291), + [anon_sym_chan] = ACTIONS(3291), + [anon_sym_thread] = ACTIONS(3291), + [anon_sym_atomic] = ACTIONS(3291), + [anon_sym_assert] = ACTIONS(3291), + [anon_sym_defer] = ACTIONS(3291), + [anon_sym_goto] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_DOLLARfor] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_POUND] = ACTIONS(3291), + [anon_sym_asm] = ACTIONS(3291), + [anon_sym_AT_LBRACK] = ACTIONS(3291), + [sym___double_quote] = ACTIONS(3291), + [sym___single_quote] = ACTIONS(3291), + [sym___c_double_quote] = ACTIONS(3291), + [sym___c_single_quote] = ACTIONS(3291), + [sym___r_double_quote] = ACTIONS(3291), + [sym___r_single_quote] = ACTIONS(3291), }, [1094] = { - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3444), - [anon_sym_LF] = ACTIONS(3444), - [anon_sym_CR] = ACTIONS(3444), - [anon_sym_CR_LF] = ACTIONS(3444), + [ts_builtin_sym_end] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3287), + [anon_sym_LF] = ACTIONS(3287), + [anon_sym_CR] = ACTIONS(3287), + [anon_sym_CR_LF] = ACTIONS(3287), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3444), - [anon_sym_as] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym___global] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_fn] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_EQ_EQ] = ACTIONS(3444), - [anon_sym_BANG_EQ] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_union] = ACTIONS(3444), - [anon_sym_pub] = ACTIONS(3444), - [anon_sym_mut] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_QMARK] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_go] = ACTIONS(3444), - [anon_sym_spawn] = ACTIONS(3444), - [anon_sym_json_DOTdecode] = ACTIONS(3444), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_LT_DASH] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(3444), - [anon_sym_AMP_CARET] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_PIPE_PIPE] = ACTIONS(3444), - [anon_sym_or] = ACTIONS(3444), - [sym_none] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_nil] = ACTIONS(3444), - [anon_sym_QMARK_DOT] = ACTIONS(3444), - [anon_sym_POUND_LBRACK] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_DOLLARif] = ACTIONS(3444), - [anon_sym_is] = ACTIONS(3444), - [anon_sym_BANGis] = ACTIONS(3444), - [anon_sym_in] = ACTIONS(3444), - [anon_sym_BANGin] = ACTIONS(3444), - [anon_sym_match] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_rlock] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_sql] = ACTIONS(3444), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(3444), - [sym_rune_literal] = ACTIONS(3444), - [sym_pseudo_compile_time_identifier] = ACTIONS(3444), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3444), - [anon_sym_chan] = ACTIONS(3444), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3444), - [anon_sym_assert] = ACTIONS(3444), - [anon_sym_defer] = ACTIONS(3444), - [anon_sym_goto] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_DOLLARfor] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_POUND] = ACTIONS(3444), - [anon_sym_asm] = ACTIONS(3444), - [anon_sym_AT_LBRACK] = ACTIONS(3444), - [sym___double_quote] = ACTIONS(3444), - [sym___single_quote] = ACTIONS(3444), - [sym___c_double_quote] = ACTIONS(3444), - [sym___c_single_quote] = ACTIONS(3444), - [sym___r_double_quote] = ACTIONS(3444), - [sym___r_single_quote] = ACTIONS(3444), + [anon_sym_DOT] = ACTIONS(3287), + [anon_sym_as] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_COMMA] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym___global] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_PIPE] = ACTIONS(3287), + [anon_sym_fn] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_PERCENT] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_GT] = ACTIONS(3287), + [anon_sym_EQ_EQ] = ACTIONS(3287), + [anon_sym_BANG_EQ] = ACTIONS(3287), + [anon_sym_LT_EQ] = ACTIONS(3287), + [anon_sym_GT_EQ] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_struct] = ACTIONS(3287), + [anon_sym_union] = ACTIONS(3287), + [anon_sym_pub] = ACTIONS(3287), + [anon_sym_mut] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [anon_sym_QMARK] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_go] = ACTIONS(3287), + [anon_sym_spawn] = ACTIONS(3287), + [anon_sym_json_DOTdecode] = ACTIONS(3287), + [anon_sym_LBRACK2] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3287), + [anon_sym_AMP] = ACTIONS(3287), + [anon_sym_LT_DASH] = ACTIONS(3287), + [anon_sym_LT_LT] = ACTIONS(3287), + [anon_sym_GT_GT] = ACTIONS(3287), + [anon_sym_GT_GT_GT] = ACTIONS(3287), + [anon_sym_AMP_CARET] = ACTIONS(3287), + [anon_sym_AMP_AMP] = ACTIONS(3287), + [anon_sym_PIPE_PIPE] = ACTIONS(3287), + [anon_sym_or] = ACTIONS(3287), + [sym_none] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_nil] = ACTIONS(3287), + [anon_sym_QMARK_DOT] = ACTIONS(3287), + [anon_sym_POUND_LBRACK] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_DOLLARif] = ACTIONS(3287), + [anon_sym_is] = ACTIONS(3287), + [anon_sym_BANGis] = ACTIONS(3287), + [anon_sym_in] = ACTIONS(3287), + [anon_sym_BANGin] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3287), + [anon_sym_select] = ACTIONS(3287), + [anon_sym_lock] = ACTIONS(3287), + [anon_sym_rlock] = ACTIONS(3287), + [anon_sym_unsafe] = ACTIONS(3287), + [anon_sym_sql] = ACTIONS(3287), + [sym_int_literal] = ACTIONS(3287), + [sym_float_literal] = ACTIONS(3287), + [sym_rune_literal] = ACTIONS(3287), + [sym_pseudo_compile_time_identifier] = ACTIONS(3287), + [anon_sym_shared] = ACTIONS(3287), + [anon_sym_map_LBRACK] = ACTIONS(3287), + [anon_sym_chan] = ACTIONS(3287), + [anon_sym_thread] = ACTIONS(3287), + [anon_sym_atomic] = ACTIONS(3287), + [anon_sym_assert] = ACTIONS(3287), + [anon_sym_defer] = ACTIONS(3287), + [anon_sym_goto] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_DOLLARfor] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_POUND] = ACTIONS(3287), + [anon_sym_asm] = ACTIONS(3287), + [anon_sym_AT_LBRACK] = ACTIONS(3287), + [sym___double_quote] = ACTIONS(3287), + [sym___single_quote] = ACTIONS(3287), + [sym___c_double_quote] = ACTIONS(3287), + [sym___c_single_quote] = ACTIONS(3287), + [sym___r_double_quote] = ACTIONS(3287), + [sym___r_single_quote] = ACTIONS(3287), }, [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), + [ts_builtin_sym_end] = ACTIONS(2725), + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_const] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym___global] = ACTIONS(2727), + [anon_sym_type] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_union] = ACTIONS(2727), + [anon_sym_pub] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_enum] = ACTIONS(2727), + [anon_sym_interface] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [anon_sym_assert] = ACTIONS(2727), + [anon_sym_defer] = ACTIONS(2727), + [anon_sym_goto] = ACTIONS(2727), + [anon_sym_break] = ACTIONS(2727), + [anon_sym_continue] = ACTIONS(2727), + [anon_sym_return] = ACTIONS(2727), + [anon_sym_DOLLARfor] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2727), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_asm] = ACTIONS(2727), + [anon_sym_AT_LBRACK] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), }, [1096] = { - [ts_builtin_sym_end] = ACTIONS(3057), - [sym_identifier] = ACTIONS(3059), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_CR] = ACTIONS(3059), - [anon_sym_CR_LF] = ACTIONS(3059), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3059), - [anon_sym_as] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym___global] = ACTIONS(3059), - [anon_sym_type] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_fn] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3059), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_union] = ACTIONS(3059), - [anon_sym_pub] = ACTIONS(3059), - [anon_sym_mut] = ACTIONS(3059), - [anon_sym_enum] = ACTIONS(3059), - [anon_sym_interface] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_go] = ACTIONS(3059), - [anon_sym_spawn] = ACTIONS(3059), - [anon_sym_json_DOTdecode] = ACTIONS(3059), - [anon_sym_LBRACK2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_GT_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_CARET] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_or] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_nil] = ACTIONS(3059), - [anon_sym_QMARK_DOT] = ACTIONS(3059), - [anon_sym_POUND_LBRACK] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_DOLLARif] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_BANGis] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3059), - [anon_sym_BANGin] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3059), - [anon_sym_select] = ACTIONS(3059), - [anon_sym_lock] = ACTIONS(3059), - [anon_sym_rlock] = ACTIONS(3059), - [anon_sym_unsafe] = ACTIONS(3059), - [anon_sym_sql] = ACTIONS(3059), - [sym_int_literal] = ACTIONS(3059), - [sym_float_literal] = ACTIONS(3059), - [sym_rune_literal] = ACTIONS(3059), - [sym_pseudo_compile_time_identifier] = ACTIONS(3059), - [anon_sym_shared] = ACTIONS(3059), - [anon_sym_map_LBRACK] = ACTIONS(3059), - [anon_sym_chan] = ACTIONS(3059), - [anon_sym_thread] = ACTIONS(3059), - [anon_sym_atomic] = ACTIONS(3059), - [anon_sym_assert] = ACTIONS(3059), - [anon_sym_defer] = ACTIONS(3059), - [anon_sym_goto] = ACTIONS(3059), - [anon_sym_break] = ACTIONS(3059), - [anon_sym_continue] = ACTIONS(3059), - [anon_sym_return] = ACTIONS(3059), - [anon_sym_DOLLARfor] = ACTIONS(3059), - [anon_sym_for] = ACTIONS(3059), - [anon_sym_POUND] = ACTIONS(3059), - [anon_sym_asm] = ACTIONS(3059), - [anon_sym_AT_LBRACK] = ACTIONS(3059), - [sym___double_quote] = ACTIONS(3059), - [sym___single_quote] = ACTIONS(3059), - [sym___c_double_quote] = ACTIONS(3059), - [sym___c_single_quote] = ACTIONS(3059), - [sym___r_double_quote] = ACTIONS(3059), - [sym___r_single_quote] = ACTIONS(3059), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), }, [1097] = { - [ts_builtin_sym_end] = ACTIONS(2953), - [sym_identifier] = ACTIONS(2955), - [anon_sym_LF] = ACTIONS(2955), - [anon_sym_CR] = ACTIONS(2955), - [anon_sym_CR_LF] = ACTIONS(2955), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3396), + [anon_sym_LF] = ACTIONS(3396), + [anon_sym_CR] = ACTIONS(3396), + [anon_sym_CR_LF] = ACTIONS(3396), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_COMMA] = ACTIONS(2955), - [anon_sym_const] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2955), - [anon_sym___global] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_fn] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_EQ_EQ] = ACTIONS(2955), - [anon_sym_BANG_EQ] = ACTIONS(2955), - [anon_sym_LT_EQ] = ACTIONS(2955), - [anon_sym_GT_EQ] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_union] = ACTIONS(2955), - [anon_sym_pub] = ACTIONS(2955), - [anon_sym_mut] = ACTIONS(2955), - [anon_sym_enum] = ACTIONS(2955), - [anon_sym_interface] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_go] = ACTIONS(2955), - [anon_sym_spawn] = ACTIONS(2955), - [anon_sym_json_DOTdecode] = ACTIONS(2955), - [anon_sym_LBRACK2] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_CARET] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_DASH] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2955), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2955), - [anon_sym_AMP_CARET] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2955), - [sym_none] = ACTIONS(2955), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_nil] = ACTIONS(2955), - [anon_sym_QMARK_DOT] = ACTIONS(2955), - [anon_sym_POUND_LBRACK] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_DOLLARif] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_BANGis] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2955), - [anon_sym_BANGin] = ACTIONS(2955), - [anon_sym_match] = ACTIONS(2955), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2955), - [anon_sym_rlock] = ACTIONS(2955), - [anon_sym_unsafe] = ACTIONS(2955), - [anon_sym_sql] = ACTIONS(2955), - [sym_int_literal] = ACTIONS(2955), - [sym_float_literal] = ACTIONS(2955), - [sym_rune_literal] = ACTIONS(2955), - [sym_pseudo_compile_time_identifier] = ACTIONS(2955), - [anon_sym_shared] = ACTIONS(2955), - [anon_sym_map_LBRACK] = ACTIONS(2955), - [anon_sym_chan] = ACTIONS(2955), - [anon_sym_thread] = ACTIONS(2955), - [anon_sym_atomic] = ACTIONS(2955), - [anon_sym_assert] = ACTIONS(2955), - [anon_sym_defer] = ACTIONS(2955), - [anon_sym_goto] = ACTIONS(2955), - [anon_sym_break] = ACTIONS(2955), - [anon_sym_continue] = ACTIONS(2955), - [anon_sym_return] = ACTIONS(2955), - [anon_sym_DOLLARfor] = ACTIONS(2955), - [anon_sym_for] = ACTIONS(2955), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_asm] = ACTIONS(2955), - [anon_sym_AT_LBRACK] = ACTIONS(2955), - [sym___double_quote] = ACTIONS(2955), - [sym___single_quote] = ACTIONS(2955), - [sym___c_double_quote] = ACTIONS(2955), - [sym___c_single_quote] = ACTIONS(2955), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2955), + [anon_sym_DOT] = ACTIONS(3396), + [anon_sym_as] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym___global] = ACTIONS(3396), + [anon_sym_type] = ACTIONS(3396), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_fn] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3396), + [anon_sym_PERCENT] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3396), + [anon_sym_EQ_EQ] = ACTIONS(3396), + [anon_sym_BANG_EQ] = ACTIONS(3396), + [anon_sym_LT_EQ] = ACTIONS(3396), + [anon_sym_GT_EQ] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [anon_sym_pub] = ACTIONS(3396), + [anon_sym_mut] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_interface] = ACTIONS(3396), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_QMARK] = ACTIONS(3396), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_go] = ACTIONS(3396), + [anon_sym_spawn] = ACTIONS(3396), + [anon_sym_json_DOTdecode] = ACTIONS(3396), + [anon_sym_LBRACK2] = ACTIONS(3396), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3396), + [anon_sym_LT_LT] = ACTIONS(3396), + [anon_sym_GT_GT] = ACTIONS(3396), + [anon_sym_GT_GT_GT] = ACTIONS(3396), + [anon_sym_AMP_CARET] = ACTIONS(3396), + [anon_sym_AMP_AMP] = ACTIONS(3396), + [anon_sym_PIPE_PIPE] = ACTIONS(3396), + [anon_sym_or] = ACTIONS(3396), + [sym_none] = ACTIONS(3396), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [sym_nil] = ACTIONS(3396), + [anon_sym_QMARK_DOT] = ACTIONS(3396), + [anon_sym_POUND_LBRACK] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_DOLLARif] = ACTIONS(3396), + [anon_sym_is] = ACTIONS(3396), + [anon_sym_BANGis] = ACTIONS(3396), + [anon_sym_in] = ACTIONS(3396), + [anon_sym_BANGin] = ACTIONS(3396), + [anon_sym_match] = ACTIONS(3396), + [anon_sym_select] = ACTIONS(3396), + [anon_sym_lock] = ACTIONS(3396), + [anon_sym_rlock] = ACTIONS(3396), + [anon_sym_unsafe] = ACTIONS(3396), + [anon_sym_sql] = ACTIONS(3396), + [sym_int_literal] = ACTIONS(3396), + [sym_float_literal] = ACTIONS(3396), + [sym_rune_literal] = ACTIONS(3396), + [sym_pseudo_compile_time_identifier] = ACTIONS(3396), + [anon_sym_shared] = ACTIONS(3396), + [anon_sym_map_LBRACK] = ACTIONS(3396), + [anon_sym_chan] = ACTIONS(3396), + [anon_sym_thread] = ACTIONS(3396), + [anon_sym_atomic] = ACTIONS(3396), + [anon_sym_assert] = ACTIONS(3396), + [anon_sym_defer] = ACTIONS(3396), + [anon_sym_goto] = ACTIONS(3396), + [anon_sym_break] = ACTIONS(3396), + [anon_sym_continue] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3396), + [anon_sym_DOLLARfor] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_POUND] = ACTIONS(3396), + [anon_sym_asm] = ACTIONS(3396), + [anon_sym_AT_LBRACK] = ACTIONS(3396), + [sym___double_quote] = ACTIONS(3396), + [sym___single_quote] = ACTIONS(3396), + [sym___c_double_quote] = ACTIONS(3396), + [sym___c_single_quote] = ACTIONS(3396), + [sym___r_double_quote] = ACTIONS(3396), + [sym___r_single_quote] = ACTIONS(3396), }, [1098] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym___global] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_pub] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3319), - [anon_sym_PIPE_PIPE] = ACTIONS(3319), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3319), - [anon_sym_POUND_LBRACK] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3319), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_defer] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_DOLLARfor] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_POUND] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym_AT_LBRACK] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), - }, - [1099] = { - [ts_builtin_sym_end] = ACTIONS(2975), - [sym_identifier] = ACTIONS(2977), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_CR] = ACTIONS(2977), - [anon_sym_CR_LF] = ACTIONS(2977), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym___global] = ACTIONS(2977), - [anon_sym_type] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_EQ] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_union] = ACTIONS(2977), - [anon_sym_pub] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_enum] = ACTIONS(2977), - [anon_sym_interface] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2977), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2977), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2977), - [anon_sym_AMP_CARET] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2977), - [anon_sym_POUND_LBRACK] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2977), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2977), - [sym_rune_literal] = ACTIONS(2977), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2977), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), - [anon_sym_assert] = ACTIONS(2977), - [anon_sym_defer] = ACTIONS(2977), - [anon_sym_goto] = ACTIONS(2977), - [anon_sym_break] = ACTIONS(2977), - [anon_sym_continue] = ACTIONS(2977), - [anon_sym_return] = ACTIONS(2977), - [anon_sym_DOLLARfor] = ACTIONS(2977), - [anon_sym_for] = ACTIONS(2977), - [anon_sym_POUND] = ACTIONS(2977), - [anon_sym_asm] = ACTIONS(2977), - [anon_sym_AT_LBRACK] = ACTIONS(2977), - [sym___double_quote] = ACTIONS(2977), - [sym___single_quote] = ACTIONS(2977), - [sym___c_double_quote] = ACTIONS(2977), - [sym___c_single_quote] = ACTIONS(2977), - [sym___r_double_quote] = ACTIONS(2977), - [sym___r_single_quote] = ACTIONS(2977), - }, - [1100] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym___global] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_union] = ACTIONS(3141), - [anon_sym_pub] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [sym_pseudo_compile_time_identifier] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), - }, - [1101] = { - [ts_builtin_sym_end] = ACTIONS(3431), - [sym_identifier] = ACTIONS(3433), - [anon_sym_LF] = ACTIONS(3433), - [anon_sym_CR] = ACTIONS(3433), - [anon_sym_CR_LF] = ACTIONS(3433), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_as] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym___global] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_fn] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_GT] = ACTIONS(3433), - [anon_sym_EQ_EQ] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_EQ] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_union] = ACTIONS(3433), - [anon_sym_pub] = ACTIONS(3433), - [anon_sym_mut] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_go] = ACTIONS(3433), - [anon_sym_spawn] = ACTIONS(3433), - [anon_sym_json_DOTdecode] = ACTIONS(3433), - [anon_sym_LBRACK2] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_LT_LT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3433), - [anon_sym_GT_GT_GT] = ACTIONS(3433), - [anon_sym_AMP_CARET] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [sym_none] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_nil] = ACTIONS(3433), - [anon_sym_QMARK_DOT] = ACTIONS(3433), - [anon_sym_POUND_LBRACK] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_DOLLARif] = ACTIONS(3433), - [anon_sym_is] = ACTIONS(3433), - [anon_sym_BANGis] = ACTIONS(3433), - [anon_sym_in] = ACTIONS(3433), - [anon_sym_BANGin] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_select] = ACTIONS(3433), - [anon_sym_lock] = ACTIONS(3433), - [anon_sym_rlock] = ACTIONS(3433), - [anon_sym_unsafe] = ACTIONS(3433), - [anon_sym_sql] = ACTIONS(3433), - [sym_int_literal] = ACTIONS(3433), - [sym_float_literal] = ACTIONS(3433), - [sym_rune_literal] = ACTIONS(3433), - [sym_pseudo_compile_time_identifier] = ACTIONS(3433), - [anon_sym_shared] = ACTIONS(3433), - [anon_sym_map_LBRACK] = ACTIONS(3433), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3433), - [anon_sym_atomic] = ACTIONS(3433), - [anon_sym_assert] = ACTIONS(3433), - [anon_sym_defer] = ACTIONS(3433), - [anon_sym_goto] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_DOLLARfor] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_asm] = ACTIONS(3433), - [anon_sym_AT_LBRACK] = ACTIONS(3433), - [sym___double_quote] = ACTIONS(3433), - [sym___single_quote] = ACTIONS(3433), - [sym___c_double_quote] = ACTIONS(3433), - [sym___c_single_quote] = ACTIONS(3433), - [sym___r_double_quote] = ACTIONS(3433), - [sym___r_single_quote] = ACTIONS(3433), - }, - [1102] = { - [ts_builtin_sym_end] = ACTIONS(3427), - [sym_identifier] = ACTIONS(3429), - [anon_sym_LF] = ACTIONS(3429), - [anon_sym_CR] = ACTIONS(3429), - [anon_sym_CR_LF] = ACTIONS(3429), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3429), - [anon_sym_as] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym___global] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_fn] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3429), - [anon_sym_union] = ACTIONS(3429), - [anon_sym_pub] = ACTIONS(3429), - [anon_sym_mut] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_go] = ACTIONS(3429), - [anon_sym_spawn] = ACTIONS(3429), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3429), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [sym_none] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_nil] = ACTIONS(3429), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_DOLLARif] = ACTIONS(3429), - [anon_sym_is] = ACTIONS(3429), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3429), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3429), - [anon_sym_select] = ACTIONS(3429), - [anon_sym_lock] = ACTIONS(3429), - [anon_sym_rlock] = ACTIONS(3429), - [anon_sym_unsafe] = ACTIONS(3429), - [anon_sym_sql] = ACTIONS(3429), - [sym_int_literal] = ACTIONS(3429), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3429), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3429), - [anon_sym_thread] = ACTIONS(3429), - [anon_sym_atomic] = ACTIONS(3429), - [anon_sym_assert] = ACTIONS(3429), - [anon_sym_defer] = ACTIONS(3429), - [anon_sym_goto] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_DOLLARfor] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_asm] = ACTIONS(3429), - [anon_sym_AT_LBRACK] = ACTIONS(3429), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), - }, - [1103] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3247), + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym___global] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_pub] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [sym_pseudo_compile_time_identifier] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym___global] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_EQ] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_union] = ACTIONS(3249), + [anon_sym_pub] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3249), + [anon_sym_AMP_CARET] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [anon_sym_assert] = ACTIONS(3249), + [anon_sym_defer] = ACTIONS(3249), + [anon_sym_goto] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_DOLLARfor] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3249), + [anon_sym_asm] = ACTIONS(3249), + [anon_sym_AT_LBRACK] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3249), + [sym___single_quote] = ACTIONS(3249), + [sym___c_double_quote] = ACTIONS(3249), + [sym___c_single_quote] = ACTIONS(3249), + [sym___r_double_quote] = ACTIONS(3249), + [sym___r_single_quote] = ACTIONS(3249), + }, + [1099] = { + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_const] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym___global] = ACTIONS(2993), + [anon_sym_type] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_union] = ACTIONS(2993), + [anon_sym_pub] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_interface] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [anon_sym_assert] = ACTIONS(2993), + [anon_sym_defer] = ACTIONS(2993), + [anon_sym_goto] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_DOLLARfor] = ACTIONS(2993), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_asm] = ACTIONS(2993), + [anon_sym_AT_LBRACK] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2993), + [sym___single_quote] = ACTIONS(2993), + [sym___c_double_quote] = ACTIONS(2993), + [sym___c_single_quote] = ACTIONS(2993), + [sym___r_double_quote] = ACTIONS(2993), + [sym___r_single_quote] = ACTIONS(2993), + }, + [1100] = { + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_const] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym___global] = ACTIONS(2997), + [anon_sym_type] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_union] = ACTIONS(2997), + [anon_sym_pub] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [anon_sym_assert] = ACTIONS(2997), + [anon_sym_defer] = ACTIONS(2997), + [anon_sym_goto] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_DOLLARfor] = ACTIONS(2997), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2997), + [anon_sym_asm] = ACTIONS(2997), + [anon_sym_AT_LBRACK] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2997), + [sym___single_quote] = ACTIONS(2997), + [sym___c_double_quote] = ACTIONS(2997), + [sym___c_single_quote] = ACTIONS(2997), + [sym___r_double_quote] = ACTIONS(2997), + [sym___r_single_quote] = ACTIONS(2997), + }, + [1101] = { + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym___global] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_BANG_EQ] = ACTIONS(3412), + [anon_sym_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_EQ] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_union] = ACTIONS(3412), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_CARET] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3412), + [anon_sym_POUND_LBRACK] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_defer] = ACTIONS(3412), + [anon_sym_goto] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_DOLLARfor] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_POUND] = ACTIONS(3412), + [anon_sym_asm] = ACTIONS(3412), + [anon_sym_AT_LBRACK] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), + }, + [1102] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [1103] = { + [ts_builtin_sym_end] = ACTIONS(3239), + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym___global] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_union] = ACTIONS(3241), + [anon_sym_pub] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [anon_sym_assert] = ACTIONS(3241), + [anon_sym_defer] = ACTIONS(3241), + [anon_sym_goto] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_DOLLARfor] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_asm] = ACTIONS(3241), + [anon_sym_AT_LBRACK] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3241), + [sym___single_quote] = ACTIONS(3241), + [sym___c_double_quote] = ACTIONS(3241), + [sym___c_single_quote] = ACTIONS(3241), + [sym___r_double_quote] = ACTIONS(3241), + [sym___r_single_quote] = ACTIONS(3241), }, [1104] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym___global] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_pub] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3219), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3219), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_CARET] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3219), - [sym_rune_literal] = ACTIONS(3219), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_defer] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_DOLLARfor] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym_AT_LBRACK] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3219), - [sym___single_quote] = ACTIONS(3219), - [sym___c_double_quote] = ACTIONS(3219), - [sym___c_single_quote] = ACTIONS(3219), - [sym___r_double_quote] = ACTIONS(3219), - [sym___r_single_quote] = ACTIONS(3219), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_const] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym___global] = ACTIONS(3001), + [anon_sym_type] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_union] = ACTIONS(3001), + [anon_sym_pub] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [anon_sym_assert] = ACTIONS(3001), + [anon_sym_defer] = ACTIONS(3001), + [anon_sym_goto] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_DOLLARfor] = ACTIONS(3001), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_asm] = ACTIONS(3001), + [anon_sym_AT_LBRACK] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(3001), + [sym___single_quote] = ACTIONS(3001), + [sym___c_double_quote] = ACTIONS(3001), + [sym___c_single_quote] = ACTIONS(3001), + [sym___r_double_quote] = ACTIONS(3001), + [sym___r_single_quote] = ACTIONS(3001), }, [1105] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [anon_sym_assert] = ACTIONS(3149), - [anon_sym_defer] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_DOLLARfor] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym_AT_LBRACK] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym___global] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_union] = ACTIONS(3374), + [anon_sym_pub] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + [sym_rune_literal] = ACTIONS(3374), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [anon_sym_assert] = ACTIONS(3374), + [anon_sym_defer] = ACTIONS(3374), + [anon_sym_goto] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_DOLLARfor] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_POUND] = ACTIONS(3374), + [anon_sym_asm] = ACTIONS(3374), + [anon_sym_AT_LBRACK] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3374), + [sym___single_quote] = ACTIONS(3374), + [sym___c_double_quote] = ACTIONS(3374), + [sym___c_single_quote] = ACTIONS(3374), + [sym___r_double_quote] = ACTIONS(3374), + [sym___r_single_quote] = ACTIONS(3374), }, [1106] = { - [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), + [ts_builtin_sym_end] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3103), + [anon_sym_LF] = ACTIONS(3103), + [anon_sym_CR] = ACTIONS(3103), + [anon_sym_CR_LF] = ACTIONS(3103), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_defer] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_DOLLARfor] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_POUND] = ACTIONS(3153), - [anon_sym_asm] = ACTIONS(3153), - [anon_sym_AT_LBRACK] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), + [anon_sym_DOT] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3103), + [anon_sym___global] = ACTIONS(3103), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3103), + [anon_sym_fn] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_SLASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_GT] = ACTIONS(3103), + [anon_sym_EQ_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_LT_EQ] = ACTIONS(3103), + [anon_sym_GT_EQ] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_pub] = ACTIONS(3103), + [anon_sym_mut] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_interface] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_go] = ACTIONS(3103), + [anon_sym_spawn] = ACTIONS(3103), + [anon_sym_json_DOTdecode] = ACTIONS(3103), + [anon_sym_LBRACK2] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_CARET] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_LT_DASH] = ACTIONS(3103), + [anon_sym_LT_LT] = ACTIONS(3103), + [anon_sym_GT_GT] = ACTIONS(3103), + [anon_sym_GT_GT_GT] = ACTIONS(3103), + [anon_sym_AMP_CARET] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3103), + [sym_none] = ACTIONS(3103), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [sym_nil] = ACTIONS(3103), + [anon_sym_QMARK_DOT] = ACTIONS(3103), + [anon_sym_POUND_LBRACK] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_DOLLARif] = ACTIONS(3103), + [anon_sym_is] = ACTIONS(3103), + [anon_sym_BANGis] = ACTIONS(3103), + [anon_sym_in] = ACTIONS(3103), + [anon_sym_BANGin] = ACTIONS(3103), + [anon_sym_match] = ACTIONS(3103), + [anon_sym_select] = ACTIONS(3103), + [anon_sym_lock] = ACTIONS(3103), + [anon_sym_rlock] = ACTIONS(3103), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3103), + [sym_int_literal] = ACTIONS(3103), + [sym_float_literal] = ACTIONS(3103), + [sym_rune_literal] = ACTIONS(3103), + [sym_pseudo_compile_time_identifier] = ACTIONS(3103), + [anon_sym_shared] = ACTIONS(3103), + [anon_sym_map_LBRACK] = ACTIONS(3103), + [anon_sym_chan] = ACTIONS(3103), + [anon_sym_thread] = ACTIONS(3103), + [anon_sym_atomic] = ACTIONS(3103), + [anon_sym_assert] = ACTIONS(3103), + [anon_sym_defer] = ACTIONS(3103), + [anon_sym_goto] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_DOLLARfor] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_POUND] = ACTIONS(3103), + [anon_sym_asm] = ACTIONS(3103), + [anon_sym_AT_LBRACK] = ACTIONS(3103), + [sym___double_quote] = ACTIONS(3103), + [sym___single_quote] = ACTIONS(3103), + [sym___c_double_quote] = ACTIONS(3103), + [sym___c_single_quote] = ACTIONS(3103), + [sym___r_double_quote] = ACTIONS(3103), + [sym___r_single_quote] = ACTIONS(3103), }, [1107] = { - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3366), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_CR] = ACTIONS(3366), + [anon_sym_CR_LF] = ACTIONS(3366), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym___global] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3311), - [anon_sym_BANG_EQ] = ACTIONS(3311), - [anon_sym_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_EQ] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_union] = ACTIONS(3311), - [anon_sym_pub] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3311), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_CARET] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3311), - [anon_sym_LT_LT] = ACTIONS(3311), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3311), - [anon_sym_AMP_CARET] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_PIPE_PIPE] = ACTIONS(3311), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3311), - [anon_sym_POUND_LBRACK] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3311), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3311), - [sym_rune_literal] = ACTIONS(3311), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3311), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [anon_sym_assert] = ACTIONS(3311), - [anon_sym_defer] = ACTIONS(3311), - [anon_sym_goto] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_DOLLARfor] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_asm] = ACTIONS(3311), - [anon_sym_AT_LBRACK] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3311), - [sym___single_quote] = ACTIONS(3311), - [sym___c_double_quote] = ACTIONS(3311), - [sym___c_single_quote] = ACTIONS(3311), - [sym___r_double_quote] = ACTIONS(3311), - [sym___r_single_quote] = ACTIONS(3311), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_COMMA] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym___global] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_EQ] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_union] = ACTIONS(3366), + [anon_sym_pub] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3366), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3366), + [anon_sym_LT_LT] = ACTIONS(3366), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3366), + [anon_sym_AMP_CARET] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_PIPE_PIPE] = ACTIONS(3366), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3366), + [anon_sym_POUND_LBRACK] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + [sym_rune_literal] = ACTIONS(3366), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3366), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [anon_sym_assert] = ACTIONS(3366), + [anon_sym_defer] = ACTIONS(3366), + [anon_sym_goto] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_DOLLARfor] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_POUND] = ACTIONS(3366), + [anon_sym_asm] = ACTIONS(3366), + [anon_sym_AT_LBRACK] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3366), + [sym___single_quote] = ACTIONS(3366), + [sym___c_double_quote] = ACTIONS(3366), + [sym___c_single_quote] = ACTIONS(3366), + [sym___r_double_quote] = ACTIONS(3366), + [sym___r_single_quote] = ACTIONS(3366), }, [1108] = { - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), + [ts_builtin_sym_end] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3017), + [anon_sym_LF] = ACTIONS(3017), + [anon_sym_CR] = ACTIONS(3017), + [anon_sym_CR_LF] = ACTIONS(3017), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym___global] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_union] = ACTIONS(3307), - [anon_sym_pub] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [anon_sym_LT_LT] = ACTIONS(3307), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3307), - [anon_sym_AMP_CARET] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3307), - [anon_sym_POUND_LBRACK] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3307), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [anon_sym_assert] = ACTIONS(3307), - [anon_sym_defer] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_DOLLARfor] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_asm] = ACTIONS(3307), - [anon_sym_AT_LBRACK] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_as] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_COMMA] = ACTIONS(3017), + [anon_sym_const] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym___global] = ACTIONS(3017), + [anon_sym_type] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_fn] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_LT_EQ] = ACTIONS(3017), + [anon_sym_GT_EQ] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_union] = ACTIONS(3017), + [anon_sym_pub] = ACTIONS(3017), + [anon_sym_mut] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_interface] = ACTIONS(3017), + [anon_sym_PLUS_PLUS] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_go] = ACTIONS(3017), + [anon_sym_spawn] = ACTIONS(3017), + [anon_sym_json_DOTdecode] = ACTIONS(3017), + [anon_sym_LBRACK2] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_CARET] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(3017), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_GT_GT_GT] = ACTIONS(3017), + [anon_sym_AMP_CARET] = ACTIONS(3017), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3017), + [sym_none] = ACTIONS(3017), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_nil] = ACTIONS(3017), + [anon_sym_QMARK_DOT] = ACTIONS(3017), + [anon_sym_POUND_LBRACK] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_DOLLARif] = ACTIONS(3017), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_BANGin] = ACTIONS(3017), + [anon_sym_match] = ACTIONS(3017), + [anon_sym_select] = ACTIONS(3017), + [anon_sym_lock] = ACTIONS(3017), + [anon_sym_rlock] = ACTIONS(3017), + [anon_sym_unsafe] = ACTIONS(3017), + [anon_sym_sql] = ACTIONS(3017), + [sym_int_literal] = ACTIONS(3017), + [sym_float_literal] = ACTIONS(3017), + [sym_rune_literal] = ACTIONS(3017), + [sym_pseudo_compile_time_identifier] = ACTIONS(3017), + [anon_sym_shared] = ACTIONS(3017), + [anon_sym_map_LBRACK] = ACTIONS(3017), + [anon_sym_chan] = ACTIONS(3017), + [anon_sym_thread] = ACTIONS(3017), + [anon_sym_atomic] = ACTIONS(3017), + [anon_sym_assert] = ACTIONS(3017), + [anon_sym_defer] = ACTIONS(3017), + [anon_sym_goto] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_DOLLARfor] = ACTIONS(3017), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_POUND] = ACTIONS(3017), + [anon_sym_asm] = ACTIONS(3017), + [anon_sym_AT_LBRACK] = ACTIONS(3017), + [sym___double_quote] = ACTIONS(3017), + [sym___single_quote] = ACTIONS(3017), + [sym___c_double_quote] = ACTIONS(3017), + [sym___c_single_quote] = ACTIONS(3017), + [sym___r_double_quote] = ACTIONS(3017), + [sym___r_single_quote] = ACTIONS(3017), }, [1109] = { + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3322), + [anon_sym_LF] = ACTIONS(3322), + [anon_sym_CR] = ACTIONS(3322), + [anon_sym_CR_LF] = ACTIONS(3322), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym___global] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_union] = ACTIONS(3322), + [anon_sym_pub] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3322), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3322), + [anon_sym_POUND_LBRACK] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3322), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [anon_sym_assert] = ACTIONS(3322), + [anon_sym_defer] = ACTIONS(3322), + [anon_sym_goto] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_DOLLARfor] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_POUND] = ACTIONS(3322), + [anon_sym_asm] = ACTIONS(3322), + [anon_sym_AT_LBRACK] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3322), + [sym___single_quote] = ACTIONS(3322), + [sym___c_double_quote] = ACTIONS(3322), + [sym___c_single_quote] = ACTIONS(3322), + [sym___r_double_quote] = ACTIONS(3322), + [sym___r_single_quote] = ACTIONS(3322), + }, + [1110] = { + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2651), + [anon_sym_CR] = ACTIONS(2651), + [anon_sym_CR_LF] = ACTIONS(2651), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_as] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym___global] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_pub] = ACTIONS(2651), + [anon_sym_mut] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_interface] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2651), + [anon_sym_spawn] = ACTIONS(2651), + [anon_sym_json_DOTdecode] = ACTIONS(2651), + [anon_sym_LBRACK2] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_AMP_CARET] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [sym_none] = ACTIONS(2651), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_nil] = ACTIONS(2651), + [anon_sym_QMARK_DOT] = ACTIONS(2651), + [anon_sym_POUND_LBRACK] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_DOLLARif] = ACTIONS(2651), + [anon_sym_is] = ACTIONS(2651), + [anon_sym_BANGis] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_BANGin] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_select] = ACTIONS(2651), + [anon_sym_lock] = ACTIONS(2651), + [anon_sym_rlock] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_sql] = ACTIONS(2651), + [sym_int_literal] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2651), + [sym_rune_literal] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(2651), + [anon_sym_shared] = ACTIONS(2651), + [anon_sym_map_LBRACK] = ACTIONS(2651), + [anon_sym_chan] = ACTIONS(2651), + [anon_sym_thread] = ACTIONS(2651), + [anon_sym_atomic] = ACTIONS(2651), + [anon_sym_assert] = ACTIONS(2651), + [anon_sym_defer] = ACTIONS(2651), + [anon_sym_goto] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_DOLLARfor] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_POUND] = ACTIONS(2651), + [anon_sym_asm] = ACTIONS(2651), + [anon_sym_AT_LBRACK] = ACTIONS(2651), + [sym___double_quote] = ACTIONS(2651), + [sym___single_quote] = ACTIONS(2651), + [sym___c_double_quote] = ACTIONS(2651), + [sym___c_single_quote] = ACTIONS(2651), + [sym___r_double_quote] = ACTIONS(2651), + [sym___r_single_quote] = ACTIONS(2651), + }, + [1111] = { + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym___global] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_union] = ACTIONS(3318), + [anon_sym_pub] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [anon_sym_assert] = ACTIONS(3318), + [anon_sym_defer] = ACTIONS(3318), + [anon_sym_goto] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_DOLLARfor] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_POUND] = ACTIONS(3318), + [anon_sym_asm] = ACTIONS(3318), + [anon_sym_AT_LBRACK] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3318), + [sym___single_quote] = ACTIONS(3318), + [sym___c_double_quote] = ACTIONS(3318), + [sym___c_single_quote] = ACTIONS(3318), + [sym___r_double_quote] = ACTIONS(3318), + [sym___r_single_quote] = ACTIONS(3318), + }, + [1112] = { + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_const] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym___global] = ACTIONS(3049), + [anon_sym_type] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_union] = ACTIONS(3049), + [anon_sym_pub] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [anon_sym_assert] = ACTIONS(3049), + [anon_sym_defer] = ACTIONS(3049), + [anon_sym_goto] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_DOLLARfor] = ACTIONS(3049), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_asm] = ACTIONS(3049), + [anon_sym_AT_LBRACK] = ACTIONS(3049), + [sym___double_quote] = ACTIONS(3049), + [sym___single_quote] = ACTIONS(3049), + [sym___c_double_quote] = ACTIONS(3049), + [sym___c_single_quote] = ACTIONS(3049), + [sym___r_double_quote] = ACTIONS(3049), + [sym___r_single_quote] = ACTIONS(3049), + }, + [1113] = { + [ts_builtin_sym_end] = ACTIONS(3051), + [sym_identifier] = ACTIONS(3053), + [anon_sym_LF] = ACTIONS(3053), + [anon_sym_CR] = ACTIONS(3053), + [anon_sym_CR_LF] = ACTIONS(3053), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_as] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_COMMA] = ACTIONS(3053), + [anon_sym_const] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym___global] = ACTIONS(3053), + [anon_sym_type] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_fn] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_SLASH] = ACTIONS(3053), + [anon_sym_PERCENT] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_EQ_EQ] = ACTIONS(3053), + [anon_sym_BANG_EQ] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3053), + [anon_sym_union] = ACTIONS(3053), + [anon_sym_pub] = ACTIONS(3053), + [anon_sym_mut] = ACTIONS(3053), + [anon_sym_enum] = ACTIONS(3053), + [anon_sym_interface] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_QMARK] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_go] = ACTIONS(3053), + [anon_sym_spawn] = ACTIONS(3053), + [anon_sym_json_DOTdecode] = ACTIONS(3053), + [anon_sym_LBRACK2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_CARET] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT_DASH] = ACTIONS(3053), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(3053), + [anon_sym_GT_GT_GT] = ACTIONS(3053), + [anon_sym_AMP_CARET] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_PIPE_PIPE] = ACTIONS(3053), + [anon_sym_or] = ACTIONS(3053), + [sym_none] = ACTIONS(3053), + [sym_true] = ACTIONS(3053), + [sym_false] = ACTIONS(3053), + [sym_nil] = ACTIONS(3053), + [anon_sym_QMARK_DOT] = ACTIONS(3053), + [anon_sym_POUND_LBRACK] = ACTIONS(3053), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_DOLLARif] = ACTIONS(3053), + [anon_sym_is] = ACTIONS(3053), + [anon_sym_BANGis] = ACTIONS(3053), + [anon_sym_in] = ACTIONS(3053), + [anon_sym_BANGin] = ACTIONS(3053), + [anon_sym_match] = ACTIONS(3053), + [anon_sym_select] = ACTIONS(3053), + [anon_sym_lock] = ACTIONS(3053), + [anon_sym_rlock] = ACTIONS(3053), + [anon_sym_unsafe] = ACTIONS(3053), + [anon_sym_sql] = ACTIONS(3053), + [sym_int_literal] = ACTIONS(3053), + [sym_float_literal] = ACTIONS(3053), + [sym_rune_literal] = ACTIONS(3053), + [sym_pseudo_compile_time_identifier] = ACTIONS(3053), + [anon_sym_shared] = ACTIONS(3053), + [anon_sym_map_LBRACK] = ACTIONS(3053), + [anon_sym_chan] = ACTIONS(3053), + [anon_sym_thread] = ACTIONS(3053), + [anon_sym_atomic] = ACTIONS(3053), + [anon_sym_assert] = ACTIONS(3053), + [anon_sym_defer] = ACTIONS(3053), + [anon_sym_goto] = ACTIONS(3053), + [anon_sym_break] = ACTIONS(3053), + [anon_sym_continue] = ACTIONS(3053), + [anon_sym_return] = ACTIONS(3053), + [anon_sym_DOLLARfor] = ACTIONS(3053), + [anon_sym_for] = ACTIONS(3053), + [anon_sym_POUND] = ACTIONS(3053), + [anon_sym_asm] = ACTIONS(3053), + [anon_sym_AT_LBRACK] = ACTIONS(3053), + [sym___double_quote] = ACTIONS(3053), + [sym___single_quote] = ACTIONS(3053), + [sym___c_double_quote] = ACTIONS(3053), + [sym___c_single_quote] = ACTIONS(3053), + [sym___r_double_quote] = ACTIONS(3053), + [sym___r_single_quote] = ACTIONS(3053), + }, + [1114] = { + [ts_builtin_sym_end] = ACTIONS(3055), + [sym_identifier] = ACTIONS(3057), + [anon_sym_LF] = ACTIONS(3057), + [anon_sym_CR] = ACTIONS(3057), + [anon_sym_CR_LF] = ACTIONS(3057), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3057), + [anon_sym_as] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_COMMA] = ACTIONS(3057), + [anon_sym_const] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym___global] = ACTIONS(3057), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_PIPE] = ACTIONS(3057), + [anon_sym_fn] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_SLASH] = ACTIONS(3057), + [anon_sym_PERCENT] = ACTIONS(3057), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_LT_EQ] = ACTIONS(3057), + [anon_sym_GT_EQ] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3057), + [anon_sym_union] = ACTIONS(3057), + [anon_sym_pub] = ACTIONS(3057), + [anon_sym_mut] = ACTIONS(3057), + [anon_sym_enum] = ACTIONS(3057), + [anon_sym_interface] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_go] = ACTIONS(3057), + [anon_sym_spawn] = ACTIONS(3057), + [anon_sym_json_DOTdecode] = ACTIONS(3057), + [anon_sym_LBRACK2] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_CARET] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_LT_DASH] = ACTIONS(3057), + [anon_sym_LT_LT] = ACTIONS(3057), + [anon_sym_GT_GT] = ACTIONS(3057), + [anon_sym_GT_GT_GT] = ACTIONS(3057), + [anon_sym_AMP_CARET] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_PIPE_PIPE] = ACTIONS(3057), + [anon_sym_or] = ACTIONS(3057), + [sym_none] = ACTIONS(3057), + [sym_true] = ACTIONS(3057), + [sym_false] = ACTIONS(3057), + [sym_nil] = ACTIONS(3057), + [anon_sym_QMARK_DOT] = ACTIONS(3057), + [anon_sym_POUND_LBRACK] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_DOLLARif] = ACTIONS(3057), + [anon_sym_is] = ACTIONS(3057), + [anon_sym_BANGis] = ACTIONS(3057), + [anon_sym_in] = ACTIONS(3057), + [anon_sym_BANGin] = ACTIONS(3057), + [anon_sym_match] = ACTIONS(3057), + [anon_sym_select] = ACTIONS(3057), + [anon_sym_lock] = ACTIONS(3057), + [anon_sym_rlock] = ACTIONS(3057), + [anon_sym_unsafe] = ACTIONS(3057), + [anon_sym_sql] = ACTIONS(3057), + [sym_int_literal] = ACTIONS(3057), + [sym_float_literal] = ACTIONS(3057), + [sym_rune_literal] = ACTIONS(3057), + [sym_pseudo_compile_time_identifier] = ACTIONS(3057), + [anon_sym_shared] = ACTIONS(3057), + [anon_sym_map_LBRACK] = ACTIONS(3057), + [anon_sym_chan] = ACTIONS(3057), + [anon_sym_thread] = ACTIONS(3057), + [anon_sym_atomic] = ACTIONS(3057), + [anon_sym_assert] = ACTIONS(3057), + [anon_sym_defer] = ACTIONS(3057), + [anon_sym_goto] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_DOLLARfor] = ACTIONS(3057), + [anon_sym_for] = ACTIONS(3057), + [anon_sym_POUND] = ACTIONS(3057), + [anon_sym_asm] = ACTIONS(3057), + [anon_sym_AT_LBRACK] = ACTIONS(3057), + [sym___double_quote] = ACTIONS(3057), + [sym___single_quote] = ACTIONS(3057), + [sym___c_double_quote] = ACTIONS(3057), + [sym___c_single_quote] = ACTIONS(3057), + [sym___r_double_quote] = ACTIONS(3057), + [sym___r_single_quote] = ACTIONS(3057), + }, + [1115] = { + [ts_builtin_sym_end] = ACTIONS(3199), + [sym_identifier] = ACTIONS(3201), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_CR] = ACTIONS(3201), + [anon_sym_CR_LF] = ACTIONS(3201), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3201), + [anon_sym_as] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym___global] = ACTIONS(3201), + [anon_sym_type] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3201), + [anon_sym_BANG_EQ] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3201), + [anon_sym_GT_EQ] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_union] = ACTIONS(3201), + [anon_sym_pub] = ACTIONS(3201), + [anon_sym_mut] = ACTIONS(3201), + [anon_sym_enum] = ACTIONS(3201), + [anon_sym_interface] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_QMARK] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_go] = ACTIONS(3201), + [anon_sym_spawn] = ACTIONS(3201), + [anon_sym_json_DOTdecode] = ACTIONS(3201), + [anon_sym_LBRACK2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_LT_DASH] = ACTIONS(3201), + [anon_sym_LT_LT] = ACTIONS(3201), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_GT_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_CARET] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_or] = ACTIONS(3201), + [sym_none] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_nil] = ACTIONS(3201), + [anon_sym_QMARK_DOT] = ACTIONS(3201), + [anon_sym_POUND_LBRACK] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_DOLLARif] = ACTIONS(3201), + [anon_sym_is] = ACTIONS(3201), + [anon_sym_BANGis] = ACTIONS(3201), + [anon_sym_in] = ACTIONS(3201), + [anon_sym_BANGin] = ACTIONS(3201), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_lock] = ACTIONS(3201), + [anon_sym_rlock] = ACTIONS(3201), + [anon_sym_unsafe] = ACTIONS(3201), + [anon_sym_sql] = ACTIONS(3201), + [sym_int_literal] = ACTIONS(3201), + [sym_float_literal] = ACTIONS(3201), + [sym_rune_literal] = ACTIONS(3201), + [sym_pseudo_compile_time_identifier] = ACTIONS(3201), + [anon_sym_shared] = ACTIONS(3201), + [anon_sym_map_LBRACK] = ACTIONS(3201), + [anon_sym_chan] = ACTIONS(3201), + [anon_sym_thread] = ACTIONS(3201), + [anon_sym_atomic] = ACTIONS(3201), + [anon_sym_assert] = ACTIONS(3201), + [anon_sym_defer] = ACTIONS(3201), + [anon_sym_goto] = ACTIONS(3201), + [anon_sym_break] = ACTIONS(3201), + [anon_sym_continue] = ACTIONS(3201), + [anon_sym_return] = ACTIONS(3201), + [anon_sym_DOLLARfor] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(3201), + [anon_sym_asm] = ACTIONS(3201), + [anon_sym_AT_LBRACK] = ACTIONS(3201), + [sym___double_quote] = ACTIONS(3201), + [sym___single_quote] = ACTIONS(3201), + [sym___c_double_quote] = ACTIONS(3201), + [sym___c_single_quote] = ACTIONS(3201), + [sym___r_double_quote] = ACTIONS(3201), + [sym___r_single_quote] = ACTIONS(3201), + }, + [1116] = { + [ts_builtin_sym_end] = ACTIONS(3059), + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_const] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym___global] = ACTIONS(3061), + [anon_sym_type] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_union] = ACTIONS(3061), + [anon_sym_pub] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [anon_sym_assert] = ACTIONS(3061), + [anon_sym_defer] = ACTIONS(3061), + [anon_sym_goto] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_DOLLARfor] = ACTIONS(3061), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3061), + [anon_sym_asm] = ACTIONS(3061), + [anon_sym_AT_LBRACK] = ACTIONS(3061), + [sym___double_quote] = ACTIONS(3061), + [sym___single_quote] = ACTIONS(3061), + [sym___c_double_quote] = ACTIONS(3061), + [sym___c_single_quote] = ACTIONS(3061), + [sym___r_double_quote] = ACTIONS(3061), + [sym___r_single_quote] = ACTIONS(3061), + }, + [1117] = { + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3083), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_CR] = ACTIONS(3083), + [anon_sym_CR_LF] = ACTIONS(3083), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3083), + [anon_sym_as] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym___global] = ACTIONS(3083), + [anon_sym_type] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3083), + [anon_sym_fn] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_SLASH] = ACTIONS(3083), + [anon_sym_PERCENT] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_LT_EQ] = ACTIONS(3083), + [anon_sym_GT_EQ] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_mut] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_interface] = ACTIONS(3083), + [anon_sym_PLUS_PLUS] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3083), + [anon_sym_QMARK] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3083), + [anon_sym_go] = ACTIONS(3083), + [anon_sym_spawn] = ACTIONS(3083), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3083), + [anon_sym_TILDE] = ACTIONS(3083), + [anon_sym_CARET] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_LT_DASH] = ACTIONS(3083), + [anon_sym_LT_LT] = ACTIONS(3083), + [anon_sym_GT_GT] = ACTIONS(3083), + [anon_sym_GT_GT_GT] = ACTIONS(3083), + [anon_sym_AMP_CARET] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3083), + [sym_none] = ACTIONS(3083), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [sym_nil] = ACTIONS(3083), + [anon_sym_QMARK_DOT] = ACTIONS(3083), + [anon_sym_POUND_LBRACK] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_DOLLARif] = ACTIONS(3083), + [anon_sym_is] = ACTIONS(3083), + [anon_sym_BANGis] = ACTIONS(3083), + [anon_sym_in] = ACTIONS(3083), + [anon_sym_BANGin] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_select] = ACTIONS(3083), + [anon_sym_lock] = ACTIONS(3083), + [anon_sym_rlock] = ACTIONS(3083), + [anon_sym_unsafe] = ACTIONS(3083), + [anon_sym_sql] = ACTIONS(3083), + [sym_int_literal] = ACTIONS(3083), + [sym_float_literal] = ACTIONS(3083), + [sym_rune_literal] = ACTIONS(3083), + [sym_pseudo_compile_time_identifier] = ACTIONS(3083), + [anon_sym_shared] = ACTIONS(3083), + [anon_sym_map_LBRACK] = ACTIONS(3083), + [anon_sym_chan] = ACTIONS(3083), + [anon_sym_thread] = ACTIONS(3083), + [anon_sym_atomic] = ACTIONS(3083), + [anon_sym_assert] = ACTIONS(3083), + [anon_sym_defer] = ACTIONS(3083), + [anon_sym_goto] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_DOLLARfor] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_POUND] = ACTIONS(3083), + [anon_sym_asm] = ACTIONS(3083), + [anon_sym_AT_LBRACK] = ACTIONS(3083), + [sym___double_quote] = ACTIONS(3083), + [sym___single_quote] = ACTIONS(3083), + [sym___c_double_quote] = ACTIONS(3083), + [sym___c_single_quote] = ACTIONS(3083), + [sym___r_double_quote] = ACTIONS(3083), + [sym___r_single_quote] = ACTIONS(3083), + }, + [1118] = { [ts_builtin_sym_end] = ACTIONS(3297), [sym_identifier] = ACTIONS(3299), [anon_sym_LF] = ACTIONS(3299), @@ -150671,106 +151624,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3299), [sym___r_single_quote] = ACTIONS(3299), }, - [1110] = { - [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), + [1119] = { + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3087), + [anon_sym_LF] = ACTIONS(3087), + [anon_sym_CR] = ACTIONS(3087), + [anon_sym_CR_LF] = ACTIONS(3087), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym___global] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), + [anon_sym_DOT] = ACTIONS(3087), + [anon_sym_as] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_COMMA] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_LPAREN] = ACTIONS(3087), + [anon_sym___global] = ACTIONS(3087), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_fn] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_GT] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3087), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_LT_EQ] = ACTIONS(3087), + [anon_sym_GT_EQ] = ACTIONS(3087), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_pub] = ACTIONS(3087), + [anon_sym_mut] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_interface] = ACTIONS(3087), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_go] = ACTIONS(3087), + [anon_sym_spawn] = ACTIONS(3087), + [anon_sym_json_DOTdecode] = ACTIONS(3087), + [anon_sym_LBRACK2] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_CARET] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3087), + [anon_sym_LT_LT] = ACTIONS(3087), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_GT_GT_GT] = ACTIONS(3087), + [anon_sym_AMP_CARET] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_or] = ACTIONS(3087), + [sym_none] = ACTIONS(3087), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_nil] = ACTIONS(3087), + [anon_sym_QMARK_DOT] = ACTIONS(3087), + [anon_sym_POUND_LBRACK] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_DOLLARif] = ACTIONS(3087), + [anon_sym_is] = ACTIONS(3087), + [anon_sym_BANGis] = ACTIONS(3087), + [anon_sym_in] = ACTIONS(3087), + [anon_sym_BANGin] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(3087), + [anon_sym_select] = ACTIONS(3087), + [anon_sym_lock] = ACTIONS(3087), + [anon_sym_rlock] = ACTIONS(3087), + [anon_sym_unsafe] = ACTIONS(3087), + [anon_sym_sql] = ACTIONS(3087), + [sym_int_literal] = ACTIONS(3087), + [sym_float_literal] = ACTIONS(3087), + [sym_rune_literal] = ACTIONS(3087), + [sym_pseudo_compile_time_identifier] = ACTIONS(3087), + [anon_sym_shared] = ACTIONS(3087), + [anon_sym_map_LBRACK] = ACTIONS(3087), + [anon_sym_chan] = ACTIONS(3087), + [anon_sym_thread] = ACTIONS(3087), + [anon_sym_atomic] = ACTIONS(3087), + [anon_sym_assert] = ACTIONS(3087), + [anon_sym_defer] = ACTIONS(3087), + [anon_sym_goto] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_DOLLARfor] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_POUND] = ACTIONS(3087), + [anon_sym_asm] = ACTIONS(3087), + [anon_sym_AT_LBRACK] = ACTIONS(3087), + [sym___double_quote] = ACTIONS(3087), + [sym___single_quote] = ACTIONS(3087), + [sym___c_double_quote] = ACTIONS(3087), + [sym___c_single_quote] = ACTIONS(3087), + [sym___r_double_quote] = ACTIONS(3087), + [sym___r_single_quote] = ACTIONS(3087), }, - [1111] = { + [1120] = { [ts_builtin_sym_end] = ACTIONS(3301), [sym_identifier] = ACTIONS(3303), [anon_sym_LF] = ACTIONS(3303), @@ -150869,1474 +151822,1056 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3303), [sym___r_single_quote] = ACTIONS(3303), }, - [1112] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_defer] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_DOLLARfor] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_POUND] = ACTIONS(3157), - [anon_sym_asm] = ACTIONS(3157), - [anon_sym_AT_LBRACK] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), - }, - [1113] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [1114] = { - [ts_builtin_sym_end] = ACTIONS(2915), - [sym_identifier] = ACTIONS(2917), - [anon_sym_LF] = ACTIONS(2917), - [anon_sym_CR] = ACTIONS(2917), - [anon_sym_CR_LF] = ACTIONS(2917), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_const] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym___global] = ACTIONS(2917), - [anon_sym_type] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_union] = ACTIONS(2917), - [anon_sym_pub] = ACTIONS(2917), - [anon_sym_mut] = ACTIONS(2917), - [anon_sym_enum] = ACTIONS(2917), - [anon_sym_interface] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_go] = ACTIONS(2917), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2917), - [anon_sym_LBRACK2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_GT_GT_GT] = ACTIONS(2917), - [anon_sym_AMP_CARET] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2917), - [sym_none] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_nil] = ACTIONS(2917), - [anon_sym_QMARK_DOT] = ACTIONS(2917), - [anon_sym_POUND_LBRACK] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_DOLLARif] = ACTIONS(2917), - [anon_sym_is] = ACTIONS(2917), - [anon_sym_BANGis] = ACTIONS(2917), - [anon_sym_in] = ACTIONS(2917), - [anon_sym_BANGin] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_select] = ACTIONS(2917), - [anon_sym_lock] = ACTIONS(2917), - [anon_sym_rlock] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_sql] = ACTIONS(2917), - [sym_int_literal] = ACTIONS(2917), - [sym_float_literal] = ACTIONS(2917), - [sym_rune_literal] = ACTIONS(2917), - [sym_pseudo_compile_time_identifier] = ACTIONS(2917), - [anon_sym_shared] = ACTIONS(2917), - [anon_sym_map_LBRACK] = ACTIONS(2917), - [anon_sym_chan] = ACTIONS(2917), - [anon_sym_thread] = ACTIONS(2917), - [anon_sym_atomic] = ACTIONS(2917), - [anon_sym_assert] = ACTIONS(2917), - [anon_sym_defer] = ACTIONS(2917), - [anon_sym_goto] = ACTIONS(2917), - [anon_sym_break] = ACTIONS(2917), - [anon_sym_continue] = ACTIONS(2917), - [anon_sym_return] = ACTIONS(2917), - [anon_sym_DOLLARfor] = ACTIONS(2917), - [anon_sym_for] = ACTIONS(2917), - [anon_sym_POUND] = ACTIONS(2917), - [anon_sym_asm] = ACTIONS(2917), - [anon_sym_AT_LBRACK] = ACTIONS(2917), - [sym___double_quote] = ACTIONS(2917), - [sym___single_quote] = ACTIONS(2917), - [sym___c_double_quote] = ACTIONS(2917), - [sym___c_single_quote] = ACTIONS(2917), - [sym___r_double_quote] = ACTIONS(2917), - [sym___r_single_quote] = ACTIONS(2917), - }, - [1115] = { - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [anon_sym_LF] = ACTIONS(3235), - [anon_sym_CR] = ACTIONS(3235), - [anon_sym_CR_LF] = ACTIONS(3235), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_EQ] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_pub] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3235), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3235), - [anon_sym_AMP_CARET] = ACTIONS(3235), - [anon_sym_AMP_AMP] = ACTIONS(3235), - [anon_sym_PIPE_PIPE] = ACTIONS(3235), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_defer] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_DOLLARfor] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_POUND] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym_AT_LBRACK] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3235), - [sym___single_quote] = ACTIONS(3235), - [sym___c_double_quote] = ACTIONS(3235), - [sym___c_single_quote] = ACTIONS(3235), - [sym___r_double_quote] = ACTIONS(3235), - [sym___r_single_quote] = ACTIONS(3235), - }, - [1116] = { - [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(495), - [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [1117] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), - }, - [1118] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), + [1121] = { + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3307), + [anon_sym_LF] = ACTIONS(3307), + [anon_sym_CR] = ACTIONS(3307), + [anon_sym_CR_LF] = ACTIONS(3307), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(3307), + [anon_sym_as] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym___global] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_PIPE] = ACTIONS(3307), + [anon_sym_fn] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_pub] = ACTIONS(3307), + [anon_sym_mut] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_QMARK] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_go] = ACTIONS(3307), + [anon_sym_spawn] = ACTIONS(3307), + [anon_sym_json_DOTdecode] = ACTIONS(3307), + [anon_sym_LBRACK2] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_LT_DASH] = ACTIONS(3307), + [anon_sym_LT_LT] = ACTIONS(3307), + [anon_sym_GT_GT] = ACTIONS(3307), + [anon_sym_GT_GT_GT] = ACTIONS(3307), + [anon_sym_AMP_CARET] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_or] = ACTIONS(3307), + [sym_none] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_nil] = ACTIONS(3307), + [anon_sym_QMARK_DOT] = ACTIONS(3307), + [anon_sym_POUND_LBRACK] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_DOLLARif] = ACTIONS(3307), + [anon_sym_is] = ACTIONS(3307), + [anon_sym_BANGis] = ACTIONS(3307), + [anon_sym_in] = ACTIONS(3307), + [anon_sym_BANGin] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_select] = ACTIONS(3307), + [anon_sym_lock] = ACTIONS(3307), + [anon_sym_rlock] = ACTIONS(3307), + [anon_sym_unsafe] = ACTIONS(3307), + [anon_sym_sql] = ACTIONS(3307), + [sym_int_literal] = ACTIONS(3307), + [sym_float_literal] = ACTIONS(3307), + [sym_rune_literal] = ACTIONS(3307), + [sym_pseudo_compile_time_identifier] = ACTIONS(3307), + [anon_sym_shared] = ACTIONS(3307), + [anon_sym_map_LBRACK] = ACTIONS(3307), + [anon_sym_chan] = ACTIONS(3307), + [anon_sym_thread] = ACTIONS(3307), + [anon_sym_atomic] = ACTIONS(3307), + [anon_sym_assert] = ACTIONS(3307), + [anon_sym_defer] = ACTIONS(3307), + [anon_sym_goto] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_DOLLARfor] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(3307), + [anon_sym_asm] = ACTIONS(3307), + [anon_sym_AT_LBRACK] = ACTIONS(3307), + [sym___double_quote] = ACTIONS(3307), + [sym___single_quote] = ACTIONS(3307), + [sym___c_double_quote] = ACTIONS(3307), + [sym___c_single_quote] = ACTIONS(3307), + [sym___r_double_quote] = ACTIONS(3307), + [sym___r_single_quote] = ACTIONS(3307), }, - [1119] = { - [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), + [1122] = { + [ts_builtin_sym_end] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3279), + [anon_sym_LF] = ACTIONS(3279), + [anon_sym_CR] = ACTIONS(3279), + [anon_sym_CR_LF] = ACTIONS(3279), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [sym_pseudo_compile_time_identifier] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(3279), + [anon_sym_as] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym___global] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PERCENT] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT_EQ] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_struct] = ACTIONS(3279), + [anon_sym_union] = ACTIONS(3279), + [anon_sym_pub] = ACTIONS(3279), + [anon_sym_mut] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3279), + [anon_sym_GT_GT_GT] = ACTIONS(3279), + [anon_sym_AMP_CARET] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_PIPE_PIPE] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3279), + [anon_sym_POUND_LBRACK] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3279), + [anon_sym_BANGis] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_BANGin] = ACTIONS(3279), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_lock] = ACTIONS(3279), + [anon_sym_rlock] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_sql] = ACTIONS(3279), + [sym_int_literal] = ACTIONS(3279), + [sym_float_literal] = ACTIONS(3279), + [sym_rune_literal] = ACTIONS(3279), + [sym_pseudo_compile_time_identifier] = ACTIONS(3279), + [anon_sym_shared] = ACTIONS(3279), + [anon_sym_map_LBRACK] = ACTIONS(3279), + [anon_sym_chan] = ACTIONS(3279), + [anon_sym_thread] = ACTIONS(3279), + [anon_sym_atomic] = ACTIONS(3279), + [anon_sym_assert] = ACTIONS(3279), + [anon_sym_defer] = ACTIONS(3279), + [anon_sym_goto] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_DOLLARfor] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_POUND] = ACTIONS(3279), + [anon_sym_asm] = ACTIONS(3279), + [anon_sym_AT_LBRACK] = ACTIONS(3279), + [sym___double_quote] = ACTIONS(3279), + [sym___single_quote] = ACTIONS(3279), + [sym___c_double_quote] = ACTIONS(3279), + [sym___c_single_quote] = ACTIONS(3279), + [sym___r_double_quote] = ACTIONS(3279), + [sym___r_single_quote] = ACTIONS(3279), }, - [1120] = { - [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), + [1123] = { + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3091), + [anon_sym_LF] = ACTIONS(3091), + [anon_sym_CR] = ACTIONS(3091), + [anon_sym_CR_LF] = ACTIONS(3091), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [sym_pseudo_compile_time_identifier] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_as] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_COMMA] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym___global] = ACTIONS(3091), + [anon_sym_type] = ACTIONS(3091), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_fn] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_SLASH] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_pub] = ACTIONS(3091), + [anon_sym_mut] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_interface] = ACTIONS(3091), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_go] = ACTIONS(3091), + [anon_sym_spawn] = ACTIONS(3091), + [anon_sym_json_DOTdecode] = ACTIONS(3091), + [anon_sym_LBRACK2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_CARET] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3091), + [anon_sym_LT_LT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_GT_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_CARET] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_or] = ACTIONS(3091), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_QMARK_DOT] = ACTIONS(3091), + [anon_sym_POUND_LBRACK] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_DOLLARif] = ACTIONS(3091), + [anon_sym_is] = ACTIONS(3091), + [anon_sym_BANGis] = ACTIONS(3091), + [anon_sym_in] = ACTIONS(3091), + [anon_sym_BANGin] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_select] = ACTIONS(3091), + [anon_sym_lock] = ACTIONS(3091), + [anon_sym_rlock] = ACTIONS(3091), + [anon_sym_unsafe] = ACTIONS(3091), + [anon_sym_sql] = ACTIONS(3091), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3091), + [sym_rune_literal] = ACTIONS(3091), + [sym_pseudo_compile_time_identifier] = ACTIONS(3091), + [anon_sym_shared] = ACTIONS(3091), + [anon_sym_map_LBRACK] = ACTIONS(3091), + [anon_sym_chan] = ACTIONS(3091), + [anon_sym_thread] = ACTIONS(3091), + [anon_sym_atomic] = ACTIONS(3091), + [anon_sym_assert] = ACTIONS(3091), + [anon_sym_defer] = ACTIONS(3091), + [anon_sym_goto] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_DOLLARfor] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_POUND] = ACTIONS(3091), + [anon_sym_asm] = ACTIONS(3091), + [anon_sym_AT_LBRACK] = ACTIONS(3091), + [sym___double_quote] = ACTIONS(3091), + [sym___single_quote] = ACTIONS(3091), + [sym___c_double_quote] = ACTIONS(3091), + [sym___c_single_quote] = ACTIONS(3091), + [sym___r_double_quote] = ACTIONS(3091), + [sym___r_single_quote] = ACTIONS(3091), }, - [1121] = { - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3251), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_CR] = ACTIONS(3251), - [anon_sym_CR_LF] = ACTIONS(3251), + [1124] = { + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_CR] = ACTIONS(3095), + [anon_sym_CR_LF] = ACTIONS(3095), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_COMMA] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym___global] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3251), - [anon_sym_BANG_EQ] = ACTIONS(3251), - [anon_sym_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_EQ] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_pub] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3251), - [anon_sym_LT_LT] = ACTIONS(3251), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3251), - [anon_sym_AMP_CARET] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_PIPE_PIPE] = ACTIONS(3251), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3251), - [anon_sym_POUND_LBRACK] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3251), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [anon_sym_assert] = ACTIONS(3251), - [anon_sym_defer] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_DOLLARfor] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_POUND] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym_AT_LBRACK] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3251), - [sym___single_quote] = ACTIONS(3251), - [sym___c_double_quote] = ACTIONS(3251), - [sym___c_single_quote] = ACTIONS(3251), - [sym___r_double_quote] = ACTIONS(3251), - [sym___r_single_quote] = ACTIONS(3251), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_as] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym___global] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_fn] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [anon_sym_LT_EQ] = ACTIONS(3095), + [anon_sym_GT_EQ] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_pub] = ACTIONS(3095), + [anon_sym_mut] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_interface] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_go] = ACTIONS(3095), + [anon_sym_spawn] = ACTIONS(3095), + [anon_sym_json_DOTdecode] = ACTIONS(3095), + [anon_sym_LBRACK2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_CARET] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_GT_GT_GT] = ACTIONS(3095), + [anon_sym_AMP_CARET] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_or] = ACTIONS(3095), + [sym_none] = ACTIONS(3095), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [sym_nil] = ACTIONS(3095), + [anon_sym_QMARK_DOT] = ACTIONS(3095), + [anon_sym_POUND_LBRACK] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_is] = ACTIONS(3095), + [anon_sym_BANGis] = ACTIONS(3095), + [anon_sym_in] = ACTIONS(3095), + [anon_sym_BANGin] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_select] = ACTIONS(3095), + [anon_sym_lock] = ACTIONS(3095), + [anon_sym_rlock] = ACTIONS(3095), + [anon_sym_unsafe] = ACTIONS(3095), + [anon_sym_sql] = ACTIONS(3095), + [sym_int_literal] = ACTIONS(3095), + [sym_float_literal] = ACTIONS(3095), + [sym_rune_literal] = ACTIONS(3095), + [sym_pseudo_compile_time_identifier] = ACTIONS(3095), + [anon_sym_shared] = ACTIONS(3095), + [anon_sym_map_LBRACK] = ACTIONS(3095), + [anon_sym_chan] = ACTIONS(3095), + [anon_sym_thread] = ACTIONS(3095), + [anon_sym_atomic] = ACTIONS(3095), + [anon_sym_assert] = ACTIONS(3095), + [anon_sym_defer] = ACTIONS(3095), + [anon_sym_goto] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_DOLLARfor] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_POUND] = ACTIONS(3095), + [anon_sym_asm] = ACTIONS(3095), + [anon_sym_AT_LBRACK] = ACTIONS(3095), + [sym___double_quote] = ACTIONS(3095), + [sym___single_quote] = ACTIONS(3095), + [sym___c_double_quote] = ACTIONS(3095), + [sym___c_single_quote] = ACTIONS(3095), + [sym___r_double_quote] = ACTIONS(3095), + [sym___r_single_quote] = ACTIONS(3095), }, - [1122] = { - [sym_reference_expression] = STATE(4557), - [sym_type_reference_expression] = STATE(1431), - [sym_plain_type] = STATE(1498), + [1125] = { + [sym_reference_expression] = STATE(4563), + [sym_type_reference_expression] = STATE(1435), + [sym_plain_type] = STATE(1492), [sym__plain_type_without_special] = STATE(1487), - [sym_anon_struct_type] = STATE(1490), + [sym_anon_struct_type] = STATE(1449), [sym_multi_return_type] = STATE(1487), [sym_result_type] = STATE(1487), [sym_option_type] = STATE(1487), - [sym_qualified_type] = STATE(1431), - [sym_fixed_array_type] = STATE(1490), - [sym_array_type] = STATE(1490), - [sym_pointer_type] = STATE(1490), - [sym_wrong_pointer_type] = STATE(1490), - [sym_map_type] = STATE(1490), - [sym_channel_type] = STATE(1490), - [sym_shared_type] = STATE(1490), - [sym_thread_type] = STATE(1490), - [sym_atomic_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_function_type] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(595), - [sym_identifier] = ACTIONS(3630), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), + [sym_qualified_type] = STATE(1435), + [sym_fixed_array_type] = STATE(1449), + [sym_array_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_wrong_pointer_type] = STATE(1449), + [sym_map_type] = STATE(1449), + [sym_channel_type] = STATE(1449), + [sym_shared_type] = STATE(1449), + [sym_thread_type] = STATE(1449), + [sym_atomic_type] = STATE(1449), + [sym_generic_type] = STATE(1449), + [sym_function_type] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(621), + [sym_identifier] = ACTIONS(3638), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(597), - [anon_sym_const] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym___global] = ACTIONS(597), - [anon_sym_type] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(597), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_enum] = ACTIONS(597), - [anon_sym_interface] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_go] = ACTIONS(597), - [anon_sym_spawn] = ACTIONS(597), - [anon_sym_json_DOTdecode] = ACTIONS(597), - [anon_sym_LBRACK2] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(597), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_LT_DASH] = ACTIONS(597), - [sym_none] = ACTIONS(597), - [sym_true] = ACTIONS(597), - [sym_false] = ACTIONS(597), - [sym_nil] = ACTIONS(597), - [anon_sym_if] = ACTIONS(597), - [anon_sym_DOLLARif] = ACTIONS(597), - [anon_sym_match] = ACTIONS(597), - [anon_sym_select] = ACTIONS(597), - [anon_sym_lock] = ACTIONS(597), - [anon_sym_rlock] = ACTIONS(597), - [anon_sym_unsafe] = ACTIONS(597), - [anon_sym_sql] = ACTIONS(597), - [sym_int_literal] = ACTIONS(597), - [sym_float_literal] = ACTIONS(597), - [sym_rune_literal] = ACTIONS(597), - [sym_pseudo_compile_time_identifier] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3648), - [anon_sym_map_LBRACK] = ACTIONS(3650), - [anon_sym_chan] = ACTIONS(3652), - [anon_sym_thread] = ACTIONS(3654), - [anon_sym_atomic] = ACTIONS(3656), - [anon_sym_assert] = ACTIONS(597), - [anon_sym_defer] = ACTIONS(597), - [anon_sym_goto] = ACTIONS(597), - [anon_sym_break] = ACTIONS(597), - [anon_sym_continue] = ACTIONS(597), - [anon_sym_return] = ACTIONS(597), - [anon_sym_DOLLARfor] = ACTIONS(597), - [anon_sym_for] = ACTIONS(597), - [anon_sym_POUND] = ACTIONS(597), - [anon_sym_asm] = ACTIONS(597), - [anon_sym_AT_LBRACK] = ACTIONS(597), - [sym___double_quote] = ACTIONS(597), - [sym___single_quote] = ACTIONS(597), - [sym___c_double_quote] = ACTIONS(597), - [sym___c_single_quote] = ACTIONS(597), - [sym___r_double_quote] = ACTIONS(597), - [sym___r_single_quote] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(623), + [anon_sym_const] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym___global] = ACTIONS(623), + [anon_sym_type] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(623), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_enum] = ACTIONS(623), + [anon_sym_interface] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_go] = ACTIONS(623), + [anon_sym_spawn] = ACTIONS(623), + [anon_sym_json_DOTdecode] = ACTIONS(623), + [anon_sym_LBRACK2] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(623), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_LT_DASH] = ACTIONS(623), + [sym_none] = ACTIONS(623), + [sym_true] = ACTIONS(623), + [sym_false] = ACTIONS(623), + [sym_nil] = ACTIONS(623), + [anon_sym_if] = ACTIONS(623), + [anon_sym_DOLLARif] = ACTIONS(623), + [anon_sym_match] = ACTIONS(623), + [anon_sym_select] = ACTIONS(623), + [anon_sym_lock] = ACTIONS(623), + [anon_sym_rlock] = ACTIONS(623), + [anon_sym_unsafe] = ACTIONS(623), + [anon_sym_sql] = ACTIONS(623), + [sym_int_literal] = ACTIONS(623), + [sym_float_literal] = ACTIONS(623), + [sym_rune_literal] = ACTIONS(623), + [sym_pseudo_compile_time_identifier] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3656), + [anon_sym_map_LBRACK] = ACTIONS(3658), + [anon_sym_chan] = ACTIONS(3660), + [anon_sym_thread] = ACTIONS(3662), + [anon_sym_atomic] = ACTIONS(3664), + [anon_sym_assert] = ACTIONS(623), + [anon_sym_defer] = ACTIONS(623), + [anon_sym_goto] = ACTIONS(623), + [anon_sym_break] = ACTIONS(623), + [anon_sym_continue] = ACTIONS(623), + [anon_sym_return] = ACTIONS(623), + [anon_sym_DOLLARfor] = ACTIONS(623), + [anon_sym_for] = ACTIONS(623), + [anon_sym_POUND] = ACTIONS(623), + [anon_sym_asm] = ACTIONS(623), + [anon_sym_AT_LBRACK] = ACTIONS(623), + [sym___double_quote] = ACTIONS(623), + [sym___single_quote] = ACTIONS(623), + [sym___c_double_quote] = ACTIONS(623), + [sym___c_single_quote] = ACTIONS(623), + [sym___r_double_quote] = ACTIONS(623), + [sym___r_single_quote] = ACTIONS(623), }, - [1123] = { - [sym_reference_expression] = STATE(4557), - [sym_type_reference_expression] = STATE(1431), + [1126] = { + [sym_reference_expression] = STATE(4563), + [sym_type_reference_expression] = STATE(1435), [sym_plain_type] = STATE(1501), [sym__plain_type_without_special] = STATE(1487), - [sym_anon_struct_type] = STATE(1490), + [sym_anon_struct_type] = STATE(1449), [sym_multi_return_type] = STATE(1487), [sym_result_type] = STATE(1487), [sym_option_type] = STATE(1487), - [sym_qualified_type] = STATE(1431), - [sym_fixed_array_type] = STATE(1490), - [sym_array_type] = STATE(1490), - [sym_pointer_type] = STATE(1490), - [sym_wrong_pointer_type] = STATE(1490), - [sym_map_type] = STATE(1490), - [sym_channel_type] = STATE(1490), - [sym_shared_type] = STATE(1490), - [sym_thread_type] = STATE(1490), - [sym_atomic_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_function_type] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(559), - [sym_identifier] = ACTIONS(3630), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_CR] = ACTIONS(563), - [anon_sym_CR_LF] = ACTIONS(563), + [sym_qualified_type] = STATE(1435), + [sym_fixed_array_type] = STATE(1449), + [sym_array_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_wrong_pointer_type] = STATE(1449), + [sym_map_type] = STATE(1449), + [sym_channel_type] = STATE(1449), + [sym_shared_type] = STATE(1449), + [sym_thread_type] = STATE(1449), + [sym_atomic_type] = STATE(1449), + [sym_generic_type] = STATE(1449), + [sym_function_type] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(617), + [sym_identifier] = ACTIONS(3638), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(563), - [anon_sym_const] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym___global] = ACTIONS(563), - [anon_sym_type] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3638), - [anon_sym_union] = ACTIONS(563), - [anon_sym_pub] = ACTIONS(563), - [anon_sym_mut] = ACTIONS(563), - [anon_sym_enum] = ACTIONS(563), - [anon_sym_interface] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_go] = ACTIONS(563), - [anon_sym_spawn] = ACTIONS(563), - [anon_sym_json_DOTdecode] = ACTIONS(563), - [anon_sym_LBRACK2] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(563), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_LT_DASH] = ACTIONS(563), - [sym_none] = ACTIONS(563), - [sym_true] = ACTIONS(563), - [sym_false] = ACTIONS(563), - [sym_nil] = ACTIONS(563), - [anon_sym_if] = ACTIONS(563), - [anon_sym_DOLLARif] = ACTIONS(563), - [anon_sym_match] = ACTIONS(563), - [anon_sym_select] = ACTIONS(563), - [anon_sym_lock] = ACTIONS(563), - [anon_sym_rlock] = ACTIONS(563), - [anon_sym_unsafe] = ACTIONS(563), - [anon_sym_sql] = ACTIONS(563), - [sym_int_literal] = ACTIONS(563), - [sym_float_literal] = ACTIONS(563), - [sym_rune_literal] = ACTIONS(563), - [sym_pseudo_compile_time_identifier] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3648), - [anon_sym_map_LBRACK] = ACTIONS(3650), - [anon_sym_chan] = ACTIONS(3652), - [anon_sym_thread] = ACTIONS(3654), - [anon_sym_atomic] = ACTIONS(3656), - [anon_sym_assert] = ACTIONS(563), - [anon_sym_defer] = ACTIONS(563), - [anon_sym_goto] = ACTIONS(563), - [anon_sym_break] = ACTIONS(563), - [anon_sym_continue] = ACTIONS(563), - [anon_sym_return] = ACTIONS(563), - [anon_sym_DOLLARfor] = ACTIONS(563), - [anon_sym_for] = ACTIONS(563), - [anon_sym_POUND] = ACTIONS(563), - [anon_sym_asm] = ACTIONS(563), - [anon_sym_AT_LBRACK] = ACTIONS(563), - [sym___double_quote] = ACTIONS(563), - [sym___single_quote] = ACTIONS(563), - [sym___c_double_quote] = ACTIONS(563), - [sym___c_single_quote] = ACTIONS(563), - [sym___r_double_quote] = ACTIONS(563), - [sym___r_single_quote] = ACTIONS(563), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(619), + [anon_sym_const] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym___global] = ACTIONS(619), + [anon_sym_type] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(619), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_interface] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_go] = ACTIONS(619), + [anon_sym_spawn] = ACTIONS(619), + [anon_sym_json_DOTdecode] = ACTIONS(619), + [anon_sym_LBRACK2] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(619), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_LT_DASH] = ACTIONS(619), + [sym_none] = ACTIONS(619), + [sym_true] = ACTIONS(619), + [sym_false] = ACTIONS(619), + [sym_nil] = ACTIONS(619), + [anon_sym_if] = ACTIONS(619), + [anon_sym_DOLLARif] = ACTIONS(619), + [anon_sym_match] = ACTIONS(619), + [anon_sym_select] = ACTIONS(619), + [anon_sym_lock] = ACTIONS(619), + [anon_sym_rlock] = ACTIONS(619), + [anon_sym_unsafe] = ACTIONS(619), + [anon_sym_sql] = ACTIONS(619), + [sym_int_literal] = ACTIONS(619), + [sym_float_literal] = ACTIONS(619), + [sym_rune_literal] = ACTIONS(619), + [sym_pseudo_compile_time_identifier] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3656), + [anon_sym_map_LBRACK] = ACTIONS(3658), + [anon_sym_chan] = ACTIONS(3660), + [anon_sym_thread] = ACTIONS(3662), + [anon_sym_atomic] = ACTIONS(3664), + [anon_sym_assert] = ACTIONS(619), + [anon_sym_defer] = ACTIONS(619), + [anon_sym_goto] = ACTIONS(619), + [anon_sym_break] = ACTIONS(619), + [anon_sym_continue] = ACTIONS(619), + [anon_sym_return] = ACTIONS(619), + [anon_sym_DOLLARfor] = ACTIONS(619), + [anon_sym_for] = ACTIONS(619), + [anon_sym_POUND] = ACTIONS(619), + [anon_sym_asm] = ACTIONS(619), + [anon_sym_AT_LBRACK] = ACTIONS(619), + [sym___double_quote] = ACTIONS(619), + [sym___single_quote] = ACTIONS(619), + [sym___c_double_quote] = ACTIONS(619), + [sym___c_single_quote] = ACTIONS(619), + [sym___r_double_quote] = ACTIONS(619), + [sym___r_single_quote] = ACTIONS(619), }, - [1124] = { - [sym_reference_expression] = STATE(4557), - [sym_type_reference_expression] = STATE(1431), - [sym_plain_type] = STATE(1493), + [1127] = { + [sym_reference_expression] = STATE(4563), + [sym_type_reference_expression] = STATE(1435), + [sym_plain_type] = STATE(1448), [sym__plain_type_without_special] = STATE(1487), - [sym_anon_struct_type] = STATE(1490), + [sym_anon_struct_type] = STATE(1449), [sym_multi_return_type] = STATE(1487), [sym_result_type] = STATE(1487), [sym_option_type] = STATE(1487), - [sym_qualified_type] = STATE(1431), - [sym_fixed_array_type] = STATE(1490), - [sym_array_type] = STATE(1490), - [sym_pointer_type] = STATE(1490), - [sym_wrong_pointer_type] = STATE(1490), - [sym_map_type] = STATE(1490), - [sym_channel_type] = STATE(1490), - [sym_shared_type] = STATE(1490), - [sym_thread_type] = STATE(1490), - [sym_atomic_type] = STATE(1490), - [sym_generic_type] = STATE(1490), - [sym_function_type] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(3630), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), + [sym_qualified_type] = STATE(1435), + [sym_fixed_array_type] = STATE(1449), + [sym_array_type] = STATE(1449), + [sym_pointer_type] = STATE(1449), + [sym_wrong_pointer_type] = STATE(1449), + [sym_map_type] = STATE(1449), + [sym_channel_type] = STATE(1449), + [sym_shared_type] = STATE(1449), + [sym_thread_type] = STATE(1449), + [sym_atomic_type] = STATE(1449), + [sym_generic_type] = STATE(1449), + [sym_function_type] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(581), + [sym_identifier] = ACTIONS(3638), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_const] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(3632), - [anon_sym___global] = ACTIONS(593), - [anon_sym_type] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3636), - [anon_sym_struct] = ACTIONS(3638), - [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_QMARK] = ACTIONS(3640), - [anon_sym_BANG] = ACTIONS(3642), - [anon_sym_go] = ACTIONS(593), - [anon_sym_spawn] = ACTIONS(593), - [anon_sym_json_DOTdecode] = ACTIONS(593), - [anon_sym_LBRACK2] = ACTIONS(3644), - [anon_sym_TILDE] = ACTIONS(593), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(3646), - [anon_sym_LT_DASH] = ACTIONS(593), - [sym_none] = ACTIONS(593), - [sym_true] = ACTIONS(593), - [sym_false] = ACTIONS(593), - [sym_nil] = ACTIONS(593), - [anon_sym_if] = ACTIONS(593), - [anon_sym_DOLLARif] = 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), - [sym_pseudo_compile_time_identifier] = ACTIONS(593), - [anon_sym_shared] = ACTIONS(3648), - [anon_sym_map_LBRACK] = ACTIONS(3650), - [anon_sym_chan] = ACTIONS(3652), - [anon_sym_thread] = ACTIONS(3654), - [anon_sym_atomic] = ACTIONS(3656), - [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), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_const] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3640), + [anon_sym___global] = ACTIONS(585), + [anon_sym_type] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3642), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3644), + [anon_sym_struct] = ACTIONS(3646), + [anon_sym_union] = ACTIONS(585), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_enum] = ACTIONS(585), + [anon_sym_interface] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3648), + [anon_sym_BANG] = ACTIONS(3650), + [anon_sym_go] = ACTIONS(585), + [anon_sym_spawn] = ACTIONS(585), + [anon_sym_json_DOTdecode] = ACTIONS(585), + [anon_sym_LBRACK2] = ACTIONS(3652), + [anon_sym_TILDE] = ACTIONS(585), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3654), + [anon_sym_LT_DASH] = ACTIONS(585), + [sym_none] = ACTIONS(585), + [sym_true] = ACTIONS(585), + [sym_false] = ACTIONS(585), + [sym_nil] = ACTIONS(585), + [anon_sym_if] = ACTIONS(585), + [anon_sym_DOLLARif] = ACTIONS(585), + [anon_sym_match] = ACTIONS(585), + [anon_sym_select] = ACTIONS(585), + [anon_sym_lock] = ACTIONS(585), + [anon_sym_rlock] = ACTIONS(585), + [anon_sym_unsafe] = ACTIONS(585), + [anon_sym_sql] = ACTIONS(585), + [sym_int_literal] = ACTIONS(585), + [sym_float_literal] = ACTIONS(585), + [sym_rune_literal] = ACTIONS(585), + [sym_pseudo_compile_time_identifier] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3656), + [anon_sym_map_LBRACK] = ACTIONS(3658), + [anon_sym_chan] = ACTIONS(3660), + [anon_sym_thread] = ACTIONS(3662), + [anon_sym_atomic] = ACTIONS(3664), + [anon_sym_assert] = ACTIONS(585), + [anon_sym_defer] = ACTIONS(585), + [anon_sym_goto] = ACTIONS(585), + [anon_sym_break] = ACTIONS(585), + [anon_sym_continue] = ACTIONS(585), + [anon_sym_return] = ACTIONS(585), + [anon_sym_DOLLARfor] = ACTIONS(585), + [anon_sym_for] = ACTIONS(585), + [anon_sym_POUND] = ACTIONS(585), + [anon_sym_asm] = ACTIONS(585), + [anon_sym_AT_LBRACK] = ACTIONS(585), + [sym___double_quote] = ACTIONS(585), + [sym___single_quote] = ACTIONS(585), + [sym___c_double_quote] = ACTIONS(585), + [sym___c_single_quote] = ACTIONS(585), + [sym___r_double_quote] = ACTIONS(585), + [sym___r_single_quote] = ACTIONS(585), }, - [1125] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), + [1128] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_DASH] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_STAR_EQ] = ACTIONS(601), - [anon_sym_SLASH_EQ] = ACTIONS(601), - [anon_sym_PERCENT_EQ] = ACTIONS(601), - [anon_sym_LT_LT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), - [anon_sym_AMP_EQ] = ACTIONS(601), - [anon_sym_AMP_CARET_EQ] = ACTIONS(601), - [anon_sym_PLUS_EQ] = ACTIONS(601), - [anon_sym_DASH_EQ] = ACTIONS(601), - [anon_sym_PIPE_EQ] = ACTIONS(601), - [anon_sym_CARET_EQ] = ACTIONS(601), - [anon_sym_COLON_EQ] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_DASH] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), }, - [1126] = { - [sym_reference_expression] = STATE(4437), - [sym_type_reference_expression] = STATE(1671), - [sym_plain_type] = STATE(1674), - [sym__plain_type_without_special] = STATE(1681), - [sym_anon_struct_type] = STATE(1677), - [sym_multi_return_type] = STATE(1681), - [sym_result_type] = STATE(1681), - [sym_option_type] = STATE(1681), - [sym_qualified_type] = STATE(1671), - [sym_fixed_array_type] = STATE(1677), - [sym_array_type] = STATE(1677), - [sym_pointer_type] = STATE(1677), - [sym_wrong_pointer_type] = STATE(1677), - [sym_map_type] = STATE(1677), - [sym_channel_type] = STATE(1677), - [sym_shared_type] = STATE(1677), - [sym_thread_type] = STATE(1677), - [sym_atomic_type] = STATE(1677), - [sym_generic_type] = STATE(1677), - [sym_function_type] = STATE(1677), - [sym_identifier] = ACTIONS(3658), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), + [1129] = { + [sym_reference_expression] = STATE(4460), + [sym_type_reference_expression] = STATE(1688), + [sym_plain_type] = STATE(1694), + [sym__plain_type_without_special] = STATE(1687), + [sym_anon_struct_type] = STATE(1686), + [sym_multi_return_type] = STATE(1687), + [sym_result_type] = STATE(1687), + [sym_option_type] = STATE(1687), + [sym_qualified_type] = STATE(1688), + [sym_fixed_array_type] = STATE(1686), + [sym_array_type] = STATE(1686), + [sym_pointer_type] = STATE(1686), + [sym_wrong_pointer_type] = STATE(1686), + [sym_map_type] = STATE(1686), + [sym_channel_type] = STATE(1686), + [sym_shared_type] = STATE(1686), + [sym_thread_type] = STATE(1686), + [sym_atomic_type] = STATE(1686), + [sym_generic_type] = STATE(1686), + [sym_function_type] = STATE(1686), + [sym_identifier] = ACTIONS(3666), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3664), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_COLON] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_LBRACK2] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3674), - [anon_sym_LT_DASH] = ACTIONS(597), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_STAR_EQ] = ACTIONS(597), - [anon_sym_SLASH_EQ] = ACTIONS(597), - [anon_sym_PERCENT_EQ] = ACTIONS(597), - [anon_sym_LT_LT_EQ] = ACTIONS(597), - [anon_sym_GT_GT_EQ] = ACTIONS(597), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), - [anon_sym_AMP_EQ] = ACTIONS(597), - [anon_sym_AMP_CARET_EQ] = ACTIONS(597), - [anon_sym_PLUS_EQ] = ACTIONS(597), - [anon_sym_DASH_EQ] = ACTIONS(597), - [anon_sym_PIPE_EQ] = ACTIONS(597), - [anon_sym_CARET_EQ] = ACTIONS(597), - [anon_sym_COLON_EQ] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3676), - [anon_sym_map_LBRACK] = ACTIONS(3678), - [anon_sym_chan] = ACTIONS(3680), - [anon_sym_thread] = ACTIONS(3682), - [anon_sym_atomic] = ACTIONS(3684), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_COLON] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(585), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3684), + [anon_sym_map_LBRACK] = ACTIONS(3686), + [anon_sym_chan] = ACTIONS(3688), + [anon_sym_thread] = ACTIONS(3690), + [anon_sym_atomic] = ACTIONS(3692), }, - [1127] = { - [sym_reference_expression] = STATE(4437), - [sym_type_reference_expression] = STATE(1671), - [sym_plain_type] = STATE(1679), - [sym__plain_type_without_special] = STATE(1681), - [sym_anon_struct_type] = STATE(1677), - [sym_multi_return_type] = STATE(1681), - [sym_result_type] = STATE(1681), - [sym_option_type] = STATE(1681), - [sym_qualified_type] = STATE(1671), - [sym_fixed_array_type] = STATE(1677), - [sym_array_type] = STATE(1677), - [sym_pointer_type] = STATE(1677), - [sym_wrong_pointer_type] = STATE(1677), - [sym_map_type] = STATE(1677), - [sym_channel_type] = STATE(1677), - [sym_shared_type] = STATE(1677), - [sym_thread_type] = STATE(1677), - [sym_atomic_type] = STATE(1677), - [sym_generic_type] = STATE(1677), - [sym_function_type] = STATE(1677), - [sym_identifier] = ACTIONS(3658), + [1130] = { + [sym_reference_expression] = STATE(4460), + [sym_type_reference_expression] = STATE(1688), + [sym_plain_type] = STATE(1667), + [sym__plain_type_without_special] = STATE(1687), + [sym_anon_struct_type] = STATE(1686), + [sym_multi_return_type] = STATE(1687), + [sym_result_type] = STATE(1687), + [sym_option_type] = STATE(1687), + [sym_qualified_type] = STATE(1688), + [sym_fixed_array_type] = STATE(1686), + [sym_array_type] = STATE(1686), + [sym_pointer_type] = STATE(1686), + [sym_wrong_pointer_type] = STATE(1686), + [sym_map_type] = STATE(1686), + [sym_channel_type] = STATE(1686), + [sym_shared_type] = STATE(1686), + [sym_thread_type] = STATE(1686), + [sym_atomic_type] = STATE(1686), + [sym_generic_type] = STATE(1686), + [sym_function_type] = STATE(1686), + [sym_identifier] = ACTIONS(3666), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(619), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3684), + [anon_sym_map_LBRACK] = ACTIONS(3686), + [anon_sym_chan] = ACTIONS(3688), + [anon_sym_thread] = ACTIONS(3690), + [anon_sym_atomic] = ACTIONS(3692), + }, + [1131] = { + [aux_sym_strictly_expression_list_repeat1] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(1757), + [sym_identifier] = ACTIONS(1759), + [anon_sym_LF] = ACTIONS(1759), + [anon_sym_CR] = ACTIONS(1759), + [anon_sym_CR_LF] = ACTIONS(1759), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1761), + [anon_sym___global] = ACTIONS(1759), + [anon_sym_type] = ACTIONS(1759), + [anon_sym_fn] = ACTIONS(1759), + [anon_sym_PLUS] = ACTIONS(1759), + [anon_sym_DASH] = ACTIONS(1759), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_struct] = ACTIONS(1759), + [anon_sym_union] = ACTIONS(1759), + [anon_sym_pub] = ACTIONS(1759), + [anon_sym_mut] = ACTIONS(1759), + [anon_sym_enum] = ACTIONS(1759), + [anon_sym_interface] = ACTIONS(1759), + [anon_sym_QMARK] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1759), + [anon_sym_go] = ACTIONS(1759), + [anon_sym_spawn] = ACTIONS(1759), + [anon_sym_json_DOTdecode] = ACTIONS(1759), + [anon_sym_LBRACK2] = ACTIONS(1759), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_CARET] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1759), + [anon_sym_LT_DASH] = ACTIONS(1759), + [sym_none] = ACTIONS(1759), + [sym_true] = ACTIONS(1759), + [sym_false] = ACTIONS(1759), + [sym_nil] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_DOLLARif] = ACTIONS(1759), + [anon_sym_match] = ACTIONS(1759), + [anon_sym_select] = ACTIONS(1759), + [anon_sym_STAR_EQ] = ACTIONS(1761), + [anon_sym_SLASH_EQ] = ACTIONS(1761), + [anon_sym_PERCENT_EQ] = ACTIONS(1761), + [anon_sym_LT_LT_EQ] = ACTIONS(1761), + [anon_sym_GT_GT_EQ] = ACTIONS(1761), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1761), + [anon_sym_AMP_EQ] = ACTIONS(1761), + [anon_sym_AMP_CARET_EQ] = ACTIONS(1761), + [anon_sym_PLUS_EQ] = ACTIONS(1761), + [anon_sym_DASH_EQ] = ACTIONS(1761), + [anon_sym_PIPE_EQ] = ACTIONS(1761), + [anon_sym_CARET_EQ] = ACTIONS(1761), + [anon_sym_COLON_EQ] = ACTIONS(1761), + [anon_sym_lock] = ACTIONS(1759), + [anon_sym_rlock] = ACTIONS(1759), + [anon_sym_unsafe] = ACTIONS(1759), + [anon_sym_sql] = ACTIONS(1759), + [sym_int_literal] = ACTIONS(1759), + [sym_float_literal] = ACTIONS(1759), + [sym_rune_literal] = ACTIONS(1759), + [sym_pseudo_compile_time_identifier] = ACTIONS(1759), + [anon_sym_shared] = ACTIONS(1759), + [anon_sym_map_LBRACK] = ACTIONS(1759), + [anon_sym_chan] = ACTIONS(1759), + [anon_sym_thread] = ACTIONS(1759), + [anon_sym_atomic] = ACTIONS(1759), + [anon_sym_assert] = ACTIONS(1759), + [anon_sym_defer] = ACTIONS(1759), + [anon_sym_goto] = ACTIONS(1759), + [anon_sym_break] = ACTIONS(1759), + [anon_sym_continue] = ACTIONS(1759), + [anon_sym_return] = ACTIONS(1759), + [anon_sym_DOLLARfor] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_asm] = ACTIONS(1759), + [anon_sym_AT_LBRACK] = ACTIONS(1759), + [sym___double_quote] = ACTIONS(1759), + [sym___single_quote] = ACTIONS(1759), + [sym___c_double_quote] = ACTIONS(1759), + [sym___c_single_quote] = ACTIONS(1759), + [sym___r_double_quote] = ACTIONS(1759), + [sym___r_single_quote] = ACTIONS(1759), + }, + [1132] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [anon_sym_LF] = ACTIONS(563), [anon_sym_CR] = ACTIONS(563), [anon_sym_CR_LF] = ACTIONS(563), @@ -152345,13 +152880,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3660), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym_EQ] = ACTIONS(563), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3662), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3664), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(563), @@ -152361,15 +152896,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(563), [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(3666), + [anon_sym_struct] = ACTIONS(571), [anon_sym_COLON] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_LBRACK2] = ACTIONS(3672), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3694), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3674), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_DASH] = ACTIONS(563), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), @@ -152397,1658 +152932,1224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(563), [anon_sym_CARET_EQ] = ACTIONS(563), [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3676), - [anon_sym_map_LBRACK] = ACTIONS(3678), - [anon_sym_chan] = ACTIONS(3680), - [anon_sym_thread] = ACTIONS(3682), - [anon_sym_atomic] = ACTIONS(3684), - }, - [1128] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_LF] = ACTIONS(1757), - [anon_sym_CR] = ACTIONS(1757), - [anon_sym_CR_LF] = ACTIONS(1757), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1757), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_EQ] = ACTIONS(1759), - [anon_sym___global] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_PLUS] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1757), - [anon_sym_STAR] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_interface] = ACTIONS(1757), - [anon_sym_QMARK] = ACTIONS(1757), - [anon_sym_BANG] = ACTIONS(1757), - [anon_sym_go] = ACTIONS(1757), - [anon_sym_spawn] = ACTIONS(1757), - [anon_sym_json_DOTdecode] = ACTIONS(1757), - [anon_sym_LBRACK2] = ACTIONS(1757), - [anon_sym_TILDE] = ACTIONS(1757), - [anon_sym_CARET] = ACTIONS(1757), - [anon_sym_AMP] = ACTIONS(1757), - [anon_sym_LT_DASH] = ACTIONS(1757), - [sym_none] = ACTIONS(1757), - [sym_true] = ACTIONS(1757), - [sym_false] = ACTIONS(1757), - [sym_nil] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_DOLLARif] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_select] = ACTIONS(1757), - [anon_sym_STAR_EQ] = ACTIONS(1759), - [anon_sym_SLASH_EQ] = ACTIONS(1759), - [anon_sym_PERCENT_EQ] = ACTIONS(1759), - [anon_sym_LT_LT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1759), - [anon_sym_AMP_EQ] = ACTIONS(1759), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1759), - [anon_sym_PLUS_EQ] = ACTIONS(1759), - [anon_sym_DASH_EQ] = ACTIONS(1759), - [anon_sym_PIPE_EQ] = ACTIONS(1759), - [anon_sym_CARET_EQ] = ACTIONS(1759), - [anon_sym_COLON_EQ] = ACTIONS(1759), - [anon_sym_lock] = ACTIONS(1757), - [anon_sym_rlock] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_sql] = ACTIONS(1757), - [sym_int_literal] = ACTIONS(1757), - [sym_float_literal] = ACTIONS(1757), - [sym_rune_literal] = ACTIONS(1757), - [sym_pseudo_compile_time_identifier] = ACTIONS(1757), - [anon_sym_shared] = ACTIONS(1757), - [anon_sym_map_LBRACK] = ACTIONS(1757), - [anon_sym_chan] = ACTIONS(1757), - [anon_sym_thread] = ACTIONS(1757), - [anon_sym_atomic] = ACTIONS(1757), - [anon_sym_assert] = ACTIONS(1757), - [anon_sym_defer] = ACTIONS(1757), - [anon_sym_goto] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_DOLLARfor] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(1757), - [anon_sym_asm] = ACTIONS(1757), - [anon_sym_AT_LBRACK] = ACTIONS(1757), - [sym___double_quote] = ACTIONS(1757), - [sym___single_quote] = ACTIONS(1757), - [sym___c_double_quote] = ACTIONS(1757), - [sym___c_single_quote] = ACTIONS(1757), - [sym___r_double_quote] = ACTIONS(1757), - [sym___r_single_quote] = ACTIONS(1757), - }, - [1129] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3686), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(607), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_AMP_CARET_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), }, - [1130] = { - [sym_reference_expression] = STATE(4437), - [sym_type_reference_expression] = STATE(1671), - [sym_plain_type] = STATE(1697), - [sym__plain_type_without_special] = STATE(1681), - [sym_anon_struct_type] = STATE(1677), - [sym_multi_return_type] = STATE(1681), - [sym_result_type] = STATE(1681), - [sym_option_type] = STATE(1681), - [sym_qualified_type] = STATE(1671), - [sym_fixed_array_type] = STATE(1677), - [sym_array_type] = STATE(1677), - [sym_pointer_type] = STATE(1677), - [sym_wrong_pointer_type] = STATE(1677), - [sym_map_type] = STATE(1677), - [sym_channel_type] = STATE(1677), - [sym_shared_type] = STATE(1677), - [sym_thread_type] = STATE(1677), - [sym_atomic_type] = STATE(1677), - [sym_generic_type] = STATE(1677), - [sym_function_type] = STATE(1677), - [sym_identifier] = ACTIONS(3658), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3662), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3664), - [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(591), - [anon_sym_struct] = ACTIONS(3666), - [anon_sym_COLON] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(3668), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_LBRACK2] = ACTIONS(3672), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(3674), - [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(3676), - [anon_sym_map_LBRACK] = ACTIONS(3678), - [anon_sym_chan] = ACTIONS(3680), - [anon_sym_thread] = ACTIONS(3682), - [anon_sym_atomic] = ACTIONS(3684), - }, - [1131] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(1839), - [anon_sym_LF] = ACTIONS(1839), - [anon_sym_CR] = ACTIONS(1839), - [anon_sym_CR_LF] = ACTIONS(1839), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(1839), - [anon_sym_spawn] = ACTIONS(1839), - [anon_sym_json_DOTdecode] = ACTIONS(1839), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(1839), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(1839), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [sym_none] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_nil] = ACTIONS(1839), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_select] = ACTIONS(1839), - [anon_sym_lock] = ACTIONS(1839), - [anon_sym_rlock] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1839), - [sym_int_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), - [sym_rune_literal] = ACTIONS(1839), - [sym_pseudo_compile_time_identifier] = ACTIONS(1839), - [anon_sym_shared] = ACTIONS(1839), - [anon_sym_map_LBRACK] = ACTIONS(1839), - [anon_sym_chan] = ACTIONS(1839), - [anon_sym_thread] = ACTIONS(1839), - [anon_sym_atomic] = ACTIONS(1839), - [sym___double_quote] = ACTIONS(1839), - [sym___single_quote] = ACTIONS(1839), - [sym___c_double_quote] = ACTIONS(1839), - [sym___c_single_quote] = ACTIONS(1839), - [sym___r_double_quote] = ACTIONS(1839), - [sym___r_single_quote] = ACTIONS(1839), - }, - [1132] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2059), - [anon_sym_LF] = ACTIONS(2059), - [anon_sym_CR] = ACTIONS(2059), - [anon_sym_CR_LF] = ACTIONS(2059), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_COMMA] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2059), - [anon_sym_BANG_EQ] = ACTIONS(2059), - [anon_sym_LT_EQ] = ACTIONS(2059), - [anon_sym_GT_EQ] = ACTIONS(2059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2059), - [anon_sym_DASH_DASH] = ACTIONS(2059), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2059), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2059), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(2059), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(2059), - [anon_sym_PIPE_PIPE] = ACTIONS(2059), - [anon_sym_or] = ACTIONS(2059), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(2059), - [anon_sym_BANGis] = ACTIONS(2059), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_BANGin] = ACTIONS(2059), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), - [sym_rune_literal] = ACTIONS(2059), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2059), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [sym___double_quote] = ACTIONS(2059), - [sym___single_quote] = ACTIONS(2059), - [sym___c_double_quote] = ACTIONS(2059), - [sym___c_single_quote] = ACTIONS(2059), - [sym___r_double_quote] = ACTIONS(2059), - [sym___r_single_quote] = ACTIONS(2059), - }, [1133] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2179), - [anon_sym_LF] = ACTIONS(2179), - [anon_sym_CR] = ACTIONS(2179), - [anon_sym_CR_LF] = ACTIONS(2179), + [sym_reference_expression] = STATE(4460), + [sym_type_reference_expression] = STATE(1688), + [sym_plain_type] = STATE(1665), + [sym__plain_type_without_special] = STATE(1687), + [sym_anon_struct_type] = STATE(1686), + [sym_multi_return_type] = STATE(1687), + [sym_result_type] = STATE(1687), + [sym_option_type] = STATE(1687), + [sym_qualified_type] = STATE(1688), + [sym_fixed_array_type] = STATE(1686), + [sym_array_type] = STATE(1686), + [sym_pointer_type] = STATE(1686), + [sym_wrong_pointer_type] = STATE(1686), + [sym_map_type] = STATE(1686), + [sym_channel_type] = STATE(1686), + [sym_shared_type] = STATE(1686), + [sym_thread_type] = STATE(1686), + [sym_atomic_type] = STATE(1686), + [sym_generic_type] = STATE(1686), + [sym_function_type] = STATE(1686), + [sym_identifier] = ACTIONS(3666), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_COMMA] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_GT] = ACTIONS(2179), - [anon_sym_EQ_EQ] = ACTIONS(2179), - [anon_sym_BANG_EQ] = ACTIONS(2179), - [anon_sym_LT_EQ] = ACTIONS(2179), - [anon_sym_GT_EQ] = ACTIONS(2179), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2179), - [anon_sym_DASH_DASH] = ACTIONS(2179), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2179), - [anon_sym_spawn] = ACTIONS(2179), - [anon_sym_json_DOTdecode] = ACTIONS(2179), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2179), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(2179), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(2179), - [anon_sym_PIPE_PIPE] = ACTIONS(2179), - [anon_sym_or] = ACTIONS(2179), - [sym_none] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_nil] = ACTIONS(2179), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_DOLLARif] = ACTIONS(2179), - [anon_sym_is] = ACTIONS(2179), - [anon_sym_BANGis] = ACTIONS(2179), - [anon_sym_in] = ACTIONS(2179), - [anon_sym_BANGin] = ACTIONS(2179), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_select] = ACTIONS(2179), - [anon_sym_lock] = ACTIONS(2179), - [anon_sym_rlock] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_sql] = ACTIONS(2179), - [sym_int_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), - [sym_rune_literal] = ACTIONS(2179), - [sym_pseudo_compile_time_identifier] = ACTIONS(2179), - [anon_sym_shared] = ACTIONS(2179), - [anon_sym_map_LBRACK] = ACTIONS(2179), - [anon_sym_chan] = ACTIONS(2179), - [anon_sym_thread] = ACTIONS(2179), - [anon_sym_atomic] = ACTIONS(2179), - [sym___double_quote] = ACTIONS(2179), - [sym___single_quote] = ACTIONS(2179), - [sym___c_double_quote] = ACTIONS(2179), - [sym___c_single_quote] = ACTIONS(2179), - [sym___r_double_quote] = ACTIONS(2179), - [sym___r_single_quote] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3668), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3672), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3674), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3676), + [anon_sym_BANG] = ACTIONS(3678), + [anon_sym_LBRACK2] = ACTIONS(3680), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3682), + [anon_sym_LT_DASH] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_AMP_CARET_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3684), + [anon_sym_map_LBRACK] = ACTIONS(3686), + [anon_sym_chan] = ACTIONS(3688), + [anon_sym_thread] = ACTIONS(3690), + [anon_sym_atomic] = ACTIONS(3692), }, [1134] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(1835), - [anon_sym_LF] = ACTIONS(1835), - [anon_sym_CR] = ACTIONS(1835), - [anon_sym_CR_LF] = ACTIONS(1835), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_COMMA] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(1835), - [anon_sym_spawn] = ACTIONS(1835), - [anon_sym_json_DOTdecode] = ACTIONS(1835), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(1835), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(1835), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [sym_none] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_nil] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_DOLLARif] = ACTIONS(1835), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1835), - [anon_sym_rlock] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1835), - [sym_int_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1835), - [sym_rune_literal] = ACTIONS(1835), - [sym_pseudo_compile_time_identifier] = ACTIONS(1835), - [anon_sym_shared] = ACTIONS(1835), - [anon_sym_map_LBRACK] = ACTIONS(1835), - [anon_sym_chan] = ACTIONS(1835), - [anon_sym_thread] = ACTIONS(1835), - [anon_sym_atomic] = ACTIONS(1835), - [sym___double_quote] = ACTIONS(1835), - [sym___single_quote] = ACTIONS(1835), - [sym___c_double_quote] = ACTIONS(1835), - [sym___c_single_quote] = ACTIONS(1835), - [sym___r_double_quote] = ACTIONS(1835), - [sym___r_single_quote] = ACTIONS(1835), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [1135] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [1136] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2041), - [anon_sym_LF] = ACTIONS(2041), - [anon_sym_CR] = ACTIONS(2041), - [anon_sym_CR_LF] = ACTIONS(2041), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1861), + [anon_sym_LF] = ACTIONS(1861), + [anon_sym_CR] = ACTIONS(1861), + [anon_sym_CR_LF] = ACTIONS(1861), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2041), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_RBRACE] = ACTIONS(2041), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2041), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2041), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2041), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2041), - [anon_sym_BANG_EQ] = ACTIONS(2041), - [anon_sym_LT_EQ] = ACTIONS(2041), - [anon_sym_GT_EQ] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2041), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_PLUS_PLUS] = ACTIONS(2041), - [anon_sym_DASH_DASH] = ACTIONS(2041), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2041), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2041), - [anon_sym_CARET] = ACTIONS(2041), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2041), - [anon_sym_LT_LT] = ACTIONS(2041), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2041), - [anon_sym_AMP_CARET] = ACTIONS(2041), - [anon_sym_AMP_AMP] = ACTIONS(2041), - [anon_sym_PIPE_PIPE] = ACTIONS(2041), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2041), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2041), - [sym_rune_literal] = ACTIONS(2041), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2041), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), - [sym___double_quote] = ACTIONS(2041), - [sym___single_quote] = ACTIONS(2041), - [sym___c_double_quote] = ACTIONS(2041), - [sym___c_single_quote] = ACTIONS(2041), - [sym___r_double_quote] = ACTIONS(2041), - [sym___r_single_quote] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1861), + [anon_sym_spawn] = ACTIONS(1861), + [anon_sym_json_DOTdecode] = ACTIONS(1861), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1861), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), + [sym_none] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_nil] = ACTIONS(1861), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_DOLLARif] = ACTIONS(1861), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3732), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_select] = ACTIONS(1861), + [anon_sym_lock] = ACTIONS(1861), + [anon_sym_rlock] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_sql] = ACTIONS(1861), + [sym_int_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1861), + [sym_rune_literal] = ACTIONS(1861), + [sym_pseudo_compile_time_identifier] = ACTIONS(1861), + [anon_sym_shared] = ACTIONS(1861), + [anon_sym_map_LBRACK] = ACTIONS(1861), + [anon_sym_chan] = ACTIONS(1861), + [anon_sym_thread] = ACTIONS(1861), + [anon_sym_atomic] = ACTIONS(1861), + [sym___double_quote] = ACTIONS(1861), + [sym___single_quote] = ACTIONS(1861), + [sym___c_double_quote] = ACTIONS(1861), + [sym___c_single_quote] = ACTIONS(1861), + [sym___r_double_quote] = ACTIONS(1861), + [sym___r_single_quote] = ACTIONS(1861), }, [1137] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(1879), - [anon_sym_LF] = ACTIONS(1879), - [anon_sym_CR] = ACTIONS(1879), - [anon_sym_CR_LF] = ACTIONS(1879), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(1879), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1879), - [anon_sym_COMMA] = ACTIONS(1879), - [anon_sym_RBRACE] = ACTIONS(1879), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(1879), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_fn] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1879), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1879), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1879), - [anon_sym_BANG_EQ] = ACTIONS(1879), - [anon_sym_LT_EQ] = ACTIONS(1879), - [anon_sym_GT_EQ] = ACTIONS(1879), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1879), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_PLUS_PLUS] = ACTIONS(1879), - [anon_sym_DASH_DASH] = ACTIONS(1879), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(1879), - [anon_sym_spawn] = ACTIONS(1879), - [anon_sym_json_DOTdecode] = ACTIONS(1879), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(1879), - [anon_sym_CARET] = ACTIONS(1879), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_LT_DASH] = ACTIONS(1879), - [anon_sym_LT_LT] = ACTIONS(1879), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_GT_GT_GT] = ACTIONS(1879), - [anon_sym_AMP_CARET] = ACTIONS(1879), - [anon_sym_AMP_AMP] = ACTIONS(1879), - [anon_sym_PIPE_PIPE] = ACTIONS(1879), - [anon_sym_or] = ACTIONS(1879), - [sym_none] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_nil] = ACTIONS(1879), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_DOLLARif] = ACTIONS(1879), - [anon_sym_is] = ACTIONS(1879), - [anon_sym_BANGis] = ACTIONS(1879), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_BANGin] = ACTIONS(1879), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1879), - [anon_sym_rlock] = ACTIONS(1879), - [anon_sym_unsafe] = ACTIONS(1879), - [anon_sym_sql] = ACTIONS(1879), - [sym_int_literal] = ACTIONS(1879), - [sym_float_literal] = ACTIONS(1879), - [sym_rune_literal] = ACTIONS(1879), - [sym_pseudo_compile_time_identifier] = ACTIONS(1879), - [anon_sym_shared] = ACTIONS(1879), - [anon_sym_map_LBRACK] = ACTIONS(1879), - [anon_sym_chan] = ACTIONS(1879), - [anon_sym_thread] = ACTIONS(1879), - [anon_sym_atomic] = ACTIONS(1879), - [sym___double_quote] = ACTIONS(1879), - [sym___single_quote] = ACTIONS(1879), - [sym___c_double_quote] = ACTIONS(1879), - [sym___c_single_quote] = ACTIONS(1879), - [sym___r_double_quote] = ACTIONS(1879), - [sym___r_single_quote] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_STAR_EQ] = ACTIONS(615), + [anon_sym_SLASH_EQ] = ACTIONS(615), + [anon_sym_PERCENT_EQ] = ACTIONS(615), + [anon_sym_LT_LT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_EQ] = ACTIONS(615), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), + [anon_sym_AMP_EQ] = ACTIONS(615), + [anon_sym_AMP_CARET_EQ] = ACTIONS(615), + [anon_sym_PLUS_EQ] = ACTIONS(615), + [anon_sym_DASH_EQ] = ACTIONS(615), + [anon_sym_PIPE_EQ] = ACTIONS(615), + [anon_sym_CARET_EQ] = ACTIONS(615), + [anon_sym_COLON_EQ] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, [1138] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(2011), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2011), - [anon_sym_AMP_CARET] = ACTIONS(2011), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1881), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_AMP_CARET] = ACTIONS(1881), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [1139] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(2067), + [anon_sym_LF] = ACTIONS(2067), + [anon_sym_CR] = ACTIONS(2067), + [anon_sym_CR_LF] = ACTIONS(2067), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(2067), + [anon_sym_spawn] = ACTIONS(2067), + [anon_sym_json_DOTdecode] = ACTIONS(2067), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_or] = ACTIONS(2067), + [sym_none] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_nil] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_DOLLARif] = ACTIONS(2067), + [anon_sym_is] = ACTIONS(2067), + [anon_sym_BANGis] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_BANGin] = ACTIONS(2067), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_select] = ACTIONS(2067), + [anon_sym_lock] = ACTIONS(2067), + [anon_sym_rlock] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_sql] = ACTIONS(2067), + [sym_int_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2067), + [sym_rune_literal] = ACTIONS(2067), + [sym_pseudo_compile_time_identifier] = ACTIONS(2067), + [anon_sym_shared] = ACTIONS(2067), + [anon_sym_map_LBRACK] = ACTIONS(2067), + [anon_sym_chan] = ACTIONS(2067), + [anon_sym_thread] = ACTIONS(2067), + [anon_sym_atomic] = ACTIONS(2067), + [sym___double_quote] = ACTIONS(2067), + [sym___single_quote] = ACTIONS(2067), + [sym___c_double_quote] = ACTIONS(2067), + [sym___c_single_quote] = ACTIONS(2067), + [sym___r_double_quote] = ACTIONS(2067), + [sym___r_single_quote] = ACTIONS(2067), }, [1140] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1865), + [anon_sym_LF] = ACTIONS(1865), + [anon_sym_CR] = ACTIONS(1865), + [anon_sym_CR_LF] = ACTIONS(1865), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2011), - [anon_sym_BANG_EQ] = ACTIONS(2011), - [anon_sym_LT_EQ] = ACTIONS(2011), - [anon_sym_GT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(2011), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2011), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_LT_EQ] = ACTIONS(1865), + [anon_sym_GT_EQ] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_mut] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1865), + [anon_sym_spawn] = ACTIONS(1865), + [anon_sym_json_DOTdecode] = ACTIONS(1865), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1865), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(1865), + [anon_sym_PIPE_PIPE] = ACTIONS(1865), + [anon_sym_or] = ACTIONS(1865), + [sym_none] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_nil] = ACTIONS(1865), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1865), + [anon_sym_is] = ACTIONS(1865), + [anon_sym_BANGis] = ACTIONS(1865), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_BANGin] = ACTIONS(1865), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_select] = ACTIONS(1865), + [anon_sym_lock] = ACTIONS(1865), + [anon_sym_rlock] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1865), + [sym_int_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1865), + [sym_rune_literal] = ACTIONS(1865), + [sym_pseudo_compile_time_identifier] = ACTIONS(1865), + [anon_sym_shared] = ACTIONS(1865), + [anon_sym_map_LBRACK] = ACTIONS(1865), + [anon_sym_chan] = ACTIONS(1865), + [anon_sym_thread] = ACTIONS(1865), + [anon_sym_atomic] = ACTIONS(1865), + [sym___double_quote] = ACTIONS(1865), + [sym___single_quote] = ACTIONS(1865), + [sym___c_double_quote] = ACTIONS(1865), + [sym___c_single_quote] = ACTIONS(1865), + [sym___r_double_quote] = ACTIONS(1865), + [sym___r_single_quote] = ACTIONS(1865), }, [1141] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1853), + [anon_sym_LF] = ACTIONS(1853), + [anon_sym_CR] = ACTIONS(1853), + [anon_sym_CR_LF] = ACTIONS(1853), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_STAR_EQ] = ACTIONS(601), - [anon_sym_SLASH_EQ] = ACTIONS(601), - [anon_sym_PERCENT_EQ] = ACTIONS(601), - [anon_sym_LT_LT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_EQ] = ACTIONS(601), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(601), - [anon_sym_AMP_EQ] = ACTIONS(601), - [anon_sym_AMP_CARET_EQ] = ACTIONS(601), - [anon_sym_PLUS_EQ] = ACTIONS(601), - [anon_sym_DASH_EQ] = ACTIONS(601), - [anon_sym_PIPE_EQ] = ACTIONS(601), - [anon_sym_CARET_EQ] = ACTIONS(601), - [anon_sym_COLON_EQ] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1853), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_LT_DASH] = ACTIONS(1853), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1853), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_AMP_CARET] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_or] = ACTIONS(1853), + [sym_none] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_nil] = ACTIONS(1853), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_is] = ACTIONS(1853), + [anon_sym_BANGis] = ACTIONS(1853), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_BANGin] = ACTIONS(1853), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_select] = ACTIONS(1853), + [anon_sym_lock] = ACTIONS(1853), + [anon_sym_rlock] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_sql] = ACTIONS(1853), + [sym_int_literal] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1853), + [sym_rune_literal] = ACTIONS(1853), + [sym_pseudo_compile_time_identifier] = ACTIONS(1853), + [anon_sym_shared] = ACTIONS(1853), + [anon_sym_map_LBRACK] = ACTIONS(1853), + [anon_sym_chan] = ACTIONS(1853), + [anon_sym_thread] = ACTIONS(1853), + [anon_sym_atomic] = ACTIONS(1853), + [sym___double_quote] = ACTIONS(1853), + [sym___single_quote] = ACTIONS(1853), + [sym___c_double_quote] = ACTIONS(1853), + [sym___c_single_quote] = ACTIONS(1853), + [sym___r_double_quote] = ACTIONS(1853), + [sym___r_single_quote] = ACTIONS(1853), }, [1142] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2011), - [anon_sym_LF] = ACTIONS(2011), - [anon_sym_CR] = ACTIONS(2011), - [anon_sym_CR_LF] = ACTIONS(2011), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_COMMA] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2011), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2011), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2011), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(2011), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(2011), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2011), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), - [sym_rune_literal] = ACTIONS(2011), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2011), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2011), - [sym___single_quote] = ACTIONS(2011), - [sym___c_double_quote] = ACTIONS(2011), - [sym___c_single_quote] = ACTIONS(2011), - [sym___r_double_quote] = ACTIONS(2011), - [sym___r_single_quote] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [1143] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(3726), - [anon_sym_LF] = ACTIONS(3726), - [anon_sym_CR] = ACTIONS(3726), - [anon_sym_CR_LF] = ACTIONS(3726), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1849), + [anon_sym_LF] = ACTIONS(1849), + [anon_sym_CR] = ACTIONS(1849), + [anon_sym_CR_LF] = ACTIONS(1849), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3726), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3726), - [anon_sym_COMMA] = ACTIONS(3726), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(3726), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(3726), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3726), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3726), - [anon_sym_mut] = ACTIONS(3726), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3726), - [anon_sym_spawn] = ACTIONS(3726), - [anon_sym_json_DOTdecode] = ACTIONS(3726), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3726), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(3726), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [sym_none] = ACTIONS(3726), - [sym_true] = ACTIONS(3726), - [sym_false] = ACTIONS(3726), - [sym_nil] = ACTIONS(3726), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(3726), - [anon_sym_DOLLARif] = ACTIONS(3726), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(3726), - [anon_sym_select] = ACTIONS(3726), - [anon_sym_lock] = ACTIONS(3726), - [anon_sym_rlock] = ACTIONS(3726), - [anon_sym_unsafe] = ACTIONS(3726), - [anon_sym_sql] = ACTIONS(3726), - [sym_int_literal] = ACTIONS(3726), - [sym_float_literal] = ACTIONS(3726), - [sym_rune_literal] = ACTIONS(3726), - [sym_pseudo_compile_time_identifier] = ACTIONS(3726), - [anon_sym_shared] = ACTIONS(3726), - [anon_sym_map_LBRACK] = ACTIONS(3726), - [anon_sym_chan] = ACTIONS(3726), - [anon_sym_thread] = ACTIONS(3726), - [anon_sym_atomic] = ACTIONS(3726), - [sym___double_quote] = ACTIONS(3726), - [sym___single_quote] = ACTIONS(3726), - [sym___c_double_quote] = ACTIONS(3726), - [sym___c_single_quote] = ACTIONS(3726), - [sym___r_double_quote] = ACTIONS(3726), - [sym___r_single_quote] = ACTIONS(3726), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1849), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1849), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3732), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1849), + [sym_rune_literal] = ACTIONS(1849), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1849), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1849), + [sym___single_quote] = ACTIONS(1849), + [sym___c_double_quote] = ACTIONS(1849), + [sym___c_single_quote] = ACTIONS(1849), + [sym___r_double_quote] = ACTIONS(1849), + [sym___r_single_quote] = ACTIONS(1849), }, [1144] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1869), + [anon_sym_LF] = ACTIONS(1869), + [anon_sym_CR] = ACTIONS(1869), + [anon_sym_CR_LF] = ACTIONS(1869), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_STAR_EQ] = ACTIONS(607), - [anon_sym_SLASH_EQ] = ACTIONS(607), - [anon_sym_PERCENT_EQ] = ACTIONS(607), - [anon_sym_LT_LT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_EQ] = ACTIONS(607), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(607), - [anon_sym_AMP_EQ] = ACTIONS(607), - [anon_sym_AMP_CARET_EQ] = ACTIONS(607), - [anon_sym_PLUS_EQ] = ACTIONS(607), - [anon_sym_DASH_EQ] = ACTIONS(607), - [anon_sym_PIPE_EQ] = ACTIONS(607), - [anon_sym_CARET_EQ] = ACTIONS(607), - [anon_sym_COLON_EQ] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_PERCENT] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_LT_EQ] = ACTIONS(1869), + [anon_sym_GT_EQ] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_mut] = ACTIONS(1869), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1869), + [anon_sym_spawn] = ACTIONS(1869), + [anon_sym_json_DOTdecode] = ACTIONS(1869), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_LT_DASH] = ACTIONS(1869), + [anon_sym_LT_LT] = ACTIONS(1869), + [anon_sym_GT_GT] = ACTIONS(1869), + [anon_sym_GT_GT_GT] = ACTIONS(1869), + [anon_sym_AMP_CARET] = ACTIONS(1869), + [anon_sym_AMP_AMP] = ACTIONS(1869), + [anon_sym_PIPE_PIPE] = ACTIONS(1869), + [anon_sym_or] = ACTIONS(1869), + [sym_none] = ACTIONS(1869), + [sym_true] = ACTIONS(1869), + [sym_false] = ACTIONS(1869), + [sym_nil] = ACTIONS(1869), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_DOLLARif] = ACTIONS(1869), + [anon_sym_is] = ACTIONS(1869), + [anon_sym_BANGis] = ACTIONS(1869), + [anon_sym_in] = ACTIONS(1869), + [anon_sym_BANGin] = ACTIONS(1869), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_select] = ACTIONS(1869), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_sql] = ACTIONS(1869), + [sym_int_literal] = ACTIONS(1869), + [sym_float_literal] = ACTIONS(1869), + [sym_rune_literal] = ACTIONS(1869), + [sym_pseudo_compile_time_identifier] = ACTIONS(1869), + [anon_sym_shared] = ACTIONS(1869), + [anon_sym_map_LBRACK] = ACTIONS(1869), + [anon_sym_chan] = ACTIONS(1869), + [anon_sym_thread] = ACTIONS(1869), + [anon_sym_atomic] = ACTIONS(1869), + [sym___double_quote] = ACTIONS(1869), + [sym___single_quote] = ACTIONS(1869), + [sym___c_double_quote] = ACTIONS(1869), + [sym___c_single_quote] = ACTIONS(1869), + [sym___r_double_quote] = ACTIONS(1869), + [sym___r_single_quote] = ACTIONS(1869), }, [1145] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(2029), - [anon_sym_LF] = ACTIONS(2029), - [anon_sym_CR] = ACTIONS(2029), - [anon_sym_CR_LF] = ACTIONS(2029), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1881), + [anon_sym_LF] = ACTIONS(1881), + [anon_sym_CR] = ACTIONS(1881), + [anon_sym_CR_LF] = ACTIONS(1881), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(2029), - [anon_sym_COMMA] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(2029), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2029), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_mut] = ACTIONS(2029), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(2029), - [anon_sym_spawn] = ACTIONS(2029), - [anon_sym_json_DOTdecode] = ACTIONS(2029), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(2029), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(2029), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [sym_none] = ACTIONS(2029), - [sym_true] = ACTIONS(2029), - [sym_false] = ACTIONS(2029), - [sym_nil] = ACTIONS(2029), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_DOLLARif] = ACTIONS(2029), - [anon_sym_is] = ACTIONS(3730), - [anon_sym_BANGis] = ACTIONS(3732), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_select] = ACTIONS(2029), - [anon_sym_lock] = ACTIONS(2029), - [anon_sym_rlock] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_sql] = ACTIONS(2029), - [sym_int_literal] = ACTIONS(2029), - [sym_float_literal] = ACTIONS(2029), - [sym_rune_literal] = ACTIONS(2029), - [sym_pseudo_compile_time_identifier] = ACTIONS(2029), - [anon_sym_shared] = ACTIONS(2029), - [anon_sym_map_LBRACK] = ACTIONS(2029), - [anon_sym_chan] = ACTIONS(2029), - [anon_sym_thread] = ACTIONS(2029), - [anon_sym_atomic] = ACTIONS(2029), - [sym___double_quote] = ACTIONS(2029), - [sym___single_quote] = ACTIONS(2029), - [sym___c_double_quote] = ACTIONS(2029), - [sym___c_single_quote] = ACTIONS(2029), - [sym___r_double_quote] = ACTIONS(2029), - [sym___r_single_quote] = ACTIONS(2029), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1881), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1881), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1881), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1881), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1881), + [sym_rune_literal] = ACTIONS(1881), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1881), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1881), + [sym___single_quote] = ACTIONS(1881), + [sym___c_double_quote] = ACTIONS(1881), + [sym___c_single_quote] = ACTIONS(1881), + [sym___r_double_quote] = ACTIONS(1881), + [sym___r_single_quote] = ACTIONS(1881), }, [1146] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(1799), - [sym_plain_type] = STATE(1892), - [sym__plain_type_without_special] = STATE(1921), - [sym_anon_struct_type] = STATE(1920), - [sym_multi_return_type] = STATE(1921), - [sym_result_type] = STATE(1921), - [sym_option_type] = STATE(1921), - [sym_qualified_type] = STATE(1799), - [sym_fixed_array_type] = STATE(1920), - [sym_array_type] = STATE(1920), - [sym_pointer_type] = STATE(1920), - [sym_wrong_pointer_type] = STATE(1920), - [sym_map_type] = STATE(1920), - [sym_channel_type] = STATE(1920), - [sym_shared_type] = STATE(1920), - [sym_thread_type] = STATE(1920), - [sym_atomic_type] = STATE(1920), - [sym_generic_type] = STATE(1920), - [sym_function_type] = STATE(1920), + [sym_reference_expression] = STATE(4508), + [sym_type_reference_expression] = STATE(1797), + [sym_plain_type] = STATE(1925), + [sym__plain_type_without_special] = STATE(1930), + [sym_anon_struct_type] = STATE(1928), + [sym_multi_return_type] = STATE(1930), + [sym_result_type] = STATE(1930), + [sym_option_type] = STATE(1930), + [sym_qualified_type] = STATE(1797), + [sym_fixed_array_type] = STATE(1928), + [sym_array_type] = STATE(1928), + [sym_pointer_type] = STATE(1928), + [sym_wrong_pointer_type] = STATE(1928), + [sym_map_type] = STATE(1928), + [sym_channel_type] = STATE(1928), + [sym_shared_type] = STATE(1928), + [sym_thread_type] = STATE(1928), + [sym_atomic_type] = STATE(1928), + [sym_generic_type] = STATE(1928), + [sym_function_type] = STATE(1928), [sym_identifier] = ACTIONS(3734), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(593), - [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), [anon_sym_LPAREN] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), [anon_sym_fn] = ACTIONS(3738), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), [anon_sym_STAR] = ACTIONS(3740), - [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(591), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), [anon_sym_struct] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), [anon_sym_QMARK] = ACTIONS(3744), [anon_sym_BANG] = ACTIONS(3746), [anon_sym_LBRACK2] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(593), + [anon_sym_CARET] = ACTIONS(623), [anon_sym_AMP] = ACTIONS(3750), - [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_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_STAR_EQ] = ACTIONS(623), + [anon_sym_SLASH_EQ] = ACTIONS(623), + [anon_sym_PERCENT_EQ] = ACTIONS(623), + [anon_sym_LT_LT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_EQ] = ACTIONS(623), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(623), + [anon_sym_AMP_EQ] = ACTIONS(623), + [anon_sym_AMP_CARET_EQ] = ACTIONS(623), + [anon_sym_PLUS_EQ] = ACTIONS(623), + [anon_sym_DASH_EQ] = ACTIONS(623), + [anon_sym_PIPE_EQ] = ACTIONS(623), + [anon_sym_CARET_EQ] = ACTIONS(623), + [anon_sym_COLON_EQ] = ACTIONS(623), [anon_sym_shared] = ACTIONS(3752), [anon_sym_map_LBRACK] = ACTIONS(3754), [anon_sym_chan] = ACTIONS(3756), @@ -154056,69 +154157,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_atomic] = ACTIONS(3760), }, [1147] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), [sym_identifier] = ACTIONS(3762), [anon_sym_LF] = ACTIONS(3762), [anon_sym_CR] = ACTIONS(3762), [anon_sym_CR_LF] = ACTIONS(3762), [sym_comment] = ACTIONS(495), [anon_sym_SEMI] = ACTIONS(3762), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), [anon_sym_LBRACE] = ACTIONS(3762), [anon_sym_COMMA] = ACTIONS(3762), - [anon_sym_LPAREN] = ACTIONS(3692), + [anon_sym_LPAREN] = ACTIONS(3698), [anon_sym_RPAREN] = ACTIONS(3762), - [anon_sym_PIPE] = ACTIONS(3694), + [anon_sym_PIPE] = ACTIONS(3700), [anon_sym_fn] = ACTIONS(3762), - [anon_sym_PLUS] = ACTIONS(3762), - [anon_sym_DASH] = ACTIONS(3762), - [anon_sym_STAR] = ACTIONS(3762), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), [anon_sym_DOT_DOT_DOT] = ACTIONS(3762), - [anon_sym_LBRACK] = ACTIONS(3700), + [anon_sym_LBRACK] = ACTIONS(3706), [anon_sym_struct] = ACTIONS(3762), [anon_sym_mut] = ACTIONS(3762), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), [anon_sym_go] = ACTIONS(3762), [anon_sym_spawn] = ACTIONS(3762), [anon_sym_json_DOTdecode] = ACTIONS(3762), - [anon_sym_LBRACK2] = ACTIONS(3710), + [anon_sym_LBRACK2] = ACTIONS(3712), [anon_sym_TILDE] = ACTIONS(3762), - [anon_sym_CARET] = ACTIONS(3762), - [anon_sym_AMP] = ACTIONS(3762), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), [anon_sym_LT_DASH] = ACTIONS(3762), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), [sym_none] = ACTIONS(3762), [sym_true] = ACTIONS(3762), [sym_false] = ACTIONS(3762), [sym_nil] = ACTIONS(3762), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), [anon_sym_if] = ACTIONS(3762), [anon_sym_DOLLARif] = ACTIONS(3762), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3732), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), [anon_sym_match] = ACTIONS(3762), [anon_sym_select] = ACTIONS(3762), [anon_sym_lock] = ACTIONS(3762), @@ -154142,85 +154243,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(3762), }, [1148] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(1799), + [sym_reference_expression] = STATE(4508), + [sym_type_reference_expression] = STATE(1797), [sym_plain_type] = STATE(1896), - [sym__plain_type_without_special] = STATE(1921), - [sym_anon_struct_type] = STATE(1920), - [sym_multi_return_type] = STATE(1921), - [sym_result_type] = STATE(1921), - [sym_option_type] = STATE(1921), - [sym_qualified_type] = STATE(1799), - [sym_fixed_array_type] = STATE(1920), - [sym_array_type] = STATE(1920), - [sym_pointer_type] = STATE(1920), - [sym_wrong_pointer_type] = STATE(1920), - [sym_map_type] = STATE(1920), - [sym_channel_type] = STATE(1920), - [sym_shared_type] = STATE(1920), - [sym_thread_type] = STATE(1920), - [sym_atomic_type] = STATE(1920), - [sym_generic_type] = STATE(1920), - [sym_function_type] = STATE(1920), + [sym__plain_type_without_special] = STATE(1930), + [sym_anon_struct_type] = STATE(1928), + [sym_multi_return_type] = STATE(1930), + [sym_result_type] = STATE(1930), + [sym_option_type] = STATE(1930), + [sym_qualified_type] = STATE(1797), + [sym_fixed_array_type] = STATE(1928), + [sym_array_type] = STATE(1928), + [sym_pointer_type] = STATE(1928), + [sym_wrong_pointer_type] = STATE(1928), + [sym_map_type] = STATE(1928), + [sym_channel_type] = STATE(1928), + [sym_shared_type] = STATE(1928), + [sym_thread_type] = STATE(1928), + [sym_atomic_type] = STATE(1928), + [sym_generic_type] = STATE(1928), + [sym_function_type] = STATE(1928), [sym_identifier] = ACTIONS(3734), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), [anon_sym_LPAREN] = ACTIONS(3736), - [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), [anon_sym_fn] = ACTIONS(3738), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), [anon_sym_STAR] = ACTIONS(3740), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), [anon_sym_struct] = ACTIONS(3742), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), [anon_sym_QMARK] = ACTIONS(3744), [anon_sym_BANG] = ACTIONS(3746), [anon_sym_LBRACK2] = ACTIONS(3748), - [anon_sym_CARET] = ACTIONS(597), + [anon_sym_CARET] = ACTIONS(585), [anon_sym_AMP] = ACTIONS(3750), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_STAR_EQ] = ACTIONS(597), - [anon_sym_SLASH_EQ] = ACTIONS(597), - [anon_sym_PERCENT_EQ] = ACTIONS(597), - [anon_sym_LT_LT_EQ] = ACTIONS(597), - [anon_sym_GT_GT_EQ] = ACTIONS(597), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(597), - [anon_sym_AMP_EQ] = ACTIONS(597), - [anon_sym_AMP_CARET_EQ] = ACTIONS(597), - [anon_sym_PLUS_EQ] = ACTIONS(597), - [anon_sym_DASH_EQ] = ACTIONS(597), - [anon_sym_PIPE_EQ] = ACTIONS(597), - [anon_sym_CARET_EQ] = ACTIONS(597), - [anon_sym_COLON_EQ] = ACTIONS(597), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_STAR_EQ] = ACTIONS(585), + [anon_sym_SLASH_EQ] = ACTIONS(585), + [anon_sym_PERCENT_EQ] = ACTIONS(585), + [anon_sym_LT_LT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_EQ] = ACTIONS(585), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), + [anon_sym_AMP_EQ] = ACTIONS(585), + [anon_sym_AMP_CARET_EQ] = ACTIONS(585), + [anon_sym_PLUS_EQ] = ACTIONS(585), + [anon_sym_DASH_EQ] = ACTIONS(585), + [anon_sym_PIPE_EQ] = ACTIONS(585), + [anon_sym_CARET_EQ] = ACTIONS(585), + [anon_sym_COLON_EQ] = ACTIONS(585), [anon_sym_shared] = ACTIONS(3752), [anon_sym_map_LBRACK] = ACTIONS(3754), [anon_sym_chan] = ACTIONS(3756), @@ -154228,113 +154329,543 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_atomic] = ACTIONS(3760), }, [1149] = { - [sym_else_branch] = STATE(1199), - [sym_identifier] = ACTIONS(2509), - [anon_sym_LF] = ACTIONS(2509), - [anon_sym_CR] = ACTIONS(2509), - [anon_sym_CR_LF] = ACTIONS(2509), + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(3764), + [anon_sym_LF] = ACTIONS(3764), + [anon_sym_CR] = ACTIONS(3764), + [anon_sym_CR_LF] = ACTIONS(3764), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2509), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2509), - [anon_sym_COMMA] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2509), - [anon_sym_RPAREN] = ACTIONS(2509), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2509), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2509), - [anon_sym_BANG_EQ] = ACTIONS(2509), - [anon_sym_LT_EQ] = ACTIONS(2509), - [anon_sym_GT_EQ] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2509), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_PLUS_PLUS] = ACTIONS(2509), - [anon_sym_DASH_DASH] = ACTIONS(2509), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2509), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2509), - [anon_sym_CARET] = ACTIONS(2509), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2509), - [anon_sym_LT_LT] = ACTIONS(2509), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2509), - [anon_sym_AMP_CARET] = ACTIONS(2509), - [anon_sym_AMP_AMP] = ACTIONS(2509), - [anon_sym_PIPE_PIPE] = ACTIONS(2509), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2509), - [anon_sym_POUND_LBRACK] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(3764), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2509), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2509), - [sym_rune_literal] = ACTIONS(2509), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2509), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2509), - [sym___single_quote] = ACTIONS(2509), - [sym___c_double_quote] = ACTIONS(2509), - [sym___c_single_quote] = ACTIONS(2509), - [sym___r_double_quote] = ACTIONS(2509), - [sym___r_single_quote] = ACTIONS(2509), + [anon_sym_SEMI] = ACTIONS(3764), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3764), + [anon_sym_COMMA] = ACTIONS(3764), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(3764), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(3764), + [anon_sym_PLUS] = ACTIONS(3764), + [anon_sym_DASH] = ACTIONS(3764), + [anon_sym_STAR] = ACTIONS(3764), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3764), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3764), + [anon_sym_mut] = ACTIONS(3764), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(3764), + [anon_sym_spawn] = ACTIONS(3764), + [anon_sym_json_DOTdecode] = ACTIONS(3764), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3764), + [anon_sym_CARET] = ACTIONS(3764), + [anon_sym_AMP] = ACTIONS(3764), + [anon_sym_LT_DASH] = ACTIONS(3764), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), + [sym_none] = ACTIONS(3764), + [sym_true] = ACTIONS(3764), + [sym_false] = ACTIONS(3764), + [sym_nil] = ACTIONS(3764), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3764), + [anon_sym_DOLLARif] = ACTIONS(3764), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3732), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(3764), + [anon_sym_select] = ACTIONS(3764), + [anon_sym_lock] = ACTIONS(3764), + [anon_sym_rlock] = ACTIONS(3764), + [anon_sym_unsafe] = ACTIONS(3764), + [anon_sym_sql] = ACTIONS(3764), + [sym_int_literal] = ACTIONS(3764), + [sym_float_literal] = ACTIONS(3764), + [sym_rune_literal] = ACTIONS(3764), + [sym_pseudo_compile_time_identifier] = ACTIONS(3764), + [anon_sym_shared] = ACTIONS(3764), + [anon_sym_map_LBRACK] = ACTIONS(3764), + [anon_sym_chan] = ACTIONS(3764), + [anon_sym_thread] = ACTIONS(3764), + [anon_sym_atomic] = ACTIONS(3764), + [sym___double_quote] = ACTIONS(3764), + [sym___single_quote] = ACTIONS(3764), + [sym___c_double_quote] = ACTIONS(3764), + [sym___c_single_quote] = ACTIONS(3764), + [sym___r_double_quote] = ACTIONS(3764), + [sym___r_single_quote] = ACTIONS(3764), }, [1150] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(1799), - [sym_plain_type] = STATE(1914), - [sym__plain_type_without_special] = STATE(1921), - [sym_anon_struct_type] = STATE(1920), - [sym_multi_return_type] = STATE(1921), - [sym_result_type] = STATE(1921), - [sym_option_type] = STATE(1921), - [sym_qualified_type] = STATE(1799), - [sym_fixed_array_type] = STATE(1920), - [sym_array_type] = STATE(1920), - [sym_pointer_type] = STATE(1920), - [sym_wrong_pointer_type] = STATE(1920), - [sym_map_type] = STATE(1920), - [sym_channel_type] = STATE(1920), - [sym_shared_type] = STATE(1920), - [sym_thread_type] = STATE(1920), - [sym_atomic_type] = STATE(1920), - [sym_generic_type] = STATE(1920), - [sym_function_type] = STATE(1920), + [sym_else_branch] = STATE(1280), + [sym_identifier] = ACTIONS(2635), + [anon_sym_LF] = ACTIONS(2635), + [anon_sym_CR] = ACTIONS(2635), + [anon_sym_CR_LF] = ACTIONS(2635), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2635), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_as] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_COMMA] = ACTIONS(2635), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_RPAREN] = ACTIONS(2635), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_mut] = ACTIONS(2635), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_QMARK] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_go] = ACTIONS(2635), + [anon_sym_spawn] = ACTIONS(2635), + [anon_sym_json_DOTdecode] = ACTIONS(2635), + [anon_sym_LBRACK2] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2635), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_AMP_CARET] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_or] = ACTIONS(2635), + [sym_none] = ACTIONS(2635), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_nil] = ACTIONS(2635), + [anon_sym_QMARK_DOT] = ACTIONS(2635), + [anon_sym_POUND_LBRACK] = ACTIONS(2635), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(3766), + [anon_sym_DOLLARif] = ACTIONS(2635), + [anon_sym_is] = ACTIONS(2635), + [anon_sym_BANGis] = ACTIONS(2635), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_BANGin] = ACTIONS(2635), + [anon_sym_match] = ACTIONS(2635), + [anon_sym_select] = ACTIONS(2635), + [anon_sym_lock] = ACTIONS(2635), + [anon_sym_rlock] = ACTIONS(2635), + [anon_sym_unsafe] = ACTIONS(2635), + [anon_sym_sql] = ACTIONS(2635), + [sym_int_literal] = ACTIONS(2635), + [sym_float_literal] = ACTIONS(2635), + [sym_rune_literal] = ACTIONS(2635), + [sym_pseudo_compile_time_identifier] = ACTIONS(2635), + [anon_sym_shared] = ACTIONS(2635), + [anon_sym_map_LBRACK] = ACTIONS(2635), + [anon_sym_chan] = ACTIONS(2635), + [anon_sym_thread] = ACTIONS(2635), + [anon_sym_atomic] = ACTIONS(2635), + [sym___double_quote] = ACTIONS(2635), + [sym___single_quote] = ACTIONS(2635), + [sym___c_double_quote] = ACTIONS(2635), + [sym___c_single_quote] = ACTIONS(2635), + [sym___r_double_quote] = ACTIONS(2635), + [sym___r_single_quote] = ACTIONS(2635), + }, + [1151] = { + [sym_reference_expression] = STATE(4508), + [sym_type_reference_expression] = STATE(1797), + [sym_plain_type] = STATE(1903), + [sym__plain_type_without_special] = STATE(1930), + [sym_anon_struct_type] = STATE(1928), + [sym_multi_return_type] = STATE(1930), + [sym_result_type] = STATE(1930), + [sym_option_type] = STATE(1930), + [sym_qualified_type] = STATE(1797), + [sym_fixed_array_type] = STATE(1928), + [sym_array_type] = STATE(1928), + [sym_pointer_type] = STATE(1928), + [sym_wrong_pointer_type] = STATE(1928), + [sym_map_type] = STATE(1928), + [sym_channel_type] = STATE(1928), + [sym_shared_type] = STATE(1928), + [sym_thread_type] = STATE(1928), + [sym_atomic_type] = STATE(1928), + [sym_generic_type] = STATE(1928), + [sym_function_type] = STATE(1928), [sym_identifier] = ACTIONS(3734), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3736), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3738), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(3742), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3744), + [anon_sym_BANG] = ACTIONS(3746), + [anon_sym_LBRACK2] = ACTIONS(3748), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_STAR_EQ] = ACTIONS(619), + [anon_sym_SLASH_EQ] = ACTIONS(619), + [anon_sym_PERCENT_EQ] = ACTIONS(619), + [anon_sym_LT_LT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_EQ] = ACTIONS(619), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(619), + [anon_sym_AMP_EQ] = ACTIONS(619), + [anon_sym_AMP_CARET_EQ] = ACTIONS(619), + [anon_sym_PLUS_EQ] = ACTIONS(619), + [anon_sym_DASH_EQ] = ACTIONS(619), + [anon_sym_PIPE_EQ] = ACTIONS(619), + [anon_sym_CARET_EQ] = ACTIONS(619), + [anon_sym_COLON_EQ] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3752), + [anon_sym_map_LBRACK] = ACTIONS(3754), + [anon_sym_chan] = ACTIONS(3756), + [anon_sym_thread] = ACTIONS(3758), + [anon_sym_atomic] = ACTIONS(3760), + }, + [1152] = { + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(1933), + [anon_sym_LF] = ACTIONS(1933), + [anon_sym_CR] = ACTIONS(1933), + [anon_sym_CR_LF] = ACTIONS(1933), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(1933), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(1933), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(1933), + [anon_sym_mut] = ACTIONS(1933), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(1933), + [anon_sym_spawn] = ACTIONS(1933), + [anon_sym_json_DOTdecode] = ACTIONS(1933), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(1933), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), + [sym_none] = ACTIONS(1933), + [sym_true] = ACTIONS(1933), + [sym_false] = ACTIONS(1933), + [sym_nil] = ACTIONS(1933), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(1933), + [anon_sym_DOLLARif] = ACTIONS(1933), + [anon_sym_is] = ACTIONS(3768), + [anon_sym_BANGis] = ACTIONS(3770), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(1933), + [anon_sym_select] = ACTIONS(1933), + [anon_sym_lock] = ACTIONS(1933), + [anon_sym_rlock] = ACTIONS(1933), + [anon_sym_unsafe] = ACTIONS(1933), + [anon_sym_sql] = ACTIONS(1933), + [sym_int_literal] = ACTIONS(1933), + [sym_float_literal] = ACTIONS(1933), + [sym_rune_literal] = ACTIONS(1933), + [sym_pseudo_compile_time_identifier] = ACTIONS(1933), + [anon_sym_shared] = ACTIONS(1933), + [anon_sym_map_LBRACK] = ACTIONS(1933), + [anon_sym_chan] = ACTIONS(1933), + [anon_sym_thread] = ACTIONS(1933), + [anon_sym_atomic] = ACTIONS(1933), + [sym___double_quote] = ACTIONS(1933), + [sym___single_quote] = ACTIONS(1933), + [sym___c_double_quote] = ACTIONS(1933), + [sym___c_single_quote] = ACTIONS(1933), + [sym___r_double_quote] = ACTIONS(1933), + [sym___r_single_quote] = ACTIONS(1933), + }, + [1153] = { + [sym_else_branch] = STATE(1281), + [sym_identifier] = ACTIONS(2505), + [anon_sym_LF] = ACTIONS(2505), + [anon_sym_CR] = ACTIONS(2505), + [anon_sym_CR_LF] = ACTIONS(2505), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_DOT] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_COMMA] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_RPAREN] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [anon_sym_SLASH] = ACTIONS(2505), + [anon_sym_PERCENT] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_GT] = ACTIONS(2505), + [anon_sym_EQ_EQ] = ACTIONS(2505), + [anon_sym_BANG_EQ] = ACTIONS(2505), + [anon_sym_LT_EQ] = ACTIONS(2505), + [anon_sym_GT_EQ] = ACTIONS(2505), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_PLUS_PLUS] = ACTIONS(2505), + [anon_sym_DASH_DASH] = ACTIONS(2505), + [anon_sym_QMARK] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_go] = ACTIONS(2505), + [anon_sym_spawn] = ACTIONS(2505), + [anon_sym_json_DOTdecode] = ACTIONS(2505), + [anon_sym_LBRACK2] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2505), + [anon_sym_CARET] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_LT_DASH] = ACTIONS(2505), + [anon_sym_LT_LT] = ACTIONS(2505), + [anon_sym_GT_GT] = ACTIONS(2505), + [anon_sym_GT_GT_GT] = ACTIONS(2505), + [anon_sym_AMP_CARET] = ACTIONS(2505), + [anon_sym_AMP_AMP] = ACTIONS(2505), + [anon_sym_PIPE_PIPE] = ACTIONS(2505), + [anon_sym_or] = ACTIONS(2505), + [sym_none] = ACTIONS(2505), + [sym_true] = ACTIONS(2505), + [sym_false] = ACTIONS(2505), + [sym_nil] = ACTIONS(2505), + [anon_sym_QMARK_DOT] = ACTIONS(2505), + [anon_sym_POUND_LBRACK] = ACTIONS(2505), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(3766), + [anon_sym_DOLLARif] = ACTIONS(2505), + [anon_sym_is] = ACTIONS(2505), + [anon_sym_BANGis] = ACTIONS(2505), + [anon_sym_in] = ACTIONS(2505), + [anon_sym_BANGin] = ACTIONS(2505), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_select] = ACTIONS(2505), + [anon_sym_lock] = ACTIONS(2505), + [anon_sym_rlock] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_sql] = ACTIONS(2505), + [sym_int_literal] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2505), + [sym_rune_literal] = ACTIONS(2505), + [sym_pseudo_compile_time_identifier] = ACTIONS(2505), + [anon_sym_shared] = ACTIONS(2505), + [anon_sym_map_LBRACK] = ACTIONS(2505), + [anon_sym_chan] = ACTIONS(2505), + [anon_sym_thread] = ACTIONS(2505), + [anon_sym_atomic] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2505), + [sym___single_quote] = ACTIONS(2505), + [sym___c_double_quote] = ACTIONS(2505), + [sym___c_single_quote] = ACTIONS(2505), + [sym___r_double_quote] = ACTIONS(2505), + [sym___r_single_quote] = ACTIONS(2505), + }, + [1154] = { + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(3772), + [anon_sym_LF] = ACTIONS(3772), + [anon_sym_CR] = ACTIONS(3772), + [anon_sym_CR_LF] = ACTIONS(3772), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3772), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3772), + [anon_sym_COMMA] = ACTIONS(3772), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_RPAREN] = ACTIONS(3772), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(3772), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3772), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3772), + [anon_sym_mut] = ACTIONS(3772), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(3772), + [anon_sym_spawn] = ACTIONS(3772), + [anon_sym_json_DOTdecode] = ACTIONS(3772), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3772), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3772), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), + [sym_none] = ACTIONS(3772), + [sym_true] = ACTIONS(3772), + [sym_false] = ACTIONS(3772), + [sym_nil] = ACTIONS(3772), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3772), + [anon_sym_DOLLARif] = ACTIONS(3772), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3732), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(3772), + [anon_sym_select] = ACTIONS(3772), + [anon_sym_lock] = ACTIONS(3772), + [anon_sym_rlock] = ACTIONS(3772), + [anon_sym_unsafe] = ACTIONS(3772), + [anon_sym_sql] = ACTIONS(3772), + [sym_int_literal] = ACTIONS(3772), + [sym_float_literal] = ACTIONS(3772), + [sym_rune_literal] = ACTIONS(3772), + [sym_pseudo_compile_time_identifier] = ACTIONS(3772), + [anon_sym_shared] = ACTIONS(3772), + [anon_sym_map_LBRACK] = ACTIONS(3772), + [anon_sym_chan] = ACTIONS(3772), + [anon_sym_thread] = ACTIONS(3772), + [anon_sym_atomic] = ACTIONS(3772), + [sym___double_quote] = ACTIONS(3772), + [sym___single_quote] = ACTIONS(3772), + [sym___c_double_quote] = ACTIONS(3772), + [sym___c_single_quote] = ACTIONS(3772), + [sym___r_double_quote] = ACTIONS(3772), + [sym___r_single_quote] = ACTIONS(3772), + }, + [1155] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [anon_sym_LF] = ACTIONS(563), [anon_sym_CR] = ACTIONS(563), [anon_sym_CR_LF] = ACTIONS(563), @@ -154343,13 +154874,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3736), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym_EQ] = ACTIONS(563), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3738), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3740), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(563), @@ -154359,1237 +154890,4173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(563), [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(3742), + [anon_sym_struct] = ACTIONS(571), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3744), - [anon_sym_BANG] = ACTIONS(3746), - [anon_sym_LBRACK2] = ACTIONS(3748), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3774), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(563), + [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(563), + [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(563), + [anon_sym_STAR_EQ] = ACTIONS(563), + [anon_sym_SLASH_EQ] = ACTIONS(563), + [anon_sym_PERCENT_EQ] = ACTIONS(563), + [anon_sym_LT_LT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_EQ] = ACTIONS(563), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), + [anon_sym_AMP_EQ] = ACTIONS(563), + [anon_sym_AMP_CARET_EQ] = ACTIONS(563), + [anon_sym_PLUS_EQ] = ACTIONS(563), + [anon_sym_DASH_EQ] = ACTIONS(563), + [anon_sym_PIPE_EQ] = ACTIONS(563), + [anon_sym_CARET_EQ] = ACTIONS(563), + [anon_sym_COLON_EQ] = ACTIONS(563), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1156] = { + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2729), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_RPAREN] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_COLON] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), + }, + [1157] = { + [sym_identifier] = ACTIONS(2643), + [anon_sym_LF] = ACTIONS(2643), + [anon_sym_CR] = ACTIONS(2643), + [anon_sym_CR_LF] = ACTIONS(2643), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_COMMA] = ACTIONS(2643), + [anon_sym_RBRACE] = ACTIONS(2643), + [anon_sym_LPAREN] = ACTIONS(2643), + [anon_sym_RPAREN] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_mut] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_QMARK] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_go] = ACTIONS(2643), + [anon_sym_spawn] = ACTIONS(2643), + [anon_sym_json_DOTdecode] = ACTIONS(2643), + [anon_sym_LBRACK2] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_AMP_CARET] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [sym_none] = ACTIONS(2643), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_nil] = ACTIONS(2643), + [anon_sym_QMARK_DOT] = ACTIONS(2643), + [anon_sym_POUND_LBRACK] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_DOLLARif] = ACTIONS(2643), + [anon_sym_DOLLARelse] = ACTIONS(3776), + [anon_sym_is] = ACTIONS(2643), + [anon_sym_BANGis] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_BANGin] = ACTIONS(2643), + [anon_sym_match] = ACTIONS(2643), + [anon_sym_select] = ACTIONS(2643), + [anon_sym_lock] = ACTIONS(2643), + [anon_sym_rlock] = ACTIONS(2643), + [anon_sym_unsafe] = ACTIONS(2643), + [anon_sym_sql] = ACTIONS(2643), + [sym_int_literal] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2643), + [sym_rune_literal] = ACTIONS(2643), + [sym_pseudo_compile_time_identifier] = ACTIONS(2643), + [anon_sym_shared] = ACTIONS(2643), + [anon_sym_map_LBRACK] = ACTIONS(2643), + [anon_sym_chan] = ACTIONS(2643), + [anon_sym_thread] = ACTIONS(2643), + [anon_sym_atomic] = ACTIONS(2643), + [sym___double_quote] = ACTIONS(2643), + [sym___single_quote] = ACTIONS(2643), + [sym___c_double_quote] = ACTIONS(2643), + [sym___c_single_quote] = ACTIONS(2643), + [sym___r_double_quote] = ACTIONS(2643), + [sym___r_single_quote] = ACTIONS(2643), + }, + [1158] = { + [sym_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2685), + [anon_sym_CR] = ACTIONS(2685), + [anon_sym_CR_LF] = ACTIONS(2685), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2685), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2685), + [anon_sym_AMP_CARET] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2685), + [anon_sym_POUND_LBRACK] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_DOLLARelse] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2685), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2685), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2685), + [sym___single_quote] = ACTIONS(2685), + [sym___c_double_quote] = ACTIONS(2685), + [sym___c_single_quote] = ACTIONS(2685), + [sym___r_double_quote] = ACTIONS(2685), + [sym___r_single_quote] = ACTIONS(2685), + }, + [1159] = { + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [1160] = { + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_DOLLARelse] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [1161] = { + [sym_identifier] = ACTIONS(2873), + [anon_sym_LF] = ACTIONS(2873), + [anon_sym_CR] = ACTIONS(2873), + [anon_sym_CR_LF] = ACTIONS(2873), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2873), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2873), + [anon_sym_COMMA] = ACTIONS(2873), + [anon_sym_RBRACE] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2873), + [anon_sym_RPAREN] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2873), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2873), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2873), + [anon_sym_BANG_EQ] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2873), + [anon_sym_DASH_DASH] = ACTIONS(2873), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2873), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2873), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2873), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2873), + [anon_sym_AMP_CARET] = ACTIONS(2873), + [anon_sym_AMP_AMP] = ACTIONS(2873), + [anon_sym_PIPE_PIPE] = ACTIONS(2873), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2873), + [anon_sym_POUND_LBRACK] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_DOLLARelse] = ACTIONS(3778), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2873), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2873), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2873), + [sym_rune_literal] = ACTIONS(2873), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2873), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [sym___double_quote] = ACTIONS(2873), + [sym___single_quote] = ACTIONS(2873), + [sym___c_double_quote] = ACTIONS(2873), + [sym___c_single_quote] = ACTIONS(2873), + [sym___r_double_quote] = ACTIONS(2873), + [sym___r_single_quote] = ACTIONS(2873), + }, + [1162] = { + [sym_type_parameters] = STATE(1213), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), + }, + [1163] = { + [sym_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2685), + [anon_sym_CR] = ACTIONS(2685), + [anon_sym_CR_LF] = ACTIONS(2685), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_COMMA] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_RPAREN] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2685), + [anon_sym_BANG_EQ] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2685), + [anon_sym_DASH_DASH] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2685), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2685), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2685), + [anon_sym_AMP_CARET] = ACTIONS(2685), + [anon_sym_AMP_AMP] = ACTIONS(2685), + [anon_sym_PIPE_PIPE] = ACTIONS(2685), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2685), + [anon_sym_POUND_LBRACK] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2685), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2685), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2685), + [sym___single_quote] = ACTIONS(2685), + [sym___c_double_quote] = ACTIONS(2685), + [sym___c_single_quote] = ACTIONS(2685), + [sym___r_double_quote] = ACTIONS(2685), + [sym___r_single_quote] = ACTIONS(2685), + }, + [1164] = { + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(3780), + [anon_sym_LF] = ACTIONS(3780), + [anon_sym_CR] = ACTIONS(3780), + [anon_sym_CR_LF] = ACTIONS(3780), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3780), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3780), + [anon_sym_COMMA] = ACTIONS(3780), + [anon_sym_RBRACE] = ACTIONS(3780), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(3780), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3780), + [anon_sym_mut] = ACTIONS(3780), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(3780), + [anon_sym_spawn] = ACTIONS(3780), + [anon_sym_json_DOTdecode] = ACTIONS(3780), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3780), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3780), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), + [sym_none] = ACTIONS(3780), + [sym_true] = ACTIONS(3780), + [sym_false] = ACTIONS(3780), + [sym_nil] = ACTIONS(3780), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3780), + [anon_sym_DOLLARif] = ACTIONS(3780), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3732), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(3780), + [anon_sym_select] = ACTIONS(3780), + [anon_sym_lock] = ACTIONS(3780), + [anon_sym_rlock] = ACTIONS(3780), + [anon_sym_unsafe] = ACTIONS(3780), + [anon_sym_sql] = ACTIONS(3780), + [sym_int_literal] = ACTIONS(3780), + [sym_float_literal] = ACTIONS(3780), + [sym_rune_literal] = ACTIONS(3780), + [sym_pseudo_compile_time_identifier] = ACTIONS(3780), + [anon_sym_shared] = ACTIONS(3780), + [anon_sym_map_LBRACK] = ACTIONS(3780), + [anon_sym_chan] = ACTIONS(3780), + [anon_sym_thread] = ACTIONS(3780), + [anon_sym_atomic] = ACTIONS(3780), + [sym___double_quote] = ACTIONS(3780), + [sym___single_quote] = ACTIONS(3780), + [sym___c_double_quote] = ACTIONS(3780), + [sym___c_single_quote] = ACTIONS(3780), + [sym___r_double_quote] = ACTIONS(3780), + [sym___r_single_quote] = ACTIONS(3780), + }, + [1165] = { + [sym_type_parameters] = STATE(4331), + [sym_argument_list] = STATE(1224), + [sym_or_block] = STATE(1243), + [sym_identifier] = ACTIONS(3782), + [anon_sym_LF] = ACTIONS(3784), + [anon_sym_CR] = ACTIONS(3784), + [anon_sym_CR_LF] = ACTIONS(3784), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3784), + [anon_sym_DOT] = ACTIONS(3696), + [anon_sym_as] = ACTIONS(3718), + [anon_sym_LBRACE] = ACTIONS(3782), + [anon_sym_COMMA] = ACTIONS(3784), + [anon_sym_RBRACE] = ACTIONS(3782), + [anon_sym_LPAREN] = ACTIONS(3698), + [anon_sym_PIPE] = ACTIONS(3700), + [anon_sym_fn] = ACTIONS(3782), + [anon_sym_PLUS] = ACTIONS(3700), + [anon_sym_DASH] = ACTIONS(3700), + [anon_sym_STAR] = ACTIONS(3702), + [anon_sym_SLASH] = ACTIONS(3702), + [anon_sym_PERCENT] = ACTIONS(3702), + [anon_sym_LT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3704), + [anon_sym_EQ_EQ] = ACTIONS(3704), + [anon_sym_BANG_EQ] = ACTIONS(3704), + [anon_sym_LT_EQ] = ACTIONS(3704), + [anon_sym_GT_EQ] = ACTIONS(3704), + [anon_sym_LBRACK] = ACTIONS(3706), + [anon_sym_struct] = ACTIONS(3782), + [anon_sym_mut] = ACTIONS(3782), + [anon_sym_PLUS_PLUS] = ACTIONS(3720), + [anon_sym_DASH_DASH] = ACTIONS(3722), + [anon_sym_QMARK] = ACTIONS(3708), + [anon_sym_BANG] = ACTIONS(3710), + [anon_sym_go] = ACTIONS(3782), + [anon_sym_spawn] = ACTIONS(3782), + [anon_sym_json_DOTdecode] = ACTIONS(3782), + [anon_sym_LBRACK2] = ACTIONS(3712), + [anon_sym_TILDE] = ACTIONS(3782), + [anon_sym_CARET] = ACTIONS(3700), + [anon_sym_AMP] = ACTIONS(3702), + [anon_sym_LT_DASH] = ACTIONS(3782), + [anon_sym_LT_LT] = ACTIONS(3702), + [anon_sym_GT_GT] = ACTIONS(3702), + [anon_sym_GT_GT_GT] = ACTIONS(3702), + [anon_sym_AMP_CARET] = ACTIONS(3702), + [anon_sym_AMP_AMP] = ACTIONS(3724), + [anon_sym_PIPE_PIPE] = ACTIONS(3726), + [anon_sym_or] = ACTIONS(3728), + [sym_none] = ACTIONS(3782), + [sym_true] = ACTIONS(3782), + [sym_false] = ACTIONS(3782), + [sym_nil] = ACTIONS(3782), + [anon_sym_QMARK_DOT] = ACTIONS(3696), + [anon_sym_POUND_LBRACK] = ACTIONS(3712), + [anon_sym_if] = ACTIONS(3782), + [anon_sym_DOLLARif] = ACTIONS(3782), + [anon_sym_is] = ACTIONS(3730), + [anon_sym_BANGis] = ACTIONS(3732), + [anon_sym_in] = ACTIONS(3714), + [anon_sym_BANGin] = ACTIONS(3716), + [anon_sym_match] = ACTIONS(3782), + [anon_sym_select] = ACTIONS(3782), + [anon_sym_lock] = ACTIONS(3782), + [anon_sym_rlock] = ACTIONS(3782), + [anon_sym_unsafe] = ACTIONS(3782), + [anon_sym_sql] = ACTIONS(3782), + [sym_int_literal] = ACTIONS(3782), + [sym_float_literal] = ACTIONS(3782), + [sym_rune_literal] = ACTIONS(3782), + [sym_pseudo_compile_time_identifier] = ACTIONS(3782), + [anon_sym_shared] = ACTIONS(3782), + [anon_sym_map_LBRACK] = ACTIONS(3782), + [anon_sym_chan] = ACTIONS(3782), + [anon_sym_thread] = ACTIONS(3782), + [anon_sym_atomic] = ACTIONS(3782), + [sym___double_quote] = ACTIONS(3782), + [sym___single_quote] = ACTIONS(3782), + [sym___c_double_quote] = ACTIONS(3782), + [sym___c_single_quote] = ACTIONS(3782), + [sym___r_double_quote] = ACTIONS(3782), + [sym___r_single_quote] = ACTIONS(3782), + }, + [1166] = { + [sym_identifier] = ACTIONS(3444), + [anon_sym_LF] = ACTIONS(3444), + [anon_sym_CR] = ACTIONS(3444), + [anon_sym_CR_LF] = ACTIONS(3444), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_DOT] = ACTIONS(3444), + [anon_sym_as] = ACTIONS(3444), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_COMMA] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_RPAREN] = ACTIONS(3444), + [anon_sym_PIPE] = ACTIONS(3444), + [anon_sym_fn] = ACTIONS(3444), + [anon_sym_PLUS] = ACTIONS(3444), + [anon_sym_DASH] = ACTIONS(3444), + [anon_sym_STAR] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3444), + [anon_sym_PERCENT] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_GT] = ACTIONS(3444), + [anon_sym_EQ_EQ] = ACTIONS(3444), + [anon_sym_BANG_EQ] = ACTIONS(3444), + [anon_sym_LT_EQ] = ACTIONS(3444), + [anon_sym_GT_EQ] = ACTIONS(3444), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), + [anon_sym_LBRACK] = ACTIONS(3442), + [anon_sym_struct] = ACTIONS(3444), + [anon_sym_mut] = ACTIONS(3444), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_QMARK] = ACTIONS(3444), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_go] = ACTIONS(3444), + [anon_sym_spawn] = ACTIONS(3444), + [anon_sym_json_DOTdecode] = ACTIONS(3444), + [anon_sym_LBRACK2] = ACTIONS(3444), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_CARET] = ACTIONS(3444), + [anon_sym_AMP] = ACTIONS(3444), + [anon_sym_LT_DASH] = ACTIONS(3444), + [anon_sym_LT_LT] = ACTIONS(3444), + [anon_sym_GT_GT] = ACTIONS(3444), + [anon_sym_GT_GT_GT] = ACTIONS(3444), + [anon_sym_AMP_CARET] = ACTIONS(3444), + [anon_sym_AMP_AMP] = ACTIONS(3444), + [anon_sym_PIPE_PIPE] = ACTIONS(3444), + [anon_sym_or] = ACTIONS(3444), + [sym_none] = ACTIONS(3444), + [sym_true] = ACTIONS(3444), + [sym_false] = ACTIONS(3444), + [sym_nil] = ACTIONS(3444), + [anon_sym_QMARK_DOT] = ACTIONS(3444), + [anon_sym_POUND_LBRACK] = ACTIONS(3444), + [anon_sym_if] = ACTIONS(3444), + [anon_sym_DOLLARif] = ACTIONS(3444), + [anon_sym_is] = ACTIONS(3444), + [anon_sym_BANGis] = ACTIONS(3444), + [anon_sym_in] = ACTIONS(3444), + [anon_sym_BANGin] = ACTIONS(3444), + [anon_sym_match] = ACTIONS(3444), + [anon_sym_select] = ACTIONS(3444), + [anon_sym_lock] = ACTIONS(3444), + [anon_sym_rlock] = ACTIONS(3444), + [anon_sym_unsafe] = ACTIONS(3444), + [anon_sym_sql] = ACTIONS(3444), + [sym_int_literal] = ACTIONS(3444), + [sym_float_literal] = ACTIONS(3444), + [sym_rune_literal] = ACTIONS(3444), + [sym_pseudo_compile_time_identifier] = ACTIONS(3444), + [anon_sym_shared] = ACTIONS(3444), + [anon_sym_map_LBRACK] = ACTIONS(3444), + [anon_sym_chan] = ACTIONS(3444), + [anon_sym_thread] = ACTIONS(3444), + [anon_sym_atomic] = ACTIONS(3444), + [sym___double_quote] = ACTIONS(3444), + [sym___single_quote] = ACTIONS(3444), + [sym___c_double_quote] = ACTIONS(3444), + [sym___c_single_quote] = ACTIONS(3444), + [sym___r_double_quote] = ACTIONS(3444), + [sym___r_single_quote] = ACTIONS(3444), + }, + [1167] = { + [sym_identifier] = ACTIONS(3193), + [anon_sym_LF] = ACTIONS(3193), + [anon_sym_CR] = ACTIONS(3193), + [anon_sym_CR_LF] = ACTIONS(3193), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_COMMA] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_RPAREN] = ACTIONS(3193), + [anon_sym_PIPE] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_PERCENT] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3193), + [anon_sym_BANG_EQ] = ACTIONS(3193), + [anon_sym_LT_EQ] = ACTIONS(3193), + [anon_sym_GT_EQ] = ACTIONS(3193), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_mut] = ACTIONS(3193), + [anon_sym_PLUS_PLUS] = ACTIONS(3193), + [anon_sym_DASH_DASH] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_go] = ACTIONS(3193), + [anon_sym_spawn] = ACTIONS(3193), + [anon_sym_json_DOTdecode] = ACTIONS(3193), + [anon_sym_LBRACK2] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_LT_DASH] = ACTIONS(3193), + [anon_sym_LT_LT] = ACTIONS(3193), + [anon_sym_GT_GT] = ACTIONS(3193), + [anon_sym_GT_GT_GT] = ACTIONS(3193), + [anon_sym_AMP_CARET] = ACTIONS(3193), + [anon_sym_AMP_AMP] = ACTIONS(3193), + [anon_sym_PIPE_PIPE] = ACTIONS(3193), + [anon_sym_or] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_nil] = ACTIONS(3193), + [anon_sym_QMARK_DOT] = ACTIONS(3193), + [anon_sym_POUND_LBRACK] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_DOLLARif] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3193), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_BANGin] = ACTIONS(3193), + [anon_sym_match] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_lock] = ACTIONS(3193), + [anon_sym_rlock] = ACTIONS(3193), + [anon_sym_unsafe] = ACTIONS(3193), + [anon_sym_sql] = ACTIONS(3193), + [sym_int_literal] = ACTIONS(3193), + [sym_float_literal] = ACTIONS(3193), + [sym_rune_literal] = ACTIONS(3193), + [sym_pseudo_compile_time_identifier] = ACTIONS(3193), + [anon_sym_shared] = ACTIONS(3193), + [anon_sym_map_LBRACK] = ACTIONS(3193), + [anon_sym_chan] = ACTIONS(3193), + [anon_sym_thread] = ACTIONS(3193), + [anon_sym_atomic] = ACTIONS(3193), + [sym___double_quote] = ACTIONS(3193), + [sym___single_quote] = ACTIONS(3193), + [sym___c_double_quote] = ACTIONS(3193), + [sym___c_single_quote] = ACTIONS(3193), + [sym___r_double_quote] = ACTIONS(3193), + [sym___r_single_quote] = ACTIONS(3193), + }, + [1168] = { + [sym_identifier] = ACTIONS(3392), + [anon_sym_LF] = ACTIONS(3392), + [anon_sym_CR] = ACTIONS(3392), + [anon_sym_CR_LF] = ACTIONS(3392), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_as] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_COMMA] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_RPAREN] = ACTIONS(3392), + [anon_sym_PIPE] = ACTIONS(3392), + [anon_sym_fn] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_GT] = ACTIONS(3392), + [anon_sym_EQ_EQ] = ACTIONS(3392), + [anon_sym_BANG_EQ] = ACTIONS(3392), + [anon_sym_LT_EQ] = ACTIONS(3392), + [anon_sym_GT_EQ] = ACTIONS(3392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3392), + [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_mut] = ACTIONS(3392), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3392), + [anon_sym_json_DOTdecode] = ACTIONS(3392), + [anon_sym_LBRACK2] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_CARET] = ACTIONS(3392), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3392), + [anon_sym_LT_LT] = ACTIONS(3392), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_GT_GT_GT] = ACTIONS(3392), + [anon_sym_AMP_CARET] = ACTIONS(3392), + [anon_sym_AMP_AMP] = ACTIONS(3392), + [anon_sym_PIPE_PIPE] = ACTIONS(3392), + [anon_sym_or] = ACTIONS(3392), + [sym_none] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_nil] = ACTIONS(3392), + [anon_sym_QMARK_DOT] = ACTIONS(3392), + [anon_sym_POUND_LBRACK] = ACTIONS(3392), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_DOLLARif] = ACTIONS(3392), + [anon_sym_is] = ACTIONS(3392), + [anon_sym_BANGis] = ACTIONS(3392), + [anon_sym_in] = ACTIONS(3392), + [anon_sym_BANGin] = ACTIONS(3392), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_select] = ACTIONS(3392), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3392), + [anon_sym_sql] = ACTIONS(3392), + [sym_int_literal] = ACTIONS(3392), + [sym_float_literal] = ACTIONS(3392), + [sym_rune_literal] = ACTIONS(3392), + [sym_pseudo_compile_time_identifier] = ACTIONS(3392), + [anon_sym_shared] = ACTIONS(3392), + [anon_sym_map_LBRACK] = ACTIONS(3392), + [anon_sym_chan] = ACTIONS(3392), + [anon_sym_thread] = ACTIONS(3392), + [anon_sym_atomic] = ACTIONS(3392), + [sym___double_quote] = ACTIONS(3392), + [sym___single_quote] = ACTIONS(3392), + [sym___c_double_quote] = ACTIONS(3392), + [sym___c_single_quote] = ACTIONS(3392), + [sym___r_double_quote] = ACTIONS(3392), + [sym___r_single_quote] = ACTIONS(3392), + }, + [1169] = { + [sym_identifier] = ACTIONS(3388), + [anon_sym_LF] = ACTIONS(3388), + [anon_sym_CR] = ACTIONS(3388), + [anon_sym_CR_LF] = ACTIONS(3388), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_DOT] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_COMMA] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_RPAREN] = ACTIONS(3388), + [anon_sym_PIPE] = ACTIONS(3388), + [anon_sym_fn] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_PERCENT] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_GT] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3388), + [anon_sym_BANG_EQ] = ACTIONS(3388), + [anon_sym_LT_EQ] = ACTIONS(3388), + [anon_sym_GT_EQ] = ACTIONS(3388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3388), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_struct] = ACTIONS(3388), + [anon_sym_mut] = ACTIONS(3388), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_QMARK] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_go] = ACTIONS(3388), + [anon_sym_spawn] = ACTIONS(3388), + [anon_sym_json_DOTdecode] = ACTIONS(3388), + [anon_sym_LBRACK2] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_CARET] = ACTIONS(3388), + [anon_sym_AMP] = ACTIONS(3388), + [anon_sym_LT_DASH] = ACTIONS(3388), + [anon_sym_LT_LT] = ACTIONS(3388), + [anon_sym_GT_GT] = ACTIONS(3388), + [anon_sym_GT_GT_GT] = ACTIONS(3388), + [anon_sym_AMP_CARET] = ACTIONS(3388), + [anon_sym_AMP_AMP] = ACTIONS(3388), + [anon_sym_PIPE_PIPE] = ACTIONS(3388), + [anon_sym_or] = ACTIONS(3388), + [sym_none] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_nil] = ACTIONS(3388), + [anon_sym_QMARK_DOT] = ACTIONS(3388), + [anon_sym_POUND_LBRACK] = ACTIONS(3388), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_DOLLARif] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_BANGis] = ACTIONS(3388), + [anon_sym_in] = ACTIONS(3388), + [anon_sym_BANGin] = ACTIONS(3388), + [anon_sym_match] = ACTIONS(3388), + [anon_sym_select] = ACTIONS(3388), + [anon_sym_lock] = ACTIONS(3388), + [anon_sym_rlock] = ACTIONS(3388), + [anon_sym_unsafe] = ACTIONS(3388), + [anon_sym_sql] = ACTIONS(3388), + [sym_int_literal] = ACTIONS(3388), + [sym_float_literal] = ACTIONS(3388), + [sym_rune_literal] = ACTIONS(3388), + [sym_pseudo_compile_time_identifier] = ACTIONS(3388), + [anon_sym_shared] = ACTIONS(3388), + [anon_sym_map_LBRACK] = ACTIONS(3388), + [anon_sym_chan] = ACTIONS(3388), + [anon_sym_thread] = ACTIONS(3388), + [anon_sym_atomic] = ACTIONS(3388), + [sym___double_quote] = ACTIONS(3388), + [sym___single_quote] = ACTIONS(3388), + [sym___c_double_quote] = ACTIONS(3388), + [sym___c_single_quote] = ACTIONS(3388), + [sym___r_double_quote] = ACTIONS(3388), + [sym___r_single_quote] = ACTIONS(3388), + }, + [1170] = { + [sym_identifier] = ACTIONS(3396), + [anon_sym_LF] = ACTIONS(3396), + [anon_sym_CR] = ACTIONS(3396), + [anon_sym_CR_LF] = ACTIONS(3396), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3396), + [anon_sym_DOT] = ACTIONS(3396), + [anon_sym_as] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_COMMA] = ACTIONS(3396), + [anon_sym_RBRACE] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_RPAREN] = ACTIONS(3396), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_fn] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3396), + [anon_sym_PERCENT] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3396), + [anon_sym_EQ_EQ] = ACTIONS(3396), + [anon_sym_BANG_EQ] = ACTIONS(3396), + [anon_sym_LT_EQ] = ACTIONS(3396), + [anon_sym_GT_EQ] = ACTIONS(3396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3396), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_mut] = ACTIONS(3396), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_QMARK] = ACTIONS(3396), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_go] = ACTIONS(3396), + [anon_sym_spawn] = ACTIONS(3396), + [anon_sym_json_DOTdecode] = ACTIONS(3396), + [anon_sym_LBRACK2] = ACTIONS(3396), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3396), + [anon_sym_LT_LT] = ACTIONS(3396), + [anon_sym_GT_GT] = ACTIONS(3396), + [anon_sym_GT_GT_GT] = ACTIONS(3396), + [anon_sym_AMP_CARET] = ACTIONS(3396), + [anon_sym_AMP_AMP] = ACTIONS(3396), + [anon_sym_PIPE_PIPE] = ACTIONS(3396), + [anon_sym_or] = ACTIONS(3396), + [sym_none] = ACTIONS(3396), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [sym_nil] = ACTIONS(3396), + [anon_sym_QMARK_DOT] = ACTIONS(3396), + [anon_sym_POUND_LBRACK] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_DOLLARif] = ACTIONS(3396), + [anon_sym_is] = ACTIONS(3396), + [anon_sym_BANGis] = ACTIONS(3396), + [anon_sym_in] = ACTIONS(3396), + [anon_sym_BANGin] = ACTIONS(3396), + [anon_sym_match] = ACTIONS(3396), + [anon_sym_select] = ACTIONS(3396), + [anon_sym_lock] = ACTIONS(3396), + [anon_sym_rlock] = ACTIONS(3396), + [anon_sym_unsafe] = ACTIONS(3396), + [anon_sym_sql] = ACTIONS(3396), + [sym_int_literal] = ACTIONS(3396), + [sym_float_literal] = ACTIONS(3396), + [sym_rune_literal] = ACTIONS(3396), + [sym_pseudo_compile_time_identifier] = ACTIONS(3396), + [anon_sym_shared] = ACTIONS(3396), + [anon_sym_map_LBRACK] = ACTIONS(3396), + [anon_sym_chan] = ACTIONS(3396), + [anon_sym_thread] = ACTIONS(3396), + [anon_sym_atomic] = ACTIONS(3396), + [sym___double_quote] = ACTIONS(3396), + [sym___single_quote] = ACTIONS(3396), + [sym___c_double_quote] = ACTIONS(3396), + [sym___c_single_quote] = ACTIONS(3396), + [sym___r_double_quote] = ACTIONS(3396), + [sym___r_single_quote] = ACTIONS(3396), + }, + [1171] = { + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(1946), + [sym_plain_type] = STATE(1959), + [sym__plain_type_without_special] = STATE(2017), + [sym_anon_struct_type] = STATE(2006), + [sym_multi_return_type] = STATE(2017), + [sym_result_type] = STATE(2017), + [sym_option_type] = STATE(2017), + [sym_qualified_type] = STATE(1946), + [sym_fixed_array_type] = STATE(2006), + [sym_array_type] = STATE(2006), + [sym_pointer_type] = STATE(2006), + [sym_wrong_pointer_type] = STATE(2006), + [sym_map_type] = STATE(2006), + [sym_channel_type] = STATE(2006), + [sym_shared_type] = STATE(2006), + [sym_thread_type] = STATE(2006), + [sym_atomic_type] = STATE(2006), + [sym_generic_type] = STATE(2006), + [sym_function_type] = STATE(2006), + [sym_identifier] = ACTIONS(3786), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3788), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3792), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(3796), + [anon_sym_BANG] = ACTIONS(3798), + [anon_sym_LBRACK2] = ACTIONS(3800), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(581), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_AMP_CARET_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_shared] = ACTIONS(3804), + [anon_sym_map_LBRACK] = ACTIONS(3806), + [anon_sym_chan] = ACTIONS(3808), + [anon_sym_thread] = ACTIONS(3810), + [anon_sym_atomic] = ACTIONS(3812), + }, + [1172] = { + [sym_identifier] = ACTIONS(3348), + [anon_sym_LF] = ACTIONS(3348), + [anon_sym_CR] = ACTIONS(3348), + [anon_sym_CR_LF] = ACTIONS(3348), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_DOT] = ACTIONS(3348), + [anon_sym_as] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_COMMA] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_RPAREN] = ACTIONS(3348), + [anon_sym_PIPE] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_PERCENT] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_GT] = ACTIONS(3348), + [anon_sym_EQ_EQ] = ACTIONS(3348), + [anon_sym_BANG_EQ] = ACTIONS(3348), + [anon_sym_LT_EQ] = ACTIONS(3348), + [anon_sym_GT_EQ] = ACTIONS(3348), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_struct] = ACTIONS(3348), + [anon_sym_mut] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [anon_sym_QMARK] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3348), + [anon_sym_json_DOTdecode] = ACTIONS(3348), + [anon_sym_LBRACK2] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_CARET] = ACTIONS(3348), + [anon_sym_AMP] = ACTIONS(3348), + [anon_sym_LT_DASH] = ACTIONS(3348), + [anon_sym_LT_LT] = ACTIONS(3348), + [anon_sym_GT_GT] = ACTIONS(3348), + [anon_sym_GT_GT_GT] = ACTIONS(3348), + [anon_sym_AMP_CARET] = ACTIONS(3348), + [anon_sym_AMP_AMP] = ACTIONS(3348), + [anon_sym_PIPE_PIPE] = ACTIONS(3348), + [anon_sym_or] = ACTIONS(3348), + [sym_none] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_nil] = ACTIONS(3348), + [anon_sym_QMARK_DOT] = ACTIONS(3348), + [anon_sym_POUND_LBRACK] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_DOLLARif] = ACTIONS(3348), + [anon_sym_is] = ACTIONS(3348), + [anon_sym_BANGis] = ACTIONS(3348), + [anon_sym_in] = ACTIONS(3348), + [anon_sym_BANGin] = ACTIONS(3348), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3348), + [anon_sym_lock] = ACTIONS(3348), + [anon_sym_rlock] = ACTIONS(3348), + [anon_sym_unsafe] = ACTIONS(3348), + [anon_sym_sql] = ACTIONS(3348), + [sym_int_literal] = ACTIONS(3348), + [sym_float_literal] = ACTIONS(3348), + [sym_rune_literal] = ACTIONS(3348), + [sym_pseudo_compile_time_identifier] = ACTIONS(3348), + [anon_sym_shared] = ACTIONS(3348), + [anon_sym_map_LBRACK] = ACTIONS(3348), + [anon_sym_chan] = ACTIONS(3348), + [anon_sym_thread] = ACTIONS(3348), + [anon_sym_atomic] = ACTIONS(3348), + [sym___double_quote] = ACTIONS(3348), + [sym___single_quote] = ACTIONS(3348), + [sym___c_double_quote] = ACTIONS(3348), + [sym___c_single_quote] = ACTIONS(3348), + [sym___r_double_quote] = ACTIONS(3348), + [sym___r_single_quote] = ACTIONS(3348), + }, + [1173] = { + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_BANG_EQ] = ACTIONS(3412), + [anon_sym_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_EQ] = ACTIONS(3412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_CARET] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3412), + [anon_sym_POUND_LBRACK] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), + }, + [1174] = { + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_COMMA] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_RPAREN] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2649), + [anon_sym_BANG_EQ] = ACTIONS(2649), + [anon_sym_LT_EQ] = ACTIONS(2649), + [anon_sym_GT_EQ] = ACTIONS(2649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2649), + [anon_sym_DASH_DASH] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [anon_sym_LT_LT] = ACTIONS(2649), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2649), + [anon_sym_AMP_CARET] = ACTIONS(2649), + [anon_sym_AMP_AMP] = ACTIONS(2649), + [anon_sym_PIPE_PIPE] = ACTIONS(2649), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2649), + [anon_sym_POUND_LBRACK] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2649), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [1175] = { + [sym_identifier] = ACTIONS(2997), + [anon_sym_LF] = ACTIONS(2997), + [anon_sym_CR] = ACTIONS(2997), + [anon_sym_CR_LF] = ACTIONS(2997), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_DOT] = ACTIONS(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_RPAREN] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2997), + [anon_sym_BANG_EQ] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2997), + [anon_sym_DASH_DASH] = ACTIONS(2997), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2997), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2997), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2997), + [anon_sym_AMP_CARET] = ACTIONS(2997), + [anon_sym_AMP_AMP] = ACTIONS(2997), + [anon_sym_PIPE_PIPE] = ACTIONS(2997), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2997), + [anon_sym_POUND_LBRACK] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2997), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2997), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), + [sym_rune_literal] = ACTIONS(2997), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2997), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2997), + [sym___single_quote] = ACTIONS(2997), + [sym___c_double_quote] = ACTIONS(2997), + [sym___c_single_quote] = ACTIONS(2997), + [sym___r_double_quote] = ACTIONS(2997), + [sym___r_single_quote] = ACTIONS(2997), + }, + [1176] = { + [sym_identifier] = ACTIONS(2727), + [anon_sym_LF] = ACTIONS(2727), + [anon_sym_CR] = ACTIONS(2727), + [anon_sym_CR_LF] = ACTIONS(2727), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2727), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_COMMA] = ACTIONS(2727), + [anon_sym_RBRACE] = ACTIONS(2727), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_RPAREN] = ACTIONS(2727), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2727), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2727), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2727), + [anon_sym_POUND_LBRACK] = ACTIONS(2727), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2727), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2727), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2727), + [sym_rune_literal] = ACTIONS(2727), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2727), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2727), + [sym___single_quote] = ACTIONS(2727), + [sym___c_double_quote] = ACTIONS(2727), + [sym___c_single_quote] = ACTIONS(2727), + [sym___r_double_quote] = ACTIONS(2727), + [sym___r_single_quote] = ACTIONS(2727), + }, + [1177] = { + [sym_identifier] = ACTIONS(3283), + [anon_sym_LF] = ACTIONS(3283), + [anon_sym_CR] = ACTIONS(3283), + [anon_sym_CR_LF] = ACTIONS(3283), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_DOT] = ACTIONS(3283), + [anon_sym_as] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_COMMA] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_RPAREN] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_fn] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_PERCENT] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_GT] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3283), + [anon_sym_BANG_EQ] = ACTIONS(3283), + [anon_sym_LT_EQ] = ACTIONS(3283), + [anon_sym_GT_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_mut] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [anon_sym_QMARK] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_go] = ACTIONS(3283), + [anon_sym_spawn] = ACTIONS(3283), + [anon_sym_json_DOTdecode] = ACTIONS(3283), + [anon_sym_LBRACK2] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3283), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_LT_DASH] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(3283), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_GT_GT_GT] = ACTIONS(3283), + [anon_sym_AMP_CARET] = ACTIONS(3283), + [anon_sym_AMP_AMP] = ACTIONS(3283), + [anon_sym_PIPE_PIPE] = ACTIONS(3283), + [anon_sym_or] = ACTIONS(3283), + [sym_none] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_nil] = ACTIONS(3283), + [anon_sym_QMARK_DOT] = ACTIONS(3283), + [anon_sym_POUND_LBRACK] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_DOLLARif] = ACTIONS(3283), + [anon_sym_is] = ACTIONS(3283), + [anon_sym_BANGis] = ACTIONS(3283), + [anon_sym_in] = ACTIONS(3283), + [anon_sym_BANGin] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_lock] = ACTIONS(3283), + [anon_sym_rlock] = ACTIONS(3283), + [anon_sym_unsafe] = ACTIONS(3283), + [anon_sym_sql] = ACTIONS(3283), + [sym_int_literal] = ACTIONS(3283), + [sym_float_literal] = ACTIONS(3283), + [sym_rune_literal] = ACTIONS(3283), + [sym_pseudo_compile_time_identifier] = ACTIONS(3283), + [anon_sym_shared] = ACTIONS(3283), + [anon_sym_map_LBRACK] = ACTIONS(3283), + [anon_sym_chan] = ACTIONS(3283), + [anon_sym_thread] = ACTIONS(3283), + [anon_sym_atomic] = ACTIONS(3283), + [sym___double_quote] = ACTIONS(3283), + [sym___single_quote] = ACTIONS(3283), + [sym___c_double_quote] = ACTIONS(3283), + [sym___c_single_quote] = ACTIONS(3283), + [sym___r_double_quote] = ACTIONS(3283), + [sym___r_single_quote] = ACTIONS(3283), + }, + [1178] = { + [sym_identifier] = ACTIONS(3440), + [anon_sym_LF] = ACTIONS(3440), + [anon_sym_CR] = ACTIONS(3440), + [anon_sym_CR_LF] = ACTIONS(3440), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_DOT] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_COMMA] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_RPAREN] = ACTIONS(3440), + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_fn] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3440), + [anon_sym_EQ_EQ] = ACTIONS(3440), + [anon_sym_BANG_EQ] = ACTIONS(3440), + [anon_sym_LT_EQ] = ACTIONS(3440), + [anon_sym_GT_EQ] = ACTIONS(3440), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3440), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3440), + [anon_sym_mut] = ACTIONS(3440), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_QMARK] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_go] = ACTIONS(3440), + [anon_sym_spawn] = ACTIONS(3440), + [anon_sym_json_DOTdecode] = ACTIONS(3440), + [anon_sym_LBRACK2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_CARET] = ACTIONS(3440), + [anon_sym_AMP] = ACTIONS(3440), + [anon_sym_LT_DASH] = ACTIONS(3440), + [anon_sym_LT_LT] = ACTIONS(3440), + [anon_sym_GT_GT] = ACTIONS(3440), + [anon_sym_GT_GT_GT] = ACTIONS(3440), + [anon_sym_AMP_CARET] = ACTIONS(3440), + [anon_sym_AMP_AMP] = ACTIONS(3440), + [anon_sym_PIPE_PIPE] = ACTIONS(3440), + [anon_sym_or] = ACTIONS(3440), + [sym_none] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_nil] = ACTIONS(3440), + [anon_sym_QMARK_DOT] = ACTIONS(3440), + [anon_sym_POUND_LBRACK] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_DOLLARif] = ACTIONS(3440), + [anon_sym_is] = ACTIONS(3440), + [anon_sym_BANGis] = ACTIONS(3440), + [anon_sym_in] = ACTIONS(3440), + [anon_sym_BANGin] = ACTIONS(3440), + [anon_sym_match] = ACTIONS(3440), + [anon_sym_select] = ACTIONS(3440), + [anon_sym_lock] = ACTIONS(3440), + [anon_sym_rlock] = ACTIONS(3440), + [anon_sym_unsafe] = ACTIONS(3440), + [anon_sym_sql] = ACTIONS(3440), + [sym_int_literal] = ACTIONS(3440), + [sym_float_literal] = ACTIONS(3440), + [sym_rune_literal] = ACTIONS(3440), + [sym_pseudo_compile_time_identifier] = ACTIONS(3440), + [anon_sym_shared] = ACTIONS(3440), + [anon_sym_map_LBRACK] = ACTIONS(3440), + [anon_sym_chan] = ACTIONS(3440), + [anon_sym_thread] = ACTIONS(3440), + [anon_sym_atomic] = ACTIONS(3440), + [sym___double_quote] = ACTIONS(3440), + [sym___single_quote] = ACTIONS(3440), + [sym___c_double_quote] = ACTIONS(3440), + [sym___c_single_quote] = ACTIONS(3440), + [sym___r_double_quote] = ACTIONS(3440), + [sym___r_single_quote] = ACTIONS(3440), + }, + [1179] = { + [sym_identifier] = ACTIONS(2993), + [anon_sym_LF] = ACTIONS(2993), + [anon_sym_CR] = ACTIONS(2993), + [anon_sym_CR_LF] = ACTIONS(2993), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2993), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_RPAREN] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2993), + [anon_sym_BANG_EQ] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2993), + [anon_sym_DASH_DASH] = ACTIONS(2993), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2993), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2993), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2993), + [anon_sym_AMP_CARET] = ACTIONS(2993), + [anon_sym_AMP_AMP] = ACTIONS(2993), + [anon_sym_PIPE_PIPE] = ACTIONS(2993), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2993), + [anon_sym_POUND_LBRACK] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2993), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2993), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), + [sym_rune_literal] = ACTIONS(2993), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2993), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2993), + [sym___single_quote] = ACTIONS(2993), + [sym___c_double_quote] = ACTIONS(2993), + [sym___c_single_quote] = ACTIONS(2993), + [sym___r_double_quote] = ACTIONS(2993), + [sym___r_single_quote] = ACTIONS(2993), + }, + [1180] = { + [sym_identifier] = ACTIONS(3209), + [anon_sym_LF] = ACTIONS(3209), + [anon_sym_CR] = ACTIONS(3209), + [anon_sym_CR_LF] = ACTIONS(3209), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_DOT] = ACTIONS(3209), + [anon_sym_as] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_COMMA] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_RPAREN] = ACTIONS(3209), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_fn] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_SLASH] = ACTIONS(3209), + [anon_sym_PERCENT] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT_EQ] = ACTIONS(3209), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3209), + [anon_sym_mut] = ACTIONS(3209), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_QMARK] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_go] = ACTIONS(3209), + [anon_sym_spawn] = ACTIONS(3209), + [anon_sym_json_DOTdecode] = ACTIONS(3209), + [anon_sym_LBRACK2] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_LT_DASH] = ACTIONS(3209), + [anon_sym_LT_LT] = ACTIONS(3209), + [anon_sym_GT_GT] = ACTIONS(3209), + [anon_sym_GT_GT_GT] = ACTIONS(3209), + [anon_sym_AMP_CARET] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_PIPE_PIPE] = ACTIONS(3209), + [anon_sym_or] = ACTIONS(3209), + [sym_none] = ACTIONS(3209), + [sym_true] = ACTIONS(3209), + [sym_false] = ACTIONS(3209), + [sym_nil] = ACTIONS(3209), + [anon_sym_QMARK_DOT] = ACTIONS(3209), + [anon_sym_POUND_LBRACK] = ACTIONS(3209), + [anon_sym_if] = ACTIONS(3209), + [anon_sym_DOLLARif] = ACTIONS(3209), + [anon_sym_is] = ACTIONS(3209), + [anon_sym_BANGis] = ACTIONS(3209), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_BANGin] = ACTIONS(3209), + [anon_sym_match] = ACTIONS(3209), + [anon_sym_select] = ACTIONS(3209), + [anon_sym_lock] = ACTIONS(3209), + [anon_sym_rlock] = ACTIONS(3209), + [anon_sym_unsafe] = ACTIONS(3209), + [anon_sym_sql] = ACTIONS(3209), + [sym_int_literal] = ACTIONS(3209), + [sym_float_literal] = ACTIONS(3209), + [sym_rune_literal] = ACTIONS(3209), + [sym_pseudo_compile_time_identifier] = ACTIONS(3209), + [anon_sym_shared] = ACTIONS(3209), + [anon_sym_map_LBRACK] = ACTIONS(3209), + [anon_sym_chan] = ACTIONS(3209), + [anon_sym_thread] = ACTIONS(3209), + [anon_sym_atomic] = ACTIONS(3209), + [sym___double_quote] = ACTIONS(3209), + [sym___single_quote] = ACTIONS(3209), + [sym___c_double_quote] = ACTIONS(3209), + [sym___c_single_quote] = ACTIONS(3209), + [sym___r_double_quote] = ACTIONS(3209), + [sym___r_single_quote] = ACTIONS(3209), + }, + [1181] = { + [sym_identifier] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_CR] = ACTIONS(3328), + [anon_sym_CR_LF] = ACTIONS(3328), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_COMMA] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_RPAREN] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3328), + [anon_sym_BANG_EQ] = ACTIONS(3328), + [anon_sym_LT_EQ] = ACTIONS(3328), + [anon_sym_GT_EQ] = ACTIONS(3328), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3328), + [anon_sym_LT_LT] = ACTIONS(3328), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3328), + [anon_sym_AMP_CARET] = ACTIONS(3328), + [anon_sym_AMP_AMP] = ACTIONS(3328), + [anon_sym_PIPE_PIPE] = ACTIONS(3328), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3328), + [anon_sym_POUND_LBRACK] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3328), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + [sym___double_quote] = ACTIONS(3328), + [sym___single_quote] = ACTIONS(3328), + [sym___c_double_quote] = ACTIONS(3328), + [sym___c_single_quote] = ACTIONS(3328), + [sym___r_double_quote] = ACTIONS(3328), + [sym___r_single_quote] = ACTIONS(3328), + }, + [1182] = { + [sym_identifier] = ACTIONS(2989), + [anon_sym_LF] = ACTIONS(2989), + [anon_sym_CR] = ACTIONS(2989), + [anon_sym_CR_LF] = ACTIONS(2989), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_RPAREN] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2989), + [anon_sym_BANG_EQ] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2989), + [anon_sym_DASH_DASH] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2989), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2989), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2989), + [anon_sym_AMP_CARET] = ACTIONS(2989), + [anon_sym_AMP_AMP] = ACTIONS(2989), + [anon_sym_PIPE_PIPE] = ACTIONS(2989), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2989), + [anon_sym_POUND_LBRACK] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2989), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2989), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), + [sym_rune_literal] = ACTIONS(2989), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2989), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2989), + [sym___single_quote] = ACTIONS(2989), + [sym___c_double_quote] = ACTIONS(2989), + [sym___c_single_quote] = ACTIONS(2989), + [sym___r_double_quote] = ACTIONS(2989), + [sym___r_single_quote] = ACTIONS(2989), + }, + [1183] = { + [sym_identifier] = ACTIONS(3332), + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_CR] = ACTIONS(3332), + [anon_sym_CR_LF] = ACTIONS(3332), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_as] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_COMMA] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_RPAREN] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_EQ_EQ] = ACTIONS(3332), + [anon_sym_BANG_EQ] = ACTIONS(3332), + [anon_sym_LT_EQ] = ACTIONS(3332), + [anon_sym_GT_EQ] = ACTIONS(3332), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3332), + [anon_sym_LT_LT] = ACTIONS(3332), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3332), + [anon_sym_AMP_CARET] = ACTIONS(3332), + [anon_sym_AMP_AMP] = ACTIONS(3332), + [anon_sym_PIPE_PIPE] = ACTIONS(3332), + [anon_sym_or] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_QMARK_DOT] = ACTIONS(3332), + [anon_sym_POUND_LBRACK] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_is] = ACTIONS(3332), + [anon_sym_BANGis] = ACTIONS(3332), + [anon_sym_in] = ACTIONS(3332), + [anon_sym_BANGin] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3332), + [sym_rune_literal] = ACTIONS(3332), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3332), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), + [sym___double_quote] = ACTIONS(3332), + [sym___single_quote] = ACTIONS(3332), + [sym___c_double_quote] = ACTIONS(3332), + [sym___c_single_quote] = ACTIONS(3332), + [sym___r_double_quote] = ACTIONS(3332), + [sym___r_single_quote] = ACTIONS(3332), + }, + [1184] = { + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_COMMA] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_RPAREN] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3336), + [anon_sym_BANG_EQ] = ACTIONS(3336), + [anon_sym_LT_EQ] = ACTIONS(3336), + [anon_sym_GT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3336), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [anon_sym_LT_LT] = ACTIONS(3336), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3336), + [anon_sym_AMP_CARET] = ACTIONS(3336), + [anon_sym_AMP_AMP] = ACTIONS(3336), + [anon_sym_PIPE_PIPE] = ACTIONS(3336), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3336), + [anon_sym_POUND_LBRACK] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3336), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), + [sym___double_quote] = ACTIONS(3336), + [sym___single_quote] = ACTIONS(3336), + [sym___c_double_quote] = ACTIONS(3336), + [sym___c_single_quote] = ACTIONS(3336), + [sym___r_double_quote] = ACTIONS(3336), + [sym___r_single_quote] = ACTIONS(3336), + }, + [1185] = { + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_COMMA] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_RPAREN] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3340), + [anon_sym_BANG_EQ] = ACTIONS(3340), + [anon_sym_LT_EQ] = ACTIONS(3340), + [anon_sym_GT_EQ] = ACTIONS(3340), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [anon_sym_LT_LT] = ACTIONS(3340), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3340), + [anon_sym_AMP_CARET] = ACTIONS(3340), + [anon_sym_AMP_AMP] = ACTIONS(3340), + [anon_sym_PIPE_PIPE] = ACTIONS(3340), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3340), + [anon_sym_POUND_LBRACK] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3340), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [sym___double_quote] = ACTIONS(3340), + [sym___single_quote] = ACTIONS(3340), + [sym___c_double_quote] = ACTIONS(3340), + [sym___c_single_quote] = ACTIONS(3340), + [sym___r_double_quote] = ACTIONS(3340), + [sym___r_single_quote] = ACTIONS(3340), + }, + [1186] = { + [sym_identifier] = ACTIONS(3448), + [anon_sym_LF] = ACTIONS(3448), + [anon_sym_CR] = ACTIONS(3448), + [anon_sym_CR_LF] = ACTIONS(3448), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_DOT] = ACTIONS(3448), + [anon_sym_as] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_COMMA] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_RPAREN] = ACTIONS(3448), + [anon_sym_PIPE] = ACTIONS(3448), + [anon_sym_fn] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_GT] = ACTIONS(3448), + [anon_sym_EQ_EQ] = ACTIONS(3448), + [anon_sym_BANG_EQ] = ACTIONS(3448), + [anon_sym_LT_EQ] = ACTIONS(3448), + [anon_sym_GT_EQ] = ACTIONS(3448), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3448), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_mut] = ACTIONS(3448), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_QMARK] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_go] = ACTIONS(3448), + [anon_sym_spawn] = ACTIONS(3448), + [anon_sym_json_DOTdecode] = ACTIONS(3448), + [anon_sym_LBRACK2] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_CARET] = ACTIONS(3448), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT_DASH] = ACTIONS(3448), + [anon_sym_LT_LT] = ACTIONS(3448), + [anon_sym_GT_GT] = ACTIONS(3448), + [anon_sym_GT_GT_GT] = ACTIONS(3448), + [anon_sym_AMP_CARET] = ACTIONS(3448), + [anon_sym_AMP_AMP] = ACTIONS(3448), + [anon_sym_PIPE_PIPE] = ACTIONS(3448), + [anon_sym_or] = ACTIONS(3448), + [sym_none] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_nil] = ACTIONS(3448), + [anon_sym_QMARK_DOT] = ACTIONS(3448), + [anon_sym_POUND_LBRACK] = ACTIONS(3448), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_DOLLARif] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3448), + [anon_sym_BANGis] = ACTIONS(3448), + [anon_sym_in] = ACTIONS(3448), + [anon_sym_BANGin] = ACTIONS(3448), + [anon_sym_match] = ACTIONS(3448), + [anon_sym_select] = ACTIONS(3448), + [anon_sym_lock] = ACTIONS(3448), + [anon_sym_rlock] = ACTIONS(3448), + [anon_sym_unsafe] = ACTIONS(3448), + [anon_sym_sql] = ACTIONS(3448), + [sym_int_literal] = ACTIONS(3448), + [sym_float_literal] = ACTIONS(3448), + [sym_rune_literal] = ACTIONS(3448), + [sym_pseudo_compile_time_identifier] = ACTIONS(3448), + [anon_sym_shared] = ACTIONS(3448), + [anon_sym_map_LBRACK] = ACTIONS(3448), + [anon_sym_chan] = ACTIONS(3448), + [anon_sym_thread] = ACTIONS(3448), + [anon_sym_atomic] = ACTIONS(3448), + [sym___double_quote] = ACTIONS(3448), + [sym___single_quote] = ACTIONS(3448), + [sym___c_double_quote] = ACTIONS(3448), + [sym___c_single_quote] = ACTIONS(3448), + [sym___r_double_quote] = ACTIONS(3448), + [sym___r_single_quote] = ACTIONS(3448), + }, + [1187] = { + [sym_identifier] = ACTIONS(3408), + [anon_sym_LF] = ACTIONS(3408), + [anon_sym_CR] = ACTIONS(3408), + [anon_sym_CR_LF] = ACTIONS(3408), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_DOT] = ACTIONS(3408), + [anon_sym_as] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_COMMA] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_RPAREN] = ACTIONS(3408), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_fn] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_PERCENT] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_GT] = ACTIONS(3408), + [anon_sym_EQ_EQ] = ACTIONS(3408), + [anon_sym_BANG_EQ] = ACTIONS(3408), + [anon_sym_LT_EQ] = ACTIONS(3408), + [anon_sym_GT_EQ] = ACTIONS(3408), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3408), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_mut] = ACTIONS(3408), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_QMARK] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3408), + [anon_sym_spawn] = ACTIONS(3408), + [anon_sym_json_DOTdecode] = ACTIONS(3408), + [anon_sym_LBRACK2] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_CARET] = ACTIONS(3408), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_LT_DASH] = ACTIONS(3408), + [anon_sym_LT_LT] = ACTIONS(3408), + [anon_sym_GT_GT] = ACTIONS(3408), + [anon_sym_GT_GT_GT] = ACTIONS(3408), + [anon_sym_AMP_CARET] = ACTIONS(3408), + [anon_sym_AMP_AMP] = ACTIONS(3408), + [anon_sym_PIPE_PIPE] = ACTIONS(3408), + [anon_sym_or] = ACTIONS(3408), + [sym_none] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_nil] = ACTIONS(3408), + [anon_sym_QMARK_DOT] = ACTIONS(3408), + [anon_sym_POUND_LBRACK] = ACTIONS(3408), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_DOLLARif] = ACTIONS(3408), + [anon_sym_is] = ACTIONS(3408), + [anon_sym_BANGis] = ACTIONS(3408), + [anon_sym_in] = ACTIONS(3408), + [anon_sym_BANGin] = ACTIONS(3408), + [anon_sym_match] = ACTIONS(3408), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_sql] = ACTIONS(3408), + [sym_int_literal] = ACTIONS(3408), + [sym_float_literal] = ACTIONS(3408), + [sym_rune_literal] = ACTIONS(3408), + [sym_pseudo_compile_time_identifier] = ACTIONS(3408), + [anon_sym_shared] = ACTIONS(3408), + [anon_sym_map_LBRACK] = ACTIONS(3408), + [anon_sym_chan] = ACTIONS(3408), + [anon_sym_thread] = ACTIONS(3408), + [anon_sym_atomic] = ACTIONS(3408), + [sym___double_quote] = ACTIONS(3408), + [sym___single_quote] = ACTIONS(3408), + [sym___c_double_quote] = ACTIONS(3408), + [sym___c_single_quote] = ACTIONS(3408), + [sym___r_double_quote] = ACTIONS(3408), + [sym___r_single_quote] = ACTIONS(3408), + }, + [1188] = { + [sym_identifier] = ACTIONS(3189), + [anon_sym_LF] = ACTIONS(3189), + [anon_sym_CR] = ACTIONS(3189), + [anon_sym_CR_LF] = ACTIONS(3189), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_DOT] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_COMMA] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_RPAREN] = ACTIONS(3189), + [anon_sym_PIPE] = ACTIONS(3189), + [anon_sym_fn] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_PERCENT] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3189), + [anon_sym_BANG_EQ] = ACTIONS(3189), + [anon_sym_LT_EQ] = ACTIONS(3189), + [anon_sym_GT_EQ] = ACTIONS(3189), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_mut] = ACTIONS(3189), + [anon_sym_PLUS_PLUS] = ACTIONS(3189), + [anon_sym_DASH_DASH] = ACTIONS(3189), + [anon_sym_QMARK] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_go] = ACTIONS(3189), + [anon_sym_spawn] = ACTIONS(3189), + [anon_sym_json_DOTdecode] = ACTIONS(3189), + [anon_sym_LBRACK2] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3189), + [anon_sym_CARET] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT_DASH] = ACTIONS(3189), + [anon_sym_LT_LT] = ACTIONS(3189), + [anon_sym_GT_GT] = ACTIONS(3189), + [anon_sym_GT_GT_GT] = ACTIONS(3189), + [anon_sym_AMP_CARET] = ACTIONS(3189), + [anon_sym_AMP_AMP] = ACTIONS(3189), + [anon_sym_PIPE_PIPE] = ACTIONS(3189), + [anon_sym_or] = ACTIONS(3189), + [sym_none] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_nil] = ACTIONS(3189), + [anon_sym_QMARK_DOT] = ACTIONS(3189), + [anon_sym_POUND_LBRACK] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_DOLLARif] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_BANGis] = ACTIONS(3189), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_BANGin] = ACTIONS(3189), + [anon_sym_match] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_lock] = ACTIONS(3189), + [anon_sym_rlock] = ACTIONS(3189), + [anon_sym_unsafe] = ACTIONS(3189), + [anon_sym_sql] = ACTIONS(3189), + [sym_int_literal] = ACTIONS(3189), + [sym_float_literal] = ACTIONS(3189), + [sym_rune_literal] = ACTIONS(3189), + [sym_pseudo_compile_time_identifier] = ACTIONS(3189), + [anon_sym_shared] = ACTIONS(3189), + [anon_sym_map_LBRACK] = ACTIONS(3189), + [anon_sym_chan] = ACTIONS(3189), + [anon_sym_thread] = ACTIONS(3189), + [anon_sym_atomic] = ACTIONS(3189), + [sym___double_quote] = ACTIONS(3189), + [sym___single_quote] = ACTIONS(3189), + [sym___c_double_quote] = ACTIONS(3189), + [sym___c_single_quote] = ACTIONS(3189), + [sym___r_double_quote] = ACTIONS(3189), + [sym___r_single_quote] = ACTIONS(3189), + }, + [1189] = { + [sym_identifier] = ACTIONS(3049), + [anon_sym_LF] = ACTIONS(3049), + [anon_sym_CR] = ACTIONS(3049), + [anon_sym_CR_LF] = ACTIONS(3049), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_COMMA] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_RPAREN] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3049), + [anon_sym_BANG_EQ] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3049), + [anon_sym_DASH_DASH] = ACTIONS(3049), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3049), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3049), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3049), + [anon_sym_AMP_CARET] = ACTIONS(3049), + [anon_sym_AMP_AMP] = ACTIONS(3049), + [anon_sym_PIPE_PIPE] = ACTIONS(3049), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3049), + [anon_sym_POUND_LBRACK] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3049), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3049), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), + [sym_rune_literal] = ACTIONS(3049), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3049), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [sym___double_quote] = ACTIONS(3049), + [sym___single_quote] = ACTIONS(3049), + [sym___c_double_quote] = ACTIONS(3049), + [sym___c_single_quote] = ACTIONS(3049), + [sym___r_double_quote] = ACTIONS(3049), + [sym___r_single_quote] = ACTIONS(3049), + }, + [1190] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3814), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3750), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), [anon_sym_GT_GT_GT] = ACTIONS(563), [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(563), - [anon_sym_POUND_LBRACK] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_STAR_EQ] = ACTIONS(563), - [anon_sym_SLASH_EQ] = ACTIONS(563), - [anon_sym_PERCENT_EQ] = ACTIONS(563), - [anon_sym_LT_LT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_EQ] = ACTIONS(563), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(563), - [anon_sym_AMP_EQ] = ACTIONS(563), - [anon_sym_AMP_CARET_EQ] = ACTIONS(563), - [anon_sym_PLUS_EQ] = ACTIONS(563), - [anon_sym_DASH_EQ] = ACTIONS(563), - [anon_sym_PIPE_EQ] = ACTIONS(563), - [anon_sym_CARET_EQ] = ACTIONS(563), - [anon_sym_COLON_EQ] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3752), - [anon_sym_map_LBRACK] = ACTIONS(3754), - [anon_sym_chan] = ACTIONS(3756), - [anon_sym_thread] = ACTIONS(3758), - [anon_sym_atomic] = ACTIONS(3760), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_AMP_CARET_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_COLON_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1151] = { - [sym_else_branch] = STATE(1198), - [sym_identifier] = ACTIONS(2515), - [anon_sym_LF] = ACTIONS(2515), - [anon_sym_CR] = ACTIONS(2515), - [anon_sym_CR_LF] = ACTIONS(2515), + [1191] = { + [sym_identifier] = ACTIONS(3400), + [anon_sym_LF] = ACTIONS(3400), + [anon_sym_CR] = ACTIONS(3400), + [anon_sym_CR_LF] = ACTIONS(3400), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2515), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_COMMA] = ACTIONS(2515), - [anon_sym_RBRACE] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_RPAREN] = ACTIONS(2515), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2515), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2515), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), - [anon_sym_EQ_EQ] = ACTIONS(2515), - [anon_sym_BANG_EQ] = ACTIONS(2515), - [anon_sym_LT_EQ] = ACTIONS(2515), - [anon_sym_GT_EQ] = ACTIONS(2515), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2515), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_mut] = ACTIONS(2515), - [anon_sym_PLUS_PLUS] = ACTIONS(2515), - [anon_sym_DASH_DASH] = ACTIONS(2515), - [anon_sym_QMARK] = ACTIONS(2515), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_go] = ACTIONS(2515), - [anon_sym_spawn] = ACTIONS(2515), - [anon_sym_json_DOTdecode] = ACTIONS(2515), - [anon_sym_LBRACK2] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2515), - [anon_sym_CARET] = ACTIONS(2515), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_LT_DASH] = ACTIONS(2515), - [anon_sym_LT_LT] = ACTIONS(2515), - [anon_sym_GT_GT] = ACTIONS(2515), - [anon_sym_GT_GT_GT] = ACTIONS(2515), - [anon_sym_AMP_CARET] = ACTIONS(2515), - [anon_sym_AMP_AMP] = ACTIONS(2515), - [anon_sym_PIPE_PIPE] = ACTIONS(2515), - [anon_sym_or] = ACTIONS(2515), - [sym_none] = ACTIONS(2515), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_nil] = ACTIONS(2515), - [anon_sym_QMARK_DOT] = ACTIONS(2515), - [anon_sym_POUND_LBRACK] = ACTIONS(2515), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(3764), - [anon_sym_DOLLARif] = ACTIONS(2515), - [anon_sym_is] = ACTIONS(2515), - [anon_sym_BANGis] = ACTIONS(2515), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_BANGin] = ACTIONS(2515), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_select] = ACTIONS(2515), - [anon_sym_lock] = ACTIONS(2515), - [anon_sym_rlock] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_sql] = ACTIONS(2515), - [sym_int_literal] = ACTIONS(2515), - [sym_float_literal] = ACTIONS(2515), - [sym_rune_literal] = ACTIONS(2515), - [sym_pseudo_compile_time_identifier] = ACTIONS(2515), - [anon_sym_shared] = ACTIONS(2515), - [anon_sym_map_LBRACK] = ACTIONS(2515), - [anon_sym_chan] = ACTIONS(2515), - [anon_sym_thread] = ACTIONS(2515), - [anon_sym_atomic] = ACTIONS(2515), - [sym___double_quote] = ACTIONS(2515), - [sym___single_quote] = ACTIONS(2515), - [sym___c_double_quote] = ACTIONS(2515), - [sym___c_single_quote] = ACTIONS(2515), - [sym___r_double_quote] = ACTIONS(2515), - [sym___r_single_quote] = ACTIONS(2515), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_DOT] = ACTIONS(3400), + [anon_sym_as] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_COMMA] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_RPAREN] = ACTIONS(3400), + [anon_sym_PIPE] = ACTIONS(3400), + [anon_sym_fn] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_STAR] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_PERCENT] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_GT] = ACTIONS(3400), + [anon_sym_EQ_EQ] = ACTIONS(3400), + [anon_sym_BANG_EQ] = ACTIONS(3400), + [anon_sym_LT_EQ] = ACTIONS(3400), + [anon_sym_GT_EQ] = ACTIONS(3400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3400), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_struct] = ACTIONS(3400), + [anon_sym_mut] = ACTIONS(3400), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_QMARK] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3400), + [anon_sym_json_DOTdecode] = ACTIONS(3400), + [anon_sym_LBRACK2] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_CARET] = ACTIONS(3400), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_LT_DASH] = ACTIONS(3400), + [anon_sym_LT_LT] = ACTIONS(3400), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_GT_GT_GT] = ACTIONS(3400), + [anon_sym_AMP_CARET] = ACTIONS(3400), + [anon_sym_AMP_AMP] = ACTIONS(3400), + [anon_sym_PIPE_PIPE] = ACTIONS(3400), + [anon_sym_or] = ACTIONS(3400), + [sym_none] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_nil] = ACTIONS(3400), + [anon_sym_QMARK_DOT] = ACTIONS(3400), + [anon_sym_POUND_LBRACK] = ACTIONS(3400), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_DOLLARif] = ACTIONS(3400), + [anon_sym_is] = ACTIONS(3400), + [anon_sym_BANGis] = ACTIONS(3400), + [anon_sym_in] = ACTIONS(3400), + [anon_sym_BANGin] = ACTIONS(3400), + [anon_sym_match] = ACTIONS(3400), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3400), + [anon_sym_rlock] = ACTIONS(3400), + [anon_sym_unsafe] = ACTIONS(3400), + [anon_sym_sql] = ACTIONS(3400), + [sym_int_literal] = ACTIONS(3400), + [sym_float_literal] = ACTIONS(3400), + [sym_rune_literal] = ACTIONS(3400), + [sym_pseudo_compile_time_identifier] = ACTIONS(3400), + [anon_sym_shared] = ACTIONS(3400), + [anon_sym_map_LBRACK] = ACTIONS(3400), + [anon_sym_chan] = ACTIONS(3400), + [anon_sym_thread] = ACTIONS(3400), + [anon_sym_atomic] = ACTIONS(3400), + [sym___double_quote] = ACTIONS(3400), + [sym___single_quote] = ACTIONS(3400), + [sym___c_double_quote] = ACTIONS(3400), + [sym___c_single_quote] = ACTIONS(3400), + [sym___r_double_quote] = ACTIONS(3400), + [sym___r_single_quote] = ACTIONS(3400), }, - [1152] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(3766), - [anon_sym_LF] = ACTIONS(3766), - [anon_sym_CR] = ACTIONS(3766), - [anon_sym_CR_LF] = ACTIONS(3766), + [1192] = { + [sym_identifier] = ACTIONS(2911), + [anon_sym_LF] = ACTIONS(2911), + [anon_sym_CR] = ACTIONS(2911), + [anon_sym_CR_LF] = ACTIONS(2911), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3766), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3766), - [anon_sym_COMMA] = ACTIONS(3766), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_RPAREN] = ACTIONS(3766), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(3766), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3766), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3766), - [anon_sym_mut] = ACTIONS(3766), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3766), - [anon_sym_spawn] = ACTIONS(3766), - [anon_sym_json_DOTdecode] = ACTIONS(3766), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3766), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(3766), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [sym_none] = ACTIONS(3766), - [sym_true] = ACTIONS(3766), - [sym_false] = ACTIONS(3766), - [sym_nil] = ACTIONS(3766), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(3766), - [anon_sym_DOLLARif] = ACTIONS(3766), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(3766), - [anon_sym_select] = ACTIONS(3766), - [anon_sym_lock] = ACTIONS(3766), - [anon_sym_rlock] = ACTIONS(3766), - [anon_sym_unsafe] = ACTIONS(3766), - [anon_sym_sql] = ACTIONS(3766), - [sym_int_literal] = ACTIONS(3766), - [sym_float_literal] = ACTIONS(3766), - [sym_rune_literal] = ACTIONS(3766), - [sym_pseudo_compile_time_identifier] = ACTIONS(3766), - [anon_sym_shared] = ACTIONS(3766), - [anon_sym_map_LBRACK] = ACTIONS(3766), - [anon_sym_chan] = ACTIONS(3766), - [anon_sym_thread] = ACTIONS(3766), - [anon_sym_atomic] = ACTIONS(3766), - [sym___double_quote] = ACTIONS(3766), - [sym___single_quote] = ACTIONS(3766), - [sym___c_double_quote] = ACTIONS(3766), - [sym___c_single_quote] = ACTIONS(3766), - [sym___r_double_quote] = ACTIONS(3766), - [sym___r_single_quote] = ACTIONS(3766), + [anon_sym_SEMI] = ACTIONS(2911), + [anon_sym_DOT] = ACTIONS(2911), + [anon_sym_as] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_COMMA] = ACTIONS(2911), + [anon_sym_RBRACE] = ACTIONS(2911), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_RPAREN] = ACTIONS(2911), + [anon_sym_PIPE] = ACTIONS(2911), + [anon_sym_fn] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_PERCENT] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_GT] = ACTIONS(2911), + [anon_sym_EQ_EQ] = ACTIONS(2911), + [anon_sym_BANG_EQ] = ACTIONS(2911), + [anon_sym_LT_EQ] = ACTIONS(2911), + [anon_sym_GT_EQ] = ACTIONS(2911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_mut] = ACTIONS(2911), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_QMARK] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_go] = ACTIONS(2911), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(2911), + [anon_sym_LBRACK2] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_CARET] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_LT_DASH] = ACTIONS(2911), + [anon_sym_LT_LT] = ACTIONS(2911), + [anon_sym_GT_GT] = ACTIONS(2911), + [anon_sym_GT_GT_GT] = ACTIONS(2911), + [anon_sym_AMP_CARET] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_PIPE_PIPE] = ACTIONS(2911), + [anon_sym_or] = ACTIONS(2911), + [sym_none] = ACTIONS(2911), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_nil] = ACTIONS(2911), + [anon_sym_QMARK_DOT] = ACTIONS(2911), + [anon_sym_POUND_LBRACK] = ACTIONS(2911), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_DOLLARif] = ACTIONS(2911), + [anon_sym_is] = ACTIONS(2911), + [anon_sym_BANGis] = ACTIONS(2911), + [anon_sym_in] = ACTIONS(2911), + [anon_sym_BANGin] = ACTIONS(2911), + [anon_sym_match] = ACTIONS(2911), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2911), + [anon_sym_rlock] = ACTIONS(2911), + [anon_sym_unsafe] = ACTIONS(2911), + [anon_sym_sql] = ACTIONS(2911), + [sym_int_literal] = ACTIONS(2911), + [sym_float_literal] = ACTIONS(2911), + [sym_rune_literal] = ACTIONS(2911), + [sym_pseudo_compile_time_identifier] = ACTIONS(2911), + [anon_sym_shared] = ACTIONS(2911), + [anon_sym_map_LBRACK] = ACTIONS(2911), + [anon_sym_chan] = ACTIONS(2911), + [anon_sym_thread] = ACTIONS(2911), + [anon_sym_atomic] = ACTIONS(2911), + [sym___double_quote] = ACTIONS(2911), + [sym___single_quote] = ACTIONS(2911), + [sym___c_double_quote] = ACTIONS(2911), + [sym___c_single_quote] = ACTIONS(2911), + [sym___r_double_quote] = ACTIONS(2911), + [sym___r_single_quote] = ACTIONS(2911), }, - [1153] = { - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), + [1193] = { + [sym_identifier] = ACTIONS(3227), + [anon_sym_LF] = ACTIONS(3227), + [anon_sym_CR] = ACTIONS(3227), + [anon_sym_CR_LF] = ACTIONS(3227), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_RPAREN] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_DOLLARelse] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2865), - [sym___single_quote] = ACTIONS(2865), - [sym___c_double_quote] = ACTIONS(2865), - [sym___c_single_quote] = ACTIONS(2865), - [sym___r_double_quote] = ACTIONS(2865), - [sym___r_single_quote] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_COMMA] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_mut] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3227), + [anon_sym_spawn] = ACTIONS(3227), + [anon_sym_json_DOTdecode] = ACTIONS(3227), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3227), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_or] = ACTIONS(3229), + [sym_none] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_nil] = ACTIONS(3227), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_DOLLARif] = ACTIONS(3227), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3227), + [anon_sym_select] = ACTIONS(3227), + [anon_sym_lock] = ACTIONS(3227), + [anon_sym_rlock] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_sql] = ACTIONS(3227), + [sym_int_literal] = ACTIONS(3227), + [sym_float_literal] = ACTIONS(3227), + [sym_rune_literal] = ACTIONS(3227), + [sym_pseudo_compile_time_identifier] = ACTIONS(3227), + [anon_sym_shared] = ACTIONS(3227), + [anon_sym_map_LBRACK] = ACTIONS(3227), + [anon_sym_chan] = ACTIONS(3227), + [anon_sym_thread] = ACTIONS(3227), + [anon_sym_atomic] = ACTIONS(3227), + [sym___double_quote] = ACTIONS(3227), + [sym___single_quote] = ACTIONS(3227), + [sym___c_double_quote] = ACTIONS(3227), + [sym___c_single_quote] = ACTIONS(3227), + [sym___r_double_quote] = ACTIONS(3227), + [sym___r_single_quote] = ACTIONS(3227), }, - [1154] = { - [sym_type_parameters] = STATE(1216), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), + [1194] = { + [sym_identifier] = ACTIONS(2903), + [anon_sym_LF] = ACTIONS(2903), + [anon_sym_CR] = ACTIONS(2903), + [anon_sym_CR_LF] = ACTIONS(2903), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_RPAREN] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2761), - [anon_sym_BANG_EQ] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_EQ] = ACTIONS(2761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2761), - [anon_sym_AMP_CARET] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_PIPE_PIPE] = ACTIONS(2761), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2761), - [anon_sym_POUND_LBRACK] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2761), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(2903), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_as] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_COMMA] = ACTIONS(2903), + [anon_sym_RBRACE] = ACTIONS(2903), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_RPAREN] = ACTIONS(2903), + [anon_sym_PIPE] = ACTIONS(2903), + [anon_sym_fn] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_PERCENT] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [anon_sym_LT_EQ] = ACTIONS(2903), + [anon_sym_GT_EQ] = ACTIONS(2903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2903), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_mut] = ACTIONS(2903), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_QMARK] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2903), + [anon_sym_json_DOTdecode] = ACTIONS(2903), + [anon_sym_LBRACK2] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_LT_DASH] = ACTIONS(2903), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_GT_GT_GT] = ACTIONS(2903), + [anon_sym_AMP_CARET] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_or] = ACTIONS(2903), + [sym_none] = ACTIONS(2903), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_nil] = ACTIONS(2903), + [anon_sym_QMARK_DOT] = ACTIONS(2903), + [anon_sym_POUND_LBRACK] = ACTIONS(2903), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_DOLLARif] = ACTIONS(2903), + [anon_sym_is] = ACTIONS(2903), + [anon_sym_BANGis] = ACTIONS(2903), + [anon_sym_in] = ACTIONS(2903), + [anon_sym_BANGin] = ACTIONS(2903), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_select] = ACTIONS(2903), + [anon_sym_lock] = ACTIONS(2903), + [anon_sym_rlock] = ACTIONS(2903), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2903), + [sym_int_literal] = ACTIONS(2903), + [sym_float_literal] = ACTIONS(2903), + [sym_rune_literal] = ACTIONS(2903), + [sym_pseudo_compile_time_identifier] = ACTIONS(2903), + [anon_sym_shared] = ACTIONS(2903), + [anon_sym_map_LBRACK] = ACTIONS(2903), + [anon_sym_chan] = ACTIONS(2903), + [anon_sym_thread] = ACTIONS(2903), + [anon_sym_atomic] = ACTIONS(2903), + [sym___double_quote] = ACTIONS(2903), + [sym___single_quote] = ACTIONS(2903), + [sym___c_double_quote] = ACTIONS(2903), + [sym___c_single_quote] = ACTIONS(2903), + [sym___r_double_quote] = ACTIONS(2903), + [sym___r_single_quote] = ACTIONS(2903), }, - [1155] = { - [sym_identifier] = ACTIONS(2681), - [anon_sym_LF] = ACTIONS(2681), - [anon_sym_CR] = ACTIONS(2681), - [anon_sym_CR_LF] = ACTIONS(2681), + [1195] = { + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2681), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_as] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2681), - [anon_sym_COMMA] = ACTIONS(2681), - [anon_sym_RBRACE] = ACTIONS(2681), - [anon_sym_LPAREN] = ACTIONS(2681), - [anon_sym_RPAREN] = ACTIONS(2681), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2681), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2681), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2681), - [anon_sym_BANG_EQ] = ACTIONS(2681), - [anon_sym_LT_EQ] = ACTIONS(2681), - [anon_sym_GT_EQ] = ACTIONS(2681), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_mut] = ACTIONS(2681), - [anon_sym_PLUS_PLUS] = ACTIONS(2681), - [anon_sym_DASH_DASH] = ACTIONS(2681), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_go] = ACTIONS(2681), - [anon_sym_spawn] = ACTIONS(2681), - [anon_sym_json_DOTdecode] = ACTIONS(2681), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2681), - [anon_sym_CARET] = ACTIONS(2681), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2681), - [anon_sym_LT_LT] = ACTIONS(2681), - [anon_sym_GT_GT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2681), - [anon_sym_AMP_CARET] = ACTIONS(2681), - [anon_sym_AMP_AMP] = ACTIONS(2681), - [anon_sym_PIPE_PIPE] = ACTIONS(2681), - [anon_sym_or] = ACTIONS(2681), - [sym_none] = ACTIONS(2681), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_nil] = ACTIONS(2681), - [anon_sym_QMARK_DOT] = ACTIONS(2681), - [anon_sym_POUND_LBRACK] = ACTIONS(2681), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_DOLLARif] = ACTIONS(2681), - [anon_sym_DOLLARelse] = ACTIONS(3768), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_BANGis] = ACTIONS(2681), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_BANGin] = ACTIONS(2681), - [anon_sym_match] = ACTIONS(2681), - [anon_sym_select] = ACTIONS(2681), - [anon_sym_lock] = ACTIONS(2681), - [anon_sym_rlock] = ACTIONS(2681), - [anon_sym_unsafe] = ACTIONS(2681), - [anon_sym_sql] = ACTIONS(2681), - [sym_int_literal] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2681), - [sym_rune_literal] = ACTIONS(2681), - [sym_pseudo_compile_time_identifier] = ACTIONS(2681), - [anon_sym_shared] = ACTIONS(2681), - [anon_sym_map_LBRACK] = ACTIONS(2681), - [anon_sym_chan] = ACTIONS(2681), - [anon_sym_thread] = ACTIONS(2681), - [anon_sym_atomic] = ACTIONS(2681), - [sym___double_quote] = ACTIONS(2681), - [sym___single_quote] = ACTIONS(2681), - [sym___c_double_quote] = ACTIONS(2681), - [sym___c_single_quote] = ACTIONS(2681), - [sym___r_double_quote] = ACTIONS(2681), - [sym___r_single_quote] = ACTIONS(2681), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_COMMA] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_RPAREN] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3356), + [anon_sym_BANG_EQ] = ACTIONS(3356), + [anon_sym_LT_EQ] = ACTIONS(3356), + [anon_sym_GT_EQ] = ACTIONS(3356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [anon_sym_LT_LT] = ACTIONS(3356), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3356), + [anon_sym_AMP_CARET] = ACTIONS(3356), + [anon_sym_AMP_AMP] = ACTIONS(3356), + [anon_sym_PIPE_PIPE] = ACTIONS(3356), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3356), + [anon_sym_POUND_LBRACK] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3356), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [sym___double_quote] = ACTIONS(3356), + [sym___single_quote] = ACTIONS(3356), + [sym___c_double_quote] = ACTIONS(3356), + [sym___c_single_quote] = ACTIONS(3356), + [sym___r_double_quote] = ACTIONS(3356), + [sym___r_single_quote] = ACTIONS(3356), }, - [1156] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(3770), - [anon_sym_LF] = ACTIONS(3770), - [anon_sym_CR] = ACTIONS(3770), - [anon_sym_CR_LF] = ACTIONS(3770), + [1196] = { + [sym_identifier] = ACTIONS(2899), + [anon_sym_LF] = ACTIONS(2899), + [anon_sym_CR] = ACTIONS(2899), + [anon_sym_CR_LF] = ACTIONS(2899), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3770), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_COMMA] = ACTIONS(3770), - [anon_sym_RBRACE] = ACTIONS(3770), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(3770), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3770), - [anon_sym_mut] = ACTIONS(3770), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3770), - [anon_sym_spawn] = ACTIONS(3770), - [anon_sym_json_DOTdecode] = ACTIONS(3770), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3770), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(3770), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [sym_none] = ACTIONS(3770), - [sym_true] = ACTIONS(3770), - [sym_false] = ACTIONS(3770), - [sym_nil] = ACTIONS(3770), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(3770), - [anon_sym_DOLLARif] = ACTIONS(3770), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(3770), - [anon_sym_select] = ACTIONS(3770), - [anon_sym_lock] = ACTIONS(3770), - [anon_sym_rlock] = ACTIONS(3770), - [anon_sym_unsafe] = ACTIONS(3770), - [anon_sym_sql] = ACTIONS(3770), - [sym_int_literal] = ACTIONS(3770), - [sym_float_literal] = ACTIONS(3770), - [sym_rune_literal] = ACTIONS(3770), - [sym_pseudo_compile_time_identifier] = ACTIONS(3770), - [anon_sym_shared] = ACTIONS(3770), - [anon_sym_map_LBRACK] = ACTIONS(3770), - [anon_sym_chan] = ACTIONS(3770), - [anon_sym_thread] = ACTIONS(3770), - [anon_sym_atomic] = ACTIONS(3770), - [sym___double_quote] = ACTIONS(3770), - [sym___single_quote] = ACTIONS(3770), - [sym___c_double_quote] = ACTIONS(3770), - [sym___c_single_quote] = ACTIONS(3770), - [sym___r_double_quote] = ACTIONS(3770), - [sym___r_single_quote] = ACTIONS(3770), + [anon_sym_SEMI] = ACTIONS(2899), + [anon_sym_DOT] = ACTIONS(2899), + [anon_sym_as] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_COMMA] = ACTIONS(2899), + [anon_sym_RBRACE] = ACTIONS(2899), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_RPAREN] = ACTIONS(2899), + [anon_sym_PIPE] = ACTIONS(2899), + [anon_sym_fn] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2899), + [anon_sym_PERCENT] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2899), + [anon_sym_GT] = ACTIONS(2899), + [anon_sym_EQ_EQ] = ACTIONS(2899), + [anon_sym_BANG_EQ] = ACTIONS(2899), + [anon_sym_LT_EQ] = ACTIONS(2899), + [anon_sym_GT_EQ] = ACTIONS(2899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2899), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_mut] = ACTIONS(2899), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_QMARK] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_go] = ACTIONS(2899), + [anon_sym_spawn] = ACTIONS(2899), + [anon_sym_json_DOTdecode] = ACTIONS(2899), + [anon_sym_LBRACK2] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_LT_DASH] = ACTIONS(2899), + [anon_sym_LT_LT] = ACTIONS(2899), + [anon_sym_GT_GT] = ACTIONS(2899), + [anon_sym_GT_GT_GT] = ACTIONS(2899), + [anon_sym_AMP_CARET] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2899), + [anon_sym_PIPE_PIPE] = ACTIONS(2899), + [anon_sym_or] = ACTIONS(2899), + [sym_none] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_nil] = ACTIONS(2899), + [anon_sym_QMARK_DOT] = ACTIONS(2899), + [anon_sym_POUND_LBRACK] = ACTIONS(2899), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_DOLLARif] = ACTIONS(2899), + [anon_sym_is] = ACTIONS(2899), + [anon_sym_BANGis] = ACTIONS(2899), + [anon_sym_in] = ACTIONS(2899), + [anon_sym_BANGin] = ACTIONS(2899), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2899), + [anon_sym_rlock] = ACTIONS(2899), + [anon_sym_unsafe] = ACTIONS(2899), + [anon_sym_sql] = ACTIONS(2899), + [sym_int_literal] = ACTIONS(2899), + [sym_float_literal] = ACTIONS(2899), + [sym_rune_literal] = ACTIONS(2899), + [sym_pseudo_compile_time_identifier] = ACTIONS(2899), + [anon_sym_shared] = ACTIONS(2899), + [anon_sym_map_LBRACK] = ACTIONS(2899), + [anon_sym_chan] = ACTIONS(2899), + [anon_sym_thread] = ACTIONS(2899), + [anon_sym_atomic] = ACTIONS(2899), + [sym___double_quote] = ACTIONS(2899), + [sym___single_quote] = ACTIONS(2899), + [sym___c_double_quote] = ACTIONS(2899), + [sym___c_single_quote] = ACTIONS(2899), + [sym___r_double_quote] = ACTIONS(2899), + [sym___r_single_quote] = ACTIONS(2899), }, - [1157] = { - [sym_identifier] = ACTIONS(2669), - [anon_sym_LF] = ACTIONS(2669), - [anon_sym_CR] = ACTIONS(2669), - [anon_sym_CR_LF] = ACTIONS(2669), + [1197] = { + [sym_identifier] = ACTIONS(3311), + [anon_sym_LF] = ACTIONS(3311), + [anon_sym_CR] = ACTIONS(3311), + [anon_sym_CR_LF] = ACTIONS(3311), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2671), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_COMMA] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_RPAREN] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3311), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3311), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3311), + [anon_sym_AMP_CARET] = ACTIONS(3311), + [anon_sym_AMP_AMP] = ACTIONS(3311), + [anon_sym_PIPE_PIPE] = ACTIONS(3311), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3311), + [anon_sym_POUND_LBRACK] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3311), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3311), + [sym_rune_literal] = ACTIONS(3311), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3311), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3311), + [sym___single_quote] = ACTIONS(3311), + [sym___c_double_quote] = ACTIONS(3311), + [sym___c_single_quote] = ACTIONS(3311), + [sym___r_double_quote] = ACTIONS(3311), + [sym___r_single_quote] = ACTIONS(3311), }, - [1158] = { - [sym_identifier] = ACTIONS(2855), - [anon_sym_LF] = ACTIONS(2855), - [anon_sym_CR] = ACTIONS(2855), - [anon_sym_CR_LF] = ACTIONS(2855), + [1198] = { + [sym_identifier] = ACTIONS(3428), + [anon_sym_LF] = ACTIONS(3428), + [anon_sym_CR] = ACTIONS(3428), + [anon_sym_CR_LF] = ACTIONS(3428), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2855), - [anon_sym_RBRACE] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_RPAREN] = ACTIONS(2855), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2855), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2855), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2855), - [anon_sym_BANG_EQ] = ACTIONS(2855), - [anon_sym_LT_EQ] = ACTIONS(2855), - [anon_sym_GT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_PLUS_PLUS] = ACTIONS(2855), - [anon_sym_DASH_DASH] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2855), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_CARET] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2855), - [anon_sym_LT_LT] = ACTIONS(2855), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2855), - [anon_sym_AMP_CARET] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2855), - [anon_sym_POUND_LBRACK] = ACTIONS(2855), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_DOLLARelse] = ACTIONS(3772), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2855), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2855), - [sym_rune_literal] = ACTIONS(2855), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2855), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [sym___double_quote] = ACTIONS(2855), - [sym___single_quote] = ACTIONS(2855), - [sym___c_double_quote] = ACTIONS(2855), - [sym___c_single_quote] = ACTIONS(2855), - [sym___r_double_quote] = ACTIONS(2855), - [sym___r_single_quote] = ACTIONS(2855), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_as] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_COMMA] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_RPAREN] = ACTIONS(3428), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_fn] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3428), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_mut] = ACTIONS(3428), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_go] = ACTIONS(3428), + [anon_sym_spawn] = ACTIONS(3428), + [anon_sym_json_DOTdecode] = ACTIONS(3428), + [anon_sym_LBRACK2] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_LT_DASH] = ACTIONS(3428), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3428), + [anon_sym_GT_GT_GT] = ACTIONS(3428), + [anon_sym_AMP_CARET] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_or] = ACTIONS(3428), + [sym_none] = ACTIONS(3428), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_nil] = ACTIONS(3428), + [anon_sym_QMARK_DOT] = ACTIONS(3428), + [anon_sym_POUND_LBRACK] = ACTIONS(3428), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_DOLLARif] = ACTIONS(3428), + [anon_sym_is] = ACTIONS(3428), + [anon_sym_BANGis] = ACTIONS(3428), + [anon_sym_in] = ACTIONS(3428), + [anon_sym_BANGin] = ACTIONS(3428), + [anon_sym_match] = ACTIONS(3428), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3428), + [anon_sym_rlock] = ACTIONS(3428), + [anon_sym_unsafe] = ACTIONS(3428), + [anon_sym_sql] = ACTIONS(3428), + [sym_int_literal] = ACTIONS(3428), + [sym_float_literal] = ACTIONS(3428), + [sym_rune_literal] = ACTIONS(3428), + [sym_pseudo_compile_time_identifier] = ACTIONS(3428), + [anon_sym_shared] = ACTIONS(3428), + [anon_sym_map_LBRACK] = ACTIONS(3428), + [anon_sym_chan] = ACTIONS(3428), + [anon_sym_thread] = ACTIONS(3428), + [anon_sym_atomic] = ACTIONS(3428), + [sym___double_quote] = ACTIONS(3428), + [sym___single_quote] = ACTIONS(3428), + [sym___c_double_quote] = ACTIONS(3428), + [sym___c_single_quote] = ACTIONS(3428), + [sym___r_double_quote] = ACTIONS(3428), + [sym___r_single_quote] = ACTIONS(3428), }, - [1159] = { - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), + [1199] = { + [sym_identifier] = ACTIONS(3217), + [anon_sym_LF] = ACTIONS(3217), + [anon_sym_CR] = ACTIONS(3217), + [anon_sym_CR_LF] = ACTIONS(3217), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_RPAREN] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_else] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_COMMA] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3217), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3217), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3219), + [anon_sym_AMP_CARET] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3217), + [sym_rune_literal] = ACTIONS(3217), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3217), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [sym___double_quote] = ACTIONS(3217), + [sym___single_quote] = ACTIONS(3217), + [sym___c_double_quote] = ACTIONS(3217), + [sym___c_single_quote] = ACTIONS(3217), + [sym___r_double_quote] = ACTIONS(3217), + [sym___r_single_quote] = ACTIONS(3217), }, - [1160] = { - [sym_type_parameters] = STATE(4193), - [sym_argument_list] = STATE(1197), - [sym_or_block] = STATE(1211), - [sym_identifier] = ACTIONS(3774), - [anon_sym_LF] = ACTIONS(3774), - [anon_sym_CR] = ACTIONS(3774), - [anon_sym_CR_LF] = ACTIONS(3774), + [1200] = { + [sym_identifier] = ACTIONS(3201), + [anon_sym_LF] = ACTIONS(3201), + [anon_sym_CR] = ACTIONS(3201), + [anon_sym_CR_LF] = ACTIONS(3201), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3774), - [anon_sym_DOT] = ACTIONS(3688), - [anon_sym_as] = ACTIONS(3690), - [anon_sym_LBRACE] = ACTIONS(3774), - [anon_sym_COMMA] = ACTIONS(3774), - [anon_sym_RBRACE] = ACTIONS(3774), - [anon_sym_LPAREN] = ACTIONS(3692), - [anon_sym_PIPE] = ACTIONS(3694), - [anon_sym_fn] = ACTIONS(3774), - [anon_sym_PLUS] = ACTIONS(3694), - [anon_sym_DASH] = ACTIONS(3694), - [anon_sym_STAR] = ACTIONS(3696), - [anon_sym_SLASH] = ACTIONS(3696), - [anon_sym_PERCENT] = ACTIONS(3696), - [anon_sym_LT] = ACTIONS(3698), - [anon_sym_GT] = ACTIONS(3698), - [anon_sym_EQ_EQ] = ACTIONS(3698), - [anon_sym_BANG_EQ] = ACTIONS(3698), - [anon_sym_LT_EQ] = ACTIONS(3698), - [anon_sym_GT_EQ] = ACTIONS(3698), - [anon_sym_LBRACK] = ACTIONS(3700), - [anon_sym_struct] = ACTIONS(3774), - [anon_sym_mut] = ACTIONS(3774), - [anon_sym_PLUS_PLUS] = ACTIONS(3702), - [anon_sym_DASH_DASH] = ACTIONS(3704), - [anon_sym_QMARK] = ACTIONS(3706), - [anon_sym_BANG] = ACTIONS(3708), - [anon_sym_go] = ACTIONS(3774), - [anon_sym_spawn] = ACTIONS(3774), - [anon_sym_json_DOTdecode] = ACTIONS(3774), - [anon_sym_LBRACK2] = ACTIONS(3710), - [anon_sym_TILDE] = ACTIONS(3774), - [anon_sym_CARET] = ACTIONS(3694), - [anon_sym_AMP] = ACTIONS(3696), - [anon_sym_LT_DASH] = ACTIONS(3774), - [anon_sym_LT_LT] = ACTIONS(3696), - [anon_sym_GT_GT] = ACTIONS(3696), - [anon_sym_GT_GT_GT] = ACTIONS(3696), - [anon_sym_AMP_CARET] = ACTIONS(3696), - [anon_sym_AMP_AMP] = ACTIONS(3712), - [anon_sym_PIPE_PIPE] = ACTIONS(3714), - [anon_sym_or] = ACTIONS(3716), - [sym_none] = ACTIONS(3774), - [sym_true] = ACTIONS(3774), - [sym_false] = ACTIONS(3774), - [sym_nil] = ACTIONS(3774), - [anon_sym_QMARK_DOT] = ACTIONS(3688), - [anon_sym_POUND_LBRACK] = ACTIONS(3710), - [anon_sym_if] = ACTIONS(3774), - [anon_sym_DOLLARif] = ACTIONS(3774), - [anon_sym_is] = ACTIONS(3718), - [anon_sym_BANGis] = ACTIONS(3720), - [anon_sym_in] = ACTIONS(3722), - [anon_sym_BANGin] = ACTIONS(3724), - [anon_sym_match] = ACTIONS(3774), - [anon_sym_select] = ACTIONS(3774), - [anon_sym_lock] = ACTIONS(3774), - [anon_sym_rlock] = ACTIONS(3774), - [anon_sym_unsafe] = ACTIONS(3774), - [anon_sym_sql] = ACTIONS(3774), - [sym_int_literal] = ACTIONS(3774), - [sym_float_literal] = ACTIONS(3774), - [sym_rune_literal] = ACTIONS(3774), - [sym_pseudo_compile_time_identifier] = ACTIONS(3774), - [anon_sym_shared] = ACTIONS(3774), - [anon_sym_map_LBRACK] = ACTIONS(3774), - [anon_sym_chan] = ACTIONS(3774), - [anon_sym_thread] = ACTIONS(3774), - [anon_sym_atomic] = ACTIONS(3774), - [sym___double_quote] = ACTIONS(3774), - [sym___single_quote] = ACTIONS(3774), - [sym___c_double_quote] = ACTIONS(3774), - [sym___c_single_quote] = ACTIONS(3774), - [sym___r_double_quote] = ACTIONS(3774), - [sym___r_single_quote] = ACTIONS(3774), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_DOT] = ACTIONS(3201), + [anon_sym_as] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_COMMA] = ACTIONS(3201), + [anon_sym_RBRACE] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_RPAREN] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3201), + [anon_sym_BANG_EQ] = ACTIONS(3201), + [anon_sym_LT_EQ] = ACTIONS(3201), + [anon_sym_GT_EQ] = ACTIONS(3201), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_mut] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_QMARK] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_go] = ACTIONS(3201), + [anon_sym_spawn] = ACTIONS(3201), + [anon_sym_json_DOTdecode] = ACTIONS(3201), + [anon_sym_LBRACK2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_LT_DASH] = ACTIONS(3201), + [anon_sym_LT_LT] = ACTIONS(3201), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_GT_GT_GT] = ACTIONS(3201), + [anon_sym_AMP_CARET] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_or] = ACTIONS(3201), + [sym_none] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_nil] = ACTIONS(3201), + [anon_sym_QMARK_DOT] = ACTIONS(3201), + [anon_sym_POUND_LBRACK] = ACTIONS(3201), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_DOLLARif] = ACTIONS(3201), + [anon_sym_is] = ACTIONS(3201), + [anon_sym_BANGis] = ACTIONS(3201), + [anon_sym_in] = ACTIONS(3201), + [anon_sym_BANGin] = ACTIONS(3201), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_lock] = ACTIONS(3201), + [anon_sym_rlock] = ACTIONS(3201), + [anon_sym_unsafe] = ACTIONS(3201), + [anon_sym_sql] = ACTIONS(3201), + [sym_int_literal] = ACTIONS(3201), + [sym_float_literal] = ACTIONS(3201), + [sym_rune_literal] = ACTIONS(3201), + [sym_pseudo_compile_time_identifier] = ACTIONS(3201), + [anon_sym_shared] = ACTIONS(3201), + [anon_sym_map_LBRACK] = ACTIONS(3201), + [anon_sym_chan] = ACTIONS(3201), + [anon_sym_thread] = ACTIONS(3201), + [anon_sym_atomic] = ACTIONS(3201), + [sym___double_quote] = ACTIONS(3201), + [sym___single_quote] = ACTIONS(3201), + [sym___c_double_quote] = ACTIONS(3201), + [sym___c_single_quote] = ACTIONS(3201), + [sym___r_double_quote] = ACTIONS(3201), + [sym___r_single_quote] = ACTIONS(3201), }, - [1161] = { - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), + [1201] = { + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2865), - [anon_sym_RBRACE] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym_RPAREN] = ACTIONS(2865), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2865), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2865), - [anon_sym_BANG_EQ] = ACTIONS(2865), - [anon_sym_LT_EQ] = ACTIONS(2865), - [anon_sym_GT_EQ] = ACTIONS(2865), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_PLUS_PLUS] = ACTIONS(2865), - [anon_sym_DASH_DASH] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [anon_sym_LT_LT] = ACTIONS(2865), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2865), - [anon_sym_AMP_CARET] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2865), - [anon_sym_POUND_LBRACK] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2865), - [sym___single_quote] = ACTIONS(2865), - [sym___c_double_quote] = ACTIONS(2865), - [sym___c_single_quote] = ACTIONS(2865), - [sym___r_double_quote] = ACTIONS(2865), - [sym___r_single_quote] = ACTIONS(2865), + [anon_sym_SEMI] = ACTIONS(3378), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_COMMA] = ACTIONS(3378), + [anon_sym_RBRACE] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym_RPAREN] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3378), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3378), + [anon_sym_BANG_EQ] = ACTIONS(3378), + [anon_sym_LT_EQ] = ACTIONS(3378), + [anon_sym_GT_EQ] = ACTIONS(3378), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3378), + [anon_sym_DASH_DASH] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [anon_sym_LT_LT] = ACTIONS(3378), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3378), + [anon_sym_AMP_CARET] = ACTIONS(3378), + [anon_sym_AMP_AMP] = ACTIONS(3378), + [anon_sym_PIPE_PIPE] = ACTIONS(3378), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3378), + [anon_sym_POUND_LBRACK] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3378), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), }, - [1162] = { - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), + [1202] = { + [sym_identifier] = ACTIONS(3344), + [anon_sym_LF] = ACTIONS(3344), + [anon_sym_CR] = ACTIONS(3344), + [anon_sym_CR_LF] = ACTIONS(3344), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_RPAREN] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_DOLLARelse] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_COMMA] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_RPAREN] = ACTIONS(3344), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_fn] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_EQ_EQ] = ACTIONS(3344), + [anon_sym_BANG_EQ] = ACTIONS(3344), + [anon_sym_LT_EQ] = ACTIONS(3344), + [anon_sym_GT_EQ] = ACTIONS(3344), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_mut] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_go] = ACTIONS(3344), + [anon_sym_spawn] = ACTIONS(3344), + [anon_sym_json_DOTdecode] = ACTIONS(3344), + [anon_sym_LBRACK2] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_CARET] = ACTIONS(3344), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3344), + [anon_sym_LT_LT] = ACTIONS(3344), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_GT_GT_GT] = ACTIONS(3344), + [anon_sym_AMP_CARET] = ACTIONS(3344), + [anon_sym_AMP_AMP] = ACTIONS(3344), + [anon_sym_PIPE_PIPE] = ACTIONS(3344), + [anon_sym_or] = ACTIONS(3344), + [sym_none] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_nil] = ACTIONS(3344), + [anon_sym_QMARK_DOT] = ACTIONS(3344), + [anon_sym_POUND_LBRACK] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3344), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3344), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_BANGin] = ACTIONS(3344), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_select] = ACTIONS(3344), + [anon_sym_lock] = ACTIONS(3344), + [anon_sym_rlock] = ACTIONS(3344), + [anon_sym_unsafe] = ACTIONS(3344), + [anon_sym_sql] = ACTIONS(3344), + [sym_int_literal] = ACTIONS(3344), + [sym_float_literal] = ACTIONS(3344), + [sym_rune_literal] = ACTIONS(3344), + [sym_pseudo_compile_time_identifier] = ACTIONS(3344), + [anon_sym_shared] = ACTIONS(3344), + [anon_sym_map_LBRACK] = ACTIONS(3344), + [anon_sym_chan] = ACTIONS(3344), + [anon_sym_thread] = ACTIONS(3344), + [anon_sym_atomic] = ACTIONS(3344), + [sym___double_quote] = ACTIONS(3344), + [sym___single_quote] = ACTIONS(3344), + [sym___c_double_quote] = ACTIONS(3344), + [sym___c_single_quote] = ACTIONS(3344), + [sym___r_double_quote] = ACTIONS(3344), + [sym___r_single_quote] = ACTIONS(3344), }, - [1163] = { - [sym_identifier] = ACTIONS(3331), - [anon_sym_LF] = ACTIONS(3331), - [anon_sym_CR] = ACTIONS(3331), - [anon_sym_CR_LF] = ACTIONS(3331), + [1203] = { + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_RPAREN] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3331), - [anon_sym_BANG_EQ] = ACTIONS(3331), - [anon_sym_LT_EQ] = ACTIONS(3331), - [anon_sym_GT_EQ] = ACTIONS(3331), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3331), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3331), - [anon_sym_AMP_CARET] = ACTIONS(3331), - [anon_sym_AMP_AMP] = ACTIONS(3331), - [anon_sym_PIPE_PIPE] = ACTIONS(3331), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3331), - [anon_sym_POUND_LBRACK] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3331), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(2715), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_COMMA] = ACTIONS(2715), + [anon_sym_RBRACE] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_RPAREN] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2715), + [anon_sym_POUND_LBRACK] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2715), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), }, - [1164] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_LT_LT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), - [anon_sym_AMP_EQ] = ACTIONS(599), - [anon_sym_AMP_CARET_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_DASH_EQ] = ACTIONS(599), - [anon_sym_PIPE_EQ] = ACTIONS(599), - [anon_sym_CARET_EQ] = ACTIONS(599), - [anon_sym_COLON_EQ] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [1204] = { + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_COMMA] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_RPAREN] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3245), + [anon_sym_POUND_LBRACK] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3245), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [sym_pseudo_compile_time_identifier] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), }, - [1165] = { + [1205] = { [sym_identifier] = ACTIONS(3291), [anon_sym_LF] = ACTIONS(3291), [anon_sym_CR] = ACTIONS(3291), @@ -155673,259 +159140,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3291), [sym___r_single_quote] = ACTIONS(3291), }, - [1166] = { - [sym_identifier] = ACTIONS(3444), - [anon_sym_LF] = ACTIONS(3444), - [anon_sym_CR] = ACTIONS(3444), - [anon_sym_CR_LF] = ACTIONS(3444), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3444), - [anon_sym_DOT] = ACTIONS(3444), - [anon_sym_as] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3444), - [anon_sym_COMMA] = ACTIONS(3444), - [anon_sym_RBRACE] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3444), - [anon_sym_RPAREN] = ACTIONS(3444), - [anon_sym_PIPE] = ACTIONS(3444), - [anon_sym_fn] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_STAR] = ACTIONS(3444), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_PERCENT] = ACTIONS(3444), - [anon_sym_LT] = ACTIONS(3444), - [anon_sym_GT] = ACTIONS(3444), - [anon_sym_EQ_EQ] = ACTIONS(3444), - [anon_sym_BANG_EQ] = ACTIONS(3444), - [anon_sym_LT_EQ] = ACTIONS(3444), - [anon_sym_GT_EQ] = ACTIONS(3444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_struct] = ACTIONS(3444), - [anon_sym_mut] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3444), - [anon_sym_DASH_DASH] = ACTIONS(3444), - [anon_sym_QMARK] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3444), - [anon_sym_go] = ACTIONS(3444), - [anon_sym_spawn] = ACTIONS(3444), - [anon_sym_json_DOTdecode] = ACTIONS(3444), - [anon_sym_LBRACK2] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3444), - [anon_sym_CARET] = ACTIONS(3444), - [anon_sym_AMP] = ACTIONS(3444), - [anon_sym_LT_DASH] = ACTIONS(3444), - [anon_sym_LT_LT] = ACTIONS(3444), - [anon_sym_GT_GT] = ACTIONS(3444), - [anon_sym_GT_GT_GT] = ACTIONS(3444), - [anon_sym_AMP_CARET] = ACTIONS(3444), - [anon_sym_AMP_AMP] = ACTIONS(3444), - [anon_sym_PIPE_PIPE] = ACTIONS(3444), - [anon_sym_or] = ACTIONS(3444), - [sym_none] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_nil] = ACTIONS(3444), - [anon_sym_QMARK_DOT] = ACTIONS(3444), - [anon_sym_POUND_LBRACK] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_DOLLARif] = ACTIONS(3444), - [anon_sym_is] = ACTIONS(3444), - [anon_sym_BANGis] = ACTIONS(3444), - [anon_sym_in] = ACTIONS(3444), - [anon_sym_BANGin] = ACTIONS(3444), - [anon_sym_match] = ACTIONS(3444), - [anon_sym_select] = ACTIONS(3444), - [anon_sym_lock] = ACTIONS(3444), - [anon_sym_rlock] = ACTIONS(3444), - [anon_sym_unsafe] = ACTIONS(3444), - [anon_sym_sql] = ACTIONS(3444), - [sym_int_literal] = ACTIONS(3444), - [sym_float_literal] = ACTIONS(3444), - [sym_rune_literal] = ACTIONS(3444), - [sym_pseudo_compile_time_identifier] = ACTIONS(3444), - [anon_sym_shared] = ACTIONS(3444), - [anon_sym_map_LBRACK] = ACTIONS(3444), - [anon_sym_chan] = ACTIONS(3444), - [anon_sym_thread] = ACTIONS(3444), - [anon_sym_atomic] = ACTIONS(3444), - [sym___double_quote] = ACTIONS(3444), - [sym___single_quote] = ACTIONS(3444), - [sym___c_double_quote] = ACTIONS(3444), - [sym___c_single_quote] = ACTIONS(3444), - [sym___r_double_quote] = ACTIONS(3444), - [sym___r_single_quote] = ACTIONS(3444), - }, - [1167] = { - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2761), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_COMMA] = ACTIONS(2761), - [anon_sym_RBRACE] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym_RPAREN] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2761), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2761), - [anon_sym_BANG_EQ] = ACTIONS(2761), - [anon_sym_LT_EQ] = ACTIONS(2761), - [anon_sym_GT_EQ] = ACTIONS(2761), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_PLUS_PLUS] = ACTIONS(2761), - [anon_sym_DASH_DASH] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [anon_sym_LT_LT] = ACTIONS(2761), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2761), - [anon_sym_AMP_CARET] = ACTIONS(2761), - [anon_sym_AMP_AMP] = ACTIONS(2761), - [anon_sym_PIPE_PIPE] = ACTIONS(2761), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2761), - [anon_sym_POUND_LBRACK] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2761), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), - }, - [1168] = { - [sym_identifier] = ACTIONS(2943), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_CR] = ACTIONS(2943), - [anon_sym_CR_LF] = ACTIONS(2943), + [1206] = { + [sym_identifier] = ACTIONS(3099), + [anon_sym_LF] = ACTIONS(3099), + [anon_sym_CR] = ACTIONS(3099), + [anon_sym_CR_LF] = ACTIONS(3099), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_RPAREN] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [sym_pseudo_compile_time_identifier] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), + [anon_sym_SEMI] = ACTIONS(3099), + [anon_sym_DOT] = ACTIONS(3099), + [anon_sym_as] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_COMMA] = ACTIONS(3099), + [anon_sym_RBRACE] = ACTIONS(3099), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_RPAREN] = ACTIONS(3099), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_fn] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_BANG_EQ] = ACTIONS(3099), + [anon_sym_LT_EQ] = ACTIONS(3099), + [anon_sym_GT_EQ] = ACTIONS(3099), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_mut] = ACTIONS(3099), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_QMARK] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_go] = ACTIONS(3099), + [anon_sym_spawn] = ACTIONS(3099), + [anon_sym_json_DOTdecode] = ACTIONS(3099), + [anon_sym_LBRACK2] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_CARET] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_LT_DASH] = ACTIONS(3099), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(3099), + [anon_sym_GT_GT_GT] = ACTIONS(3099), + [anon_sym_AMP_CARET] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_PIPE_PIPE] = ACTIONS(3099), + [anon_sym_or] = ACTIONS(3099), + [sym_none] = ACTIONS(3099), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_nil] = ACTIONS(3099), + [anon_sym_QMARK_DOT] = ACTIONS(3099), + [anon_sym_POUND_LBRACK] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_DOLLARif] = ACTIONS(3099), + [anon_sym_is] = ACTIONS(3099), + [anon_sym_BANGis] = ACTIONS(3099), + [anon_sym_in] = ACTIONS(3099), + [anon_sym_BANGin] = ACTIONS(3099), + [anon_sym_match] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_rlock] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_sql] = ACTIONS(3099), + [sym_int_literal] = ACTIONS(3099), + [sym_float_literal] = ACTIONS(3099), + [sym_rune_literal] = ACTIONS(3099), + [sym_pseudo_compile_time_identifier] = ACTIONS(3099), + [anon_sym_shared] = ACTIONS(3099), + [anon_sym_map_LBRACK] = ACTIONS(3099), + [anon_sym_chan] = ACTIONS(3099), + [anon_sym_thread] = ACTIONS(3099), + [anon_sym_atomic] = ACTIONS(3099), + [sym___double_quote] = ACTIONS(3099), + [sym___single_quote] = ACTIONS(3099), + [sym___c_double_quote] = ACTIONS(3099), + [sym___c_single_quote] = ACTIONS(3099), + [sym___r_double_quote] = ACTIONS(3099), + [sym___r_single_quote] = ACTIONS(3099), }, - [1169] = { + [1207] = { [sym_identifier] = ACTIONS(3287), [anon_sym_LF] = ACTIONS(3287), [anon_sym_CR] = ACTIONS(3287), @@ -156009,343 +159308,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3287), [sym___r_single_quote] = ACTIONS(3287), }, - [1170] = { - [sym_identifier] = ACTIONS(2947), - [anon_sym_LF] = ACTIONS(2947), - [anon_sym_CR] = ACTIONS(2947), - [anon_sym_CR_LF] = ACTIONS(2947), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_RBRACE] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2947), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2947), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2947), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2947), - [anon_sym_BANG_EQ] = ACTIONS(2947), - [anon_sym_LT_EQ] = ACTIONS(2947), - [anon_sym_GT_EQ] = ACTIONS(2947), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_PLUS_PLUS] = ACTIONS(2947), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2947), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2947), - [anon_sym_AMP_CARET] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2947), - [anon_sym_POUND_LBRACK] = ACTIONS(2947), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2947), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), - [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), - }, - [1171] = { - [sym_identifier] = ACTIONS(2951), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_CR] = ACTIONS(2951), - [anon_sym_CR_LF] = ACTIONS(2951), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_RBRACE] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_RPAREN] = 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_DOT_DOT_DOT] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_mut] = 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), - [sym_pseudo_compile_time_identifier] = 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), - [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), - }, - [1172] = { - [sym_identifier] = ACTIONS(2955), - [anon_sym_LF] = ACTIONS(2955), - [anon_sym_CR] = ACTIONS(2955), - [anon_sym_CR_LF] = ACTIONS(2955), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_COMMA] = ACTIONS(2955), - [anon_sym_RBRACE] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2955), - [anon_sym_RPAREN] = ACTIONS(2955), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_fn] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2955), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2955), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_EQ_EQ] = ACTIONS(2955), - [anon_sym_BANG_EQ] = ACTIONS(2955), - [anon_sym_LT_EQ] = ACTIONS(2955), - [anon_sym_GT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_mut] = ACTIONS(2955), - [anon_sym_PLUS_PLUS] = ACTIONS(2955), - [anon_sym_DASH_DASH] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_go] = ACTIONS(2955), - [anon_sym_spawn] = ACTIONS(2955), - [anon_sym_json_DOTdecode] = ACTIONS(2955), - [anon_sym_LBRACK2] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_CARET] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_DASH] = ACTIONS(2955), - [anon_sym_LT_LT] = ACTIONS(2955), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2955), - [anon_sym_AMP_CARET] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2955), - [sym_none] = ACTIONS(2955), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_nil] = ACTIONS(2955), - [anon_sym_QMARK_DOT] = ACTIONS(2955), - [anon_sym_POUND_LBRACK] = ACTIONS(2955), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_DOLLARif] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_BANGis] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2955), - [anon_sym_BANGin] = ACTIONS(2955), - [anon_sym_match] = ACTIONS(2955), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2955), - [anon_sym_rlock] = ACTIONS(2955), - [anon_sym_unsafe] = ACTIONS(2955), - [anon_sym_sql] = ACTIONS(2955), - [sym_int_literal] = ACTIONS(2955), - [sym_float_literal] = ACTIONS(2955), - [sym_rune_literal] = ACTIONS(2955), - [sym_pseudo_compile_time_identifier] = ACTIONS(2955), - [anon_sym_shared] = ACTIONS(2955), - [anon_sym_map_LBRACK] = ACTIONS(2955), - [anon_sym_chan] = ACTIONS(2955), - [anon_sym_thread] = ACTIONS(2955), - [anon_sym_atomic] = ACTIONS(2955), - [sym___double_quote] = ACTIONS(2955), - [sym___single_quote] = ACTIONS(2955), - [sym___c_double_quote] = ACTIONS(2955), - [sym___c_single_quote] = ACTIONS(2955), - [sym___r_double_quote] = ACTIONS(2955), - [sym___r_single_quote] = ACTIONS(2955), - }, - [1173] = { - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), + [1208] = { + [sym_identifier] = ACTIONS(3249), + [anon_sym_LF] = ACTIONS(3249), + [anon_sym_CR] = ACTIONS(3249), + [anon_sym_CR_LF] = ACTIONS(3249), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_COMMA] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_RPAREN] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3249), + [anon_sym_BANG_EQ] = ACTIONS(3249), + [anon_sym_LT_EQ] = ACTIONS(3249), + [anon_sym_GT_EQ] = ACTIONS(3249), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3249), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_CARET] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3249), + [anon_sym_LT_LT] = ACTIONS(3249), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3249), + [anon_sym_AMP_CARET] = ACTIONS(3249), + [anon_sym_AMP_AMP] = ACTIONS(3249), + [anon_sym_PIPE_PIPE] = ACTIONS(3249), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3249), + [anon_sym_POUND_LBRACK] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3249), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3249), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + [sym_rune_literal] = ACTIONS(3249), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3249), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3249), + [sym___single_quote] = ACTIONS(3249), + [sym___c_double_quote] = ACTIONS(3249), + [sym___c_single_quote] = ACTIONS(3249), + [sym___r_double_quote] = ACTIONS(3249), + [sym___r_single_quote] = ACTIONS(3249), }, - [1174] = { + [1209] = { [sym_identifier] = ACTIONS(3133), [anon_sym_LF] = ACTIONS(3133), [anon_sym_CR] = ACTIONS(3133), @@ -156429,1183 +159476,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3133), [sym___r_single_quote] = ACTIONS(3133), }, - [1175] = { - [sym_identifier] = ACTIONS(3425), - [anon_sym_LF] = ACTIONS(3425), - [anon_sym_CR] = ACTIONS(3425), - [anon_sym_CR_LF] = ACTIONS(3425), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_RPAREN] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_fn] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_PERCENT] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_EQ_EQ] = ACTIONS(3425), - [anon_sym_BANG_EQ] = ACTIONS(3425), - [anon_sym_LT_EQ] = ACTIONS(3425), - [anon_sym_GT_EQ] = ACTIONS(3425), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3425), - [anon_sym_mut] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_go] = ACTIONS(3425), - [anon_sym_spawn] = ACTIONS(3425), - [anon_sym_json_DOTdecode] = ACTIONS(3425), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_LT_DASH] = ACTIONS(3425), - [anon_sym_LT_LT] = ACTIONS(3425), - [anon_sym_GT_GT] = ACTIONS(3425), - [anon_sym_GT_GT_GT] = ACTIONS(3425), - [anon_sym_AMP_CARET] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [sym_none] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_nil] = ACTIONS(3425), - [anon_sym_QMARK_DOT] = ACTIONS(3425), - [anon_sym_POUND_LBRACK] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_DOLLARif] = ACTIONS(3425), - [anon_sym_is] = ACTIONS(3425), - [anon_sym_BANGis] = ACTIONS(3425), - [anon_sym_in] = ACTIONS(3425), - [anon_sym_BANGin] = ACTIONS(3425), - [anon_sym_match] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_lock] = ACTIONS(3425), - [anon_sym_rlock] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3425), - [anon_sym_sql] = ACTIONS(3425), - [sym_int_literal] = ACTIONS(3425), - [sym_float_literal] = ACTIONS(3425), - [sym_rune_literal] = ACTIONS(3425), - [sym_pseudo_compile_time_identifier] = ACTIONS(3425), - [anon_sym_shared] = ACTIONS(3425), - [anon_sym_map_LBRACK] = ACTIONS(3425), - [anon_sym_chan] = ACTIONS(3425), - [anon_sym_thread] = ACTIONS(3425), - [anon_sym_atomic] = ACTIONS(3425), - [sym___double_quote] = ACTIONS(3425), - [sym___single_quote] = ACTIONS(3425), - [sym___c_double_quote] = ACTIONS(3425), - [sym___c_single_quote] = ACTIONS(3425), - [sym___r_double_quote] = ACTIONS(3425), - [sym___r_single_quote] = ACTIONS(3425), - }, - [1176] = { - [sym_identifier] = ACTIONS(3433), - [anon_sym_LF] = ACTIONS(3433), - [anon_sym_CR] = ACTIONS(3433), - [anon_sym_CR_LF] = ACTIONS(3433), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_as] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_RPAREN] = ACTIONS(3433), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_fn] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_GT] = ACTIONS(3433), - [anon_sym_EQ_EQ] = ACTIONS(3433), - [anon_sym_BANG_EQ] = ACTIONS(3433), - [anon_sym_LT_EQ] = ACTIONS(3433), - [anon_sym_GT_EQ] = ACTIONS(3433), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_mut] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_go] = ACTIONS(3433), - [anon_sym_spawn] = ACTIONS(3433), - [anon_sym_json_DOTdecode] = ACTIONS(3433), - [anon_sym_LBRACK2] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_CARET] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3433), - [anon_sym_LT_LT] = ACTIONS(3433), - [anon_sym_GT_GT] = ACTIONS(3433), - [anon_sym_GT_GT_GT] = ACTIONS(3433), - [anon_sym_AMP_CARET] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [sym_none] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_nil] = ACTIONS(3433), - [anon_sym_QMARK_DOT] = ACTIONS(3433), - [anon_sym_POUND_LBRACK] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_DOLLARif] = ACTIONS(3433), - [anon_sym_is] = ACTIONS(3433), - [anon_sym_BANGis] = ACTIONS(3433), - [anon_sym_in] = ACTIONS(3433), - [anon_sym_BANGin] = ACTIONS(3433), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_select] = ACTIONS(3433), - [anon_sym_lock] = ACTIONS(3433), - [anon_sym_rlock] = ACTIONS(3433), - [anon_sym_unsafe] = ACTIONS(3433), - [anon_sym_sql] = ACTIONS(3433), - [sym_int_literal] = ACTIONS(3433), - [sym_float_literal] = ACTIONS(3433), - [sym_rune_literal] = ACTIONS(3433), - [sym_pseudo_compile_time_identifier] = ACTIONS(3433), - [anon_sym_shared] = ACTIONS(3433), - [anon_sym_map_LBRACK] = ACTIONS(3433), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3433), - [anon_sym_atomic] = ACTIONS(3433), - [sym___double_quote] = ACTIONS(3433), - [sym___single_quote] = ACTIONS(3433), - [sym___c_double_quote] = ACTIONS(3433), - [sym___c_single_quote] = ACTIONS(3433), - [sym___r_double_quote] = ACTIONS(3433), - [sym___r_single_quote] = ACTIONS(3433), - }, - [1177] = { - [sym_identifier] = ACTIONS(3429), - [anon_sym_LF] = ACTIONS(3429), - [anon_sym_CR] = ACTIONS(3429), - [anon_sym_CR_LF] = ACTIONS(3429), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_DOT] = ACTIONS(3429), - [anon_sym_as] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_RPAREN] = ACTIONS(3429), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_fn] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_STAR] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_PERCENT] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_EQ_EQ] = ACTIONS(3429), - [anon_sym_BANG_EQ] = ACTIONS(3429), - [anon_sym_LT_EQ] = ACTIONS(3429), - [anon_sym_GT_EQ] = ACTIONS(3429), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3429), - [anon_sym_mut] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_go] = ACTIONS(3429), - [anon_sym_spawn] = ACTIONS(3429), - [anon_sym_json_DOTdecode] = ACTIONS(3429), - [anon_sym_LBRACK2] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_CARET] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_LT_DASH] = ACTIONS(3429), - [anon_sym_LT_LT] = ACTIONS(3429), - [anon_sym_GT_GT] = ACTIONS(3429), - [anon_sym_GT_GT_GT] = ACTIONS(3429), - [anon_sym_AMP_CARET] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [sym_none] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_nil] = ACTIONS(3429), - [anon_sym_QMARK_DOT] = ACTIONS(3429), - [anon_sym_POUND_LBRACK] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_DOLLARif] = ACTIONS(3429), - [anon_sym_is] = ACTIONS(3429), - [anon_sym_BANGis] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3429), - [anon_sym_BANGin] = ACTIONS(3429), - [anon_sym_match] = ACTIONS(3429), - [anon_sym_select] = ACTIONS(3429), - [anon_sym_lock] = ACTIONS(3429), - [anon_sym_rlock] = ACTIONS(3429), - [anon_sym_unsafe] = ACTIONS(3429), - [anon_sym_sql] = ACTIONS(3429), - [sym_int_literal] = ACTIONS(3429), - [sym_float_literal] = ACTIONS(3429), - [sym_rune_literal] = ACTIONS(3429), - [sym_pseudo_compile_time_identifier] = ACTIONS(3429), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3429), - [anon_sym_chan] = ACTIONS(3429), - [anon_sym_thread] = ACTIONS(3429), - [anon_sym_atomic] = ACTIONS(3429), - [sym___double_quote] = ACTIONS(3429), - [sym___single_quote] = ACTIONS(3429), - [sym___c_double_quote] = ACTIONS(3429), - [sym___c_single_quote] = ACTIONS(3429), - [sym___r_double_quote] = ACTIONS(3429), - [sym___r_single_quote] = ACTIONS(3429), - }, - [1178] = { - [sym_identifier] = ACTIONS(2977), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_CR] = ACTIONS(2977), - [anon_sym_CR_LF] = ACTIONS(2977), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2977), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [anon_sym_LT_EQ] = ACTIONS(2977), - [anon_sym_GT_EQ] = ACTIONS(2977), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2977), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_PLUS_PLUS] = ACTIONS(2977), - [anon_sym_DASH_DASH] = ACTIONS(2977), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2977), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2977), - [anon_sym_CARET] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2977), - [anon_sym_LT_LT] = ACTIONS(2977), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2977), - [anon_sym_AMP_CARET] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2977), - [anon_sym_POUND_LBRACK] = ACTIONS(2977), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2977), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2977), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2977), - [sym_rune_literal] = ACTIONS(2977), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2977), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), - [sym___double_quote] = ACTIONS(2977), - [sym___single_quote] = ACTIONS(2977), - [sym___c_double_quote] = ACTIONS(2977), - [sym___c_single_quote] = ACTIONS(2977), - [sym___r_double_quote] = ACTIONS(2977), - [sym___r_single_quote] = ACTIONS(2977), - }, - [1179] = { - [sym_identifier] = ACTIONS(3251), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_CR] = ACTIONS(3251), - [anon_sym_CR_LF] = ACTIONS(3251), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_COMMA] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_RPAREN] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3251), - [anon_sym_BANG_EQ] = ACTIONS(3251), - [anon_sym_LT_EQ] = ACTIONS(3251), - [anon_sym_GT_EQ] = ACTIONS(3251), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3251), - [anon_sym_LT_LT] = ACTIONS(3251), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3251), - [anon_sym_AMP_CARET] = ACTIONS(3251), - [anon_sym_AMP_AMP] = ACTIONS(3251), - [anon_sym_PIPE_PIPE] = ACTIONS(3251), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3251), - [anon_sym_POUND_LBRACK] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3251), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3251), - [sym___single_quote] = ACTIONS(3251), - [sym___c_double_quote] = ACTIONS(3251), - [sym___c_single_quote] = ACTIONS(3251), - [sym___r_double_quote] = ACTIONS(3251), - [sym___r_single_quote] = ACTIONS(3251), - }, - [1180] = { - [sym_identifier] = ACTIONS(3776), - [anon_sym_LF] = ACTIONS(3779), - [anon_sym_CR] = ACTIONS(3779), - [anon_sym_CR_LF] = ACTIONS(3779), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3779), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3779), - [anon_sym_RBRACE] = ACTIONS(3776), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3784), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3437), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3437), - [anon_sym_AMP_CARET] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3437), - [anon_sym_POUND_LBRACK] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3437), - [sym_rune_literal] = ACTIONS(3437), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3437), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3437), - [sym___single_quote] = ACTIONS(3437), - [sym___c_double_quote] = ACTIONS(3437), - [sym___c_single_quote] = ACTIONS(3437), - [sym___r_double_quote] = ACTIONS(3437), - [sym___r_single_quote] = ACTIONS(3437), - }, - [1181] = { - [sym_identifier] = ACTIONS(3299), - [anon_sym_LF] = ACTIONS(3299), - [anon_sym_CR] = ACTIONS(3299), - [anon_sym_CR_LF] = ACTIONS(3299), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3299), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3299), - [anon_sym_COMMA] = ACTIONS(3299), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_LPAREN] = ACTIONS(3299), - [anon_sym_RPAREN] = ACTIONS(3299), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3299), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3299), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3299), - [anon_sym_BANG_EQ] = ACTIONS(3299), - [anon_sym_LT_EQ] = ACTIONS(3299), - [anon_sym_GT_EQ] = ACTIONS(3299), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3299), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3299), - [anon_sym_DASH_DASH] = ACTIONS(3299), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3299), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3299), - [anon_sym_CARET] = ACTIONS(3299), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3299), - [anon_sym_LT_LT] = ACTIONS(3299), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3299), - [anon_sym_AMP_CARET] = ACTIONS(3299), - [anon_sym_AMP_AMP] = ACTIONS(3299), - [anon_sym_PIPE_PIPE] = ACTIONS(3299), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3299), - [anon_sym_POUND_LBRACK] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3299), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3299), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3299), - [sym_rune_literal] = ACTIONS(3299), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3299), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3299), - [sym___single_quote] = ACTIONS(3299), - [sym___c_double_quote] = ACTIONS(3299), - [sym___c_single_quote] = ACTIONS(3299), - [sym___r_double_quote] = ACTIONS(3299), - [sym___r_single_quote] = ACTIONS(3299), - }, - [1182] = { - [sym_identifier] = ACTIONS(3776), - [anon_sym_LF] = ACTIONS(3779), - [anon_sym_CR] = ACTIONS(3779), - [anon_sym_CR_LF] = ACTIONS(3779), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3779), - [anon_sym_DOT] = ACTIONS(3786), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3779), - [anon_sym_RBRACE] = ACTIONS(3776), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3782), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3784), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3437), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3437), - [anon_sym_AMP_CARET] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3437), - [anon_sym_POUND_LBRACK] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3437), - [sym_rune_literal] = ACTIONS(3437), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3437), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3437), - [sym___single_quote] = ACTIONS(3437), - [sym___c_double_quote] = ACTIONS(3437), - [sym___c_single_quote] = ACTIONS(3437), - [sym___r_double_quote] = ACTIONS(3437), - [sym___r_single_quote] = ACTIONS(3437), - }, - [1183] = { - [sym_identifier] = ACTIONS(3283), - [anon_sym_LF] = ACTIONS(3283), - [anon_sym_CR] = ACTIONS(3283), - [anon_sym_CR_LF] = ACTIONS(3283), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3283), - [anon_sym_DOT] = ACTIONS(3283), - [anon_sym_as] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3283), - [anon_sym_COMMA] = ACTIONS(3283), - [anon_sym_RBRACE] = ACTIONS(3283), - [anon_sym_LPAREN] = ACTIONS(3283), - [anon_sym_RPAREN] = ACTIONS(3283), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_fn] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_PERCENT] = ACTIONS(3283), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_EQ_EQ] = ACTIONS(3283), - [anon_sym_BANG_EQ] = ACTIONS(3283), - [anon_sym_LT_EQ] = ACTIONS(3283), - [anon_sym_GT_EQ] = ACTIONS(3283), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3283), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(3283), - [anon_sym_PLUS_PLUS] = ACTIONS(3283), - [anon_sym_DASH_DASH] = ACTIONS(3283), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_go] = ACTIONS(3283), - [anon_sym_spawn] = ACTIONS(3283), - [anon_sym_json_DOTdecode] = ACTIONS(3283), - [anon_sym_LBRACK2] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3283), - [anon_sym_CARET] = ACTIONS(3283), - [anon_sym_AMP] = ACTIONS(3283), - [anon_sym_LT_DASH] = ACTIONS(3283), - [anon_sym_LT_LT] = ACTIONS(3283), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_GT_GT_GT] = ACTIONS(3283), - [anon_sym_AMP_CARET] = ACTIONS(3283), - [anon_sym_AMP_AMP] = ACTIONS(3283), - [anon_sym_PIPE_PIPE] = ACTIONS(3283), - [anon_sym_or] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_nil] = ACTIONS(3283), - [anon_sym_QMARK_DOT] = ACTIONS(3283), - [anon_sym_POUND_LBRACK] = ACTIONS(3283), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_DOLLARif] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_BANGis] = ACTIONS(3283), - [anon_sym_in] = ACTIONS(3283), - [anon_sym_BANGin] = ACTIONS(3283), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_rlock] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_sql] = ACTIONS(3283), - [sym_int_literal] = ACTIONS(3283), - [sym_float_literal] = ACTIONS(3283), - [sym_rune_literal] = ACTIONS(3283), - [sym_pseudo_compile_time_identifier] = ACTIONS(3283), - [anon_sym_shared] = ACTIONS(3283), - [anon_sym_map_LBRACK] = ACTIONS(3283), - [anon_sym_chan] = ACTIONS(3283), - [anon_sym_thread] = ACTIONS(3283), - [anon_sym_atomic] = ACTIONS(3283), - [sym___double_quote] = ACTIONS(3283), - [sym___single_quote] = ACTIONS(3283), - [sym___c_double_quote] = ACTIONS(3283), - [sym___c_single_quote] = ACTIONS(3283), - [sym___r_double_quote] = ACTIONS(3283), - [sym___r_single_quote] = ACTIONS(3283), - }, - [1184] = { - [sym_identifier] = ACTIONS(2669), - [anon_sym_LF] = ACTIONS(2669), - [anon_sym_CR] = ACTIONS(2669), - [anon_sym_CR_LF] = ACTIONS(2669), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2669), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2669), - [anon_sym_COMMA] = ACTIONS(2669), - [anon_sym_RBRACE] = ACTIONS(2669), - [anon_sym_LPAREN] = ACTIONS(2669), - [anon_sym_RPAREN] = ACTIONS(2669), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2669), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2669), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2669), - [anon_sym_BANG_EQ] = ACTIONS(2669), - [anon_sym_LT_EQ] = ACTIONS(2669), - [anon_sym_GT_EQ] = ACTIONS(2669), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_PLUS_PLUS] = ACTIONS(2669), - [anon_sym_DASH_DASH] = ACTIONS(2669), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2669), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2669), - [anon_sym_CARET] = ACTIONS(2669), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2669), - [anon_sym_LT_LT] = ACTIONS(2669), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2669), - [anon_sym_AMP_CARET] = ACTIONS(2669), - [anon_sym_AMP_AMP] = ACTIONS(2669), - [anon_sym_PIPE_PIPE] = ACTIONS(2669), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2669), - [anon_sym_POUND_LBRACK] = ACTIONS(2669), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2669), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2669), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2669), - [sym_rune_literal] = ACTIONS(2669), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2669), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2669), - [sym___single_quote] = ACTIONS(2669), - [sym___c_double_quote] = ACTIONS(2669), - [sym___c_single_quote] = ACTIONS(2669), - [sym___r_double_quote] = ACTIONS(2669), - [sym___r_single_quote] = ACTIONS(2669), - }, - [1185] = { - [sym_identifier] = ACTIONS(3279), - [anon_sym_LF] = ACTIONS(3279), - [anon_sym_CR] = ACTIONS(3279), - [anon_sym_CR_LF] = ACTIONS(3279), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_COMMA] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_RPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3279), - [anon_sym_BANG_EQ] = ACTIONS(3279), - [anon_sym_LT_EQ] = ACTIONS(3279), - [anon_sym_GT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3279), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_CARET] = ACTIONS(3279), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3279), - [anon_sym_LT_LT] = ACTIONS(3279), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3279), - [anon_sym_AMP_CARET] = ACTIONS(3279), - [anon_sym_AMP_AMP] = ACTIONS(3279), - [anon_sym_PIPE_PIPE] = ACTIONS(3279), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3279), - [anon_sym_POUND_LBRACK] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3279), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3279), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3279), - [sym_rune_literal] = ACTIONS(3279), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3279), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3279), - [sym___single_quote] = ACTIONS(3279), - [sym___c_double_quote] = ACTIONS(3279), - [sym___c_single_quote] = ACTIONS(3279), - [sym___r_double_quote] = ACTIONS(3279), - [sym___r_single_quote] = ACTIONS(3279), - }, - [1186] = { - [sym_identifier] = ACTIONS(3275), - [anon_sym_LF] = ACTIONS(3275), - [anon_sym_CR] = ACTIONS(3275), - [anon_sym_CR_LF] = ACTIONS(3275), + [1210] = { + [sym_identifier] = ACTIONS(3816), + [anon_sym_LF] = ACTIONS(3819), + [anon_sym_CR] = ACTIONS(3819), + [anon_sym_CR_LF] = ACTIONS(3819), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_DOT] = ACTIONS(3275), - [anon_sym_as] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_COMMA] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_RPAREN] = ACTIONS(3275), - [anon_sym_PIPE] = ACTIONS(3275), - [anon_sym_fn] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_STAR] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_PERCENT] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_GT] = ACTIONS(3275), - [anon_sym_EQ_EQ] = ACTIONS(3275), - [anon_sym_BANG_EQ] = ACTIONS(3275), - [anon_sym_LT_EQ] = ACTIONS(3275), - [anon_sym_GT_EQ] = ACTIONS(3275), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_struct] = ACTIONS(3275), - [anon_sym_mut] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [anon_sym_QMARK] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(3275), - [anon_sym_spawn] = ACTIONS(3275), - [anon_sym_json_DOTdecode] = ACTIONS(3275), - [anon_sym_LBRACK2] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_CARET] = ACTIONS(3275), - [anon_sym_AMP] = ACTIONS(3275), - [anon_sym_LT_DASH] = ACTIONS(3275), - [anon_sym_LT_LT] = ACTIONS(3275), - [anon_sym_GT_GT] = ACTIONS(3275), - [anon_sym_GT_GT_GT] = ACTIONS(3275), - [anon_sym_AMP_CARET] = ACTIONS(3275), - [anon_sym_AMP_AMP] = ACTIONS(3275), - [anon_sym_PIPE_PIPE] = ACTIONS(3275), - [anon_sym_or] = ACTIONS(3275), - [sym_none] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_nil] = ACTIONS(3275), - [anon_sym_QMARK_DOT] = ACTIONS(3275), - [anon_sym_POUND_LBRACK] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_DOLLARif] = ACTIONS(3275), - [anon_sym_is] = ACTIONS(3275), - [anon_sym_BANGis] = ACTIONS(3275), - [anon_sym_in] = ACTIONS(3275), - [anon_sym_BANGin] = ACTIONS(3275), - [anon_sym_match] = ACTIONS(3275), - [anon_sym_select] = ACTIONS(3275), - [anon_sym_lock] = ACTIONS(3275), - [anon_sym_rlock] = ACTIONS(3275), - [anon_sym_unsafe] = ACTIONS(3275), - [anon_sym_sql] = ACTIONS(3275), - [sym_int_literal] = ACTIONS(3275), - [sym_float_literal] = ACTIONS(3275), - [sym_rune_literal] = ACTIONS(3275), - [sym_pseudo_compile_time_identifier] = ACTIONS(3275), - [anon_sym_shared] = ACTIONS(3275), - [anon_sym_map_LBRACK] = ACTIONS(3275), - [anon_sym_chan] = ACTIONS(3275), - [anon_sym_thread] = ACTIONS(3275), - [anon_sym_atomic] = ACTIONS(3275), - [sym___double_quote] = ACTIONS(3275), - [sym___single_quote] = ACTIONS(3275), - [sym___c_double_quote] = ACTIONS(3275), - [sym___c_single_quote] = ACTIONS(3275), - [sym___r_double_quote] = ACTIONS(3275), - [sym___r_single_quote] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3819), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_COMMA] = ACTIONS(3819), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_COLON] = ACTIONS(3824), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3311), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3311), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3311), + [anon_sym_AMP_CARET] = ACTIONS(3311), + [anon_sym_AMP_AMP] = ACTIONS(3311), + [anon_sym_PIPE_PIPE] = ACTIONS(3311), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3311), + [anon_sym_POUND_LBRACK] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3311), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3311), + [sym_rune_literal] = ACTIONS(3311), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3311), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3311), + [sym___single_quote] = ACTIONS(3311), + [sym___c_double_quote] = ACTIONS(3311), + [sym___c_single_quote] = ACTIONS(3311), + [sym___r_double_quote] = ACTIONS(3311), + [sym___r_single_quote] = ACTIONS(3311), }, - [1187] = { - [sym_identifier] = ACTIONS(3271), - [anon_sym_LF] = ACTIONS(3271), - [anon_sym_CR] = ACTIONS(3271), - [anon_sym_CR_LF] = ACTIONS(3271), + [1211] = { + [sym_identifier] = ACTIONS(3053), + [anon_sym_LF] = ACTIONS(3053), + [anon_sym_CR] = ACTIONS(3053), + [anon_sym_CR_LF] = ACTIONS(3053), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_RPAREN] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3271), - [anon_sym_BANG_EQ] = ACTIONS(3271), - [anon_sym_LT_EQ] = ACTIONS(3271), - [anon_sym_GT_EQ] = ACTIONS(3271), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3271), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3271), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3271), - [anon_sym_AMP_CARET] = ACTIONS(3271), - [anon_sym_AMP_AMP] = ACTIONS(3271), - [anon_sym_PIPE_PIPE] = ACTIONS(3271), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3271), - [anon_sym_POUND_LBRACK] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3271), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3271), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_as] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_COMMA] = ACTIONS(3053), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_RPAREN] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_fn] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_SLASH] = ACTIONS(3053), + [anon_sym_PERCENT] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_EQ_EQ] = ACTIONS(3053), + [anon_sym_BANG_EQ] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3053), + [anon_sym_mut] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3053), + [anon_sym_DASH_DASH] = ACTIONS(3053), + [anon_sym_QMARK] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_go] = ACTIONS(3053), + [anon_sym_spawn] = ACTIONS(3053), + [anon_sym_json_DOTdecode] = ACTIONS(3053), + [anon_sym_LBRACK2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3053), + [anon_sym_CARET] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT_DASH] = ACTIONS(3053), + [anon_sym_LT_LT] = ACTIONS(3053), + [anon_sym_GT_GT] = ACTIONS(3053), + [anon_sym_GT_GT_GT] = ACTIONS(3053), + [anon_sym_AMP_CARET] = ACTIONS(3053), + [anon_sym_AMP_AMP] = ACTIONS(3053), + [anon_sym_PIPE_PIPE] = ACTIONS(3053), + [anon_sym_or] = ACTIONS(3053), + [sym_none] = ACTIONS(3053), + [sym_true] = ACTIONS(3053), + [sym_false] = ACTIONS(3053), + [sym_nil] = ACTIONS(3053), + [anon_sym_QMARK_DOT] = ACTIONS(3053), + [anon_sym_POUND_LBRACK] = ACTIONS(3053), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_DOLLARif] = ACTIONS(3053), + [anon_sym_is] = ACTIONS(3053), + [anon_sym_BANGis] = ACTIONS(3053), + [anon_sym_in] = ACTIONS(3053), + [anon_sym_BANGin] = ACTIONS(3053), + [anon_sym_match] = ACTIONS(3053), + [anon_sym_select] = ACTIONS(3053), + [anon_sym_lock] = ACTIONS(3053), + [anon_sym_rlock] = ACTIONS(3053), + [anon_sym_unsafe] = ACTIONS(3053), + [anon_sym_sql] = ACTIONS(3053), + [sym_int_literal] = ACTIONS(3053), + [sym_float_literal] = ACTIONS(3053), + [sym_rune_literal] = ACTIONS(3053), + [sym_pseudo_compile_time_identifier] = ACTIONS(3053), + [anon_sym_shared] = ACTIONS(3053), + [anon_sym_map_LBRACK] = ACTIONS(3053), + [anon_sym_chan] = ACTIONS(3053), + [anon_sym_thread] = ACTIONS(3053), + [anon_sym_atomic] = ACTIONS(3053), + [sym___double_quote] = ACTIONS(3053), + [sym___single_quote] = ACTIONS(3053), + [sym___c_double_quote] = ACTIONS(3053), + [sym___c_single_quote] = ACTIONS(3053), + [sym___r_double_quote] = ACTIONS(3053), + [sym___r_single_quote] = ACTIONS(3053), }, - [1188] = { - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), + [1212] = { + [sym_identifier] = ACTIONS(3001), + [anon_sym_LF] = ACTIONS(3001), + [anon_sym_CR] = ACTIONS(3001), + [anon_sym_CR_LF] = ACTIONS(3001), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_RPAREN] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [sym_pseudo_compile_time_identifier] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_RPAREN] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(3001), + [anon_sym_BANG_EQ] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3001), + [anon_sym_DASH_DASH] = ACTIONS(3001), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(3001), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3001), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3001), + [anon_sym_AMP_CARET] = ACTIONS(3001), + [anon_sym_AMP_AMP] = ACTIONS(3001), + [anon_sym_PIPE_PIPE] = ACTIONS(3001), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(3001), + [anon_sym_POUND_LBRACK] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(3001), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(3001), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), + [sym_rune_literal] = ACTIONS(3001), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(3001), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(3001), + [sym___single_quote] = ACTIONS(3001), + [sym___c_double_quote] = ACTIONS(3001), + [sym___c_single_quote] = ACTIONS(3001), + [sym___r_double_quote] = ACTIONS(3001), + [sym___r_single_quote] = ACTIONS(3001), }, - [1189] = { + [1213] = { + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_COMMA] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_RPAREN] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3370), + [anon_sym_BANG_EQ] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3370), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3370), + [anon_sym_AMP_CARET] = ACTIONS(3370), + [anon_sym_AMP_AMP] = ACTIONS(3370), + [anon_sym_PIPE_PIPE] = ACTIONS(3370), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3370), + [anon_sym_POUND_LBRACK] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3370), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), + }, + [1214] = { + [sym_identifier] = ACTIONS(3404), + [anon_sym_LF] = ACTIONS(3404), + [anon_sym_CR] = ACTIONS(3404), + [anon_sym_CR_LF] = ACTIONS(3404), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_as] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_COMMA] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_RPAREN] = ACTIONS(3404), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_fn] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3404), + [anon_sym_BANG_EQ] = ACTIONS(3404), + [anon_sym_LT_EQ] = ACTIONS(3404), + [anon_sym_GT_EQ] = ACTIONS(3404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3404), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3404), + [anon_sym_mut] = ACTIONS(3404), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_go] = ACTIONS(3404), + [anon_sym_spawn] = ACTIONS(3404), + [anon_sym_json_DOTdecode] = ACTIONS(3404), + [anon_sym_LBRACK2] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_CARET] = ACTIONS(3404), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3404), + [anon_sym_LT_LT] = ACTIONS(3404), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_GT_GT_GT] = ACTIONS(3404), + [anon_sym_AMP_CARET] = ACTIONS(3404), + [anon_sym_AMP_AMP] = ACTIONS(3404), + [anon_sym_PIPE_PIPE] = ACTIONS(3404), + [anon_sym_or] = ACTIONS(3404), + [sym_none] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_nil] = ACTIONS(3404), + [anon_sym_QMARK_DOT] = ACTIONS(3404), + [anon_sym_POUND_LBRACK] = ACTIONS(3404), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_DOLLARif] = ACTIONS(3404), + [anon_sym_is] = ACTIONS(3404), + [anon_sym_BANGis] = ACTIONS(3404), + [anon_sym_in] = ACTIONS(3404), + [anon_sym_BANGin] = ACTIONS(3404), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3404), + [anon_sym_lock] = ACTIONS(3404), + [anon_sym_rlock] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_sql] = ACTIONS(3404), + [sym_int_literal] = ACTIONS(3404), + [sym_float_literal] = ACTIONS(3404), + [sym_rune_literal] = ACTIONS(3404), + [sym_pseudo_compile_time_identifier] = ACTIONS(3404), + [anon_sym_shared] = ACTIONS(3404), + [anon_sym_map_LBRACK] = ACTIONS(3404), + [anon_sym_chan] = ACTIONS(3404), + [anon_sym_thread] = ACTIONS(3404), + [anon_sym_atomic] = ACTIONS(3404), + [sym___double_quote] = ACTIONS(3404), + [sym___single_quote] = ACTIONS(3404), + [sym___c_double_quote] = ACTIONS(3404), + [sym___c_single_quote] = ACTIONS(3404), + [sym___r_double_quote] = ACTIONS(3404), + [sym___r_single_quote] = ACTIONS(3404), + }, + [1215] = { [sym_identifier] = ACTIONS(3145), [anon_sym_LF] = ACTIONS(3145), [anon_sym_CR] = ACTIONS(3145), @@ -157689,1099 +159980,847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3145), [sym___r_single_quote] = ACTIONS(3145), }, - [1190] = { - [sym_identifier] = ACTIONS(3149), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_CR] = ACTIONS(3149), - [anon_sym_CR_LF] = ACTIONS(3149), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_RPAREN] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_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_DOT_DOT_DOT] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [sym_pseudo_compile_time_identifier] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), - }, - [1191] = { - [sym_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_CR] = ACTIONS(3153), - [anon_sym_CR_LF] = ACTIONS(3153), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_RPAREN] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_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_DOT_DOT_DOT] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [sym_pseudo_compile_time_identifier] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), - }, - [1192] = { - [sym_identifier] = ACTIONS(3235), - [anon_sym_LF] = ACTIONS(3235), - [anon_sym_CR] = ACTIONS(3235), - [anon_sym_CR_LF] = ACTIONS(3235), + [1216] = { + [sym_identifier] = ACTIONS(2651), + [anon_sym_LF] = ACTIONS(2651), + [anon_sym_CR] = ACTIONS(2651), + [anon_sym_CR_LF] = ACTIONS(2651), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_COMMA] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_RPAREN] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3235), - [anon_sym_BANG_EQ] = ACTIONS(3235), - [anon_sym_LT_EQ] = ACTIONS(3235), - [anon_sym_GT_EQ] = ACTIONS(3235), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3235), - [anon_sym_LT_LT] = ACTIONS(3235), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3235), - [anon_sym_AMP_CARET] = ACTIONS(3235), - [anon_sym_AMP_AMP] = ACTIONS(3235), - [anon_sym_PIPE_PIPE] = ACTIONS(3235), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3235), - [anon_sym_POUND_LBRACK] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3235), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3235), - [sym___single_quote] = ACTIONS(3235), - [sym___c_double_quote] = ACTIONS(3235), - [sym___c_single_quote] = ACTIONS(3235), - [sym___r_double_quote] = ACTIONS(3235), - [sym___r_single_quote] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(2651), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_as] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2651), + [anon_sym_COMMA] = ACTIONS(2651), + [anon_sym_RBRACE] = ACTIONS(2651), + [anon_sym_LPAREN] = ACTIONS(2651), + [anon_sym_RPAREN] = ACTIONS(2651), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2651), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2651), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2651), + [anon_sym_BANG_EQ] = ACTIONS(2651), + [anon_sym_LT_EQ] = ACTIONS(2651), + [anon_sym_GT_EQ] = ACTIONS(2651), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2651), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_mut] = ACTIONS(2651), + [anon_sym_PLUS_PLUS] = ACTIONS(2651), + [anon_sym_DASH_DASH] = ACTIONS(2651), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2651), + [anon_sym_spawn] = ACTIONS(2651), + [anon_sym_json_DOTdecode] = ACTIONS(2651), + [anon_sym_LBRACK2] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2651), + [anon_sym_CARET] = ACTIONS(2651), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2651), + [anon_sym_LT_LT] = ACTIONS(2651), + [anon_sym_GT_GT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2651), + [anon_sym_AMP_CARET] = ACTIONS(2651), + [anon_sym_AMP_AMP] = ACTIONS(2651), + [anon_sym_PIPE_PIPE] = ACTIONS(2651), + [anon_sym_or] = ACTIONS(2651), + [sym_none] = ACTIONS(2651), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_nil] = ACTIONS(2651), + [anon_sym_QMARK_DOT] = ACTIONS(2651), + [anon_sym_POUND_LBRACK] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_DOLLARif] = ACTIONS(2651), + [anon_sym_is] = ACTIONS(2651), + [anon_sym_BANGis] = ACTIONS(2651), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_BANGin] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_select] = ACTIONS(2651), + [anon_sym_lock] = ACTIONS(2651), + [anon_sym_rlock] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_sql] = ACTIONS(2651), + [sym_int_literal] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2651), + [sym_rune_literal] = ACTIONS(2651), + [sym_pseudo_compile_time_identifier] = ACTIONS(2651), + [anon_sym_shared] = ACTIONS(2651), + [anon_sym_map_LBRACK] = ACTIONS(2651), + [anon_sym_chan] = ACTIONS(2651), + [anon_sym_thread] = ACTIONS(2651), + [anon_sym_atomic] = ACTIONS(2651), + [sym___double_quote] = ACTIONS(2651), + [sym___single_quote] = ACTIONS(2651), + [sym___c_double_quote] = ACTIONS(2651), + [sym___c_single_quote] = ACTIONS(2651), + [sym___r_double_quote] = ACTIONS(2651), + [sym___r_single_quote] = ACTIONS(2651), }, - [1193] = { - [sym_identifier] = ACTIONS(3401), - [anon_sym_LF] = ACTIONS(3401), - [anon_sym_CR] = ACTIONS(3401), - [anon_sym_CR_LF] = ACTIONS(3401), + [1217] = { + [sym_identifier] = ACTIONS(3265), + [anon_sym_LF] = ACTIONS(3265), + [anon_sym_CR] = ACTIONS(3265), + [anon_sym_CR_LF] = ACTIONS(3265), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_as] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_RPAREN] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_fn] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3401), - [anon_sym_BANG_EQ] = ACTIONS(3401), - [anon_sym_LT_EQ] = ACTIONS(3401), - [anon_sym_GT_EQ] = ACTIONS(3401), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_mut] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(3401), - [anon_sym_spawn] = ACTIONS(3401), - [anon_sym_json_DOTdecode] = ACTIONS(3401), - [anon_sym_LBRACK2] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [anon_sym_LT_LT] = ACTIONS(3401), - [anon_sym_GT_GT] = ACTIONS(3401), - [anon_sym_GT_GT_GT] = ACTIONS(3401), - [anon_sym_AMP_CARET] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [sym_none] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_nil] = ACTIONS(3401), - [anon_sym_QMARK_DOT] = ACTIONS(3401), - [anon_sym_POUND_LBRACK] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_DOLLARif] = ACTIONS(3401), - [anon_sym_is] = ACTIONS(3401), - [anon_sym_BANGis] = ACTIONS(3401), - [anon_sym_in] = ACTIONS(3401), - [anon_sym_BANGin] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_select] = ACTIONS(3401), - [anon_sym_lock] = ACTIONS(3401), - [anon_sym_rlock] = ACTIONS(3401), - [anon_sym_unsafe] = ACTIONS(3401), - [anon_sym_sql] = ACTIONS(3401), - [sym_int_literal] = ACTIONS(3401), - [sym_float_literal] = ACTIONS(3401), - [sym_rune_literal] = ACTIONS(3401), - [sym_pseudo_compile_time_identifier] = ACTIONS(3401), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3401), - [anon_sym_chan] = ACTIONS(3401), - [anon_sym_thread] = ACTIONS(3401), - [anon_sym_atomic] = ACTIONS(3401), - [sym___double_quote] = ACTIONS(3401), - [sym___single_quote] = ACTIONS(3401), - [sym___c_double_quote] = ACTIONS(3401), - [sym___c_single_quote] = ACTIONS(3401), - [sym___r_double_quote] = ACTIONS(3401), - [sym___r_single_quote] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_COMMA] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_RPAREN] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3265), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3265), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3265), + [anon_sym_POUND_LBRACK] = ACTIONS(3265), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3265), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3265), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + [sym_rune_literal] = ACTIONS(3265), + [sym_pseudo_compile_time_identifier] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3265), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3265), + [sym___single_quote] = ACTIONS(3265), + [sym___c_double_quote] = ACTIONS(3265), + [sym___c_single_quote] = ACTIONS(3265), + [sym___r_double_quote] = ACTIONS(3265), + [sym___r_single_quote] = ACTIONS(3265), }, - [1194] = { - [sym_identifier] = ACTIONS(3157), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_CR] = ACTIONS(3157), - [anon_sym_CR_LF] = ACTIONS(3157), + [1218] = { + [sym_identifier] = ACTIONS(3420), + [anon_sym_LF] = ACTIONS(3420), + [anon_sym_CR] = ACTIONS(3420), + [anon_sym_CR_LF] = ACTIONS(3420), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_RPAREN] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_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_DOT_DOT_DOT] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [sym_pseudo_compile_time_identifier] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_COMMA] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_RPAREN] = ACTIONS(3420), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_fn] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_EQ_EQ] = ACTIONS(3420), + [anon_sym_BANG_EQ] = ACTIONS(3420), + [anon_sym_LT_EQ] = ACTIONS(3420), + [anon_sym_GT_EQ] = ACTIONS(3420), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3420), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(3420), + [anon_sym_mut] = ACTIONS(3420), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_QMARK] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3420), + [anon_sym_json_DOTdecode] = ACTIONS(3420), + [anon_sym_LBRACK2] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_CARET] = ACTIONS(3420), + [anon_sym_AMP] = ACTIONS(3420), + [anon_sym_LT_DASH] = ACTIONS(3420), + [anon_sym_LT_LT] = ACTIONS(3420), + [anon_sym_GT_GT] = ACTIONS(3420), + [anon_sym_GT_GT_GT] = ACTIONS(3420), + [anon_sym_AMP_CARET] = ACTIONS(3420), + [anon_sym_AMP_AMP] = ACTIONS(3420), + [anon_sym_PIPE_PIPE] = ACTIONS(3420), + [anon_sym_or] = ACTIONS(3420), + [sym_none] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_nil] = ACTIONS(3420), + [anon_sym_QMARK_DOT] = ACTIONS(3420), + [anon_sym_POUND_LBRACK] = ACTIONS(3420), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_DOLLARif] = ACTIONS(3420), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3420), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_BANGin] = ACTIONS(3420), + [anon_sym_match] = ACTIONS(3420), + [anon_sym_select] = ACTIONS(3420), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_sql] = ACTIONS(3420), + [sym_int_literal] = ACTIONS(3420), + [sym_float_literal] = ACTIONS(3420), + [sym_rune_literal] = ACTIONS(3420), + [sym_pseudo_compile_time_identifier] = ACTIONS(3420), + [anon_sym_shared] = ACTIONS(3420), + [anon_sym_map_LBRACK] = ACTIONS(3420), + [anon_sym_chan] = ACTIONS(3420), + [anon_sym_thread] = ACTIONS(3420), + [anon_sym_atomic] = ACTIONS(3420), + [sym___double_quote] = ACTIONS(3420), + [sym___single_quote] = ACTIONS(3420), + [sym___c_double_quote] = ACTIONS(3420), + [sym___c_single_quote] = ACTIONS(3420), + [sym___r_double_quote] = ACTIONS(3420), + [sym___r_single_quote] = ACTIONS(3420), }, - [1195] = { - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), + [1219] = { + [sym_identifier] = ACTIONS(3057), + [anon_sym_LF] = ACTIONS(3057), + [anon_sym_CR] = ACTIONS(3057), + [anon_sym_CR_LF] = ACTIONS(3057), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_COMMA] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3219), - [anon_sym_BANG_EQ] = ACTIONS(3219), - [anon_sym_LT_EQ] = ACTIONS(3219), - [anon_sym_GT_EQ] = ACTIONS(3219), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3219), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [anon_sym_LT_LT] = ACTIONS(3219), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3219), - [anon_sym_AMP_CARET] = ACTIONS(3219), - [anon_sym_AMP_AMP] = ACTIONS(3219), - [anon_sym_PIPE_PIPE] = ACTIONS(3219), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3219), - [anon_sym_POUND_LBRACK] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3219), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3219), - [sym_rune_literal] = ACTIONS(3219), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3219), - [sym___single_quote] = ACTIONS(3219), - [sym___c_double_quote] = ACTIONS(3219), - [sym___c_single_quote] = ACTIONS(3219), - [sym___r_double_quote] = ACTIONS(3219), - [sym___r_single_quote] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym_DOT] = ACTIONS(3057), + [anon_sym_as] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_COMMA] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_RPAREN] = ACTIONS(3057), + [anon_sym_PIPE] = ACTIONS(3057), + [anon_sym_fn] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_SLASH] = ACTIONS(3057), + [anon_sym_PERCENT] = ACTIONS(3057), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_EQ_EQ] = ACTIONS(3057), + [anon_sym_BANG_EQ] = ACTIONS(3057), + [anon_sym_LT_EQ] = ACTIONS(3057), + [anon_sym_GT_EQ] = ACTIONS(3057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3057), + [anon_sym_mut] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3057), + [anon_sym_DASH_DASH] = ACTIONS(3057), + [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_go] = ACTIONS(3057), + [anon_sym_spawn] = ACTIONS(3057), + [anon_sym_json_DOTdecode] = ACTIONS(3057), + [anon_sym_LBRACK2] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3057), + [anon_sym_CARET] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_LT_DASH] = ACTIONS(3057), + [anon_sym_LT_LT] = ACTIONS(3057), + [anon_sym_GT_GT] = ACTIONS(3057), + [anon_sym_GT_GT_GT] = ACTIONS(3057), + [anon_sym_AMP_CARET] = ACTIONS(3057), + [anon_sym_AMP_AMP] = ACTIONS(3057), + [anon_sym_PIPE_PIPE] = ACTIONS(3057), + [anon_sym_or] = ACTIONS(3057), + [sym_none] = ACTIONS(3057), + [sym_true] = ACTIONS(3057), + [sym_false] = ACTIONS(3057), + [sym_nil] = ACTIONS(3057), + [anon_sym_QMARK_DOT] = ACTIONS(3057), + [anon_sym_POUND_LBRACK] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_DOLLARif] = ACTIONS(3057), + [anon_sym_is] = ACTIONS(3057), + [anon_sym_BANGis] = ACTIONS(3057), + [anon_sym_in] = ACTIONS(3057), + [anon_sym_BANGin] = ACTIONS(3057), + [anon_sym_match] = ACTIONS(3057), + [anon_sym_select] = ACTIONS(3057), + [anon_sym_lock] = ACTIONS(3057), + [anon_sym_rlock] = ACTIONS(3057), + [anon_sym_unsafe] = ACTIONS(3057), + [anon_sym_sql] = ACTIONS(3057), + [sym_int_literal] = ACTIONS(3057), + [sym_float_literal] = ACTIONS(3057), + [sym_rune_literal] = ACTIONS(3057), + [sym_pseudo_compile_time_identifier] = ACTIONS(3057), + [anon_sym_shared] = ACTIONS(3057), + [anon_sym_map_LBRACK] = ACTIONS(3057), + [anon_sym_chan] = ACTIONS(3057), + [anon_sym_thread] = ACTIONS(3057), + [anon_sym_atomic] = ACTIONS(3057), + [sym___double_quote] = ACTIONS(3057), + [sym___single_quote] = ACTIONS(3057), + [sym___c_double_quote] = ACTIONS(3057), + [sym___c_single_quote] = ACTIONS(3057), + [sym___r_double_quote] = ACTIONS(3057), + [sym___r_single_quote] = ACTIONS(3057), }, - [1196] = { - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), + [1220] = { + [sym_identifier] = ACTIONS(3061), + [anon_sym_LF] = ACTIONS(3061), + [anon_sym_CR] = ACTIONS(3061), + [anon_sym_CR_LF] = ACTIONS(3061), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(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_RPAREN] = 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_DOT_DOT_DOT] = 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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_DOT] = ACTIONS(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_COMMA] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_RPAREN] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3061), + [anon_sym_BANG_EQ] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3061), + [anon_sym_DASH_DASH] = ACTIONS(3061), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3061), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3061), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3061), + [anon_sym_AMP_CARET] = ACTIONS(3061), + [anon_sym_AMP_AMP] = ACTIONS(3061), + [anon_sym_PIPE_PIPE] = ACTIONS(3061), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3061), + [anon_sym_POUND_LBRACK] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3061), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3061), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), + [sym_rune_literal] = ACTIONS(3061), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3061), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [sym___double_quote] = ACTIONS(3061), + [sym___single_quote] = ACTIONS(3061), + [sym___c_double_quote] = ACTIONS(3061), + [sym___c_single_quote] = ACTIONS(3061), + [sym___r_double_quote] = ACTIONS(3061), + [sym___r_single_quote] = ACTIONS(3061), }, - [1197] = { - [sym_identifier] = ACTIONS(3267), - [anon_sym_LF] = ACTIONS(3267), - [anon_sym_CR] = ACTIONS(3267), - [anon_sym_CR_LF] = ACTIONS(3267), + [1221] = { + [sym_identifier] = ACTIONS(3352), + [anon_sym_LF] = ACTIONS(3352), + [anon_sym_CR] = ACTIONS(3352), + [anon_sym_CR_LF] = ACTIONS(3352), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3267), - [anon_sym_COMMA] = ACTIONS(3267), - [anon_sym_RBRACE] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3267), - [anon_sym_RPAREN] = ACTIONS(3267), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3267), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3267), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3267), - [anon_sym_BANG_EQ] = ACTIONS(3267), - [anon_sym_LT_EQ] = ACTIONS(3267), - [anon_sym_GT_EQ] = ACTIONS(3267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3267), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_PLUS_PLUS] = ACTIONS(3267), - [anon_sym_DASH_DASH] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3267), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_CARET] = ACTIONS(3267), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3267), - [anon_sym_LT_LT] = ACTIONS(3267), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3267), - [anon_sym_AMP_CARET] = ACTIONS(3267), - [anon_sym_AMP_AMP] = ACTIONS(3267), - [anon_sym_PIPE_PIPE] = ACTIONS(3267), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3267), - [anon_sym_POUND_LBRACK] = ACTIONS(3267), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3267), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3267), - [sym_rune_literal] = ACTIONS(3267), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3267), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3267), - [sym___single_quote] = ACTIONS(3267), - [sym___c_double_quote] = ACTIONS(3267), - [sym___c_single_quote] = ACTIONS(3267), - [sym___r_double_quote] = ACTIONS(3267), - [sym___r_single_quote] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_DOT] = ACTIONS(3352), + [anon_sym_as] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_COMMA] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_RPAREN] = ACTIONS(3352), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_fn] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3352), + [anon_sym_BANG_EQ] = ACTIONS(3352), + [anon_sym_LT_EQ] = ACTIONS(3352), + [anon_sym_GT_EQ] = ACTIONS(3352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_struct] = ACTIONS(3352), + [anon_sym_mut] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_QMARK] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_go] = ACTIONS(3352), + [anon_sym_spawn] = ACTIONS(3352), + [anon_sym_json_DOTdecode] = ACTIONS(3352), + [anon_sym_LBRACK2] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_CARET] = ACTIONS(3352), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3352), + [anon_sym_LT_LT] = ACTIONS(3352), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_GT_GT_GT] = ACTIONS(3352), + [anon_sym_AMP_CARET] = ACTIONS(3352), + [anon_sym_AMP_AMP] = ACTIONS(3352), + [anon_sym_PIPE_PIPE] = ACTIONS(3352), + [anon_sym_or] = ACTIONS(3352), + [sym_none] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_nil] = ACTIONS(3352), + [anon_sym_QMARK_DOT] = ACTIONS(3352), + [anon_sym_POUND_LBRACK] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_DOLLARif] = ACTIONS(3352), + [anon_sym_is] = ACTIONS(3352), + [anon_sym_BANGis] = ACTIONS(3352), + [anon_sym_in] = ACTIONS(3352), + [anon_sym_BANGin] = ACTIONS(3352), + [anon_sym_match] = ACTIONS(3352), + [anon_sym_select] = ACTIONS(3352), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3352), + [anon_sym_sql] = ACTIONS(3352), + [sym_int_literal] = ACTIONS(3352), + [sym_float_literal] = ACTIONS(3352), + [sym_rune_literal] = ACTIONS(3352), + [sym_pseudo_compile_time_identifier] = ACTIONS(3352), + [anon_sym_shared] = ACTIONS(3352), + [anon_sym_map_LBRACK] = ACTIONS(3352), + [anon_sym_chan] = ACTIONS(3352), + [anon_sym_thread] = ACTIONS(3352), + [anon_sym_atomic] = ACTIONS(3352), + [sym___double_quote] = ACTIONS(3352), + [sym___single_quote] = ACTIONS(3352), + [sym___c_double_quote] = ACTIONS(3352), + [sym___c_single_quote] = ACTIONS(3352), + [sym___r_double_quote] = ACTIONS(3352), + [sym___r_single_quote] = ACTIONS(3352), }, - [1198] = { - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), + [1222] = { + [sym_identifier] = ACTIONS(3269), + [anon_sym_LF] = ACTIONS(3269), + [anon_sym_CR] = ACTIONS(3269), + [anon_sym_CR_LF] = ACTIONS(3269), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(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_RPAREN] = 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_DOT_DOT_DOT] = 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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_COMMA] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_RPAREN] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3269), + [anon_sym_BANG_EQ] = ACTIONS(3269), + [anon_sym_LT_EQ] = ACTIONS(3269), + [anon_sym_GT_EQ] = ACTIONS(3269), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3826), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3269), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_CARET] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3269), + [anon_sym_LT_LT] = ACTIONS(3269), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3269), + [anon_sym_AMP_CARET] = ACTIONS(3269), + [anon_sym_AMP_AMP] = ACTIONS(3269), + [anon_sym_PIPE_PIPE] = ACTIONS(3269), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3269), + [anon_sym_POUND_LBRACK] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3269), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3269), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + [sym_rune_literal] = ACTIONS(3269), + [sym_pseudo_compile_time_identifier] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3269), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3269), + [sym___single_quote] = ACTIONS(3269), + [sym___c_double_quote] = ACTIONS(3269), + [sym___c_single_quote] = ACTIONS(3269), + [sym___r_double_quote] = ACTIONS(3269), + [sym___r_single_quote] = ACTIONS(3269), }, - [1199] = { - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), + [1223] = { + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_RPAREN] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [sym_pseudo_compile_time_identifier] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), - }, - [1200] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3789), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_LT_LT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), - [anon_sym_AMP_EQ] = ACTIONS(603), - [anon_sym_AMP_CARET_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_DASH_EQ] = ACTIONS(603), - [anon_sym_PIPE_EQ] = ACTIONS(603), - [anon_sym_CARET_EQ] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_COMMA] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_RPAREN] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3257), + [anon_sym_POUND_LBRACK] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3257), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3257), + [sym___single_quote] = ACTIONS(3257), + [sym___c_double_quote] = ACTIONS(3257), + [sym___c_single_quote] = ACTIONS(3257), + [sym___r_double_quote] = ACTIONS(3257), + [sym___r_single_quote] = ACTIONS(3257), }, - [1201] = { - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_CR] = ACTIONS(3383), - [anon_sym_CR_LF] = ACTIONS(3383), + [1224] = { + [sym_identifier] = ACTIONS(3436), + [anon_sym_LF] = ACTIONS(3436), + [anon_sym_CR] = ACTIONS(3436), + [anon_sym_CR_LF] = ACTIONS(3436), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3383), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3383), - [anon_sym_BANG_EQ] = ACTIONS(3383), - [anon_sym_LT_EQ] = ACTIONS(3383), - [anon_sym_GT_EQ] = ACTIONS(3383), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3383), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_PLUS_PLUS] = ACTIONS(3383), - [anon_sym_DASH_DASH] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3383), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [anon_sym_LT_LT] = ACTIONS(3383), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3383), - [anon_sym_AMP_CARET] = ACTIONS(3383), - [anon_sym_AMP_AMP] = ACTIONS(3383), - [anon_sym_PIPE_PIPE] = ACTIONS(3383), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3383), - [anon_sym_POUND_LBRACK] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3383), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3383), - [sym_rune_literal] = ACTIONS(3383), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3383), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3383), - [sym___single_quote] = ACTIONS(3383), - [sym___c_double_quote] = ACTIONS(3383), - [sym___c_single_quote] = ACTIONS(3383), - [sym___r_double_quote] = ACTIONS(3383), - [sym___r_single_quote] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_DOT] = ACTIONS(3436), + [anon_sym_as] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_COMMA] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_RPAREN] = ACTIONS(3436), + [anon_sym_PIPE] = ACTIONS(3436), + [anon_sym_fn] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_PERCENT] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_GT] = ACTIONS(3436), + [anon_sym_EQ_EQ] = ACTIONS(3436), + [anon_sym_BANG_EQ] = ACTIONS(3436), + [anon_sym_LT_EQ] = ACTIONS(3436), + [anon_sym_GT_EQ] = ACTIONS(3436), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3436), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3436), + [anon_sym_mut] = ACTIONS(3436), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_QMARK] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_go] = ACTIONS(3436), + [anon_sym_spawn] = ACTIONS(3436), + [anon_sym_json_DOTdecode] = ACTIONS(3436), + [anon_sym_LBRACK2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_CARET] = ACTIONS(3436), + [anon_sym_AMP] = ACTIONS(3436), + [anon_sym_LT_DASH] = ACTIONS(3436), + [anon_sym_LT_LT] = ACTIONS(3436), + [anon_sym_GT_GT] = ACTIONS(3436), + [anon_sym_GT_GT_GT] = ACTIONS(3436), + [anon_sym_AMP_CARET] = ACTIONS(3436), + [anon_sym_AMP_AMP] = ACTIONS(3436), + [anon_sym_PIPE_PIPE] = ACTIONS(3436), + [anon_sym_or] = ACTIONS(3436), + [sym_none] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_nil] = ACTIONS(3436), + [anon_sym_QMARK_DOT] = ACTIONS(3436), + [anon_sym_POUND_LBRACK] = ACTIONS(3436), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_DOLLARif] = ACTIONS(3436), + [anon_sym_is] = ACTIONS(3436), + [anon_sym_BANGis] = ACTIONS(3436), + [anon_sym_in] = ACTIONS(3436), + [anon_sym_BANGin] = ACTIONS(3436), + [anon_sym_match] = ACTIONS(3436), + [anon_sym_select] = ACTIONS(3436), + [anon_sym_lock] = ACTIONS(3436), + [anon_sym_rlock] = ACTIONS(3436), + [anon_sym_unsafe] = ACTIONS(3436), + [anon_sym_sql] = ACTIONS(3436), + [sym_int_literal] = ACTIONS(3436), + [sym_float_literal] = ACTIONS(3436), + [sym_rune_literal] = ACTIONS(3436), + [sym_pseudo_compile_time_identifier] = ACTIONS(3436), + [anon_sym_shared] = ACTIONS(3436), + [anon_sym_map_LBRACK] = ACTIONS(3436), + [anon_sym_chan] = ACTIONS(3436), + [anon_sym_thread] = ACTIONS(3436), + [anon_sym_atomic] = ACTIONS(3436), + [sym___double_quote] = ACTIONS(3436), + [sym___single_quote] = ACTIONS(3436), + [sym___c_double_quote] = ACTIONS(3436), + [sym___c_single_quote] = ACTIONS(3436), + [sym___r_double_quote] = ACTIONS(3436), + [sym___r_single_quote] = ACTIONS(3436), }, - [1202] = { - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), + [1225] = { + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_RPAREN] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [sym_pseudo_compile_time_identifier] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_COMMA] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_RPAREN] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3013), + [anon_sym_BANG_EQ] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3013), + [anon_sym_DASH_DASH] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3013), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3013), + [anon_sym_AMP_CARET] = ACTIONS(3013), + [anon_sym_AMP_AMP] = ACTIONS(3013), + [anon_sym_PIPE_PIPE] = ACTIONS(3013), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3013), + [anon_sym_POUND_LBRACK] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3013), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), }, - [1203] = { + [1226] = { [sym_identifier] = ACTIONS(3177), [anon_sym_LF] = ACTIONS(3177), [anon_sym_CR] = ACTIONS(3177), @@ -158842,2634 +160881,1458 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_is] = ACTIONS(3177), [anon_sym_BANGis] = ACTIONS(3177), [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), - }, - [1204] = { - [sym_identifier] = ACTIONS(3183), - [anon_sym_LF] = ACTIONS(3183), - [anon_sym_CR] = ACTIONS(3183), - [anon_sym_CR_LF] = ACTIONS(3183), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_as] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_RPAREN] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_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_DOT_DOT_DOT] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_struct] = ACTIONS(3183), - [anon_sym_mut] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_QMARK] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3183), - [anon_sym_GT_GT] = ACTIONS(3183), - [anon_sym_GT_GT_GT] = ACTIONS(3183), - [anon_sym_AMP_CARET] = ACTIONS(3183), - [anon_sym_AMP_AMP] = ACTIONS(3183), - [anon_sym_PIPE_PIPE] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(3183), - [anon_sym_POUND_LBRACK] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(3183), - [anon_sym_BANGis] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_BANGin] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), - }, - [1205] = { - [sym_identifier] = ACTIONS(3191), - [anon_sym_LF] = ACTIONS(3191), - [anon_sym_CR] = ACTIONS(3191), - [anon_sym_CR_LF] = ACTIONS(3191), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3191), - [anon_sym_fn] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_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_DOT_DOT_DOT] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_struct] = ACTIONS(3191), - [anon_sym_mut] = ACTIONS(3191), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_go] = ACTIONS(3191), - [anon_sym_spawn] = ACTIONS(3191), - [anon_sym_json_DOTdecode] = ACTIONS(3191), - [anon_sym_LBRACK2] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_DASH] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3191), - [anon_sym_GT_GT] = ACTIONS(3191), - [anon_sym_GT_GT_GT] = ACTIONS(3191), - [anon_sym_AMP_CARET] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3191), - [sym_none] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_nil] = ACTIONS(3191), - [anon_sym_QMARK_DOT] = ACTIONS(3191), - [anon_sym_POUND_LBRACK] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_DOLLARif] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3191), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_rlock] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_sql] = ACTIONS(3191), - [sym_int_literal] = ACTIONS(3191), - [sym_float_literal] = ACTIONS(3191), - [sym_rune_literal] = ACTIONS(3191), - [sym_pseudo_compile_time_identifier] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), - }, - [1206] = { - [sym_identifier] = ACTIONS(3215), - [anon_sym_LF] = ACTIONS(3215), - [anon_sym_CR] = ACTIONS(3215), - [anon_sym_CR_LF] = ACTIONS(3215), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3215), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_COMMA] = ACTIONS(3215), - [anon_sym_RBRACE] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym_RPAREN] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3215), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3215), - [anon_sym_BANG_EQ] = ACTIONS(3215), - [anon_sym_LT_EQ] = ACTIONS(3215), - [anon_sym_GT_EQ] = ACTIONS(3215), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3215), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_PLUS_PLUS] = ACTIONS(3215), - [anon_sym_DASH_DASH] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3215), - [anon_sym_LT_LT] = ACTIONS(3215), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3215), - [anon_sym_AMP_CARET] = ACTIONS(3215), - [anon_sym_AMP_AMP] = ACTIONS(3215), - [anon_sym_PIPE_PIPE] = ACTIONS(3215), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3215), - [anon_sym_POUND_LBRACK] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3215), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3215), - [sym___single_quote] = ACTIONS(3215), - [sym___c_double_quote] = ACTIONS(3215), - [sym___c_single_quote] = ACTIONS(3215), - [sym___r_double_quote] = ACTIONS(3215), - [sym___r_single_quote] = ACTIONS(3215), - }, - [1207] = { - [sym_identifier] = ACTIONS(3223), - [anon_sym_LF] = ACTIONS(3223), - [anon_sym_CR] = ACTIONS(3223), - [anon_sym_CR_LF] = ACTIONS(3223), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_COMMA] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_RPAREN] = ACTIONS(3223), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3223), - [anon_sym_BANG_EQ] = ACTIONS(3223), - [anon_sym_LT_EQ] = ACTIONS(3223), - [anon_sym_GT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3223), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_CARET] = ACTIONS(3223), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3223), - [anon_sym_LT_LT] = ACTIONS(3223), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3223), - [anon_sym_AMP_CARET] = ACTIONS(3223), - [anon_sym_AMP_AMP] = ACTIONS(3223), - [anon_sym_PIPE_PIPE] = ACTIONS(3223), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3223), - [anon_sym_POUND_LBRACK] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3223), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3223), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3223), - [sym_rune_literal] = ACTIONS(3223), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3223), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3223), - [sym___single_quote] = ACTIONS(3223), - [sym___c_double_quote] = ACTIONS(3223), - [sym___c_single_quote] = ACTIONS(3223), - [sym___r_double_quote] = ACTIONS(3223), - [sym___r_single_quote] = ACTIONS(3223), - }, - [1208] = { - [sym_identifier] = ACTIONS(3227), - [anon_sym_LF] = ACTIONS(3227), - [anon_sym_CR] = ACTIONS(3227), - [anon_sym_CR_LF] = ACTIONS(3227), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_COMMA] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_RPAREN] = ACTIONS(3227), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3227), - [anon_sym_BANG_EQ] = ACTIONS(3227), - [anon_sym_LT_EQ] = ACTIONS(3227), - [anon_sym_GT_EQ] = ACTIONS(3227), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3227), - [anon_sym_LBRACK2] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_CARET] = ACTIONS(3227), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_LT_DASH] = ACTIONS(3227), - [anon_sym_LT_LT] = ACTIONS(3227), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3227), - [anon_sym_AMP_CARET] = ACTIONS(3227), - [anon_sym_AMP_AMP] = ACTIONS(3227), - [anon_sym_PIPE_PIPE] = ACTIONS(3227), - [anon_sym_or] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3227), - [anon_sym_POUND_LBRACK] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3227), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3227), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), - [anon_sym_lock] = ACTIONS(3227), - [anon_sym_rlock] = ACTIONS(3227), - [anon_sym_unsafe] = ACTIONS(3227), - [anon_sym_sql] = ACTIONS(3227), - [sym_int_literal] = ACTIONS(3227), - [sym_float_literal] = ACTIONS(3227), - [sym_rune_literal] = ACTIONS(3227), - [sym_pseudo_compile_time_identifier] = ACTIONS(3227), - [anon_sym_shared] = ACTIONS(3227), - [anon_sym_map_LBRACK] = ACTIONS(3227), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3227), - [anon_sym_atomic] = ACTIONS(3227), - [sym___double_quote] = ACTIONS(3227), - [sym___single_quote] = ACTIONS(3227), - [sym___c_double_quote] = ACTIONS(3227), - [sym___c_single_quote] = ACTIONS(3227), - [sym___r_double_quote] = ACTIONS(3227), - [sym___r_single_quote] = ACTIONS(3227), - }, - [1209] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [sym_pseudo_compile_time_identifier] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [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), - }, - [1210] = { - [sym_identifier] = ACTIONS(3231), - [anon_sym_LF] = ACTIONS(3231), - [anon_sym_CR] = ACTIONS(3231), - [anon_sym_CR_LF] = ACTIONS(3231), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_COMMA] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_RPAREN] = ACTIONS(3231), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3231), - [anon_sym_BANG_EQ] = ACTIONS(3231), - [anon_sym_LT_EQ] = ACTIONS(3231), - [anon_sym_GT_EQ] = ACTIONS(3231), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3231), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_CARET] = ACTIONS(3231), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3231), - [anon_sym_LT_LT] = ACTIONS(3231), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3231), - [anon_sym_AMP_CARET] = ACTIONS(3231), - [anon_sym_AMP_AMP] = ACTIONS(3231), - [anon_sym_PIPE_PIPE] = ACTIONS(3231), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3231), - [anon_sym_POUND_LBRACK] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3231), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3231), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3231), - [sym_rune_literal] = ACTIONS(3231), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3231), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3231), - [sym___single_quote] = ACTIONS(3231), - [sym___c_double_quote] = ACTIONS(3231), - [sym___c_single_quote] = ACTIONS(3231), - [sym___r_double_quote] = ACTIONS(3231), - [sym___r_single_quote] = ACTIONS(3231), - }, - [1211] = { - [sym_identifier] = ACTIONS(3263), - [anon_sym_LF] = ACTIONS(3263), - [anon_sym_CR] = ACTIONS(3263), - [anon_sym_CR_LF] = ACTIONS(3263), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_COMMA] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_RPAREN] = ACTIONS(3263), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3263), - [anon_sym_BANG_EQ] = ACTIONS(3263), - [anon_sym_LT_EQ] = ACTIONS(3263), - [anon_sym_GT_EQ] = ACTIONS(3263), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3263), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_CARET] = ACTIONS(3263), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3263), - [anon_sym_LT_LT] = ACTIONS(3263), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3263), - [anon_sym_AMP_CARET] = ACTIONS(3263), - [anon_sym_AMP_AMP] = ACTIONS(3263), - [anon_sym_PIPE_PIPE] = ACTIONS(3263), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3263), - [anon_sym_POUND_LBRACK] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3263), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3263), - [sym_rune_literal] = ACTIONS(3263), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3263), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3263), - [sym___single_quote] = ACTIONS(3263), - [sym___c_double_quote] = ACTIONS(3263), - [sym___c_single_quote] = ACTIONS(3263), - [sym___r_double_quote] = ACTIONS(3263), - [sym___r_single_quote] = ACTIONS(3263), - }, - [1212] = { - [sym_identifier] = ACTIONS(3255), - [anon_sym_LF] = ACTIONS(3255), - [anon_sym_CR] = ACTIONS(3255), - [anon_sym_CR_LF] = ACTIONS(3255), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_COMMA] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_RPAREN] = ACTIONS(3255), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3255), - [anon_sym_BANG_EQ] = ACTIONS(3255), - [anon_sym_LT_EQ] = ACTIONS(3255), - [anon_sym_GT_EQ] = ACTIONS(3255), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3255), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_CARET] = ACTIONS(3255), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3255), - [anon_sym_LT_LT] = ACTIONS(3255), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3255), - [anon_sym_AMP_CARET] = ACTIONS(3255), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3255), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3255), - [anon_sym_POUND_LBRACK] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3255), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3255), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3255), - [sym_rune_literal] = ACTIONS(3255), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3255), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3255), - [sym___single_quote] = ACTIONS(3255), - [sym___c_double_quote] = ACTIONS(3255), - [sym___c_single_quote] = ACTIONS(3255), - [sym___r_double_quote] = ACTIONS(3255), - [sym___r_single_quote] = ACTIONS(3255), - }, - [1213] = { - [sym_identifier] = ACTIONS(3259), - [anon_sym_LF] = ACTIONS(3259), - [anon_sym_CR] = ACTIONS(3259), - [anon_sym_CR_LF] = ACTIONS(3259), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_COMMA] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_RPAREN] = ACTIONS(3259), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3259), - [anon_sym_BANG_EQ] = ACTIONS(3259), - [anon_sym_LT_EQ] = ACTIONS(3259), - [anon_sym_GT_EQ] = ACTIONS(3259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3259), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_CARET] = ACTIONS(3259), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3259), - [anon_sym_LT_LT] = ACTIONS(3259), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3259), - [anon_sym_AMP_CARET] = ACTIONS(3259), - [anon_sym_AMP_AMP] = ACTIONS(3259), - [anon_sym_PIPE_PIPE] = ACTIONS(3259), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3259), - [anon_sym_POUND_LBRACK] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3259), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3259), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3259), - [sym_rune_literal] = ACTIONS(3259), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3259), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3259), - [sym___single_quote] = ACTIONS(3259), - [sym___c_double_quote] = ACTIONS(3259), - [sym___c_single_quote] = ACTIONS(3259), - [sym___r_double_quote] = ACTIONS(3259), - [sym___r_single_quote] = ACTIONS(3259), - }, - [1214] = { - [sym_identifier] = ACTIONS(3211), - [anon_sym_LF] = ACTIONS(3211), - [anon_sym_CR] = ACTIONS(3211), - [anon_sym_CR_LF] = ACTIONS(3211), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3211), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_COMMA] = ACTIONS(3211), - [anon_sym_RBRACE] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_RPAREN] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3211), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3211), - [anon_sym_BANG_EQ] = ACTIONS(3211), - [anon_sym_LT_EQ] = ACTIONS(3211), - [anon_sym_GT_EQ] = ACTIONS(3211), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_PLUS_PLUS] = ACTIONS(3211), - [anon_sym_DASH_DASH] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3211), - [anon_sym_LT_LT] = ACTIONS(3211), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3211), - [anon_sym_AMP_CARET] = ACTIONS(3211), - [anon_sym_AMP_AMP] = ACTIONS(3211), - [anon_sym_PIPE_PIPE] = ACTIONS(3211), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3211), - [anon_sym_POUND_LBRACK] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3211), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3211), - [sym___single_quote] = ACTIONS(3211), - [sym___c_double_quote] = ACTIONS(3211), - [sym___c_single_quote] = ACTIONS(3211), - [sym___r_double_quote] = ACTIONS(3211), - [sym___r_single_quote] = ACTIONS(3211), - }, - [1215] = { - [sym_identifier] = ACTIONS(3437), - [anon_sym_LF] = ACTIONS(3437), - [anon_sym_CR] = ACTIONS(3437), - [anon_sym_CR_LF] = ACTIONS(3437), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_RPAREN] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3784), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3437), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3437), - [anon_sym_AMP_CARET] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3437), - [anon_sym_POUND_LBRACK] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3437), - [sym_rune_literal] = ACTIONS(3437), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3437), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3437), - [sym___single_quote] = ACTIONS(3437), - [sym___c_double_quote] = ACTIONS(3437), - [sym___c_single_quote] = ACTIONS(3437), - [sym___r_double_quote] = ACTIONS(3437), - [sym___r_single_quote] = ACTIONS(3437), - }, - [1216] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_RPAREN] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_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_DOT_DOT_DOT] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [sym_pseudo_compile_time_identifier] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [1217] = { - [sym_identifier] = ACTIONS(3243), - [anon_sym_LF] = ACTIONS(3243), - [anon_sym_CR] = ACTIONS(3243), - [anon_sym_CR_LF] = ACTIONS(3243), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_COMMA] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_RPAREN] = ACTIONS(3243), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3243), - [anon_sym_BANG_EQ] = ACTIONS(3243), - [anon_sym_LT_EQ] = ACTIONS(3243), - [anon_sym_GT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3243), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_CARET] = ACTIONS(3243), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3243), - [anon_sym_LT_LT] = ACTIONS(3243), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3243), - [anon_sym_AMP_CARET] = ACTIONS(3243), - [anon_sym_AMP_AMP] = ACTIONS(3243), - [anon_sym_PIPE_PIPE] = ACTIONS(3243), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3243), - [anon_sym_POUND_LBRACK] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3243), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3243), - [sym_rune_literal] = ACTIONS(3243), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3243), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3243), - [sym___single_quote] = ACTIONS(3243), - [sym___c_double_quote] = ACTIONS(3243), - [sym___c_single_quote] = ACTIONS(3243), - [sym___r_double_quote] = ACTIONS(3243), - [sym___r_single_quote] = ACTIONS(3243), - }, - [1218] = { - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_RPAREN] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), + [anon_sym_BANGin] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_rlock] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_sql] = ACTIONS(3177), + [sym_int_literal] = ACTIONS(3177), + [sym_float_literal] = ACTIONS(3177), + [sym_rune_literal] = ACTIONS(3177), + [sym_pseudo_compile_time_identifier] = ACTIONS(3177), + [anon_sym_shared] = ACTIONS(3177), + [anon_sym_map_LBRACK] = ACTIONS(3177), + [anon_sym_chan] = ACTIONS(3177), + [anon_sym_thread] = ACTIONS(3177), + [anon_sym_atomic] = ACTIONS(3177), + [sym___double_quote] = ACTIONS(3177), + [sym___single_quote] = ACTIONS(3177), + [sym___c_double_quote] = ACTIONS(3177), + [sym___c_single_quote] = ACTIONS(3177), + [sym___r_double_quote] = ACTIONS(3177), + [sym___r_single_quote] = ACTIONS(3177), }, - [1219] = { - [sym_identifier] = ACTIONS(3315), - [anon_sym_LF] = ACTIONS(3315), - [anon_sym_CR] = ACTIONS(3315), - [anon_sym_CR_LF] = ACTIONS(3315), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3315), - [anon_sym_BANG_EQ] = ACTIONS(3315), - [anon_sym_LT_EQ] = ACTIONS(3315), - [anon_sym_GT_EQ] = ACTIONS(3315), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3315), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3315), - [anon_sym_LT_LT] = ACTIONS(3315), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3315), - [anon_sym_AMP_CARET] = ACTIONS(3315), - [anon_sym_AMP_AMP] = ACTIONS(3315), - [anon_sym_PIPE_PIPE] = ACTIONS(3315), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3315), - [anon_sym_POUND_LBRACK] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3315), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3315), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3315), - [sym_rune_literal] = ACTIONS(3315), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3315), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3315), - [sym___single_quote] = ACTIONS(3315), - [sym___c_double_quote] = ACTIONS(3315), - [sym___c_single_quote] = ACTIONS(3315), - [sym___r_double_quote] = ACTIONS(3315), - [sym___r_single_quote] = ACTIONS(3315), + [1227] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_LT_LT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), + [anon_sym_AMP_EQ] = ACTIONS(613), + [anon_sym_AMP_CARET_EQ] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_PIPE_EQ] = ACTIONS(613), + [anon_sym_CARET_EQ] = ACTIONS(613), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1220] = { - [sym_identifier] = ACTIONS(3335), - [anon_sym_LF] = ACTIONS(3335), - [anon_sym_CR] = ACTIONS(3335), - [anon_sym_CR_LF] = ACTIONS(3335), + [1228] = { + [sym_identifier] = ACTIONS(3181), + [anon_sym_LF] = ACTIONS(3181), + [anon_sym_CR] = ACTIONS(3181), + [anon_sym_CR_LF] = ACTIONS(3181), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_RPAREN] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3335), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3335), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3335), - [anon_sym_BANG_EQ] = ACTIONS(3335), - [anon_sym_LT_EQ] = ACTIONS(3335), - [anon_sym_GT_EQ] = ACTIONS(3335), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3335), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3335), - [anon_sym_DASH_DASH] = ACTIONS(3335), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3335), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3335), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3335), - [anon_sym_AMP_CARET] = ACTIONS(3335), - [anon_sym_AMP_AMP] = ACTIONS(3335), - [anon_sym_PIPE_PIPE] = ACTIONS(3335), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3335), - [anon_sym_POUND_LBRACK] = ACTIONS(3335), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3335), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3335), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_DOT] = ACTIONS(3181), + [anon_sym_as] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_COMMA] = ACTIONS(3181), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_RPAREN] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_SLASH] = ACTIONS(3181), + [anon_sym_PERCENT] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_GT] = ACTIONS(3181), + [anon_sym_EQ_EQ] = ACTIONS(3181), + [anon_sym_BANG_EQ] = ACTIONS(3181), + [anon_sym_LT_EQ] = ACTIONS(3181), + [anon_sym_GT_EQ] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_mut] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3181), + [anon_sym_DASH_DASH] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_go] = ACTIONS(3181), + [anon_sym_spawn] = ACTIONS(3181), + [anon_sym_json_DOTdecode] = ACTIONS(3181), + [anon_sym_LBRACK2] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_LT_DASH] = ACTIONS(3181), + [anon_sym_LT_LT] = ACTIONS(3181), + [anon_sym_GT_GT] = ACTIONS(3181), + [anon_sym_GT_GT_GT] = ACTIONS(3181), + [anon_sym_AMP_CARET] = ACTIONS(3181), + [anon_sym_AMP_AMP] = ACTIONS(3181), + [anon_sym_PIPE_PIPE] = ACTIONS(3181), + [anon_sym_or] = ACTIONS(3181), + [sym_none] = ACTIONS(3181), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [sym_nil] = ACTIONS(3181), + [anon_sym_QMARK_DOT] = ACTIONS(3181), + [anon_sym_POUND_LBRACK] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_DOLLARif] = ACTIONS(3181), + [anon_sym_is] = ACTIONS(3181), + [anon_sym_BANGis] = ACTIONS(3181), + [anon_sym_in] = ACTIONS(3181), + [anon_sym_BANGin] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_rlock] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_sql] = ACTIONS(3181), + [sym_int_literal] = ACTIONS(3181), + [sym_float_literal] = ACTIONS(3181), + [sym_rune_literal] = ACTIONS(3181), + [sym_pseudo_compile_time_identifier] = ACTIONS(3181), + [anon_sym_shared] = ACTIONS(3181), + [anon_sym_map_LBRACK] = ACTIONS(3181), + [anon_sym_chan] = ACTIONS(3181), + [anon_sym_thread] = ACTIONS(3181), + [anon_sym_atomic] = ACTIONS(3181), + [sym___double_quote] = ACTIONS(3181), + [sym___single_quote] = ACTIONS(3181), + [sym___c_double_quote] = ACTIONS(3181), + [sym___c_single_quote] = ACTIONS(3181), + [sym___r_double_quote] = ACTIONS(3181), + [sym___r_single_quote] = ACTIONS(3181), }, - [1221] = { - [sym_identifier] = ACTIONS(2921), - [anon_sym_LF] = ACTIONS(2921), - [anon_sym_CR] = ACTIONS(2921), - [anon_sym_CR_LF] = ACTIONS(2921), + [1229] = { + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [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_DOT_DOT_DOT] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_mut] = ACTIONS(2921), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_go] = ACTIONS(2921), - [anon_sym_spawn] = ACTIONS(2921), - [anon_sym_json_DOTdecode] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2921), - [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(2921), - [sym_none] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_nil] = ACTIONS(2921), - [anon_sym_QMARK_DOT] = ACTIONS(2921), - [anon_sym_POUND_LBRACK] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_DOLLARif] = ACTIONS(2921), - [anon_sym_is] = ACTIONS(2921), - [anon_sym_BANGis] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_BANGin] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [anon_sym_lock] = ACTIONS(2921), - [anon_sym_rlock] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_sql] = ACTIONS(2921), - [sym_int_literal] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2921), - [sym_rune_literal] = ACTIONS(2921), - [sym_pseudo_compile_time_identifier] = ACTIONS(2921), - [anon_sym_shared] = ACTIONS(2921), - [anon_sym_map_LBRACK] = ACTIONS(2921), - [anon_sym_chan] = ACTIONS(2921), - [anon_sym_thread] = ACTIONS(2921), - [anon_sym_atomic] = ACTIONS(2921), - [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), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_RPAREN] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [sym_pseudo_compile_time_identifier] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), }, - [1222] = { - [sym_identifier] = ACTIONS(3391), - [anon_sym_LF] = ACTIONS(3391), - [anon_sym_CR] = ACTIONS(3391), - [anon_sym_CR_LF] = ACTIONS(3391), + [1230] = { + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3391), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3391), - [anon_sym_BANG_EQ] = ACTIONS(3391), - [anon_sym_LT_EQ] = ACTIONS(3391), - [anon_sym_GT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3391), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_PLUS_PLUS] = ACTIONS(3391), - [anon_sym_DASH_DASH] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3391), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [anon_sym_LT_LT] = ACTIONS(3391), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3391), - [anon_sym_AMP_CARET] = ACTIONS(3391), - [anon_sym_AMP_AMP] = ACTIONS(3391), - [anon_sym_PIPE_PIPE] = ACTIONS(3391), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3391), - [anon_sym_POUND_LBRACK] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3391), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3391), - [sym_rune_literal] = ACTIONS(3391), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3391), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3391), - [sym___single_quote] = ACTIONS(3391), - [sym___c_double_quote] = ACTIONS(3391), - [sym___c_single_quote] = ACTIONS(3391), - [sym___r_double_quote] = ACTIONS(3391), - [sym___r_single_quote] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_COMMA] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_RPAREN] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2985), + [anon_sym_BANG_EQ] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2985), + [anon_sym_DASH_DASH] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2985), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2985), + [anon_sym_AMP_CARET] = ACTIONS(2985), + [anon_sym_AMP_AMP] = ACTIONS(2985), + [anon_sym_PIPE_PIPE] = ACTIONS(2985), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2985), + [anon_sym_POUND_LBRACK] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2985), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2985), + [sym___single_quote] = ACTIONS(2985), + [sym___c_double_quote] = ACTIONS(2985), + [sym___c_single_quote] = ACTIONS(2985), + [sym___r_double_quote] = ACTIONS(2985), + [sym___r_single_quote] = ACTIONS(2985), }, - [1223] = { - [sym_identifier] = ACTIONS(3351), - [anon_sym_LF] = ACTIONS(3351), - [anon_sym_CR] = ACTIONS(3351), - [anon_sym_CR_LF] = ACTIONS(3351), + [1231] = { + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3351), - [anon_sym_BANG_EQ] = ACTIONS(3351), - [anon_sym_LT_EQ] = ACTIONS(3351), - [anon_sym_GT_EQ] = ACTIONS(3351), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3351), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_CARET] = ACTIONS(3351), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3351), - [anon_sym_LT_LT] = ACTIONS(3351), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3351), - [anon_sym_AMP_CARET] = ACTIONS(3351), - [anon_sym_AMP_AMP] = ACTIONS(3351), - [anon_sym_PIPE_PIPE] = ACTIONS(3351), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3351), - [anon_sym_POUND_LBRACK] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3351), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3351), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3351), - [sym_rune_literal] = ACTIONS(3351), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3351), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3351), - [sym___single_quote] = ACTIONS(3351), - [sym___c_double_quote] = ACTIONS(3351), - [sym___c_single_quote] = ACTIONS(3351), - [sym___r_double_quote] = ACTIONS(3351), - [sym___r_single_quote] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_RPAREN] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3009), + [sym___single_quote] = ACTIONS(3009), + [sym___c_double_quote] = ACTIONS(3009), + [sym___c_single_quote] = ACTIONS(3009), + [sym___r_double_quote] = ACTIONS(3009), + [sym___r_single_quote] = ACTIONS(3009), }, - [1224] = { - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), + [1232] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_LT_LT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), + [anon_sym_AMP_EQ] = ACTIONS(613), + [anon_sym_AMP_CARET_EQ] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_PIPE_EQ] = ACTIONS(613), + [anon_sym_CARET_EQ] = ACTIONS(613), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), }, - [1225] = { - [sym_identifier] = ACTIONS(2917), - [anon_sym_LF] = ACTIONS(2917), - [anon_sym_CR] = ACTIONS(2917), - [anon_sym_CR_LF] = ACTIONS(2917), + [1233] = { + [sym_identifier] = ACTIONS(3816), + [anon_sym_LF] = ACTIONS(3819), + [anon_sym_CR] = ACTIONS(3819), + [anon_sym_CR_LF] = ACTIONS(3819), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_mut] = ACTIONS(2917), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_go] = ACTIONS(2917), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2917), - [anon_sym_LBRACK2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_GT_GT_GT] = ACTIONS(2917), - [anon_sym_AMP_CARET] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2917), - [sym_none] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_nil] = ACTIONS(2917), - [anon_sym_QMARK_DOT] = ACTIONS(2917), - [anon_sym_POUND_LBRACK] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_DOLLARif] = ACTIONS(2917), - [anon_sym_is] = ACTIONS(2917), - [anon_sym_BANGis] = ACTIONS(2917), - [anon_sym_in] = ACTIONS(2917), - [anon_sym_BANGin] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_select] = ACTIONS(2917), - [anon_sym_lock] = ACTIONS(2917), - [anon_sym_rlock] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_sql] = ACTIONS(2917), - [sym_int_literal] = ACTIONS(2917), - [sym_float_literal] = ACTIONS(2917), - [sym_rune_literal] = ACTIONS(2917), - [sym_pseudo_compile_time_identifier] = ACTIONS(2917), - [anon_sym_shared] = ACTIONS(2917), - [anon_sym_map_LBRACK] = ACTIONS(2917), - [anon_sym_chan] = ACTIONS(2917), - [anon_sym_thread] = ACTIONS(2917), - [anon_sym_atomic] = ACTIONS(2917), - [sym___double_quote] = ACTIONS(2917), - [sym___single_quote] = ACTIONS(2917), - [sym___c_double_quote] = ACTIONS(2917), - [sym___c_single_quote] = ACTIONS(2917), - [sym___r_double_quote] = ACTIONS(2917), - [sym___r_single_quote] = ACTIONS(2917), + [anon_sym_SEMI] = ACTIONS(3819), + [anon_sym_DOT] = ACTIONS(3828), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_COMMA] = ACTIONS(3819), + [anon_sym_RBRACE] = ACTIONS(3816), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3822), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_COLON] = ACTIONS(3824), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3311), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3311), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3311), + [anon_sym_AMP_CARET] = ACTIONS(3311), + [anon_sym_AMP_AMP] = ACTIONS(3311), + [anon_sym_PIPE_PIPE] = ACTIONS(3311), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3311), + [anon_sym_POUND_LBRACK] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3311), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3311), + [sym_rune_literal] = ACTIONS(3311), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3311), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3311), + [sym___single_quote] = ACTIONS(3311), + [sym___c_double_quote] = ACTIONS(3311), + [sym___c_single_quote] = ACTIONS(3311), + [sym___r_double_quote] = ACTIONS(3311), + [sym___r_single_quote] = ACTIONS(3311), }, - [1226] = { - [sym_identifier] = ACTIONS(3203), - [anon_sym_LF] = ACTIONS(3203), - [anon_sym_CR] = ACTIONS(3203), - [anon_sym_CR_LF] = ACTIONS(3203), + [1234] = { + [sym_identifier] = ACTIONS(3083), + [anon_sym_LF] = ACTIONS(3083), + [anon_sym_CR] = ACTIONS(3083), + [anon_sym_CR_LF] = ACTIONS(3083), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3203), - [anon_sym_BANG_EQ] = ACTIONS(3203), - [anon_sym_LT_EQ] = ACTIONS(3203), - [anon_sym_GT_EQ] = ACTIONS(3203), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3203), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_CARET] = ACTIONS(3203), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3203), - [anon_sym_LT_LT] = ACTIONS(3203), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3203), - [anon_sym_AMP_CARET] = ACTIONS(3203), - [anon_sym_AMP_AMP] = ACTIONS(3203), - [anon_sym_PIPE_PIPE] = ACTIONS(3203), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3203), - [anon_sym_POUND_LBRACK] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3203), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3203), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3203), - [sym_rune_literal] = ACTIONS(3203), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3203), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3203), - [sym___single_quote] = ACTIONS(3203), - [sym___c_double_quote] = ACTIONS(3203), - [sym___c_single_quote] = ACTIONS(3203), - [sym___r_double_quote] = ACTIONS(3203), - [sym___r_single_quote] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3083), + [anon_sym_DOT] = ACTIONS(3083), + [anon_sym_as] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_COMMA] = ACTIONS(3083), + [anon_sym_RBRACE] = ACTIONS(3083), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym_RPAREN] = ACTIONS(3083), + [anon_sym_PIPE] = ACTIONS(3083), + [anon_sym_fn] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_SLASH] = ACTIONS(3083), + [anon_sym_PERCENT] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_LT_EQ] = ACTIONS(3083), + [anon_sym_GT_EQ] = ACTIONS(3083), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_mut] = ACTIONS(3083), + [anon_sym_PLUS_PLUS] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3083), + [anon_sym_QMARK] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3083), + [anon_sym_go] = ACTIONS(3083), + [anon_sym_spawn] = ACTIONS(3083), + [anon_sym_json_DOTdecode] = ACTIONS(3083), + [anon_sym_LBRACK2] = ACTIONS(3083), + [anon_sym_TILDE] = ACTIONS(3083), + [anon_sym_CARET] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_LT_DASH] = ACTIONS(3083), + [anon_sym_LT_LT] = ACTIONS(3083), + [anon_sym_GT_GT] = ACTIONS(3083), + [anon_sym_GT_GT_GT] = ACTIONS(3083), + [anon_sym_AMP_CARET] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_or] = ACTIONS(3083), + [sym_none] = ACTIONS(3083), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [sym_nil] = ACTIONS(3083), + [anon_sym_QMARK_DOT] = ACTIONS(3083), + [anon_sym_POUND_LBRACK] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_DOLLARif] = ACTIONS(3083), + [anon_sym_is] = ACTIONS(3083), + [anon_sym_BANGis] = ACTIONS(3083), + [anon_sym_in] = ACTIONS(3083), + [anon_sym_BANGin] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_select] = ACTIONS(3083), + [anon_sym_lock] = ACTIONS(3083), + [anon_sym_rlock] = ACTIONS(3083), + [anon_sym_unsafe] = ACTIONS(3083), + [anon_sym_sql] = ACTIONS(3083), + [sym_int_literal] = ACTIONS(3083), + [sym_float_literal] = ACTIONS(3083), + [sym_rune_literal] = ACTIONS(3083), + [sym_pseudo_compile_time_identifier] = ACTIONS(3083), + [anon_sym_shared] = ACTIONS(3083), + [anon_sym_map_LBRACK] = ACTIONS(3083), + [anon_sym_chan] = ACTIONS(3083), + [anon_sym_thread] = ACTIONS(3083), + [anon_sym_atomic] = ACTIONS(3083), + [sym___double_quote] = ACTIONS(3083), + [sym___single_quote] = ACTIONS(3083), + [sym___c_double_quote] = ACTIONS(3083), + [sym___c_single_quote] = ACTIONS(3083), + [sym___r_double_quote] = ACTIONS(3083), + [sym___r_single_quote] = ACTIONS(3083), }, - [1227] = { - [sym_identifier] = ACTIONS(2867), - [anon_sym_LF] = ACTIONS(2867), - [anon_sym_CR] = ACTIONS(2867), - [anon_sym_CR_LF] = ACTIONS(2867), + [1235] = { + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_as] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_fn] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2867), - [anon_sym_SLASH] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2867), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2867), - [anon_sym_BANG_EQ] = ACTIONS(2867), - [anon_sym_LT_EQ] = ACTIONS(2867), - [anon_sym_GT_EQ] = ACTIONS(2867), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_mut] = ACTIONS(2867), - [anon_sym_PLUS_PLUS] = ACTIONS(2867), - [anon_sym_DASH_DASH] = ACTIONS(2867), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_go] = ACTIONS(2867), - [anon_sym_spawn] = ACTIONS(2867), - [anon_sym_json_DOTdecode] = ACTIONS(2867), - [anon_sym_LBRACK2] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2867), - [anon_sym_CARET] = ACTIONS(2867), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_LT_DASH] = ACTIONS(2867), - [anon_sym_LT_LT] = ACTIONS(2867), - [anon_sym_GT_GT] = ACTIONS(2867), - [anon_sym_GT_GT_GT] = ACTIONS(2867), - [anon_sym_AMP_CARET] = ACTIONS(2867), - [anon_sym_AMP_AMP] = ACTIONS(2867), - [anon_sym_PIPE_PIPE] = ACTIONS(2867), - [anon_sym_or] = ACTIONS(2867), - [sym_none] = ACTIONS(2867), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [sym_nil] = ACTIONS(2867), - [anon_sym_QMARK_DOT] = ACTIONS(2867), - [anon_sym_POUND_LBRACK] = ACTIONS(2867), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_DOLLARif] = ACTIONS(2867), - [anon_sym_is] = ACTIONS(2867), - [anon_sym_BANGis] = ACTIONS(2867), - [anon_sym_in] = ACTIONS(2867), - [anon_sym_BANGin] = ACTIONS(2867), - [anon_sym_match] = ACTIONS(2867), - [anon_sym_select] = ACTIONS(2867), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(2867), - [anon_sym_sql] = ACTIONS(2867), - [sym_int_literal] = ACTIONS(2867), - [sym_float_literal] = ACTIONS(2867), - [sym_rune_literal] = ACTIONS(2867), - [sym_pseudo_compile_time_identifier] = ACTIONS(2867), - [anon_sym_shared] = ACTIONS(2867), - [anon_sym_map_LBRACK] = ACTIONS(2867), - [anon_sym_chan] = ACTIONS(2867), - [anon_sym_thread] = ACTIONS(2867), - [anon_sym_atomic] = ACTIONS(2867), - [sym___double_quote] = ACTIONS(2867), - [sym___single_quote] = ACTIONS(2867), - [sym___c_double_quote] = ACTIONS(2867), - [sym___c_single_quote] = ACTIONS(2867), - [sym___r_double_quote] = ACTIONS(2867), - [sym___r_single_quote] = ACTIONS(2867), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_RPAREN] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), }, - [1228] = { - [sym_identifier] = ACTIONS(3387), - [anon_sym_LF] = ACTIONS(3387), - [anon_sym_CR] = ACTIONS(3387), - [anon_sym_CR_LF] = ACTIONS(3387), + [1236] = { + [sym_identifier] = ACTIONS(2895), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_CR] = ACTIONS(2895), + [anon_sym_CR_LF] = ACTIONS(2895), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_RPAREN] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3387), - [anon_sym_BANG_EQ] = ACTIONS(3387), - [anon_sym_LT_EQ] = ACTIONS(3387), - [anon_sym_GT_EQ] = ACTIONS(3387), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3387), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [anon_sym_LT_LT] = ACTIONS(3387), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3387), - [anon_sym_AMP_CARET] = ACTIONS(3387), - [anon_sym_AMP_AMP] = ACTIONS(3387), - [anon_sym_PIPE_PIPE] = ACTIONS(3387), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3387), - [anon_sym_POUND_LBRACK] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3387), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3387), - [sym_rune_literal] = ACTIONS(3387), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3387), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3387), - [sym___single_quote] = ACTIONS(3387), - [sym___c_double_quote] = ACTIONS(3387), - [sym___c_single_quote] = ACTIONS(3387), - [sym___r_double_quote] = ACTIONS(3387), - [sym___r_single_quote] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(2895), + [anon_sym_DOT] = ACTIONS(2895), + [anon_sym_as] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_COMMA] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_RPAREN] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [anon_sym_LT_EQ] = ACTIONS(2895), + [anon_sym_GT_EQ] = ACTIONS(2895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_mut] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2895), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2895), + [anon_sym_go] = ACTIONS(2895), + [anon_sym_spawn] = ACTIONS(2895), + [anon_sym_json_DOTdecode] = ACTIONS(2895), + [anon_sym_LBRACK2] = ACTIONS(2895), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_LT_DASH] = ACTIONS(2895), + [anon_sym_LT_LT] = ACTIONS(2895), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_GT_GT_GT] = ACTIONS(2895), + [anon_sym_AMP_CARET] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_or] = ACTIONS(2895), + [sym_none] = ACTIONS(2895), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_nil] = ACTIONS(2895), + [anon_sym_QMARK_DOT] = ACTIONS(2895), + [anon_sym_POUND_LBRACK] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_is] = ACTIONS(2895), + [anon_sym_BANGis] = ACTIONS(2895), + [anon_sym_in] = ACTIONS(2895), + [anon_sym_BANGin] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2895), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2895), + [anon_sym_rlock] = ACTIONS(2895), + [anon_sym_unsafe] = ACTIONS(2895), + [anon_sym_sql] = ACTIONS(2895), + [sym_int_literal] = ACTIONS(2895), + [sym_float_literal] = ACTIONS(2895), + [sym_rune_literal] = ACTIONS(2895), + [sym_pseudo_compile_time_identifier] = ACTIONS(2895), + [anon_sym_shared] = ACTIONS(2895), + [anon_sym_map_LBRACK] = ACTIONS(2895), + [anon_sym_chan] = ACTIONS(2895), + [anon_sym_thread] = ACTIONS(2895), + [anon_sym_atomic] = ACTIONS(2895), + [sym___double_quote] = ACTIONS(2895), + [sym___single_quote] = ACTIONS(2895), + [sym___c_double_quote] = ACTIONS(2895), + [sym___c_single_quote] = ACTIONS(2895), + [sym___r_double_quote] = ACTIONS(2895), + [sym___r_single_quote] = ACTIONS(2895), }, - [1229] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), + [1237] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_DASH] = ACTIONS(599), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_LT_LT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), - [anon_sym_AMP_EQ] = ACTIONS(599), - [anon_sym_AMP_CARET_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_DASH_EQ] = ACTIONS(599), - [anon_sym_PIPE_EQ] = ACTIONS(599), - [anon_sym_CARET_EQ] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_EQ] = ACTIONS(563), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(569), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(563), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3831), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(563), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_DASH] = ACTIONS(559), + [anon_sym_LT_LT] = ACTIONS(563), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(563), + [anon_sym_AMP_CARET] = ACTIONS(563), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_STAR_EQ] = ACTIONS(559), + [anon_sym_SLASH_EQ] = ACTIONS(559), + [anon_sym_PERCENT_EQ] = ACTIONS(559), + [anon_sym_LT_LT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_EQ] = ACTIONS(559), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), + [anon_sym_AMP_EQ] = ACTIONS(559), + [anon_sym_AMP_CARET_EQ] = ACTIONS(559), + [anon_sym_PLUS_EQ] = ACTIONS(559), + [anon_sym_DASH_EQ] = ACTIONS(559), + [anon_sym_PIPE_EQ] = ACTIONS(559), + [anon_sym_CARET_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), }, - [1230] = { - [sym_identifier] = ACTIONS(3397), - [anon_sym_LF] = ACTIONS(3397), - [anon_sym_CR] = ACTIONS(3397), - [anon_sym_CR_LF] = ACTIONS(3397), + [1238] = { + [sym_identifier] = ACTIONS(3017), + [anon_sym_LF] = ACTIONS(3017), + [anon_sym_CR] = ACTIONS(3017), + [anon_sym_CR_LF] = ACTIONS(3017), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_as] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_RPAREN] = ACTIONS(3397), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_fn] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_STAR] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_GT] = ACTIONS(3397), - [anon_sym_EQ_EQ] = ACTIONS(3397), - [anon_sym_BANG_EQ] = ACTIONS(3397), - [anon_sym_LT_EQ] = ACTIONS(3397), - [anon_sym_GT_EQ] = ACTIONS(3397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_mut] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_go] = ACTIONS(3397), - [anon_sym_spawn] = ACTIONS(3397), - [anon_sym_json_DOTdecode] = ACTIONS(3397), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_CARET] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3397), - [anon_sym_LT_LT] = ACTIONS(3397), - [anon_sym_GT_GT] = ACTIONS(3397), - [anon_sym_GT_GT_GT] = ACTIONS(3397), - [anon_sym_AMP_CARET] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [sym_none] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_nil] = ACTIONS(3397), - [anon_sym_QMARK_DOT] = ACTIONS(3397), - [anon_sym_POUND_LBRACK] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_DOLLARif] = ACTIONS(3397), - [anon_sym_is] = ACTIONS(3397), - [anon_sym_BANGis] = ACTIONS(3397), - [anon_sym_in] = ACTIONS(3397), - [anon_sym_BANGin] = ACTIONS(3397), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_select] = ACTIONS(3397), - [anon_sym_lock] = ACTIONS(3397), - [anon_sym_rlock] = ACTIONS(3397), - [anon_sym_unsafe] = ACTIONS(3397), - [anon_sym_sql] = ACTIONS(3397), - [sym_int_literal] = ACTIONS(3397), - [sym_float_literal] = ACTIONS(3397), - [sym_rune_literal] = ACTIONS(3397), - [sym_pseudo_compile_time_identifier] = ACTIONS(3397), - [anon_sym_shared] = ACTIONS(3397), - [anon_sym_map_LBRACK] = ACTIONS(3397), - [anon_sym_chan] = ACTIONS(3397), - [anon_sym_thread] = ACTIONS(3397), - [anon_sym_atomic] = ACTIONS(3397), - [sym___double_quote] = ACTIONS(3397), - [sym___single_quote] = ACTIONS(3397), - [sym___c_double_quote] = ACTIONS(3397), - [sym___c_single_quote] = ACTIONS(3397), - [sym___r_double_quote] = ACTIONS(3397), - [sym___r_single_quote] = ACTIONS(3397), + [anon_sym_SEMI] = ACTIONS(3017), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_as] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_COMMA] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_RPAREN] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_fn] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_EQ_EQ] = ACTIONS(3017), + [anon_sym_BANG_EQ] = ACTIONS(3017), + [anon_sym_LT_EQ] = ACTIONS(3017), + [anon_sym_GT_EQ] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_mut] = ACTIONS(3017), + [anon_sym_PLUS_PLUS] = ACTIONS(3017), + [anon_sym_DASH_DASH] = ACTIONS(3017), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_go] = ACTIONS(3017), + [anon_sym_spawn] = ACTIONS(3017), + [anon_sym_json_DOTdecode] = ACTIONS(3017), + [anon_sym_LBRACK2] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3017), + [anon_sym_CARET] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_LT_DASH] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(3017), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_GT_GT_GT] = ACTIONS(3017), + [anon_sym_AMP_CARET] = ACTIONS(3017), + [anon_sym_AMP_AMP] = ACTIONS(3017), + [anon_sym_PIPE_PIPE] = ACTIONS(3017), + [anon_sym_or] = ACTIONS(3017), + [sym_none] = ACTIONS(3017), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_nil] = ACTIONS(3017), + [anon_sym_QMARK_DOT] = ACTIONS(3017), + [anon_sym_POUND_LBRACK] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_DOLLARif] = ACTIONS(3017), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3017), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_BANGin] = ACTIONS(3017), + [anon_sym_match] = ACTIONS(3017), + [anon_sym_select] = ACTIONS(3017), + [anon_sym_lock] = ACTIONS(3017), + [anon_sym_rlock] = ACTIONS(3017), + [anon_sym_unsafe] = ACTIONS(3017), + [anon_sym_sql] = ACTIONS(3017), + [sym_int_literal] = ACTIONS(3017), + [sym_float_literal] = ACTIONS(3017), + [sym_rune_literal] = ACTIONS(3017), + [sym_pseudo_compile_time_identifier] = ACTIONS(3017), + [anon_sym_shared] = ACTIONS(3017), + [anon_sym_map_LBRACK] = ACTIONS(3017), + [anon_sym_chan] = ACTIONS(3017), + [anon_sym_thread] = ACTIONS(3017), + [anon_sym_atomic] = ACTIONS(3017), + [sym___double_quote] = ACTIONS(3017), + [sym___single_quote] = ACTIONS(3017), + [sym___c_double_quote] = ACTIONS(3017), + [sym___c_single_quote] = ACTIONS(3017), + [sym___r_double_quote] = ACTIONS(3017), + [sym___r_single_quote] = ACTIONS(3017), }, - [1231] = { - [sym_identifier] = ACTIONS(3187), - [anon_sym_LF] = ACTIONS(3187), - [anon_sym_CR] = ACTIONS(3187), - [anon_sym_CR_LF] = ACTIONS(3187), + [1239] = { + [sym_identifier] = ACTIONS(3253), + [anon_sym_LF] = ACTIONS(3253), + [anon_sym_CR] = ACTIONS(3253), + [anon_sym_CR_LF] = ACTIONS(3253), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_COMMA] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_RPAREN] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3253), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3253), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3253), + [anon_sym_POUND_LBRACK] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3253), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3253), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + [sym_rune_literal] = ACTIONS(3253), + [sym_pseudo_compile_time_identifier] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3253), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3253), + [sym___single_quote] = ACTIONS(3253), + [sym___c_double_quote] = ACTIONS(3253), + [sym___c_single_quote] = ACTIONS(3253), + [sym___r_double_quote] = ACTIONS(3253), + [sym___r_single_quote] = ACTIONS(3253), }, - [1232] = { - [sym_identifier] = ACTIONS(3363), - [anon_sym_LF] = ACTIONS(3363), - [anon_sym_CR] = ACTIONS(3363), - [anon_sym_CR_LF] = ACTIONS(3363), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3363), - [anon_sym_BANG_EQ] = ACTIONS(3363), - [anon_sym_LT_EQ] = ACTIONS(3363), - [anon_sym_GT_EQ] = ACTIONS(3363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3363), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_CARET] = ACTIONS(3363), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3363), - [anon_sym_LT_LT] = ACTIONS(3363), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3363), - [anon_sym_AMP_CARET] = ACTIONS(3363), - [anon_sym_AMP_AMP] = ACTIONS(3363), - [anon_sym_PIPE_PIPE] = ACTIONS(3363), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3363), - [anon_sym_POUND_LBRACK] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3363), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3363), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3363), - [sym_rune_literal] = ACTIONS(3363), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3363), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3363), - [sym___single_quote] = ACTIONS(3363), - [sym___c_double_quote] = ACTIONS(3363), - [sym___c_single_quote] = ACTIONS(3363), - [sym___r_double_quote] = ACTIONS(3363), - [sym___r_single_quote] = ACTIONS(3363), + [1240] = { + [sym_reference_expression] = STATE(4424), + [sym_type_reference_expression] = STATE(1935), + [sym_plain_type] = STATE(2119), + [sym__plain_type_without_special] = STATE(1951), + [sym_anon_struct_type] = STATE(2079), + [sym_multi_return_type] = STATE(1951), + [sym_result_type] = STATE(1951), + [sym_option_type] = STATE(1951), + [sym_qualified_type] = STATE(1935), + [sym_fixed_array_type] = STATE(2079), + [sym_array_type] = STATE(2079), + [sym_pointer_type] = STATE(2079), + [sym_wrong_pointer_type] = STATE(2079), + [sym_map_type] = STATE(2079), + [sym_channel_type] = STATE(2079), + [sym_shared_type] = STATE(2079), + [sym_thread_type] = STATE(2079), + [sym_atomic_type] = STATE(2079), + [sym_generic_type] = STATE(2079), + [sym_function_type] = STATE(2079), + [sym_identifier] = ACTIONS(3833), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(581), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3837), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3841), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(3843), + [anon_sym_BANG] = ACTIONS(3845), + [anon_sym_LBRACK2] = ACTIONS(3847), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_STAR_EQ] = ACTIONS(581), + [anon_sym_SLASH_EQ] = ACTIONS(581), + [anon_sym_PERCENT_EQ] = ACTIONS(581), + [anon_sym_LT_LT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_EQ] = ACTIONS(581), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(581), + [anon_sym_AMP_EQ] = ACTIONS(581), + [anon_sym_AMP_CARET_EQ] = ACTIONS(581), + [anon_sym_PLUS_EQ] = ACTIONS(581), + [anon_sym_DASH_EQ] = ACTIONS(581), + [anon_sym_PIPE_EQ] = ACTIONS(581), + [anon_sym_CARET_EQ] = ACTIONS(581), + [anon_sym_COLON_EQ] = ACTIONS(581), + [anon_sym_shared] = ACTIONS(3851), + [anon_sym_map_LBRACK] = ACTIONS(3853), + [anon_sym_chan] = ACTIONS(3855), + [anon_sym_thread] = ACTIONS(3857), + [anon_sym_atomic] = ACTIONS(3859), }, - [1233] = { - [sym_identifier] = ACTIONS(3379), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_CR] = ACTIONS(3379), - [anon_sym_CR_LF] = ACTIONS(3379), + [1241] = { + [sym_identifier] = ACTIONS(3416), + [anon_sym_LF] = ACTIONS(3416), + [anon_sym_CR] = ACTIONS(3416), + [anon_sym_CR_LF] = ACTIONS(3416), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3379), - [anon_sym_BANG_EQ] = ACTIONS(3379), - [anon_sym_LT_EQ] = ACTIONS(3379), - [anon_sym_GT_EQ] = ACTIONS(3379), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3379), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [anon_sym_LT_LT] = ACTIONS(3379), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3379), - [anon_sym_AMP_CARET] = ACTIONS(3379), - [anon_sym_AMP_AMP] = ACTIONS(3379), - [anon_sym_PIPE_PIPE] = ACTIONS(3379), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3379), - [anon_sym_POUND_LBRACK] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3379), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3379), - [sym_rune_literal] = ACTIONS(3379), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3379), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3379), - [sym___single_quote] = ACTIONS(3379), - [sym___c_double_quote] = ACTIONS(3379), - [sym___c_single_quote] = ACTIONS(3379), - [sym___r_double_quote] = ACTIONS(3379), - [sym___r_single_quote] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_DOT] = ACTIONS(3416), + [anon_sym_as] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_COMMA] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_RPAREN] = ACTIONS(3416), + [anon_sym_PIPE] = ACTIONS(3416), + [anon_sym_fn] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_PERCENT] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3416), + [anon_sym_BANG_EQ] = ACTIONS(3416), + [anon_sym_LT_EQ] = ACTIONS(3416), + [anon_sym_GT_EQ] = ACTIONS(3416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_struct] = ACTIONS(3416), + [anon_sym_mut] = ACTIONS(3416), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [anon_sym_QMARK] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_go] = ACTIONS(3416), + [anon_sym_spawn] = ACTIONS(3416), + [anon_sym_json_DOTdecode] = ACTIONS(3416), + [anon_sym_LBRACK2] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_CARET] = ACTIONS(3416), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(3416), + [anon_sym_LT_LT] = ACTIONS(3416), + [anon_sym_GT_GT] = ACTIONS(3416), + [anon_sym_GT_GT_GT] = ACTIONS(3416), + [anon_sym_AMP_CARET] = ACTIONS(3416), + [anon_sym_AMP_AMP] = ACTIONS(3416), + [anon_sym_PIPE_PIPE] = ACTIONS(3416), + [anon_sym_or] = ACTIONS(3416), + [sym_none] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_nil] = ACTIONS(3416), + [anon_sym_QMARK_DOT] = ACTIONS(3416), + [anon_sym_POUND_LBRACK] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_DOLLARif] = ACTIONS(3416), + [anon_sym_is] = ACTIONS(3416), + [anon_sym_BANGis] = ACTIONS(3416), + [anon_sym_in] = ACTIONS(3416), + [anon_sym_BANGin] = ACTIONS(3416), + [anon_sym_match] = ACTIONS(3416), + [anon_sym_select] = ACTIONS(3416), + [anon_sym_lock] = ACTIONS(3416), + [anon_sym_rlock] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_sql] = ACTIONS(3416), + [sym_int_literal] = ACTIONS(3416), + [sym_float_literal] = ACTIONS(3416), + [sym_rune_literal] = ACTIONS(3416), + [sym_pseudo_compile_time_identifier] = ACTIONS(3416), + [anon_sym_shared] = ACTIONS(3416), + [anon_sym_map_LBRACK] = ACTIONS(3416), + [anon_sym_chan] = ACTIONS(3416), + [anon_sym_thread] = ACTIONS(3416), + [anon_sym_atomic] = ACTIONS(3416), + [sym___double_quote] = ACTIONS(3416), + [sym___single_quote] = ACTIONS(3416), + [sym___c_double_quote] = ACTIONS(3416), + [sym___c_single_quote] = ACTIONS(3416), + [sym___r_double_quote] = ACTIONS(3416), + [sym___r_single_quote] = ACTIONS(3416), }, - [1234] = { - [sym_identifier] = ACTIONS(2913), - [anon_sym_LF] = ACTIONS(2913), - [anon_sym_CR] = ACTIONS(2913), - [anon_sym_CR_LF] = ACTIONS(2913), + [1242] = { + [sym_reference_expression] = STATE(4424), + [sym_type_reference_expression] = STATE(1935), + [sym_plain_type] = STATE(2111), + [sym__plain_type_without_special] = STATE(1951), + [sym_anon_struct_type] = STATE(2079), + [sym_multi_return_type] = STATE(1951), + [sym_result_type] = STATE(1951), + [sym_option_type] = STATE(1951), + [sym_qualified_type] = STATE(1935), + [sym_fixed_array_type] = STATE(2079), + [sym_array_type] = STATE(2079), + [sym_pointer_type] = STATE(2079), + [sym_wrong_pointer_type] = STATE(2079), + [sym_map_type] = STATE(2079), + [sym_channel_type] = STATE(2079), + [sym_shared_type] = STATE(2079), + [sym_thread_type] = STATE(2079), + [sym_atomic_type] = STATE(2079), + [sym_generic_type] = STATE(2079), + [sym_function_type] = STATE(2079), + [sym_identifier] = ACTIONS(3833), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3837), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(3841), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(3843), + [anon_sym_BANG] = ACTIONS(3845), + [anon_sym_LBRACK2] = ACTIONS(3847), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_AMP_CARET_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(3851), + [anon_sym_map_LBRACK] = ACTIONS(3853), + [anon_sym_chan] = ACTIONS(3855), + [anon_sym_thread] = ACTIONS(3857), + [anon_sym_atomic] = ACTIONS(3859), + }, + [1243] = { + [sym_identifier] = ACTIONS(3452), + [anon_sym_LF] = ACTIONS(3452), + [anon_sym_CR] = ACTIONS(3452), + [anon_sym_CR_LF] = ACTIONS(3452), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [sym___double_quote] = ACTIONS(2913), - [sym___single_quote] = ACTIONS(2913), - [sym___c_double_quote] = ACTIONS(2913), - [sym___c_single_quote] = ACTIONS(2913), - [sym___r_double_quote] = ACTIONS(2913), - [sym___r_single_quote] = ACTIONS(2913), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_DOT] = ACTIONS(3452), + [anon_sym_as] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_COMMA] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_RPAREN] = ACTIONS(3452), + [anon_sym_PIPE] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_PERCENT] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_GT] = ACTIONS(3452), + [anon_sym_EQ_EQ] = ACTIONS(3452), + [anon_sym_BANG_EQ] = ACTIONS(3452), + [anon_sym_LT_EQ] = ACTIONS(3452), + [anon_sym_GT_EQ] = ACTIONS(3452), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3452), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_mut] = ACTIONS(3452), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [anon_sym_QMARK] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_go] = ACTIONS(3452), + [anon_sym_spawn] = ACTIONS(3452), + [anon_sym_json_DOTdecode] = ACTIONS(3452), + [anon_sym_LBRACK2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_CARET] = ACTIONS(3452), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_LT_DASH] = ACTIONS(3452), + [anon_sym_LT_LT] = ACTIONS(3452), + [anon_sym_GT_GT] = ACTIONS(3452), + [anon_sym_GT_GT_GT] = ACTIONS(3452), + [anon_sym_AMP_CARET] = ACTIONS(3452), + [anon_sym_AMP_AMP] = ACTIONS(3452), + [anon_sym_PIPE_PIPE] = ACTIONS(3452), + [anon_sym_or] = ACTIONS(3452), + [sym_none] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_nil] = ACTIONS(3452), + [anon_sym_QMARK_DOT] = ACTIONS(3452), + [anon_sym_POUND_LBRACK] = ACTIONS(3452), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_DOLLARif] = ACTIONS(3452), + [anon_sym_is] = ACTIONS(3452), + [anon_sym_BANGis] = ACTIONS(3452), + [anon_sym_in] = ACTIONS(3452), + [anon_sym_BANGin] = ACTIONS(3452), + [anon_sym_match] = ACTIONS(3452), + [anon_sym_select] = ACTIONS(3452), + [anon_sym_lock] = ACTIONS(3452), + [anon_sym_rlock] = ACTIONS(3452), + [anon_sym_unsafe] = ACTIONS(3452), + [anon_sym_sql] = ACTIONS(3452), + [sym_int_literal] = ACTIONS(3452), + [sym_float_literal] = ACTIONS(3452), + [sym_rune_literal] = ACTIONS(3452), + [sym_pseudo_compile_time_identifier] = ACTIONS(3452), + [anon_sym_shared] = ACTIONS(3452), + [anon_sym_map_LBRACK] = ACTIONS(3452), + [anon_sym_chan] = ACTIONS(3452), + [anon_sym_thread] = ACTIONS(3452), + [anon_sym_atomic] = ACTIONS(3452), + [sym___double_quote] = ACTIONS(3452), + [sym___single_quote] = ACTIONS(3452), + [sym___c_double_quote] = ACTIONS(3452), + [sym___c_single_quote] = ACTIONS(3452), + [sym___r_double_quote] = ACTIONS(3452), + [sym___r_single_quote] = ACTIONS(3452), }, - [1235] = { + [1244] = { [sym_identifier] = ACTIONS(2981), [anon_sym_LF] = ACTIONS(2981), [anon_sym_CR] = ACTIONS(2981), @@ -161553,427 +162416,1183 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2981), [sym___r_single_quote] = ACTIONS(2981), }, - [1236] = { - [sym_identifier] = ACTIONS(2991), - [anon_sym_LF] = ACTIONS(2991), - [anon_sym_CR] = ACTIONS(2991), - [anon_sym_CR_LF] = ACTIONS(2991), + [1245] = { + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_RBRACE] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_fn] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2991), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2991), - [anon_sym_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2991), - [anon_sym_mut] = ACTIONS(2991), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_go] = ACTIONS(2991), - [anon_sym_spawn] = ACTIONS(2991), - [anon_sym_json_DOTdecode] = ACTIONS(2991), - [anon_sym_LBRACK2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_LT_DASH] = ACTIONS(2991), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2991), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_AMP_CARET] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [sym_none] = ACTIONS(2991), - [sym_true] = ACTIONS(2991), - [sym_false] = ACTIONS(2991), - [sym_nil] = ACTIONS(2991), - [anon_sym_QMARK_DOT] = ACTIONS(2991), - [anon_sym_POUND_LBRACK] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_BANGis] = ACTIONS(2991), - [anon_sym_in] = ACTIONS(2991), - [anon_sym_BANGin] = ACTIONS(2991), - [anon_sym_match] = ACTIONS(2991), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_lock] = ACTIONS(2991), - [anon_sym_rlock] = ACTIONS(2991), - [anon_sym_unsafe] = ACTIONS(2991), - [anon_sym_sql] = ACTIONS(2991), - [sym_int_literal] = ACTIONS(2991), - [sym_float_literal] = ACTIONS(2991), - [sym_rune_literal] = ACTIONS(2991), - [sym_pseudo_compile_time_identifier] = ACTIONS(2991), - [anon_sym_shared] = ACTIONS(2991), - [anon_sym_map_LBRACK] = ACTIONS(2991), - [anon_sym_chan] = ACTIONS(2991), - [anon_sym_thread] = ACTIONS(2991), - [anon_sym_atomic] = ACTIONS(2991), - [sym___double_quote] = ACTIONS(2991), - [sym___single_quote] = ACTIONS(2991), - [sym___c_double_quote] = ACTIONS(2991), - [sym___c_single_quote] = ACTIONS(2991), - [sym___r_double_quote] = ACTIONS(2991), - [sym___r_single_quote] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2891), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_RPAREN] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2891), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2891), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_or] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2891), + [anon_sym_POUND_LBRACK] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + [sym___double_quote] = ACTIONS(2891), + [sym___single_quote] = ACTIONS(2891), + [sym___c_double_quote] = ACTIONS(2891), + [sym___c_single_quote] = ACTIONS(2891), + [sym___r_double_quote] = ACTIONS(2891), + [sym___r_single_quote] = ACTIONS(2891), }, - [1237] = { - [sym_identifier] = ACTIONS(3413), - [anon_sym_LF] = ACTIONS(3413), - [anon_sym_CR] = ACTIONS(3413), - [anon_sym_CR_LF] = ACTIONS(3413), + [1246] = { + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(1946), + [sym_plain_type] = STATE(1984), + [sym__plain_type_without_special] = STATE(2017), + [sym_anon_struct_type] = STATE(2006), + [sym_multi_return_type] = STATE(2017), + [sym_result_type] = STATE(2017), + [sym_option_type] = STATE(2017), + [sym_qualified_type] = STATE(1946), + [sym_fixed_array_type] = STATE(2006), + [sym_array_type] = STATE(2006), + [sym_pointer_type] = STATE(2006), + [sym_wrong_pointer_type] = STATE(2006), + [sym_map_type] = STATE(2006), + [sym_channel_type] = STATE(2006), + [sym_shared_type] = STATE(2006), + [sym_thread_type] = STATE(2006), + [sym_atomic_type] = STATE(2006), + [sym_generic_type] = STATE(2006), + [sym_function_type] = STATE(2006), + [sym_identifier] = ACTIONS(3786), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3788), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3792), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_COLON] = ACTIONS(621), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3796), + [anon_sym_BANG] = ACTIONS(3798), + [anon_sym_LBRACK2] = ACTIONS(3800), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(621), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_AMP_CARET_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3804), + [anon_sym_map_LBRACK] = ACTIONS(3806), + [anon_sym_chan] = ACTIONS(3808), + [anon_sym_thread] = ACTIONS(3810), + [anon_sym_atomic] = ACTIONS(3812), + }, + [1247] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_EQ] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_DASH] = ACTIONS(613), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_STAR_EQ] = ACTIONS(613), + [anon_sym_SLASH_EQ] = ACTIONS(613), + [anon_sym_PERCENT_EQ] = ACTIONS(613), + [anon_sym_LT_LT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_EQ] = ACTIONS(613), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), + [anon_sym_AMP_EQ] = ACTIONS(613), + [anon_sym_AMP_CARET_EQ] = ACTIONS(613), + [anon_sym_PLUS_EQ] = ACTIONS(613), + [anon_sym_DASH_EQ] = ACTIONS(613), + [anon_sym_PIPE_EQ] = ACTIONS(613), + [anon_sym_CARET_EQ] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1248] = { + [sym_reference_expression] = STATE(4424), + [sym_type_reference_expression] = STATE(1935), + [sym_plain_type] = STATE(2013), + [sym__plain_type_without_special] = STATE(1951), + [sym_anon_struct_type] = STATE(2079), + [sym_multi_return_type] = STATE(1951), + [sym_result_type] = STATE(1951), + [sym_option_type] = STATE(1951), + [sym_qualified_type] = STATE(1935), + [sym_fixed_array_type] = STATE(2079), + [sym_array_type] = STATE(2079), + [sym_pointer_type] = STATE(2079), + [sym_wrong_pointer_type] = STATE(2079), + [sym_map_type] = STATE(2079), + [sym_channel_type] = STATE(2079), + [sym_shared_type] = STATE(2079), + [sym_thread_type] = STATE(2079), + [sym_atomic_type] = STATE(2079), + [sym_generic_type] = STATE(2079), + [sym_function_type] = STATE(2079), + [sym_identifier] = ACTIONS(3833), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(621), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3835), + [anon_sym_EQ] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3837), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3839), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3841), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(3843), + [anon_sym_BANG] = ACTIONS(3845), + [anon_sym_LBRACK2] = ACTIONS(3847), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3849), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_STAR_EQ] = ACTIONS(621), + [anon_sym_SLASH_EQ] = ACTIONS(621), + [anon_sym_PERCENT_EQ] = ACTIONS(621), + [anon_sym_LT_LT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_EQ] = ACTIONS(621), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(621), + [anon_sym_AMP_EQ] = ACTIONS(621), + [anon_sym_AMP_CARET_EQ] = ACTIONS(621), + [anon_sym_PLUS_EQ] = ACTIONS(621), + [anon_sym_DASH_EQ] = ACTIONS(621), + [anon_sym_PIPE_EQ] = ACTIONS(621), + [anon_sym_CARET_EQ] = ACTIONS(621), + [anon_sym_COLON_EQ] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(3851), + [anon_sym_map_LBRACK] = ACTIONS(3853), + [anon_sym_chan] = ACTIONS(3855), + [anon_sym_thread] = ACTIONS(3857), + [anon_sym_atomic] = ACTIONS(3859), + }, + [1249] = { + [sym_identifier] = ACTIONS(3382), + [anon_sym_LF] = ACTIONS(3382), + [anon_sym_CR] = ACTIONS(3382), + [anon_sym_CR_LF] = ACTIONS(3382), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_as] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_RPAREN] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_fn] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_GT] = ACTIONS(3413), - [anon_sym_EQ_EQ] = ACTIONS(3413), - [anon_sym_BANG_EQ] = ACTIONS(3413), - [anon_sym_LT_EQ] = ACTIONS(3413), - [anon_sym_GT_EQ] = ACTIONS(3413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3413), - [anon_sym_mut] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_go] = ACTIONS(3413), - [anon_sym_spawn] = ACTIONS(3413), - [anon_sym_json_DOTdecode] = ACTIONS(3413), - [anon_sym_LBRACK2] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [anon_sym_LT_LT] = ACTIONS(3413), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_GT_GT_GT] = ACTIONS(3413), - [anon_sym_AMP_CARET] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [sym_none] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_nil] = ACTIONS(3413), - [anon_sym_QMARK_DOT] = ACTIONS(3413), - [anon_sym_POUND_LBRACK] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_DOLLARif] = ACTIONS(3413), - [anon_sym_is] = ACTIONS(3413), - [anon_sym_BANGis] = ACTIONS(3413), - [anon_sym_in] = ACTIONS(3413), - [anon_sym_BANGin] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_select] = ACTIONS(3413), - [anon_sym_lock] = ACTIONS(3413), - [anon_sym_rlock] = ACTIONS(3413), - [anon_sym_unsafe] = ACTIONS(3413), - [anon_sym_sql] = ACTIONS(3413), - [sym_int_literal] = ACTIONS(3413), - [sym_float_literal] = ACTIONS(3413), - [sym_rune_literal] = ACTIONS(3413), - [sym_pseudo_compile_time_identifier] = ACTIONS(3413), - [anon_sym_shared] = ACTIONS(3413), - [anon_sym_map_LBRACK] = ACTIONS(3413), - [anon_sym_chan] = ACTIONS(3413), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3413), - [sym___double_quote] = ACTIONS(3413), - [sym___single_quote] = ACTIONS(3413), - [sym___c_double_quote] = ACTIONS(3413), - [sym___c_single_quote] = ACTIONS(3413), - [sym___r_double_quote] = ACTIONS(3413), - [sym___r_single_quote] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3382), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3382), + [anon_sym_COMMA] = ACTIONS(3382), + [anon_sym_RBRACE] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3382), + [anon_sym_RPAREN] = ACTIONS(3382), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3382), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3382), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3382), + [anon_sym_BANG_EQ] = ACTIONS(3382), + [anon_sym_LT_EQ] = ACTIONS(3382), + [anon_sym_GT_EQ] = ACTIONS(3382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3382), + [anon_sym_DASH_DASH] = ACTIONS(3382), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3382), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3382), + [anon_sym_CARET] = ACTIONS(3382), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3382), + [anon_sym_LT_LT] = ACTIONS(3382), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3382), + [anon_sym_AMP_CARET] = ACTIONS(3382), + [anon_sym_AMP_AMP] = ACTIONS(3382), + [anon_sym_PIPE_PIPE] = ACTIONS(3382), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3382), + [anon_sym_POUND_LBRACK] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3382), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3382), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3382), + [sym_rune_literal] = ACTIONS(3382), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3382), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3382), + [sym___single_quote] = ACTIONS(3382), + [sym___c_double_quote] = ACTIONS(3382), + [sym___c_single_quote] = ACTIONS(3382), + [sym___r_double_quote] = ACTIONS(3382), + [sym___r_single_quote] = ACTIONS(3382), }, - [1238] = { - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), + [1250] = { + [sym_identifier] = ACTIONS(3374), + [anon_sym_LF] = ACTIONS(3374), + [anon_sym_CR] = ACTIONS(3374), + [anon_sym_CR_LF] = ACTIONS(3374), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_RPAREN] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3339), - [anon_sym_BANG_EQ] = ACTIONS(3339), - [anon_sym_LT_EQ] = ACTIONS(3339), - [anon_sym_GT_EQ] = ACTIONS(3339), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3339), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3339), - [anon_sym_AMP_CARET] = ACTIONS(3339), - [anon_sym_AMP_AMP] = ACTIONS(3339), - [anon_sym_PIPE_PIPE] = ACTIONS(3339), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3339), - [anon_sym_POUND_LBRACK] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3339), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3339), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3374), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3374), + [anon_sym_COMMA] = ACTIONS(3374), + [anon_sym_RBRACE] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3374), + [anon_sym_RPAREN] = ACTIONS(3374), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3374), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3374), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3374), + [anon_sym_BANG_EQ] = ACTIONS(3374), + [anon_sym_LT_EQ] = ACTIONS(3374), + [anon_sym_GT_EQ] = ACTIONS(3374), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3374), + [anon_sym_DASH_DASH] = ACTIONS(3374), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3374), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3374), + [anon_sym_CARET] = ACTIONS(3374), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3374), + [anon_sym_LT_LT] = ACTIONS(3374), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3374), + [anon_sym_AMP_CARET] = ACTIONS(3374), + [anon_sym_AMP_AMP] = ACTIONS(3374), + [anon_sym_PIPE_PIPE] = ACTIONS(3374), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3374), + [anon_sym_POUND_LBRACK] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3374), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3374), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3374), + [sym_rune_literal] = ACTIONS(3374), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3374), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3374), + [sym___single_quote] = ACTIONS(3374), + [sym___c_double_quote] = ACTIONS(3374), + [sym___c_single_quote] = ACTIONS(3374), + [sym___r_double_quote] = ACTIONS(3374), + [sym___r_single_quote] = ACTIONS(3374), }, - [1239] = { - [sym_identifier] = ACTIONS(3343), - [anon_sym_LF] = ACTIONS(3343), - [anon_sym_CR] = ACTIONS(3343), - [anon_sym_CR_LF] = ACTIONS(3343), + [1251] = { + [sym_identifier] = ACTIONS(3366), + [anon_sym_LF] = ACTIONS(3366), + [anon_sym_CR] = ACTIONS(3366), + [anon_sym_CR_LF] = ACTIONS(3366), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3343), - [anon_sym_BANG_EQ] = ACTIONS(3343), - [anon_sym_LT_EQ] = ACTIONS(3343), - [anon_sym_GT_EQ] = ACTIONS(3343), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3343), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_CARET] = ACTIONS(3343), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3343), - [anon_sym_LT_LT] = ACTIONS(3343), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3343), - [anon_sym_AMP_CARET] = ACTIONS(3343), - [anon_sym_AMP_AMP] = ACTIONS(3343), - [anon_sym_PIPE_PIPE] = ACTIONS(3343), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3343), - [anon_sym_POUND_LBRACK] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3343), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3343), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3343), - [sym_rune_literal] = ACTIONS(3343), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3343), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3343), - [sym___single_quote] = ACTIONS(3343), - [sym___c_double_quote] = ACTIONS(3343), - [sym___c_single_quote] = ACTIONS(3343), - [sym___r_double_quote] = ACTIONS(3343), - [sym___r_single_quote] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_COMMA] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_RPAREN] = ACTIONS(3366), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3366), + [anon_sym_BANG_EQ] = ACTIONS(3366), + [anon_sym_LT_EQ] = ACTIONS(3366), + [anon_sym_GT_EQ] = ACTIONS(3366), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3366), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_CARET] = ACTIONS(3366), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3366), + [anon_sym_LT_LT] = ACTIONS(3366), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3366), + [anon_sym_AMP_CARET] = ACTIONS(3366), + [anon_sym_AMP_AMP] = ACTIONS(3366), + [anon_sym_PIPE_PIPE] = ACTIONS(3366), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3366), + [anon_sym_POUND_LBRACK] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3366), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3366), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3366), + [sym_rune_literal] = ACTIONS(3366), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3366), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3366), + [sym___single_quote] = ACTIONS(3366), + [sym___c_double_quote] = ACTIONS(3366), + [sym___c_single_quote] = ACTIONS(3366), + [sym___r_double_quote] = ACTIONS(3366), + [sym___r_single_quote] = ACTIONS(3366), }, - [1240] = { - [sym_identifier] = ACTIONS(3063), - [anon_sym_LF] = ACTIONS(3063), - [anon_sym_CR] = ACTIONS(3063), - [anon_sym_CR_LF] = ACTIONS(3063), + [1252] = { + [sym_identifier] = ACTIONS(3275), + [anon_sym_LF] = ACTIONS(3275), + [anon_sym_CR] = ACTIONS(3275), + [anon_sym_CR_LF] = ACTIONS(3275), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3063), - [anon_sym_DOT] = ACTIONS(3063), - [anon_sym_as] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_RBRACE] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_RPAREN] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_fn] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3063), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3063), - [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_DOT_DOT_DOT] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_mut] = ACTIONS(3063), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3791), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3063), - [anon_sym_json_DOTdecode] = ACTIONS(3063), - [anon_sym_LBRACK2] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_LT_DASH] = ACTIONS(3063), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3063), - [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(3063), - [sym_none] = ACTIONS(3063), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [sym_nil] = ACTIONS(3063), - [anon_sym_QMARK_DOT] = ACTIONS(3063), - [anon_sym_POUND_LBRACK] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_DOLLARif] = ACTIONS(3063), - [anon_sym_is] = ACTIONS(3063), - [anon_sym_BANGis] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_BANGin] = ACTIONS(3063), - [anon_sym_match] = ACTIONS(3063), - [anon_sym_select] = ACTIONS(3063), - [anon_sym_lock] = ACTIONS(3063), - [anon_sym_rlock] = ACTIONS(3063), - [anon_sym_unsafe] = ACTIONS(3063), - [anon_sym_sql] = ACTIONS(3063), - [sym_int_literal] = ACTIONS(3063), - [sym_float_literal] = ACTIONS(3063), - [sym_rune_literal] = ACTIONS(3063), - [sym_pseudo_compile_time_identifier] = ACTIONS(3063), - [anon_sym_shared] = ACTIONS(3063), - [anon_sym_map_LBRACK] = ACTIONS(3063), - [anon_sym_chan] = ACTIONS(3063), - [anon_sym_thread] = ACTIONS(3063), - [anon_sym_atomic] = ACTIONS(3063), - [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_SEMI] = ACTIONS(3275), + [anon_sym_DOT] = ACTIONS(3275), + [anon_sym_as] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_COMMA] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_RPAREN] = ACTIONS(3275), + [anon_sym_PIPE] = ACTIONS(3275), + [anon_sym_fn] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PERCENT] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_EQ_EQ] = ACTIONS(3275), + [anon_sym_BANG_EQ] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_struct] = ACTIONS(3275), + [anon_sym_mut] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [anon_sym_QMARK] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_go] = ACTIONS(3275), + [anon_sym_spawn] = ACTIONS(3275), + [anon_sym_json_DOTdecode] = ACTIONS(3275), + [anon_sym_LBRACK2] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym_LT_DASH] = ACTIONS(3275), + [anon_sym_LT_LT] = ACTIONS(3275), + [anon_sym_GT_GT] = ACTIONS(3275), + [anon_sym_GT_GT_GT] = ACTIONS(3275), + [anon_sym_AMP_CARET] = ACTIONS(3275), + [anon_sym_AMP_AMP] = ACTIONS(3275), + [anon_sym_PIPE_PIPE] = ACTIONS(3275), + [anon_sym_or] = ACTIONS(3275), + [sym_none] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_nil] = ACTIONS(3275), + [anon_sym_QMARK_DOT] = ACTIONS(3275), + [anon_sym_POUND_LBRACK] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_DOLLARif] = ACTIONS(3275), + [anon_sym_is] = ACTIONS(3275), + [anon_sym_BANGis] = ACTIONS(3275), + [anon_sym_in] = ACTIONS(3275), + [anon_sym_BANGin] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3275), + [anon_sym_select] = ACTIONS(3275), + [anon_sym_lock] = ACTIONS(3275), + [anon_sym_rlock] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_sql] = ACTIONS(3275), + [sym_int_literal] = ACTIONS(3275), + [sym_float_literal] = ACTIONS(3275), + [sym_rune_literal] = ACTIONS(3275), + [sym_pseudo_compile_time_identifier] = ACTIONS(3275), + [anon_sym_shared] = ACTIONS(3275), + [anon_sym_map_LBRACK] = ACTIONS(3275), + [anon_sym_chan] = ACTIONS(3275), + [anon_sym_thread] = ACTIONS(3275), + [anon_sym_atomic] = ACTIONS(3275), + [sym___double_quote] = ACTIONS(3275), + [sym___single_quote] = ACTIONS(3275), + [sym___c_double_quote] = ACTIONS(3275), + [sym___c_single_quote] = ACTIONS(3275), + [sym___r_double_quote] = ACTIONS(3275), + [sym___r_single_quote] = ACTIONS(3275), }, - [1241] = { + [1253] = { + [sym_identifier] = ACTIONS(3362), + [anon_sym_LF] = ACTIONS(3362), + [anon_sym_CR] = ACTIONS(3362), + [anon_sym_CR_LF] = ACTIONS(3362), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3362), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3362), + [anon_sym_COMMA] = ACTIONS(3362), + [anon_sym_RBRACE] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3362), + [anon_sym_RPAREN] = ACTIONS(3362), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3362), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3362), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3362), + [anon_sym_BANG_EQ] = ACTIONS(3362), + [anon_sym_LT_EQ] = ACTIONS(3362), + [anon_sym_GT_EQ] = ACTIONS(3362), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3362), + [anon_sym_DASH_DASH] = ACTIONS(3362), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3362), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3362), + [anon_sym_CARET] = ACTIONS(3362), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3362), + [anon_sym_LT_LT] = ACTIONS(3362), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3362), + [anon_sym_AMP_CARET] = ACTIONS(3362), + [anon_sym_AMP_AMP] = ACTIONS(3362), + [anon_sym_PIPE_PIPE] = ACTIONS(3362), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3362), + [anon_sym_POUND_LBRACK] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3362), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3362), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3362), + [sym_rune_literal] = ACTIONS(3362), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3362), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3362), + [sym___single_quote] = ACTIONS(3362), + [sym___c_double_quote] = ACTIONS(3362), + [sym___c_single_quote] = ACTIONS(3362), + [sym___r_double_quote] = ACTIONS(3362), + [sym___r_single_quote] = ACTIONS(3362), + }, + [1254] = { + [sym_identifier] = ACTIONS(3311), + [anon_sym_LF] = ACTIONS(3311), + [anon_sym_CR] = ACTIONS(3311), + [anon_sym_CR_LF] = ACTIONS(3311), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_COMMA] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_RPAREN] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3311), + [anon_sym_BANG_EQ] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_COLON] = ACTIONS(3861), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3311), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3311), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3311), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3311), + [anon_sym_AMP_CARET] = ACTIONS(3311), + [anon_sym_AMP_AMP] = ACTIONS(3311), + [anon_sym_PIPE_PIPE] = ACTIONS(3311), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3311), + [anon_sym_POUND_LBRACK] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3311), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3311), + [sym_rune_literal] = ACTIONS(3311), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3311), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3311), + [sym___single_quote] = ACTIONS(3311), + [sym___c_double_quote] = ACTIONS(3311), + [sym___c_single_quote] = ACTIONS(3311), + [sym___r_double_quote] = ACTIONS(3311), + [sym___r_single_quote] = ACTIONS(3311), + }, + [1255] = { + [sym_identifier] = ACTIONS(3432), + [anon_sym_LF] = ACTIONS(3432), + [anon_sym_CR] = ACTIONS(3432), + [anon_sym_CR_LF] = ACTIONS(3432), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_DOT] = ACTIONS(3432), + [anon_sym_as] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_COMMA] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_RPAREN] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3432), + [anon_sym_fn] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3432), + [anon_sym_LT] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3432), + [anon_sym_BANG_EQ] = ACTIONS(3432), + [anon_sym_LT_EQ] = ACTIONS(3432), + [anon_sym_GT_EQ] = ACTIONS(3432), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3432), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_struct] = ACTIONS(3432), + [anon_sym_mut] = ACTIONS(3432), + [anon_sym_PLUS_PLUS] = ACTIONS(3432), + [anon_sym_DASH_DASH] = ACTIONS(3432), + [anon_sym_QMARK] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_go] = ACTIONS(3432), + [anon_sym_spawn] = ACTIONS(3432), + [anon_sym_json_DOTdecode] = ACTIONS(3432), + [anon_sym_LBRACK2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_CARET] = ACTIONS(3432), + [anon_sym_AMP] = ACTIONS(3432), + [anon_sym_LT_DASH] = ACTIONS(3432), + [anon_sym_LT_LT] = ACTIONS(3432), + [anon_sym_GT_GT] = ACTIONS(3432), + [anon_sym_GT_GT_GT] = ACTIONS(3432), + [anon_sym_AMP_CARET] = ACTIONS(3432), + [anon_sym_AMP_AMP] = ACTIONS(3432), + [anon_sym_PIPE_PIPE] = ACTIONS(3432), + [anon_sym_or] = ACTIONS(3432), + [sym_none] = ACTIONS(3432), + [sym_true] = ACTIONS(3432), + [sym_false] = ACTIONS(3432), + [sym_nil] = ACTIONS(3432), + [anon_sym_QMARK_DOT] = ACTIONS(3432), + [anon_sym_POUND_LBRACK] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_DOLLARif] = ACTIONS(3432), + [anon_sym_is] = ACTIONS(3432), + [anon_sym_BANGis] = ACTIONS(3432), + [anon_sym_in] = ACTIONS(3432), + [anon_sym_BANGin] = ACTIONS(3432), + [anon_sym_match] = ACTIONS(3432), + [anon_sym_select] = ACTIONS(3432), + [anon_sym_lock] = ACTIONS(3432), + [anon_sym_rlock] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_sql] = ACTIONS(3432), + [sym_int_literal] = ACTIONS(3432), + [sym_float_literal] = ACTIONS(3432), + [sym_rune_literal] = ACTIONS(3432), + [sym_pseudo_compile_time_identifier] = ACTIONS(3432), + [anon_sym_shared] = ACTIONS(3432), + [anon_sym_map_LBRACK] = ACTIONS(3432), + [anon_sym_chan] = ACTIONS(3432), + [anon_sym_thread] = ACTIONS(3432), + [anon_sym_atomic] = ACTIONS(3432), + [sym___double_quote] = ACTIONS(3432), + [sym___single_quote] = ACTIONS(3432), + [sym___c_double_quote] = ACTIONS(3432), + [sym___c_single_quote] = ACTIONS(3432), + [sym___r_double_quote] = ACTIONS(3432), + [sym___r_single_quote] = ACTIONS(3432), + }, + [1256] = { + [sym_identifier] = ACTIONS(3322), + [anon_sym_LF] = ACTIONS(3322), + [anon_sym_CR] = ACTIONS(3322), + [anon_sym_CR_LF] = ACTIONS(3322), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_COMMA] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_RPAREN] = ACTIONS(3322), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3322), + [anon_sym_BANG_EQ] = ACTIONS(3322), + [anon_sym_LT_EQ] = ACTIONS(3322), + [anon_sym_GT_EQ] = ACTIONS(3322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3322), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_CARET] = ACTIONS(3322), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3322), + [anon_sym_LT_LT] = ACTIONS(3322), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3322), + [anon_sym_AMP_CARET] = ACTIONS(3322), + [anon_sym_AMP_AMP] = ACTIONS(3322), + [anon_sym_PIPE_PIPE] = ACTIONS(3322), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3322), + [anon_sym_POUND_LBRACK] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3322), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3322), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3322), + [sym_rune_literal] = ACTIONS(3322), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3322), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3322), + [sym___single_quote] = ACTIONS(3322), + [sym___c_double_quote] = ACTIONS(3322), + [sym___c_single_quote] = ACTIONS(3322), + [sym___r_double_quote] = ACTIONS(3322), + [sym___r_single_quote] = ACTIONS(3322), + }, + [1257] = { + [sym_identifier] = ACTIONS(3318), + [anon_sym_LF] = ACTIONS(3318), + [anon_sym_CR] = ACTIONS(3318), + [anon_sym_CR_LF] = ACTIONS(3318), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_COMMA] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_RPAREN] = ACTIONS(3318), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3318), + [anon_sym_BANG_EQ] = ACTIONS(3318), + [anon_sym_LT_EQ] = ACTIONS(3318), + [anon_sym_GT_EQ] = ACTIONS(3318), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3318), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_CARET] = ACTIONS(3318), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3318), + [anon_sym_LT_LT] = ACTIONS(3318), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3318), + [anon_sym_AMP_CARET] = ACTIONS(3318), + [anon_sym_AMP_AMP] = ACTIONS(3318), + [anon_sym_PIPE_PIPE] = ACTIONS(3318), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3318), + [anon_sym_POUND_LBRACK] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3318), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3318), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3318), + [sym_rune_literal] = ACTIONS(3318), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3318), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3318), + [sym___single_quote] = ACTIONS(3318), + [sym___c_double_quote] = ACTIONS(3318), + [sym___c_single_quote] = ACTIONS(3318), + [sym___r_double_quote] = ACTIONS(3318), + [sym___r_single_quote] = ACTIONS(3318), + }, + [1258] = { + [sym_identifier] = ACTIONS(3307), + [anon_sym_LF] = ACTIONS(3307), + [anon_sym_CR] = ACTIONS(3307), + [anon_sym_CR_LF] = ACTIONS(3307), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3307), + [anon_sym_DOT] = ACTIONS(3307), + [anon_sym_as] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3307), + [anon_sym_COMMA] = ACTIONS(3307), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3307), + [anon_sym_RPAREN] = ACTIONS(3307), + [anon_sym_PIPE] = ACTIONS(3307), + [anon_sym_fn] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3307), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3307), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3307), + [anon_sym_BANG_EQ] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3307), + [anon_sym_GT_EQ] = ACTIONS(3307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_mut] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3307), + [anon_sym_DASH_DASH] = ACTIONS(3307), + [anon_sym_QMARK] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_go] = ACTIONS(3307), + [anon_sym_spawn] = ACTIONS(3307), + [anon_sym_json_DOTdecode] = ACTIONS(3307), + [anon_sym_LBRACK2] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3307), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_LT_DASH] = ACTIONS(3307), + [anon_sym_LT_LT] = ACTIONS(3307), + [anon_sym_GT_GT] = ACTIONS(3307), + [anon_sym_GT_GT_GT] = ACTIONS(3307), + [anon_sym_AMP_CARET] = ACTIONS(3307), + [anon_sym_AMP_AMP] = ACTIONS(3307), + [anon_sym_PIPE_PIPE] = ACTIONS(3307), + [anon_sym_or] = ACTIONS(3307), + [sym_none] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_nil] = ACTIONS(3307), + [anon_sym_QMARK_DOT] = ACTIONS(3307), + [anon_sym_POUND_LBRACK] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_DOLLARif] = ACTIONS(3307), + [anon_sym_is] = ACTIONS(3307), + [anon_sym_BANGis] = ACTIONS(3307), + [anon_sym_in] = ACTIONS(3307), + [anon_sym_BANGin] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_select] = ACTIONS(3307), + [anon_sym_lock] = ACTIONS(3307), + [anon_sym_rlock] = ACTIONS(3307), + [anon_sym_unsafe] = ACTIONS(3307), + [anon_sym_sql] = ACTIONS(3307), + [sym_int_literal] = ACTIONS(3307), + [sym_float_literal] = ACTIONS(3307), + [sym_rune_literal] = ACTIONS(3307), + [sym_pseudo_compile_time_identifier] = ACTIONS(3307), + [anon_sym_shared] = ACTIONS(3307), + [anon_sym_map_LBRACK] = ACTIONS(3307), + [anon_sym_chan] = ACTIONS(3307), + [anon_sym_thread] = ACTIONS(3307), + [anon_sym_atomic] = ACTIONS(3307), + [sym___double_quote] = ACTIONS(3307), + [sym___single_quote] = ACTIONS(3307), + [sym___c_double_quote] = ACTIONS(3307), + [sym___c_single_quote] = ACTIONS(3307), + [sym___r_double_quote] = ACTIONS(3307), + [sym___r_single_quote] = ACTIONS(3307), + }, + [1259] = { [sym_identifier] = ACTIONS(3303), [anon_sym_LF] = ACTIONS(3303), [anon_sym_CR] = ACTIONS(3303), @@ -162057,1267 +163676,1267 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3303), [sym___r_single_quote] = ACTIONS(3303), }, - [1242] = { - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), + [1260] = { + [sym_identifier] = ACTIONS(3299), + [anon_sym_LF] = ACTIONS(3299), + [anon_sym_CR] = ACTIONS(3299), + [anon_sym_CR_LF] = ACTIONS(3299), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_as] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_COMMA] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_RPAREN] = ACTIONS(3299), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_fn] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_EQ_EQ] = ACTIONS(3299), + [anon_sym_BANG_EQ] = ACTIONS(3299), + [anon_sym_LT_EQ] = ACTIONS(3299), + [anon_sym_GT_EQ] = ACTIONS(3299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_struct] = ACTIONS(3299), + [anon_sym_mut] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_go] = ACTIONS(3299), + [anon_sym_spawn] = ACTIONS(3299), + [anon_sym_json_DOTdecode] = ACTIONS(3299), + [anon_sym_LBRACK2] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3299), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3299), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_GT_GT_GT] = ACTIONS(3299), + [anon_sym_AMP_CARET] = ACTIONS(3299), + [anon_sym_AMP_AMP] = ACTIONS(3299), + [anon_sym_PIPE_PIPE] = ACTIONS(3299), + [anon_sym_or] = ACTIONS(3299), + [sym_none] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_nil] = ACTIONS(3299), + [anon_sym_QMARK_DOT] = ACTIONS(3299), + [anon_sym_POUND_LBRACK] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_DOLLARif] = ACTIONS(3299), + [anon_sym_is] = ACTIONS(3299), + [anon_sym_BANGis] = ACTIONS(3299), + [anon_sym_in] = ACTIONS(3299), + [anon_sym_BANGin] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_select] = ACTIONS(3299), + [anon_sym_lock] = ACTIONS(3299), + [anon_sym_rlock] = ACTIONS(3299), + [anon_sym_unsafe] = ACTIONS(3299), + [anon_sym_sql] = ACTIONS(3299), + [sym_int_literal] = ACTIONS(3299), + [sym_float_literal] = ACTIONS(3299), + [sym_rune_literal] = ACTIONS(3299), + [sym_pseudo_compile_time_identifier] = ACTIONS(3299), + [anon_sym_shared] = ACTIONS(3299), + [anon_sym_map_LBRACK] = ACTIONS(3299), + [anon_sym_chan] = ACTIONS(3299), + [anon_sym_thread] = ACTIONS(3299), + [anon_sym_atomic] = ACTIONS(3299), + [sym___double_quote] = ACTIONS(3299), + [sym___single_quote] = ACTIONS(3299), + [sym___c_double_quote] = ACTIONS(3299), + [sym___c_single_quote] = ACTIONS(3299), + [sym___r_double_quote] = ACTIONS(3299), + [sym___r_single_quote] = ACTIONS(3299), + }, + [1261] = { + [sym_identifier] = ACTIONS(3295), + [anon_sym_LF] = ACTIONS(3295), + [anon_sym_CR] = ACTIONS(3295), + [anon_sym_CR_LF] = ACTIONS(3295), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_as] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_COMMA] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_RPAREN] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_fn] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_PERCENT] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_EQ_EQ] = ACTIONS(3295), + [anon_sym_BANG_EQ] = ACTIONS(3295), + [anon_sym_LT_EQ] = ACTIONS(3295), + [anon_sym_GT_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_mut] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_go] = ACTIONS(3295), + [anon_sym_spawn] = ACTIONS(3295), + [anon_sym_json_DOTdecode] = ACTIONS(3295), + [anon_sym_LBRACK2] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3295), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3295), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_GT_GT_GT] = ACTIONS(3295), + [anon_sym_AMP_CARET] = ACTIONS(3295), + [anon_sym_AMP_AMP] = ACTIONS(3295), + [anon_sym_PIPE_PIPE] = ACTIONS(3295), + [anon_sym_or] = ACTIONS(3295), + [sym_none] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_nil] = ACTIONS(3295), + [anon_sym_QMARK_DOT] = ACTIONS(3295), + [anon_sym_POUND_LBRACK] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_DOLLARif] = ACTIONS(3295), + [anon_sym_is] = ACTIONS(3295), + [anon_sym_BANGis] = ACTIONS(3295), + [anon_sym_in] = ACTIONS(3295), + [anon_sym_BANGin] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3295), + [anon_sym_select] = ACTIONS(3295), + [anon_sym_lock] = ACTIONS(3295), + [anon_sym_rlock] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_sql] = ACTIONS(3295), + [sym_int_literal] = ACTIONS(3295), + [sym_float_literal] = ACTIONS(3295), + [sym_rune_literal] = ACTIONS(3295), + [sym_pseudo_compile_time_identifier] = ACTIONS(3295), + [anon_sym_shared] = ACTIONS(3295), + [anon_sym_map_LBRACK] = ACTIONS(3295), + [anon_sym_chan] = ACTIONS(3295), + [anon_sym_thread] = ACTIONS(3295), + [anon_sym_atomic] = ACTIONS(3295), + [sym___double_quote] = ACTIONS(3295), + [sym___single_quote] = ACTIONS(3295), + [sym___c_double_quote] = ACTIONS(3295), + [sym___c_single_quote] = ACTIONS(3295), + [sym___r_double_quote] = ACTIONS(3295), + [sym___r_single_quote] = ACTIONS(3295), + }, + [1262] = { + [sym_identifier] = ACTIONS(3279), + [anon_sym_LF] = ACTIONS(3279), + [anon_sym_CR] = ACTIONS(3279), + [anon_sym_CR_LF] = ACTIONS(3279), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_DOT] = ACTIONS(3279), + [anon_sym_as] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_COMMA] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_RPAREN] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PERCENT] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3279), + [anon_sym_BANG_EQ] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3279), + [anon_sym_GT_EQ] = ACTIONS(3279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_struct] = ACTIONS(3279), + [anon_sym_mut] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [anon_sym_QMARK] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3279), + [anon_sym_LBRACK2] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3279), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_LT_DASH] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3279), + [anon_sym_GT_GT] = ACTIONS(3279), + [anon_sym_GT_GT_GT] = ACTIONS(3279), + [anon_sym_AMP_CARET] = ACTIONS(3279), + [anon_sym_AMP_AMP] = ACTIONS(3279), + [anon_sym_PIPE_PIPE] = ACTIONS(3279), + [anon_sym_or] = ACTIONS(3279), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3279), + [anon_sym_POUND_LBRACK] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3279), + [anon_sym_BANGis] = ACTIONS(3279), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_BANGin] = ACTIONS(3279), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_lock] = ACTIONS(3279), + [anon_sym_rlock] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_sql] = ACTIONS(3279), + [sym_int_literal] = ACTIONS(3279), + [sym_float_literal] = ACTIONS(3279), + [sym_rune_literal] = ACTIONS(3279), + [sym_pseudo_compile_time_identifier] = ACTIONS(3279), + [anon_sym_shared] = ACTIONS(3279), + [anon_sym_map_LBRACK] = ACTIONS(3279), + [anon_sym_chan] = ACTIONS(3279), + [anon_sym_thread] = ACTIONS(3279), + [anon_sym_atomic] = ACTIONS(3279), + [sym___double_quote] = ACTIONS(3279), + [sym___single_quote] = ACTIONS(3279), + [sym___c_double_quote] = ACTIONS(3279), + [sym___c_single_quote] = ACTIONS(3279), + [sym___r_double_quote] = ACTIONS(3279), + [sym___r_single_quote] = ACTIONS(3279), + }, + [1263] = { + [sym_identifier] = ACTIONS(3027), + [anon_sym_LF] = ACTIONS(3027), + [anon_sym_CR] = ACTIONS(3027), + [anon_sym_CR_LF] = ACTIONS(3027), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(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_RPAREN] = 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_DOT_DOT_DOT] = 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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_SEMI] = ACTIONS(3027), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3027), + [anon_sym_RBRACE] = ACTIONS(3027), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3027), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3027), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3027), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_or] = ACTIONS(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3027), + [anon_sym_POUND_LBRACK] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3027), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3027), + [sym_rune_literal] = ACTIONS(3027), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3027), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [sym___double_quote] = ACTIONS(3027), + [sym___single_quote] = ACTIONS(3027), + [sym___c_double_quote] = ACTIONS(3027), + [sym___c_single_quote] = ACTIONS(3027), + [sym___r_double_quote] = ACTIONS(3027), + [sym___r_single_quote] = ACTIONS(3027), }, - [1243] = { - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), + [1264] = { + [sym_identifier] = ACTIONS(3205), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_CR] = ACTIONS(3205), + [anon_sym_CR_LF] = ACTIONS(3205), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3307), - [anon_sym_BANG_EQ] = ACTIONS(3307), - [anon_sym_LT_EQ] = ACTIONS(3307), - [anon_sym_GT_EQ] = ACTIONS(3307), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [anon_sym_LT_LT] = ACTIONS(3307), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3307), - [anon_sym_AMP_CARET] = ACTIONS(3307), - [anon_sym_AMP_AMP] = ACTIONS(3307), - [anon_sym_PIPE_PIPE] = ACTIONS(3307), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3307), - [anon_sym_POUND_LBRACK] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3307), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_DOT] = ACTIONS(3205), + [anon_sym_as] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_COMMA] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_RPAREN] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_fn] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_PERCENT] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_mut] = ACTIONS(3205), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_QMARK] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_go] = ACTIONS(3205), + [anon_sym_spawn] = ACTIONS(3205), + [anon_sym_json_DOTdecode] = ACTIONS(3205), + [anon_sym_LBRACK2] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_LT_DASH] = ACTIONS(3205), + [anon_sym_LT_LT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3205), + [anon_sym_GT_GT_GT] = ACTIONS(3205), + [anon_sym_AMP_CARET] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_or] = ACTIONS(3205), + [sym_none] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_nil] = ACTIONS(3205), + [anon_sym_QMARK_DOT] = ACTIONS(3205), + [anon_sym_POUND_LBRACK] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_DOLLARif] = ACTIONS(3205), + [anon_sym_is] = ACTIONS(3205), + [anon_sym_BANGis] = ACTIONS(3205), + [anon_sym_in] = ACTIONS(3205), + [anon_sym_BANGin] = ACTIONS(3205), + [anon_sym_match] = ACTIONS(3205), + [anon_sym_select] = ACTIONS(3205), + [anon_sym_lock] = ACTIONS(3205), + [anon_sym_rlock] = ACTIONS(3205), + [anon_sym_unsafe] = ACTIONS(3205), + [anon_sym_sql] = ACTIONS(3205), + [sym_int_literal] = ACTIONS(3205), + [sym_float_literal] = ACTIONS(3205), + [sym_rune_literal] = ACTIONS(3205), + [sym_pseudo_compile_time_identifier] = ACTIONS(3205), + [anon_sym_shared] = ACTIONS(3205), + [anon_sym_map_LBRACK] = ACTIONS(3205), + [anon_sym_chan] = ACTIONS(3205), + [anon_sym_thread] = ACTIONS(3205), + [anon_sym_atomic] = ACTIONS(3205), + [sym___double_quote] = ACTIONS(3205), + [sym___single_quote] = ACTIONS(3205), + [sym___c_double_quote] = ACTIONS(3205), + [sym___c_single_quote] = ACTIONS(3205), + [sym___r_double_quote] = ACTIONS(3205), + [sym___r_single_quote] = ACTIONS(3205), }, - [1244] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1942), - [sym_plain_type] = STATE(2010), - [sym__plain_type_without_special] = STATE(2145), - [sym_anon_struct_type] = STATE(1985), - [sym_multi_return_type] = STATE(2145), - [sym_result_type] = STATE(2145), - [sym_option_type] = STATE(2145), - [sym_qualified_type] = STATE(1942), - [sym_fixed_array_type] = STATE(1985), - [sym_array_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_wrong_pointer_type] = STATE(1985), - [sym_map_type] = STATE(1985), - [sym_channel_type] = STATE(1985), - [sym_shared_type] = STATE(1985), - [sym_thread_type] = STATE(1985), - [sym_atomic_type] = STATE(1985), - [sym_generic_type] = STATE(1985), - [sym_function_type] = STATE(1985), - [sym_identifier] = ACTIONS(3793), + [1265] = { + [sym_reference_expression] = STATE(4487), + [sym_type_reference_expression] = STATE(1946), + [sym_plain_type] = STATE(1965), + [sym__plain_type_without_special] = STATE(2017), + [sym_anon_struct_type] = STATE(2006), + [sym_multi_return_type] = STATE(2017), + [sym_result_type] = STATE(2017), + [sym_option_type] = STATE(2017), + [sym_qualified_type] = STATE(1946), + [sym_fixed_array_type] = STATE(2006), + [sym_array_type] = STATE(2006), + [sym_pointer_type] = STATE(2006), + [sym_wrong_pointer_type] = STATE(2006), + [sym_map_type] = STATE(2006), + [sym_channel_type] = STATE(2006), + [sym_shared_type] = STATE(2006), + [sym_thread_type] = STATE(2006), + [sym_atomic_type] = STATE(2006), + [sym_generic_type] = STATE(2006), + [sym_function_type] = STATE(2006), + [sym_identifier] = ACTIONS(3786), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3799), - [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(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(3801), - [anon_sym_COLON] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_LBRACK2] = ACTIONS(3807), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(3809), - [anon_sym_LT_DASH] = ACTIONS(591), - [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(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(593), - [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(3811), - [anon_sym_map_LBRACK] = ACTIONS(3813), - [anon_sym_chan] = ACTIONS(3815), - [anon_sym_thread] = ACTIONS(3817), - [anon_sym_atomic] = ACTIONS(3819), + [anon_sym_DOT] = ACTIONS(617), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(3788), + [anon_sym_EQ] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3790), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3792), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(3794), + [anon_sym_COLON] = ACTIONS(617), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(3796), + [anon_sym_BANG] = ACTIONS(3798), + [anon_sym_LBRACK2] = ACTIONS(3800), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_LT_DASH] = ACTIONS(617), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_STAR_EQ] = ACTIONS(617), + [anon_sym_SLASH_EQ] = ACTIONS(617), + [anon_sym_PERCENT_EQ] = ACTIONS(617), + [anon_sym_LT_LT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_EQ] = ACTIONS(617), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(617), + [anon_sym_AMP_EQ] = ACTIONS(617), + [anon_sym_AMP_CARET_EQ] = ACTIONS(617), + [anon_sym_PLUS_EQ] = ACTIONS(617), + [anon_sym_DASH_EQ] = ACTIONS(617), + [anon_sym_PIPE_EQ] = ACTIONS(617), + [anon_sym_CARET_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(3804), + [anon_sym_map_LBRACK] = ACTIONS(3806), + [anon_sym_chan] = ACTIONS(3808), + [anon_sym_thread] = ACTIONS(3810), + [anon_sym_atomic] = ACTIONS(3812), }, - [1245] = { - [sym_identifier] = ACTIONS(3355), - [anon_sym_LF] = ACTIONS(3355), - [anon_sym_CR] = ACTIONS(3355), - [anon_sym_CR_LF] = ACTIONS(3355), + [1266] = { + [sym_identifier] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2907), + [anon_sym_CR] = ACTIONS(2907), + [anon_sym_CR_LF] = ACTIONS(2907), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3355), - [anon_sym_BANG_EQ] = ACTIONS(3355), - [anon_sym_LT_EQ] = ACTIONS(3355), - [anon_sym_GT_EQ] = ACTIONS(3355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3355), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_CARET] = ACTIONS(3355), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3355), - [anon_sym_LT_LT] = ACTIONS(3355), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3355), - [anon_sym_AMP_CARET] = ACTIONS(3355), - [anon_sym_AMP_AMP] = ACTIONS(3355), - [anon_sym_PIPE_PIPE] = ACTIONS(3355), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3355), - [anon_sym_POUND_LBRACK] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3355), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3355), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3355), - [sym_rune_literal] = ACTIONS(3355), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3355), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3355), - [sym___single_quote] = ACTIONS(3355), - [sym___c_double_quote] = ACTIONS(3355), - [sym___c_single_quote] = ACTIONS(3355), - [sym___r_double_quote] = ACTIONS(3355), - [sym___r_single_quote] = ACTIONS(3355), - }, - [1246] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3821), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_DASH] = ACTIONS(603), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_LT_LT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), - [anon_sym_AMP_EQ] = ACTIONS(603), - [anon_sym_AMP_CARET_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_DASH_EQ] = ACTIONS(603), - [anon_sym_PIPE_EQ] = ACTIONS(603), - [anon_sym_CARET_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [anon_sym_SEMI] = ACTIONS(2907), + [anon_sym_DOT] = ACTIONS(2907), + [anon_sym_as] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_COMMA] = ACTIONS(2907), + [anon_sym_RBRACE] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_RPAREN] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_BANG_EQ] = ACTIONS(2907), + [anon_sym_LT_EQ] = ACTIONS(2907), + [anon_sym_GT_EQ] = ACTIONS(2907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2907), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_mut] = ACTIONS(2907), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2907), + [anon_sym_spawn] = ACTIONS(2907), + [anon_sym_json_DOTdecode] = ACTIONS(2907), + [anon_sym_LBRACK2] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_CARET] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2907), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2907), + [anon_sym_GT_GT_GT] = ACTIONS(2907), + [anon_sym_AMP_CARET] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_PIPE_PIPE] = ACTIONS(2907), + [anon_sym_or] = ACTIONS(2907), + [sym_none] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_nil] = ACTIONS(2907), + [anon_sym_QMARK_DOT] = ACTIONS(2907), + [anon_sym_POUND_LBRACK] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_DOLLARif] = ACTIONS(2907), + [anon_sym_is] = ACTIONS(2907), + [anon_sym_BANGis] = ACTIONS(2907), + [anon_sym_in] = ACTIONS(2907), + [anon_sym_BANGin] = ACTIONS(2907), + [anon_sym_match] = ACTIONS(2907), + [anon_sym_select] = ACTIONS(2907), + [anon_sym_lock] = ACTIONS(2907), + [anon_sym_rlock] = ACTIONS(2907), + [anon_sym_unsafe] = ACTIONS(2907), + [anon_sym_sql] = ACTIONS(2907), + [sym_int_literal] = ACTIONS(2907), + [sym_float_literal] = ACTIONS(2907), + [sym_rune_literal] = ACTIONS(2907), + [sym_pseudo_compile_time_identifier] = ACTIONS(2907), + [anon_sym_shared] = ACTIONS(2907), + [anon_sym_map_LBRACK] = ACTIONS(2907), + [anon_sym_chan] = ACTIONS(2907), + [anon_sym_thread] = ACTIONS(2907), + [anon_sym_atomic] = ACTIONS(2907), + [sym___double_quote] = ACTIONS(2907), + [sym___single_quote] = ACTIONS(2907), + [sym___c_double_quote] = ACTIONS(2907), + [sym___c_single_quote] = ACTIONS(2907), + [sym___r_double_quote] = ACTIONS(2907), + [sym___r_single_quote] = ACTIONS(2907), }, - [1247] = { - [sym_identifier] = ACTIONS(3371), - [anon_sym_LF] = ACTIONS(3371), - [anon_sym_CR] = ACTIONS(3371), - [anon_sym_CR_LF] = ACTIONS(3371), + [1267] = { + [sym_identifier] = ACTIONS(3241), + [anon_sym_LF] = ACTIONS(3241), + [anon_sym_CR] = ACTIONS(3241), + [anon_sym_CR_LF] = ACTIONS(3241), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3371), - [anon_sym_BANG_EQ] = ACTIONS(3371), - [anon_sym_LT_EQ] = ACTIONS(3371), - [anon_sym_GT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3371), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_CARET] = ACTIONS(3371), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3371), - [anon_sym_LT_LT] = ACTIONS(3371), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3371), - [anon_sym_AMP_CARET] = ACTIONS(3371), - [anon_sym_AMP_AMP] = ACTIONS(3371), - [anon_sym_PIPE_PIPE] = ACTIONS(3371), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3371), - [anon_sym_POUND_LBRACK] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3371), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3371), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3371), - [sym_rune_literal] = ACTIONS(3371), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3371), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3371), - [sym___single_quote] = ACTIONS(3371), - [sym___c_double_quote] = ACTIONS(3371), - [sym___c_single_quote] = ACTIONS(3371), - [sym___r_double_quote] = ACTIONS(3371), - [sym___r_single_quote] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_COMMA] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_RPAREN] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3241), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3241), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3241), + [anon_sym_POUND_LBRACK] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3241), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3241), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + [sym_rune_literal] = ACTIONS(3241), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3241), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3241), + [sym___single_quote] = ACTIONS(3241), + [sym___c_double_quote] = ACTIONS(3241), + [sym___c_single_quote] = ACTIONS(3241), + [sym___r_double_quote] = ACTIONS(3241), + [sym___r_single_quote] = ACTIONS(3241), }, - [1248] = { - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), + [1268] = { + [sym_identifier] = ACTIONS(3237), + [anon_sym_LF] = ACTIONS(3237), + [anon_sym_CR] = ACTIONS(3237), + [anon_sym_CR_LF] = ACTIONS(3237), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_RPAREN] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3311), - [anon_sym_BANG_EQ] = ACTIONS(3311), - [anon_sym_LT_EQ] = ACTIONS(3311), - [anon_sym_GT_EQ] = ACTIONS(3311), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3311), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_CARET] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3311), - [anon_sym_LT_LT] = ACTIONS(3311), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3311), - [anon_sym_AMP_CARET] = ACTIONS(3311), - [anon_sym_AMP_AMP] = ACTIONS(3311), - [anon_sym_PIPE_PIPE] = ACTIONS(3311), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3311), - [anon_sym_POUND_LBRACK] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3311), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3311), - [sym_rune_literal] = ACTIONS(3311), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3311), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3311), - [sym___single_quote] = ACTIONS(3311), - [sym___c_double_quote] = ACTIONS(3311), - [sym___c_single_quote] = ACTIONS(3311), - [sym___r_double_quote] = ACTIONS(3311), - [sym___r_single_quote] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_COMMA] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_RPAREN] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3237), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3237), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3237), + [anon_sym_POUND_LBRACK] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3237), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3237), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + [sym_rune_literal] = ACTIONS(3237), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3237), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3237), + [sym___single_quote] = ACTIONS(3237), + [sym___c_double_quote] = ACTIONS(3237), + [sym___c_single_quote] = ACTIONS(3237), + [sym___r_double_quote] = ACTIONS(3237), + [sym___r_single_quote] = ACTIONS(3237), }, - [1249] = { - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), + [1269] = { + [sym_identifier] = ACTIONS(3197), + [anon_sym_LF] = ACTIONS(3197), + [anon_sym_CR] = ACTIONS(3197), + [anon_sym_CR_LF] = ACTIONS(3197), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_RPAREN] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [anon_sym_LT_LT] = ACTIONS(3319), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3319), - [anon_sym_AMP_CARET] = ACTIONS(3319), - [anon_sym_AMP_AMP] = ACTIONS(3319), - [anon_sym_PIPE_PIPE] = ACTIONS(3319), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3319), - [anon_sym_POUND_LBRACK] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3319), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_DOT] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_COMMA] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_RPAREN] = ACTIONS(3197), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_fn] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_PERCENT] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3197), + [anon_sym_mut] = ACTIONS(3197), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_QMARK] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_go] = ACTIONS(3197), + [anon_sym_spawn] = ACTIONS(3197), + [anon_sym_json_DOTdecode] = ACTIONS(3197), + [anon_sym_LBRACK2] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_CARET] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_LT_DASH] = ACTIONS(3197), + [anon_sym_LT_LT] = ACTIONS(3197), + [anon_sym_GT_GT] = ACTIONS(3197), + [anon_sym_GT_GT_GT] = ACTIONS(3197), + [anon_sym_AMP_CARET] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_or] = ACTIONS(3197), + [sym_none] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_nil] = ACTIONS(3197), + [anon_sym_QMARK_DOT] = ACTIONS(3197), + [anon_sym_POUND_LBRACK] = ACTIONS(3197), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_DOLLARif] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_BANGis] = ACTIONS(3197), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_BANGin] = ACTIONS(3197), + [anon_sym_match] = ACTIONS(3197), + [anon_sym_select] = ACTIONS(3197), + [anon_sym_lock] = ACTIONS(3197), + [anon_sym_rlock] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(3197), + [anon_sym_sql] = ACTIONS(3197), + [sym_int_literal] = ACTIONS(3197), + [sym_float_literal] = ACTIONS(3197), + [sym_rune_literal] = ACTIONS(3197), + [sym_pseudo_compile_time_identifier] = ACTIONS(3197), + [anon_sym_shared] = ACTIONS(3197), + [anon_sym_map_LBRACK] = ACTIONS(3197), + [anon_sym_chan] = ACTIONS(3197), + [anon_sym_thread] = ACTIONS(3197), + [anon_sym_atomic] = ACTIONS(3197), + [sym___double_quote] = ACTIONS(3197), + [sym___single_quote] = ACTIONS(3197), + [sym___c_double_quote] = ACTIONS(3197), + [sym___c_single_quote] = ACTIONS(3197), + [sym___r_double_quote] = ACTIONS(3197), + [sym___r_single_quote] = ACTIONS(3197), }, - [1250] = { - [sym_identifier] = ACTIONS(3323), - [anon_sym_LF] = ACTIONS(3323), - [anon_sym_CR] = ACTIONS(3323), - [anon_sym_CR_LF] = ACTIONS(3323), + [1270] = { + [sym_identifier] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_CR] = ACTIONS(3424), + [anon_sym_CR_LF] = ACTIONS(3424), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3323), - [anon_sym_BANG_EQ] = ACTIONS(3323), - [anon_sym_LT_EQ] = ACTIONS(3323), - [anon_sym_GT_EQ] = ACTIONS(3323), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3323), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3323), - [anon_sym_LT_LT] = ACTIONS(3323), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3323), - [anon_sym_AMP_CARET] = ACTIONS(3323), - [anon_sym_AMP_AMP] = ACTIONS(3323), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3323), - [anon_sym_POUND_LBRACK] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3323), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3323), - [sym_rune_literal] = ACTIONS(3323), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3323), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3323), - [sym___single_quote] = ACTIONS(3323), - [sym___c_double_quote] = ACTIONS(3323), - [sym___c_single_quote] = ACTIONS(3323), - [sym___r_double_quote] = ACTIONS(3323), - [sym___r_single_quote] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_as] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_COMMA] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_RPAREN] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_fn] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3424), + [anon_sym_BANG_EQ] = ACTIONS(3424), + [anon_sym_LT_EQ] = ACTIONS(3424), + [anon_sym_GT_EQ] = ACTIONS(3424), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3424), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_mut] = ACTIONS(3424), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_go] = ACTIONS(3424), + [anon_sym_spawn] = ACTIONS(3424), + [anon_sym_json_DOTdecode] = ACTIONS(3424), + [anon_sym_LBRACK2] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3424), + [anon_sym_LT_LT] = ACTIONS(3424), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_GT_GT_GT] = ACTIONS(3424), + [anon_sym_AMP_CARET] = ACTIONS(3424), + [anon_sym_AMP_AMP] = ACTIONS(3424), + [anon_sym_PIPE_PIPE] = ACTIONS(3424), + [anon_sym_or] = ACTIONS(3424), + [sym_none] = ACTIONS(3424), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_nil] = ACTIONS(3424), + [anon_sym_QMARK_DOT] = ACTIONS(3424), + [anon_sym_POUND_LBRACK] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_DOLLARif] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3424), + [anon_sym_BANGis] = ACTIONS(3424), + [anon_sym_in] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3424), + [anon_sym_select] = ACTIONS(3424), + [anon_sym_lock] = ACTIONS(3424), + [anon_sym_rlock] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_sql] = ACTIONS(3424), + [sym_int_literal] = ACTIONS(3424), + [sym_float_literal] = ACTIONS(3424), + [sym_rune_literal] = ACTIONS(3424), + [sym_pseudo_compile_time_identifier] = ACTIONS(3424), + [anon_sym_shared] = ACTIONS(3424), + [anon_sym_map_LBRACK] = ACTIONS(3424), + [anon_sym_chan] = ACTIONS(3424), + [anon_sym_thread] = ACTIONS(3424), + [anon_sym_atomic] = ACTIONS(3424), + [sym___double_quote] = ACTIONS(3424), + [sym___single_quote] = ACTIONS(3424), + [sym___c_double_quote] = ACTIONS(3424), + [sym___c_single_quote] = ACTIONS(3424), + [sym___r_double_quote] = ACTIONS(3424), + [sym___r_single_quote] = ACTIONS(3424), }, - [1251] = { - [sym_identifier] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_CR] = ACTIONS(3359), - [anon_sym_CR_LF] = ACTIONS(3359), + [1271] = { + [sym_identifier] = ACTIONS(3185), + [anon_sym_LF] = ACTIONS(3185), + [anon_sym_CR] = ACTIONS(3185), + [anon_sym_CR_LF] = ACTIONS(3185), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3359), - [anon_sym_BANG_EQ] = ACTIONS(3359), - [anon_sym_LT_EQ] = ACTIONS(3359), - [anon_sym_GT_EQ] = ACTIONS(3359), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3359), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [anon_sym_LT_LT] = ACTIONS(3359), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3359), - [anon_sym_AMP_CARET] = ACTIONS(3359), - [anon_sym_AMP_AMP] = ACTIONS(3359), - [anon_sym_PIPE_PIPE] = ACTIONS(3359), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3359), - [anon_sym_POUND_LBRACK] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3359), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3359), - [sym_rune_literal] = ACTIONS(3359), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3359), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3359), - [sym___single_quote] = ACTIONS(3359), - [sym___c_double_quote] = ACTIONS(3359), - [sym___c_single_quote] = ACTIONS(3359), - [sym___r_double_quote] = ACTIONS(3359), - [sym___r_single_quote] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_DOT] = ACTIONS(3185), + [anon_sym_as] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_COMMA] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(3185), + [anon_sym_fn] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_PERCENT] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_EQ_EQ] = ACTIONS(3185), + [anon_sym_BANG_EQ] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_mut] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3185), + [anon_sym_DASH_DASH] = ACTIONS(3185), + [anon_sym_QMARK] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_go] = ACTIONS(3185), + [anon_sym_spawn] = ACTIONS(3185), + [anon_sym_json_DOTdecode] = ACTIONS(3185), + [anon_sym_LBRACK2] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_LT_DASH] = ACTIONS(3185), + [anon_sym_LT_LT] = ACTIONS(3185), + [anon_sym_GT_GT] = ACTIONS(3185), + [anon_sym_GT_GT_GT] = ACTIONS(3185), + [anon_sym_AMP_CARET] = ACTIONS(3185), + [anon_sym_AMP_AMP] = ACTIONS(3185), + [anon_sym_PIPE_PIPE] = ACTIONS(3185), + [anon_sym_or] = ACTIONS(3185), + [sym_none] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_nil] = ACTIONS(3185), + [anon_sym_QMARK_DOT] = ACTIONS(3185), + [anon_sym_POUND_LBRACK] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_DOLLARif] = ACTIONS(3185), + [anon_sym_is] = ACTIONS(3185), + [anon_sym_BANGis] = ACTIONS(3185), + [anon_sym_in] = ACTIONS(3185), + [anon_sym_BANGin] = ACTIONS(3185), + [anon_sym_match] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_rlock] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_sql] = ACTIONS(3185), + [sym_int_literal] = ACTIONS(3185), + [sym_float_literal] = ACTIONS(3185), + [sym_rune_literal] = ACTIONS(3185), + [sym_pseudo_compile_time_identifier] = ACTIONS(3185), + [anon_sym_shared] = ACTIONS(3185), + [anon_sym_map_LBRACK] = ACTIONS(3185), + [anon_sym_chan] = ACTIONS(3185), + [anon_sym_thread] = ACTIONS(3185), + [anon_sym_atomic] = ACTIONS(3185), + [sym___double_quote] = ACTIONS(3185), + [sym___single_quote] = ACTIONS(3185), + [sym___c_double_quote] = ACTIONS(3185), + [sym___c_single_quote] = ACTIONS(3185), + [sym___r_double_quote] = ACTIONS(3185), + [sym___r_single_quote] = ACTIONS(3185), }, - [1252] = { - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), + [1272] = { + [sym_identifier] = ACTIONS(3173), + [anon_sym_LF] = ACTIONS(3173), + [anon_sym_CR] = ACTIONS(3173), + [anon_sym_CR_LF] = ACTIONS(3173), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [1253] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1942), - [sym_plain_type] = STATE(1946), - [sym__plain_type_without_special] = STATE(2145), - [sym_anon_struct_type] = STATE(1985), - [sym_multi_return_type] = STATE(2145), - [sym_result_type] = STATE(2145), - [sym_option_type] = STATE(2145), - [sym_qualified_type] = STATE(1942), - [sym_fixed_array_type] = STATE(1985), - [sym_array_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_wrong_pointer_type] = STATE(1985), - [sym_map_type] = STATE(1985), - [sym_channel_type] = STATE(1985), - [sym_shared_type] = STATE(1985), - [sym_thread_type] = STATE(1985), - [sym_atomic_type] = STATE(1985), - [sym_generic_type] = STATE(1985), - [sym_function_type] = STATE(1985), - [sym_identifier] = ACTIONS(3793), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3799), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3801), - [anon_sym_COLON] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_LBRACK2] = ACTIONS(3807), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3809), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(3811), - [anon_sym_map_LBRACK] = ACTIONS(3813), - [anon_sym_chan] = ACTIONS(3815), - [anon_sym_thread] = ACTIONS(3817), - [anon_sym_atomic] = ACTIONS(3819), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_DOT] = ACTIONS(3173), + [anon_sym_as] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_COMMA] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_RPAREN] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3173), + [anon_sym_fn] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_PERCENT] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_GT] = ACTIONS(3173), + [anon_sym_EQ_EQ] = ACTIONS(3173), + [anon_sym_BANG_EQ] = ACTIONS(3173), + [anon_sym_LT_EQ] = ACTIONS(3173), + [anon_sym_GT_EQ] = ACTIONS(3173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3173), + [anon_sym_mut] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3173), + [anon_sym_DASH_DASH] = ACTIONS(3173), + [anon_sym_QMARK] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_go] = ACTIONS(3173), + [anon_sym_spawn] = ACTIONS(3173), + [anon_sym_json_DOTdecode] = ACTIONS(3173), + [anon_sym_LBRACK2] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3173), + [anon_sym_CARET] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_LT_DASH] = ACTIONS(3173), + [anon_sym_LT_LT] = ACTIONS(3173), + [anon_sym_GT_GT] = ACTIONS(3173), + [anon_sym_GT_GT_GT] = ACTIONS(3173), + [anon_sym_AMP_CARET] = ACTIONS(3173), + [anon_sym_AMP_AMP] = ACTIONS(3173), + [anon_sym_PIPE_PIPE] = ACTIONS(3173), + [anon_sym_or] = ACTIONS(3173), + [sym_none] = ACTIONS(3173), + [sym_true] = ACTIONS(3173), + [sym_false] = ACTIONS(3173), + [sym_nil] = ACTIONS(3173), + [anon_sym_QMARK_DOT] = ACTIONS(3173), + [anon_sym_POUND_LBRACK] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_DOLLARif] = ACTIONS(3173), + [anon_sym_is] = ACTIONS(3173), + [anon_sym_BANGis] = ACTIONS(3173), + [anon_sym_in] = ACTIONS(3173), + [anon_sym_BANGin] = ACTIONS(3173), + [anon_sym_match] = ACTIONS(3173), + [anon_sym_select] = ACTIONS(3173), + [anon_sym_lock] = ACTIONS(3173), + [anon_sym_rlock] = ACTIONS(3173), + [anon_sym_unsafe] = ACTIONS(3173), + [anon_sym_sql] = ACTIONS(3173), + [sym_int_literal] = ACTIONS(3173), + [sym_float_literal] = ACTIONS(3173), + [sym_rune_literal] = ACTIONS(3173), + [sym_pseudo_compile_time_identifier] = ACTIONS(3173), + [anon_sym_shared] = ACTIONS(3173), + [anon_sym_map_LBRACK] = ACTIONS(3173), + [anon_sym_chan] = ACTIONS(3173), + [anon_sym_thread] = ACTIONS(3173), + [anon_sym_atomic] = ACTIONS(3173), + [sym___double_quote] = ACTIONS(3173), + [sym___single_quote] = ACTIONS(3173), + [sym___c_double_quote] = ACTIONS(3173), + [sym___c_single_quote] = ACTIONS(3173), + [sym___r_double_quote] = ACTIONS(3173), + [sym___r_single_quote] = ACTIONS(3173), }, - [1254] = { - [sym_identifier] = ACTIONS(3375), - [anon_sym_LF] = ACTIONS(3375), - [anon_sym_CR] = ACTIONS(3375), - [anon_sym_CR_LF] = ACTIONS(3375), + [1273] = { + [sym_identifier] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2915), + [anon_sym_CR] = ACTIONS(2915), + [anon_sym_CR_LF] = ACTIONS(2915), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3375), - [anon_sym_BANG_EQ] = ACTIONS(3375), - [anon_sym_LT_EQ] = ACTIONS(3375), - [anon_sym_GT_EQ] = ACTIONS(3375), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3375), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_CARET] = ACTIONS(3375), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3375), - [anon_sym_LT_LT] = ACTIONS(3375), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3375), - [anon_sym_AMP_CARET] = ACTIONS(3375), - [anon_sym_AMP_AMP] = ACTIONS(3375), - [anon_sym_PIPE_PIPE] = ACTIONS(3375), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3375), - [anon_sym_POUND_LBRACK] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3375), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3375), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3375), - [sym_rune_literal] = ACTIONS(3375), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3375), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3375), - [sym___single_quote] = ACTIONS(3375), - [sym___c_double_quote] = ACTIONS(3375), - [sym___c_single_quote] = ACTIONS(3375), - [sym___r_double_quote] = ACTIONS(3375), - [sym___r_single_quote] = ACTIONS(3375), - }, - [1255] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1942), - [sym_plain_type] = STATE(1959), - [sym__plain_type_without_special] = STATE(2145), - [sym_anon_struct_type] = STATE(1985), - [sym_multi_return_type] = STATE(2145), - [sym_result_type] = STATE(2145), - [sym_option_type] = STATE(2145), - [sym_qualified_type] = STATE(1942), - [sym_fixed_array_type] = STATE(1985), - [sym_array_type] = STATE(1985), - [sym_pointer_type] = STATE(1985), - [sym_wrong_pointer_type] = STATE(1985), - [sym_map_type] = STATE(1985), - [sym_channel_type] = STATE(1985), - [sym_shared_type] = STATE(1985), - [sym_thread_type] = STATE(1985), - [sym_atomic_type] = STATE(1985), - [sym_generic_type] = STATE(1985), - [sym_function_type] = STATE(1985), - [sym_identifier] = ACTIONS(3793), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(559), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3795), - [anon_sym_EQ] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3799), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(3801), - [anon_sym_COLON] = ACTIONS(559), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3805), - [anon_sym_LBRACK2] = ACTIONS(3807), - [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3809), - [anon_sym_LT_DASH] = ACTIONS(559), - [anon_sym_LT_LT] = ACTIONS(563), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(563), - [anon_sym_AMP_CARET] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_STAR_EQ] = ACTIONS(559), - [anon_sym_SLASH_EQ] = ACTIONS(559), - [anon_sym_PERCENT_EQ] = ACTIONS(559), - [anon_sym_LT_LT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_EQ] = ACTIONS(559), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(559), - [anon_sym_AMP_EQ] = ACTIONS(559), - [anon_sym_AMP_CARET_EQ] = ACTIONS(559), - [anon_sym_PLUS_EQ] = ACTIONS(559), - [anon_sym_DASH_EQ] = ACTIONS(559), - [anon_sym_PIPE_EQ] = ACTIONS(559), - [anon_sym_CARET_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(3811), - [anon_sym_map_LBRACK] = ACTIONS(3813), - [anon_sym_chan] = ACTIONS(3815), - [anon_sym_thread] = ACTIONS(3817), - [anon_sym_atomic] = ACTIONS(3819), + [anon_sym_SEMI] = ACTIONS(2915), + [anon_sym_DOT] = ACTIONS(2915), + [anon_sym_as] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_COMMA] = ACTIONS(2915), + [anon_sym_RBRACE] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_RPAREN] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_fn] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_BANG_EQ] = ACTIONS(2915), + [anon_sym_LT_EQ] = ACTIONS(2915), + [anon_sym_GT_EQ] = ACTIONS(2915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2915), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_mut] = ACTIONS(2915), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_QMARK] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_go] = ACTIONS(2915), + [anon_sym_spawn] = ACTIONS(2915), + [anon_sym_json_DOTdecode] = ACTIONS(2915), + [anon_sym_LBRACK2] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_CARET] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2915), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2915), + [anon_sym_GT_GT_GT] = ACTIONS(2915), + [anon_sym_AMP_CARET] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_PIPE_PIPE] = ACTIONS(2915), + [anon_sym_or] = ACTIONS(2915), + [sym_none] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_nil] = ACTIONS(2915), + [anon_sym_QMARK_DOT] = ACTIONS(2915), + [anon_sym_POUND_LBRACK] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_DOLLARif] = ACTIONS(2915), + [anon_sym_is] = ACTIONS(2915), + [anon_sym_BANGis] = ACTIONS(2915), + [anon_sym_in] = ACTIONS(2915), + [anon_sym_BANGin] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_select] = ACTIONS(2915), + [anon_sym_lock] = ACTIONS(2915), + [anon_sym_rlock] = ACTIONS(2915), + [anon_sym_unsafe] = ACTIONS(2915), + [anon_sym_sql] = ACTIONS(2915), + [sym_int_literal] = ACTIONS(2915), + [sym_float_literal] = ACTIONS(2915), + [sym_rune_literal] = ACTIONS(2915), + [sym_pseudo_compile_time_identifier] = ACTIONS(2915), + [anon_sym_shared] = ACTIONS(2915), + [anon_sym_map_LBRACK] = ACTIONS(2915), + [anon_sym_chan] = ACTIONS(2915), + [anon_sym_thread] = ACTIONS(2915), + [anon_sym_atomic] = ACTIONS(2915), + [sym___double_quote] = ACTIONS(2915), + [sym___single_quote] = ACTIONS(2915), + [sym___c_double_quote] = ACTIONS(2915), + [sym___c_single_quote] = ACTIONS(2915), + [sym___r_double_quote] = ACTIONS(2915), + [sym___r_single_quote] = ACTIONS(2915), }, - [1256] = { - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), + [1274] = { + [sym_identifier] = ACTIONS(3141), + [anon_sym_LF] = ACTIONS(3141), + [anon_sym_CR] = ACTIONS(3141), + [anon_sym_CR_LF] = ACTIONS(3141), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3199), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3199), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3199), - [anon_sym_BANG_EQ] = ACTIONS(3199), - [anon_sym_LT_EQ] = ACTIONS(3199), - [anon_sym_GT_EQ] = ACTIONS(3199), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_PLUS_PLUS] = ACTIONS(3199), - [anon_sym_DASH_DASH] = ACTIONS(3199), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3199), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3199), - [anon_sym_CARET] = ACTIONS(3199), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3199), - [anon_sym_LT_LT] = ACTIONS(3199), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3199), - [anon_sym_AMP_CARET] = ACTIONS(3199), - [anon_sym_AMP_AMP] = ACTIONS(3199), - [anon_sym_PIPE_PIPE] = ACTIONS(3199), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_DOT] = ACTIONS(3141), + [anon_sym_as] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_COMMA] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_RPAREN] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_fn] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_PERCENT] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_EQ_EQ] = ACTIONS(3141), + [anon_sym_BANG_EQ] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3141), + [anon_sym_mut] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3141), + [anon_sym_DASH_DASH] = ACTIONS(3141), + [anon_sym_QMARK] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_go] = ACTIONS(3141), + [anon_sym_spawn] = ACTIONS(3141), + [anon_sym_json_DOTdecode] = ACTIONS(3141), + [anon_sym_LBRACK2] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_LT_DASH] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3141), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_GT_GT_GT] = ACTIONS(3141), + [anon_sym_AMP_CARET] = ACTIONS(3141), + [anon_sym_AMP_AMP] = ACTIONS(3141), + [anon_sym_PIPE_PIPE] = ACTIONS(3141), + [anon_sym_or] = ACTIONS(3141), + [sym_none] = ACTIONS(3141), + [sym_true] = ACTIONS(3141), + [sym_false] = ACTIONS(3141), + [sym_nil] = ACTIONS(3141), + [anon_sym_QMARK_DOT] = ACTIONS(3141), + [anon_sym_POUND_LBRACK] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_DOLLARif] = ACTIONS(3141), + [anon_sym_is] = ACTIONS(3141), + [anon_sym_BANGis] = ACTIONS(3141), + [anon_sym_in] = ACTIONS(3141), + [anon_sym_BANGin] = ACTIONS(3141), + [anon_sym_match] = ACTIONS(3141), + [anon_sym_select] = ACTIONS(3141), + [anon_sym_lock] = ACTIONS(3141), + [anon_sym_rlock] = ACTIONS(3141), + [anon_sym_unsafe] = ACTIONS(3141), + [anon_sym_sql] = ACTIONS(3141), + [sym_int_literal] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), + [sym_rune_literal] = ACTIONS(3141), + [sym_pseudo_compile_time_identifier] = ACTIONS(3141), + [anon_sym_shared] = ACTIONS(3141), + [anon_sym_map_LBRACK] = ACTIONS(3141), + [anon_sym_chan] = ACTIONS(3141), + [anon_sym_thread] = ACTIONS(3141), + [anon_sym_atomic] = ACTIONS(3141), + [sym___double_quote] = ACTIONS(3141), + [sym___single_quote] = ACTIONS(3141), + [sym___c_double_quote] = ACTIONS(3141), + [sym___c_single_quote] = ACTIONS(3141), + [sym___r_double_quote] = ACTIONS(3141), + [sym___r_single_quote] = ACTIONS(3141), }, - [1257] = { + [1275] = { [sym_identifier] = ACTIONS(3087), [anon_sym_LF] = ACTIONS(3087), [anon_sym_CR] = ACTIONS(3087), @@ -163401,824 +165020,404 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3087), [sym___r_single_quote] = ACTIONS(3087), }, - [1258] = { - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3207), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_RPAREN] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_EQ] = ACTIONS(3207), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3207), - [anon_sym_AMP_CARET] = ACTIONS(3207), - [anon_sym_AMP_AMP] = ACTIONS(3207), - [anon_sym_PIPE_PIPE] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3207), - [sym___single_quote] = ACTIONS(3207), - [sym___c_double_quote] = ACTIONS(3207), - [sym___c_single_quote] = ACTIONS(3207), - [sym___r_double_quote] = ACTIONS(3207), - [sym___r_single_quote] = ACTIONS(3207), - }, - [1259] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_EQ] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_STAR_EQ] = ACTIONS(599), - [anon_sym_SLASH_EQ] = ACTIONS(599), - [anon_sym_PERCENT_EQ] = ACTIONS(599), - [anon_sym_LT_LT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_EQ] = ACTIONS(599), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(599), - [anon_sym_AMP_EQ] = ACTIONS(599), - [anon_sym_AMP_CARET_EQ] = ACTIONS(599), - [anon_sym_PLUS_EQ] = ACTIONS(599), - [anon_sym_DASH_EQ] = ACTIONS(599), - [anon_sym_PIPE_EQ] = ACTIONS(599), - [anon_sym_CARET_EQ] = ACTIONS(599), - [anon_sym_COLON_EQ] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1260] = { - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_RPAREN] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), - }, - [1261] = { - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_RPAREN] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_CARET] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_PIPE_PIPE] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3247), - [sym___single_quote] = ACTIONS(3247), - [sym___c_double_quote] = ACTIONS(3247), - [sym___c_single_quote] = ACTIONS(3247), - [sym___r_double_quote] = ACTIONS(3247), - [sym___r_single_quote] = ACTIONS(3247), - }, - [1262] = { - [sym_identifier] = ACTIONS(3327), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_CR] = ACTIONS(3327), - [anon_sym_CR_LF] = ACTIONS(3327), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3327), - [anon_sym_BANG_EQ] = ACTIONS(3327), - [anon_sym_LT_EQ] = ACTIONS(3327), - [anon_sym_GT_EQ] = ACTIONS(3327), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3327), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3327), - [anon_sym_LT_LT] = ACTIONS(3327), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3327), - [anon_sym_AMP_CARET] = ACTIONS(3327), - [anon_sym_AMP_AMP] = ACTIONS(3327), - [anon_sym_PIPE_PIPE] = ACTIONS(3327), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3327), - [anon_sym_POUND_LBRACK] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3327), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3327), - [sym_rune_literal] = ACTIONS(3327), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3327), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3327), - [sym___single_quote] = ACTIONS(3327), - [sym___c_double_quote] = ACTIONS(3327), - [sym___c_single_quote] = ACTIONS(3327), - [sym___r_double_quote] = ACTIONS(3327), - [sym___r_single_quote] = ACTIONS(3327), - }, - [1263] = { - [sym_identifier] = ACTIONS(3295), - [anon_sym_LF] = ACTIONS(3295), - [anon_sym_CR] = ACTIONS(3295), - [anon_sym_CR_LF] = ACTIONS(3295), + [1276] = { + [sym_identifier] = ACTIONS(3213), + [anon_sym_LF] = ACTIONS(3213), + [anon_sym_CR] = ACTIONS(3213), + [anon_sym_CR_LF] = ACTIONS(3213), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_COMMA] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_RPAREN] = ACTIONS(3295), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3295), - [anon_sym_BANG_EQ] = ACTIONS(3295), - [anon_sym_LT_EQ] = ACTIONS(3295), - [anon_sym_GT_EQ] = ACTIONS(3295), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3295), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_CARET] = ACTIONS(3295), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3295), - [anon_sym_LT_LT] = ACTIONS(3295), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3295), - [anon_sym_AMP_CARET] = ACTIONS(3295), - [anon_sym_AMP_AMP] = ACTIONS(3295), - [anon_sym_PIPE_PIPE] = ACTIONS(3295), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3295), - [anon_sym_POUND_LBRACK] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3295), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3295), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3295), - [sym_rune_literal] = ACTIONS(3295), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3295), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3295), - [sym___single_quote] = ACTIONS(3295), - [sym___c_double_quote] = ACTIONS(3295), - [sym___c_single_quote] = ACTIONS(3295), - [sym___r_double_quote] = ACTIONS(3295), - [sym___r_single_quote] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_as] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_COMMA] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_RPAREN] = ACTIONS(3213), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [anon_sym_EQ_EQ] = ACTIONS(3213), + [anon_sym_BANG_EQ] = ACTIONS(3213), + [anon_sym_LT_EQ] = ACTIONS(3213), + [anon_sym_GT_EQ] = ACTIONS(3213), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3213), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3213), + [anon_sym_LT_LT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3213), + [anon_sym_GT_GT_GT] = ACTIONS(3213), + [anon_sym_AMP_CARET] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_PIPE_PIPE] = ACTIONS(3213), + [anon_sym_or] = ACTIONS(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_QMARK_DOT] = ACTIONS(3213), + [anon_sym_POUND_LBRACK] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_is] = ACTIONS(3213), + [anon_sym_BANGis] = ACTIONS(3213), + [anon_sym_in] = ACTIONS(3213), + [anon_sym_BANGin] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3213), + [sym_rune_literal] = ACTIONS(3213), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3213), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [sym___double_quote] = ACTIONS(3213), + [sym___single_quote] = ACTIONS(3213), + [sym___c_double_quote] = ACTIONS(3213), + [sym___c_single_quote] = ACTIONS(3213), + [sym___r_double_quote] = ACTIONS(3213), + [sym___r_single_quote] = ACTIONS(3213), }, - [1264] = { - [sym_identifier] = ACTIONS(3405), - [anon_sym_LF] = ACTIONS(3405), - [anon_sym_CR] = ACTIONS(3405), - [anon_sym_CR_LF] = ACTIONS(3405), + [1277] = { + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_as] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_RPAREN] = ACTIONS(3405), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_fn] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_STAR] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3405), - [anon_sym_BANG_EQ] = ACTIONS(3405), - [anon_sym_LT_EQ] = ACTIONS(3405), - [anon_sym_GT_EQ] = ACTIONS(3405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3405), - [anon_sym_mut] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_go] = ACTIONS(3405), - [anon_sym_spawn] = ACTIONS(3405), - [anon_sym_json_DOTdecode] = ACTIONS(3405), - [anon_sym_LBRACK2] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_CARET] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3405), - [anon_sym_LT_LT] = ACTIONS(3405), - [anon_sym_GT_GT] = ACTIONS(3405), - [anon_sym_GT_GT_GT] = ACTIONS(3405), - [anon_sym_AMP_CARET] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [sym_none] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_nil] = ACTIONS(3405), - [anon_sym_QMARK_DOT] = ACTIONS(3405), - [anon_sym_POUND_LBRACK] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_DOLLARif] = ACTIONS(3405), - [anon_sym_is] = ACTIONS(3405), - [anon_sym_BANGis] = ACTIONS(3405), - [anon_sym_in] = ACTIONS(3405), - [anon_sym_BANGin] = ACTIONS(3405), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_select] = ACTIONS(3405), - [anon_sym_lock] = ACTIONS(3405), - [anon_sym_rlock] = ACTIONS(3405), - [anon_sym_unsafe] = ACTIONS(3405), - [anon_sym_sql] = ACTIONS(3405), - [sym_int_literal] = ACTIONS(3405), - [sym_float_literal] = ACTIONS(3405), - [sym_rune_literal] = ACTIONS(3405), - [sym_pseudo_compile_time_identifier] = ACTIONS(3405), - [anon_sym_shared] = ACTIONS(3405), - [anon_sym_map_LBRACK] = ACTIONS(3405), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3405), - [anon_sym_atomic] = ACTIONS(3405), - [sym___double_quote] = ACTIONS(3405), - [sym___single_quote] = ACTIONS(3405), - [sym___c_double_quote] = ACTIONS(3405), - [sym___c_single_quote] = ACTIONS(3405), - [sym___r_double_quote] = ACTIONS(3405), - [sym___r_single_quote] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_DOT] = ACTIONS(3412), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_COMMA] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_RPAREN] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3412), + [anon_sym_BANG_EQ] = ACTIONS(3412), + [anon_sym_LT_EQ] = ACTIONS(3412), + [anon_sym_GT_EQ] = ACTIONS(3412), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [anon_sym_LT_LT] = ACTIONS(3412), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3412), + [anon_sym_AMP_CARET] = ACTIONS(3412), + [anon_sym_AMP_AMP] = ACTIONS(3412), + [anon_sym_PIPE_PIPE] = ACTIONS(3412), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3412), + [anon_sym_POUND_LBRACK] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3412), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), }, - [1265] = { - [sym_identifier] = ACTIONS(3409), - [anon_sym_LF] = ACTIONS(3409), - [anon_sym_CR] = ACTIONS(3409), - [anon_sym_CR_LF] = ACTIONS(3409), + [1278] = { + [sym_identifier] = ACTIONS(3129), + [anon_sym_LF] = ACTIONS(3129), + [anon_sym_CR] = ACTIONS(3129), + [anon_sym_CR_LF] = ACTIONS(3129), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_as] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_fn] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_STAR] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3409), - [anon_sym_BANG_EQ] = ACTIONS(3409), - [anon_sym_LT_EQ] = ACTIONS(3409), - [anon_sym_GT_EQ] = ACTIONS(3409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3409), - [anon_sym_mut] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_go] = ACTIONS(3409), - [anon_sym_spawn] = ACTIONS(3409), - [anon_sym_json_DOTdecode] = ACTIONS(3409), - [anon_sym_LBRACK2] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_CARET] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3409), - [anon_sym_LT_LT] = ACTIONS(3409), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_GT_GT_GT] = ACTIONS(3409), - [anon_sym_AMP_CARET] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [sym_none] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_nil] = ACTIONS(3409), - [anon_sym_QMARK_DOT] = ACTIONS(3409), - [anon_sym_POUND_LBRACK] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_DOLLARif] = ACTIONS(3409), - [anon_sym_is] = ACTIONS(3409), - [anon_sym_BANGis] = ACTIONS(3409), - [anon_sym_in] = ACTIONS(3409), - [anon_sym_BANGin] = ACTIONS(3409), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_select] = ACTIONS(3409), - [anon_sym_lock] = ACTIONS(3409), - [anon_sym_rlock] = ACTIONS(3409), - [anon_sym_unsafe] = ACTIONS(3409), - [anon_sym_sql] = ACTIONS(3409), - [sym_int_literal] = ACTIONS(3409), - [sym_float_literal] = ACTIONS(3409), - [sym_rune_literal] = ACTIONS(3409), - [sym_pseudo_compile_time_identifier] = ACTIONS(3409), - [anon_sym_shared] = ACTIONS(3409), - [anon_sym_map_LBRACK] = ACTIONS(3409), - [anon_sym_chan] = ACTIONS(3409), - [anon_sym_thread] = ACTIONS(3409), - [anon_sym_atomic] = ACTIONS(3409), - [sym___double_quote] = ACTIONS(3409), - [sym___single_quote] = ACTIONS(3409), - [sym___c_double_quote] = ACTIONS(3409), - [sym___c_single_quote] = ACTIONS(3409), - [sym___r_double_quote] = ACTIONS(3409), - [sym___r_single_quote] = ACTIONS(3409), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym_DOT] = ACTIONS(3129), + [anon_sym_as] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_COMMA] = ACTIONS(3129), + [anon_sym_RBRACE] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym_RPAREN] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_fn] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_PERCENT] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_GT] = ACTIONS(3129), + [anon_sym_EQ_EQ] = ACTIONS(3129), + [anon_sym_BANG_EQ] = ACTIONS(3129), + [anon_sym_LT_EQ] = ACTIONS(3129), + [anon_sym_GT_EQ] = ACTIONS(3129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3129), + [anon_sym_mut] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3129), + [anon_sym_DASH_DASH] = ACTIONS(3129), + [anon_sym_QMARK] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_go] = ACTIONS(3129), + [anon_sym_spawn] = ACTIONS(3129), + [anon_sym_json_DOTdecode] = ACTIONS(3129), + [anon_sym_LBRACK2] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3129), + [anon_sym_CARET] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_LT_DASH] = ACTIONS(3129), + [anon_sym_LT_LT] = ACTIONS(3129), + [anon_sym_GT_GT] = ACTIONS(3129), + [anon_sym_GT_GT_GT] = ACTIONS(3129), + [anon_sym_AMP_CARET] = ACTIONS(3129), + [anon_sym_AMP_AMP] = ACTIONS(3129), + [anon_sym_PIPE_PIPE] = ACTIONS(3129), + [anon_sym_or] = ACTIONS(3129), + [sym_none] = ACTIONS(3129), + [sym_true] = ACTIONS(3129), + [sym_false] = ACTIONS(3129), + [sym_nil] = ACTIONS(3129), + [anon_sym_QMARK_DOT] = ACTIONS(3129), + [anon_sym_POUND_LBRACK] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_DOLLARif] = ACTIONS(3129), + [anon_sym_is] = ACTIONS(3129), + [anon_sym_BANGis] = ACTIONS(3129), + [anon_sym_in] = ACTIONS(3129), + [anon_sym_BANGin] = ACTIONS(3129), + [anon_sym_match] = ACTIONS(3129), + [anon_sym_select] = ACTIONS(3129), + [anon_sym_lock] = ACTIONS(3129), + [anon_sym_rlock] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(3129), + [anon_sym_sql] = ACTIONS(3129), + [sym_int_literal] = ACTIONS(3129), + [sym_float_literal] = ACTIONS(3129), + [sym_rune_literal] = ACTIONS(3129), + [sym_pseudo_compile_time_identifier] = ACTIONS(3129), + [anon_sym_shared] = ACTIONS(3129), + [anon_sym_map_LBRACK] = ACTIONS(3129), + [anon_sym_chan] = ACTIONS(3129), + [anon_sym_thread] = ACTIONS(3129), + [anon_sym_atomic] = ACTIONS(3129), + [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), }, - [1266] = { - [sym_identifier] = ACTIONS(3417), - [anon_sym_LF] = ACTIONS(3417), - [anon_sym_CR] = ACTIONS(3417), - [anon_sym_CR_LF] = ACTIONS(3417), + [1279] = { + [sym_identifier] = ACTIONS(3103), + [anon_sym_LF] = ACTIONS(3103), + [anon_sym_CR] = ACTIONS(3103), + [anon_sym_CR_LF] = ACTIONS(3103), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_as] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_RPAREN] = ACTIONS(3417), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_fn] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_EQ_EQ] = ACTIONS(3417), - [anon_sym_BANG_EQ] = ACTIONS(3417), - [anon_sym_LT_EQ] = ACTIONS(3417), - [anon_sym_GT_EQ] = ACTIONS(3417), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3417), - [anon_sym_mut] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_go] = ACTIONS(3417), - [anon_sym_spawn] = ACTIONS(3417), - [anon_sym_json_DOTdecode] = ACTIONS(3417), - [anon_sym_LBRACK2] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_CARET] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3417), - [anon_sym_LT_LT] = ACTIONS(3417), - [anon_sym_GT_GT] = ACTIONS(3417), - [anon_sym_GT_GT_GT] = ACTIONS(3417), - [anon_sym_AMP_CARET] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [sym_none] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_nil] = ACTIONS(3417), - [anon_sym_QMARK_DOT] = ACTIONS(3417), - [anon_sym_POUND_LBRACK] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_DOLLARif] = ACTIONS(3417), - [anon_sym_is] = ACTIONS(3417), - [anon_sym_BANGis] = ACTIONS(3417), - [anon_sym_in] = ACTIONS(3417), - [anon_sym_BANGin] = ACTIONS(3417), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_lock] = ACTIONS(3417), - [anon_sym_rlock] = ACTIONS(3417), - [anon_sym_unsafe] = ACTIONS(3417), - [anon_sym_sql] = ACTIONS(3417), - [sym_int_literal] = ACTIONS(3417), - [sym_float_literal] = ACTIONS(3417), - [sym_rune_literal] = ACTIONS(3417), - [sym_pseudo_compile_time_identifier] = ACTIONS(3417), - [anon_sym_shared] = ACTIONS(3417), - [anon_sym_map_LBRACK] = ACTIONS(3417), - [anon_sym_chan] = ACTIONS(3417), - [anon_sym_thread] = ACTIONS(3417), - [anon_sym_atomic] = ACTIONS(3417), - [sym___double_quote] = ACTIONS(3417), - [sym___single_quote] = ACTIONS(3417), - [sym___c_double_quote] = ACTIONS(3417), - [sym___c_single_quote] = ACTIONS(3417), - [sym___r_double_quote] = ACTIONS(3417), - [sym___r_single_quote] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3103), + [anon_sym_DOT] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_RBRACE] = ACTIONS(3103), + [anon_sym_LPAREN] = ACTIONS(3103), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_PIPE] = ACTIONS(3103), + [anon_sym_fn] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_SLASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_GT] = ACTIONS(3103), + [anon_sym_EQ_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_LT_EQ] = ACTIONS(3103), + [anon_sym_GT_EQ] = ACTIONS(3103), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_mut] = ACTIONS(3103), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_go] = ACTIONS(3103), + [anon_sym_spawn] = ACTIONS(3103), + [anon_sym_json_DOTdecode] = ACTIONS(3103), + [anon_sym_LBRACK2] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_CARET] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_LT_DASH] = ACTIONS(3103), + [anon_sym_LT_LT] = ACTIONS(3103), + [anon_sym_GT_GT] = ACTIONS(3103), + [anon_sym_GT_GT_GT] = ACTIONS(3103), + [anon_sym_AMP_CARET] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_or] = ACTIONS(3103), + [sym_none] = ACTIONS(3103), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [sym_nil] = ACTIONS(3103), + [anon_sym_QMARK_DOT] = ACTIONS(3103), + [anon_sym_POUND_LBRACK] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_DOLLARif] = ACTIONS(3103), + [anon_sym_is] = ACTIONS(3103), + [anon_sym_BANGis] = ACTIONS(3103), + [anon_sym_in] = ACTIONS(3103), + [anon_sym_BANGin] = ACTIONS(3103), + [anon_sym_match] = ACTIONS(3103), + [anon_sym_select] = ACTIONS(3103), + [anon_sym_lock] = ACTIONS(3103), + [anon_sym_rlock] = ACTIONS(3103), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3103), + [sym_int_literal] = ACTIONS(3103), + [sym_float_literal] = ACTIONS(3103), + [sym_rune_literal] = ACTIONS(3103), + [sym_pseudo_compile_time_identifier] = ACTIONS(3103), + [anon_sym_shared] = ACTIONS(3103), + [anon_sym_map_LBRACK] = ACTIONS(3103), + [anon_sym_chan] = ACTIONS(3103), + [anon_sym_thread] = ACTIONS(3103), + [anon_sym_atomic] = ACTIONS(3103), + [sym___double_quote] = ACTIONS(3103), + [sym___single_quote] = ACTIONS(3103), + [sym___c_double_quote] = ACTIONS(3103), + [sym___c_single_quote] = ACTIONS(3103), + [sym___r_double_quote] = ACTIONS(3103), + [sym___r_single_quote] = ACTIONS(3103), }, - [1267] = { + [1280] = { [sym_identifier] = ACTIONS(3091), [anon_sym_LF] = ACTIONS(3091), [anon_sym_CR] = ACTIONS(3091), [anon_sym_CR_LF] = ACTIONS(3091), [sym_comment] = ACTIONS(495), [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_as] = ACTIONS(3091), [anon_sym_LBRACE] = ACTIONS(3091), [anon_sym_COMMA] = ACTIONS(3091), [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3091), [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3091), [anon_sym_fn] = ACTIONS(3091), - [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_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_SLASH] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT_EQ] = ACTIONS(3091), [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3089), [anon_sym_struct] = ACTIONS(3091), [anon_sym_mut] = ACTIONS(3091), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), [anon_sym_go] = ACTIONS(3091), [anon_sym_spawn] = ACTIONS(3091), [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3093), + [anon_sym_LBRACK2] = ACTIONS(3091), [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_CARET] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3091), [anon_sym_LT_DASH] = ACTIONS(3091), - [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), + [anon_sym_LT_LT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_GT_GT_GT] = ACTIONS(3091), + [anon_sym_AMP_CARET] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_or] = ACTIONS(3091), [sym_none] = ACTIONS(3091), [sym_true] = ACTIONS(3091), [sym_false] = ACTIONS(3091), [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), + [anon_sym_QMARK_DOT] = ACTIONS(3091), + [anon_sym_POUND_LBRACK] = ACTIONS(3091), [anon_sym_if] = ACTIONS(3091), [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), + [anon_sym_is] = ACTIONS(3091), + [anon_sym_BANGis] = ACTIONS(3091), + [anon_sym_in] = ACTIONS(3091), + [anon_sym_BANGin] = ACTIONS(3091), [anon_sym_match] = ACTIONS(3091), [anon_sym_select] = ACTIONS(3091), [anon_sym_lock] = ACTIONS(3091), @@ -164241,629 +165440,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3091), [sym___r_single_quote] = ACTIONS(3091), }, - [1268] = { - [sym_identifier] = ACTIONS(3059), - [anon_sym_LF] = ACTIONS(3059), - [anon_sym_CR] = ACTIONS(3059), - [anon_sym_CR_LF] = ACTIONS(3059), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3059), - [anon_sym_DOT] = ACTIONS(3059), - [anon_sym_as] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_RBRACE] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_fn] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3059), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_mut] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_go] = ACTIONS(3059), - [anon_sym_spawn] = ACTIONS(3059), - [anon_sym_json_DOTdecode] = ACTIONS(3059), - [anon_sym_LBRACK2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_GT_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_CARET] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_or] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_nil] = ACTIONS(3059), - [anon_sym_QMARK_DOT] = ACTIONS(3059), - [anon_sym_POUND_LBRACK] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_DOLLARif] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_BANGis] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3059), - [anon_sym_BANGin] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3059), - [anon_sym_select] = ACTIONS(3059), - [anon_sym_lock] = ACTIONS(3059), - [anon_sym_rlock] = ACTIONS(3059), - [anon_sym_unsafe] = ACTIONS(3059), - [anon_sym_sql] = ACTIONS(3059), - [sym_int_literal] = ACTIONS(3059), - [sym_float_literal] = ACTIONS(3059), - [sym_rune_literal] = ACTIONS(3059), - [sym_pseudo_compile_time_identifier] = ACTIONS(3059), - [anon_sym_shared] = ACTIONS(3059), - [anon_sym_map_LBRACK] = ACTIONS(3059), - [anon_sym_chan] = ACTIONS(3059), - [anon_sym_thread] = ACTIONS(3059), - [anon_sym_atomic] = ACTIONS(3059), - [sym___double_quote] = ACTIONS(3059), - [sym___single_quote] = ACTIONS(3059), - [sym___c_double_quote] = ACTIONS(3059), - [sym___c_single_quote] = ACTIONS(3059), - [sym___r_double_quote] = ACTIONS(3059), - [sym___r_single_quote] = ACTIONS(3059), - }, - [1269] = { - [sym_identifier] = ACTIONS(3367), - [anon_sym_LF] = ACTIONS(3367), - [anon_sym_CR] = ACTIONS(3367), - [anon_sym_CR_LF] = ACTIONS(3367), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3367), - [anon_sym_BANG_EQ] = ACTIONS(3367), - [anon_sym_LT_EQ] = ACTIONS(3367), - [anon_sym_GT_EQ] = ACTIONS(3367), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3367), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_CARET] = ACTIONS(3367), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3367), - [anon_sym_LT_LT] = ACTIONS(3367), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3367), - [anon_sym_AMP_CARET] = ACTIONS(3367), - [anon_sym_AMP_AMP] = ACTIONS(3367), - [anon_sym_PIPE_PIPE] = ACTIONS(3367), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3367), - [anon_sym_POUND_LBRACK] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3367), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3367), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3367), - [sym_rune_literal] = ACTIONS(3367), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3367), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3367), - [sym___single_quote] = ACTIONS(3367), - [sym___c_double_quote] = ACTIONS(3367), - [sym___c_single_quote] = ACTIONS(3367), - [sym___r_double_quote] = ACTIONS(3367), - [sym___r_single_quote] = ACTIONS(3367), - }, - [1270] = { - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [1271] = { - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(2757), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_COMMA] = ACTIONS(2757), - [anon_sym_RBRACE] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym_RPAREN] = ACTIONS(2757), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2757), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2757), - [anon_sym_BANG_EQ] = ACTIONS(2757), - [anon_sym_LT_EQ] = ACTIONS(2757), - [anon_sym_GT_EQ] = ACTIONS(2757), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2757), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2757), - [anon_sym_DASH_DASH] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [anon_sym_LT_LT] = ACTIONS(2757), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2757), - [anon_sym_AMP_CARET] = ACTIONS(2757), - [anon_sym_AMP_AMP] = ACTIONS(2757), - [anon_sym_PIPE_PIPE] = ACTIONS(2757), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2757), - [anon_sym_POUND_LBRACK] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2757), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), - }, - [1272] = { - [sym_identifier] = ACTIONS(3437), - [anon_sym_LF] = ACTIONS(3437), - [anon_sym_CR] = ACTIONS(3437), - [anon_sym_CR_LF] = ACTIONS(3437), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_RPAREN] = ACTIONS(3437), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3437), - [anon_sym_BANG_EQ] = ACTIONS(3437), - [anon_sym_LT_EQ] = ACTIONS(3437), - [anon_sym_GT_EQ] = ACTIONS(3437), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3437), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_CARET] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3437), - [anon_sym_LT_LT] = ACTIONS(3437), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3437), - [anon_sym_AMP_CARET] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3437), - [anon_sym_POUND_LBRACK] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3437), - [sym_rune_literal] = ACTIONS(3437), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3437), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3437), - [sym___single_quote] = ACTIONS(3437), - [sym___c_double_quote] = ACTIONS(3437), - [sym___c_single_quote] = ACTIONS(3437), - [sym___r_double_quote] = ACTIONS(3437), - [sym___r_single_quote] = ACTIONS(3437), - }, - [1273] = { - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), + [1281] = { + [sym_identifier] = ACTIONS(3095), + [anon_sym_LF] = ACTIONS(3095), + [anon_sym_CR] = ACTIONS(3095), + [anon_sym_CR_LF] = ACTIONS(3095), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_EQ] = ACTIONS(3347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3347), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_CARET] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3347), - [anon_sym_POUND_LBRACK] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3095), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_as] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_COMMA] = ACTIONS(3095), + [anon_sym_RBRACE] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_RPAREN] = ACTIONS(3095), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_fn] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [anon_sym_LT_EQ] = ACTIONS(3095), + [anon_sym_GT_EQ] = ACTIONS(3095), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_mut] = ACTIONS(3095), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_go] = ACTIONS(3095), + [anon_sym_spawn] = ACTIONS(3095), + [anon_sym_json_DOTdecode] = ACTIONS(3095), + [anon_sym_LBRACK2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_CARET] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3095), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_GT_GT_GT] = ACTIONS(3095), + [anon_sym_AMP_CARET] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_or] = ACTIONS(3095), + [sym_none] = ACTIONS(3095), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [sym_nil] = ACTIONS(3095), + [anon_sym_QMARK_DOT] = ACTIONS(3095), + [anon_sym_POUND_LBRACK] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_is] = ACTIONS(3095), + [anon_sym_BANGis] = ACTIONS(3095), + [anon_sym_in] = ACTIONS(3095), + [anon_sym_BANGin] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_select] = ACTIONS(3095), + [anon_sym_lock] = ACTIONS(3095), + [anon_sym_rlock] = ACTIONS(3095), + [anon_sym_unsafe] = ACTIONS(3095), + [anon_sym_sql] = ACTIONS(3095), + [sym_int_literal] = ACTIONS(3095), + [sym_float_literal] = ACTIONS(3095), + [sym_rune_literal] = ACTIONS(3095), + [sym_pseudo_compile_time_identifier] = ACTIONS(3095), + [anon_sym_shared] = ACTIONS(3095), + [anon_sym_map_LBRACK] = ACTIONS(3095), + [anon_sym_chan] = ACTIONS(3095), + [anon_sym_thread] = ACTIONS(3095), + [anon_sym_atomic] = ACTIONS(3095), + [sym___double_quote] = ACTIONS(3095), + [sym___single_quote] = ACTIONS(3095), + [sym___c_double_quote] = ACTIONS(3095), + [sym___c_single_quote] = ACTIONS(3095), + [sym___r_double_quote] = ACTIONS(3095), + [sym___r_single_quote] = ACTIONS(3095), }, - [1274] = { - [sym_identifier] = ACTIONS(3421), - [anon_sym_LF] = ACTIONS(3421), - [anon_sym_CR] = ACTIONS(3421), - [anon_sym_CR_LF] = ACTIONS(3421), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_as] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_RPAREN] = ACTIONS(3421), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_fn] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_EQ_EQ] = ACTIONS(3421), - [anon_sym_BANG_EQ] = ACTIONS(3421), - [anon_sym_LT_EQ] = ACTIONS(3421), - [anon_sym_GT_EQ] = ACTIONS(3421), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_mut] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_go] = ACTIONS(3421), - [anon_sym_spawn] = ACTIONS(3421), - [anon_sym_json_DOTdecode] = ACTIONS(3421), - [anon_sym_LBRACK2] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_CARET] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3421), - [anon_sym_LT_LT] = ACTIONS(3421), - [anon_sym_GT_GT] = ACTIONS(3421), - [anon_sym_GT_GT_GT] = ACTIONS(3421), - [anon_sym_AMP_CARET] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [sym_none] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_nil] = ACTIONS(3421), - [anon_sym_QMARK_DOT] = ACTIONS(3421), - [anon_sym_POUND_LBRACK] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_DOLLARif] = ACTIONS(3421), - [anon_sym_is] = ACTIONS(3421), - [anon_sym_BANGis] = ACTIONS(3421), - [anon_sym_in] = ACTIONS(3421), - [anon_sym_BANGin] = ACTIONS(3421), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_lock] = ACTIONS(3421), - [anon_sym_rlock] = ACTIONS(3421), - [anon_sym_unsafe] = ACTIONS(3421), - [anon_sym_sql] = ACTIONS(3421), - [sym_int_literal] = ACTIONS(3421), - [sym_float_literal] = ACTIONS(3421), - [sym_rune_literal] = ACTIONS(3421), - [sym_pseudo_compile_time_identifier] = ACTIONS(3421), - [anon_sym_shared] = ACTIONS(3421), - [anon_sym_map_LBRACK] = ACTIONS(3421), - [anon_sym_chan] = ACTIONS(3421), - [anon_sym_thread] = ACTIONS(3421), - [anon_sym_atomic] = ACTIONS(3421), - [sym___double_quote] = ACTIONS(3421), - [sym___single_quote] = ACTIONS(3421), - [sym___c_double_quote] = ACTIONS(3421), - [sym___c_single_quote] = ACTIONS(3421), - [sym___r_double_quote] = ACTIONS(3421), - [sym___r_single_quote] = ACTIONS(3421), + [1282] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1941), + [anon_sym_BANG_EQ] = ACTIONS(1941), + [anon_sym_LT_EQ] = ACTIONS(1941), + [anon_sym_GT_EQ] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1881), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(1941), + [anon_sym_GT_GT] = ACTIONS(1881), + [anon_sym_GT_GT_GT] = ACTIONS(1941), + [anon_sym_AMP_CARET] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), }, - [1275] = { - [sym_reference_expression] = STATE(4402), - [sym_type_reference_expression] = STATE(1932), - [sym_plain_type] = STATE(2147), - [sym__plain_type_without_special] = STATE(1975), - [sym_anon_struct_type] = STATE(1976), - [sym_multi_return_type] = STATE(1975), - [sym_result_type] = STATE(1975), - [sym_option_type] = STATE(1975), - [sym_qualified_type] = STATE(1932), - [sym_fixed_array_type] = STATE(1976), - [sym_array_type] = STATE(1976), - [sym_pointer_type] = STATE(1976), - [sym_wrong_pointer_type] = STATE(1976), - [sym_map_type] = STATE(1976), - [sym_channel_type] = STATE(1976), - [sym_shared_type] = STATE(1976), - [sym_thread_type] = STATE(1976), - [sym_atomic_type] = STATE(1976), - [sym_generic_type] = STATE(1976), - [sym_function_type] = STATE(1976), - [sym_identifier] = ACTIONS(3823), + [1283] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), [anon_sym_SEMI] = ACTIONS(559), [anon_sym_DOT] = ACTIONS(559), [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3825), + [anon_sym_LPAREN] = ACTIONS(3630), [anon_sym_EQ] = ACTIONS(563), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3827), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3829), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(563), @@ -164873,14 +165650,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(559), [anon_sym_GT_EQ] = ACTIONS(559), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(3831), + [anon_sym_struct] = ACTIONS(571), [anon_sym_PLUS_PLUS] = ACTIONS(559), [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(3833), - [anon_sym_BANG] = ACTIONS(3835), - [anon_sym_LBRACK2] = ACTIONS(3837), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3879), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3839), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), [anon_sym_GT_GT_GT] = ACTIONS(563), @@ -164907,2633 +165684,4947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(559), [anon_sym_CARET_EQ] = ACTIONS(559), [anon_sym_COLON_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(3841), - [anon_sym_map_LBRACK] = ACTIONS(3843), - [anon_sym_chan] = ACTIONS(3845), - [anon_sym_thread] = ACTIONS(3847), - [anon_sym_atomic] = ACTIONS(3849), - }, - [1276] = { - [sym_reference_expression] = STATE(4402), - [sym_type_reference_expression] = STATE(1932), - [sym_plain_type] = STATE(2087), - [sym__plain_type_without_special] = STATE(1975), - [sym_anon_struct_type] = STATE(1976), - [sym_multi_return_type] = STATE(1975), - [sym_result_type] = STATE(1975), - [sym_option_type] = STATE(1975), - [sym_qualified_type] = STATE(1932), - [sym_fixed_array_type] = STATE(1976), - [sym_array_type] = STATE(1976), - [sym_pointer_type] = STATE(1976), - [sym_wrong_pointer_type] = STATE(1976), - [sym_map_type] = STATE(1976), - [sym_channel_type] = STATE(1976), - [sym_shared_type] = STATE(1976), - [sym_thread_type] = STATE(1976), - [sym_atomic_type] = STATE(1976), - [sym_generic_type] = STATE(1976), - [sym_function_type] = STATE(1976), - [sym_identifier] = ACTIONS(3823), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3827), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3829), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3831), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3833), - [anon_sym_BANG] = ACTIONS(3835), - [anon_sym_LBRACK2] = ACTIONS(3837), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3839), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(3841), - [anon_sym_map_LBRACK] = ACTIONS(3843), - [anon_sym_chan] = ACTIONS(3845), - [anon_sym_thread] = ACTIONS(3847), - [anon_sym_atomic] = ACTIONS(3849), - }, - [1277] = { - [sym_identifier] = ACTIONS(3161), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_CR] = ACTIONS(3161), - [anon_sym_CR_LF] = ACTIONS(3161), - [sym_comment] = ACTIONS(495), - [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_RPAREN] = 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_DOT_DOT_DOT] = 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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [1278] = { - [sym_reference_expression] = STATE(4402), - [sym_type_reference_expression] = STATE(1932), - [sym_plain_type] = STATE(2077), - [sym__plain_type_without_special] = STATE(1975), - [sym_anon_struct_type] = STATE(1976), - [sym_multi_return_type] = STATE(1975), - [sym_result_type] = STATE(1975), - [sym_option_type] = STATE(1975), - [sym_qualified_type] = STATE(1932), - [sym_fixed_array_type] = STATE(1976), - [sym_array_type] = STATE(1976), - [sym_pointer_type] = STATE(1976), - [sym_wrong_pointer_type] = STATE(1976), - [sym_map_type] = STATE(1976), - [sym_channel_type] = STATE(1976), - [sym_shared_type] = STATE(1976), - [sym_thread_type] = STATE(1976), - [sym_atomic_type] = STATE(1976), - [sym_generic_type] = STATE(1976), - [sym_function_type] = STATE(1976), - [sym_identifier] = ACTIONS(3823), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3825), - [anon_sym_EQ] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3827), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3829), - [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(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(3831), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(3833), - [anon_sym_BANG] = ACTIONS(3835), - [anon_sym_LBRACK2] = ACTIONS(3837), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(3839), - [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(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(593), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(593), - [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(3841), - [anon_sym_map_LBRACK] = ACTIONS(3843), - [anon_sym_chan] = ACTIONS(3845), - [anon_sym_thread] = ACTIONS(3847), - [anon_sym_atomic] = ACTIONS(3849), - }, - [1279] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(1879), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1877), - [anon_sym_COMMA] = ACTIONS(1877), - [anon_sym_RBRACE] = ACTIONS(1877), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(1879), - [anon_sym_fn] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(1879), - [anon_sym_DASH] = ACTIONS(1879), - [anon_sym_STAR] = ACTIONS(1877), - [anon_sym_SLASH] = ACTIONS(1879), - [anon_sym_PERCENT] = ACTIONS(1877), - [anon_sym_LT] = ACTIONS(1879), - [anon_sym_GT] = ACTIONS(1879), - [anon_sym_EQ_EQ] = ACTIONS(1877), - [anon_sym_BANG_EQ] = ACTIONS(1877), - [anon_sym_LT_EQ] = ACTIONS(1877), - [anon_sym_GT_EQ] = ACTIONS(1877), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(1877), - [anon_sym_struct] = ACTIONS(1879), - [anon_sym_mut] = ACTIONS(1879), - [anon_sym_COLON] = ACTIONS(1877), - [anon_sym_PLUS_PLUS] = ACTIONS(1877), - [anon_sym_DASH_DASH] = ACTIONS(1877), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(1879), - [anon_sym_spawn] = ACTIONS(1879), - [anon_sym_json_DOTdecode] = ACTIONS(1877), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(1877), - [anon_sym_CARET] = ACTIONS(1877), - [anon_sym_AMP] = ACTIONS(1879), - [anon_sym_LT_DASH] = ACTIONS(1877), - [anon_sym_LT_LT] = ACTIONS(1877), - [anon_sym_GT_GT] = ACTIONS(1879), - [anon_sym_GT_GT_GT] = ACTIONS(1877), - [anon_sym_AMP_CARET] = ACTIONS(1877), - [anon_sym_AMP_AMP] = ACTIONS(1877), - [anon_sym_PIPE_PIPE] = ACTIONS(1877), - [anon_sym_or] = ACTIONS(1879), - [sym_none] = ACTIONS(1879), - [sym_true] = ACTIONS(1879), - [sym_false] = ACTIONS(1879), - [sym_nil] = ACTIONS(1879), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(1879), - [anon_sym_DOLLARif] = ACTIONS(1879), - [anon_sym_is] = ACTIONS(1879), - [anon_sym_BANGis] = ACTIONS(1877), - [anon_sym_in] = ACTIONS(1879), - [anon_sym_BANGin] = ACTIONS(1877), - [anon_sym_match] = ACTIONS(1879), - [anon_sym_select] = ACTIONS(1879), - [anon_sym_lock] = ACTIONS(1879), - [anon_sym_rlock] = ACTIONS(1879), - [anon_sym_unsafe] = ACTIONS(1879), - [anon_sym_sql] = ACTIONS(1879), - [sym_int_literal] = ACTIONS(1879), - [sym_float_literal] = ACTIONS(1877), - [sym_rune_literal] = ACTIONS(1877), - [sym_pseudo_compile_time_identifier] = ACTIONS(1879), - [anon_sym_shared] = ACTIONS(1879), - [anon_sym_map_LBRACK] = ACTIONS(1877), - [anon_sym_chan] = ACTIONS(1879), - [anon_sym_thread] = ACTIONS(1879), - [anon_sym_atomic] = ACTIONS(1879), - [sym___double_quote] = ACTIONS(1877), - [sym___single_quote] = ACTIONS(1877), - [sym___c_double_quote] = ACTIONS(1877), - [sym___c_single_quote] = ACTIONS(1877), - [sym___r_double_quote] = ACTIONS(1877), - [sym___r_single_quote] = ACTIONS(1877), - }, - [1280] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2009), - [anon_sym_SLASH] = ACTIONS(2011), - [anon_sym_PERCENT] = ACTIONS(2009), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(2009), - [anon_sym_GT_GT] = ACTIONS(2011), - [anon_sym_GT_GT_GT] = ACTIONS(2009), - [anon_sym_AMP_CARET] = ACTIONS(2009), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), - }, - [1281] = { - [sym_identifier] = ACTIONS(3103), - [anon_sym_LF] = ACTIONS(3103), - [anon_sym_CR] = ACTIONS(3103), - [anon_sym_CR_LF] = ACTIONS(3103), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_struct] = ACTIONS(3103), - [anon_sym_mut] = ACTIONS(3103), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3103), - [anon_sym_spawn] = ACTIONS(3103), - [anon_sym_json_DOTdecode] = ACTIONS(3103), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3103), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3103), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3103), - [sym_none] = ACTIONS(3103), - [sym_true] = ACTIONS(3103), - [sym_false] = ACTIONS(3103), - [sym_nil] = ACTIONS(3103), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3103), - [anon_sym_DOLLARif] = ACTIONS(3103), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3103), - [anon_sym_select] = ACTIONS(3103), - [anon_sym_lock] = ACTIONS(3103), - [anon_sym_rlock] = ACTIONS(3103), - [anon_sym_unsafe] = ACTIONS(3103), - [anon_sym_sql] = ACTIONS(3103), - [sym_int_literal] = ACTIONS(3103), - [sym_float_literal] = ACTIONS(3103), - [sym_rune_literal] = ACTIONS(3103), - [sym_pseudo_compile_time_identifier] = ACTIONS(3103), - [anon_sym_shared] = ACTIONS(3103), - [anon_sym_map_LBRACK] = ACTIONS(3103), - [anon_sym_chan] = ACTIONS(3103), - [anon_sym_thread] = ACTIONS(3103), - [anon_sym_atomic] = ACTIONS(3103), - [sym___double_quote] = ACTIONS(3103), - [sym___single_quote] = ACTIONS(3103), - [sym___c_double_quote] = ACTIONS(3103), - [sym___c_single_quote] = ACTIONS(3103), - [sym___r_double_quote] = ACTIONS(3103), - [sym___r_single_quote] = ACTIONS(3103), - }, - [1282] = { - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(495), - [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_LPAREN] = ACTIONS(3093), - [anon_sym_RPAREN] = 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_DOT_DOT_DOT] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3096), - [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [1283] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_EQ] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3867), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_STAR_EQ] = ACTIONS(603), - [anon_sym_SLASH_EQ] = ACTIONS(603), - [anon_sym_PERCENT_EQ] = ACTIONS(603), - [anon_sym_LT_LT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_EQ] = ACTIONS(603), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(603), - [anon_sym_AMP_EQ] = ACTIONS(603), - [anon_sym_AMP_CARET_EQ] = ACTIONS(603), - [anon_sym_PLUS_EQ] = ACTIONS(603), - [anon_sym_DASH_EQ] = ACTIONS(603), - [anon_sym_PIPE_EQ] = ACTIONS(603), - [anon_sym_CARET_EQ] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), }, [1284] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2041), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2041), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_COMMA] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_PLUS] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_SLASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2041), - [anon_sym_GT] = ACTIONS(2041), - [anon_sym_EQ_EQ] = ACTIONS(2039), - [anon_sym_BANG_EQ] = ACTIONS(2039), - [anon_sym_LT_EQ] = ACTIONS(2039), - [anon_sym_GT_EQ] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2039), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_mut] = ACTIONS(2041), - [anon_sym_COLON] = ACTIONS(2039), - [anon_sym_PLUS_PLUS] = ACTIONS(2039), - [anon_sym_DASH_DASH] = ACTIONS(2039), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2041), - [anon_sym_spawn] = ACTIONS(2041), - [anon_sym_json_DOTdecode] = ACTIONS(2039), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2039), - [anon_sym_CARET] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2041), - [anon_sym_LT_DASH] = ACTIONS(2039), - [anon_sym_LT_LT] = ACTIONS(2039), - [anon_sym_GT_GT] = ACTIONS(2041), - [anon_sym_GT_GT_GT] = ACTIONS(2039), - [anon_sym_AMP_CARET] = ACTIONS(2039), - [anon_sym_AMP_AMP] = ACTIONS(2039), - [anon_sym_PIPE_PIPE] = ACTIONS(2039), - [anon_sym_or] = ACTIONS(2041), - [sym_none] = ACTIONS(2041), - [sym_true] = ACTIONS(2041), - [sym_false] = ACTIONS(2041), - [sym_nil] = ACTIONS(2041), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_DOLLARif] = ACTIONS(2041), - [anon_sym_is] = ACTIONS(2041), - [anon_sym_BANGis] = ACTIONS(2039), - [anon_sym_in] = ACTIONS(2041), - [anon_sym_BANGin] = ACTIONS(2039), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_select] = ACTIONS(2041), - [anon_sym_lock] = ACTIONS(2041), - [anon_sym_rlock] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_sql] = ACTIONS(2041), - [sym_int_literal] = ACTIONS(2041), - [sym_float_literal] = ACTIONS(2039), - [sym_rune_literal] = ACTIONS(2039), - [sym_pseudo_compile_time_identifier] = ACTIONS(2041), - [anon_sym_shared] = ACTIONS(2041), - [anon_sym_map_LBRACK] = ACTIONS(2039), - [anon_sym_chan] = ACTIONS(2041), - [anon_sym_thread] = ACTIONS(2041), - [anon_sym_atomic] = ACTIONS(2041), - [sym___double_quote] = ACTIONS(2039), - [sym___single_quote] = ACTIONS(2039), - [sym___c_double_quote] = ACTIONS(2039), - [sym___c_single_quote] = ACTIONS(2039), - [sym___r_double_quote] = ACTIONS(2039), - [sym___r_single_quote] = ACTIONS(2039), + [sym_identifier] = ACTIONS(3219), + [anon_sym_LF] = ACTIONS(3219), + [anon_sym_CR] = ACTIONS(3219), + [anon_sym_CR_LF] = ACTIONS(3219), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_COMMA] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_RPAREN] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3219), + [anon_sym_BANG_EQ] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_mut] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3219), + [anon_sym_spawn] = ACTIONS(3219), + [anon_sym_json_DOTdecode] = ACTIONS(3219), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3219), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3219), + [anon_sym_LT_LT] = ACTIONS(3219), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3219), + [anon_sym_AMP_CARET] = ACTIONS(3219), + [anon_sym_AMP_AMP] = ACTIONS(3219), + [anon_sym_PIPE_PIPE] = ACTIONS(3219), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_nil] = ACTIONS(3219), + [anon_sym_QMARK_DOT] = ACTIONS(3219), + [anon_sym_POUND_LBRACK] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_DOLLARif] = ACTIONS(3219), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3219), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3219), + [anon_sym_select] = ACTIONS(3219), + [anon_sym_lock] = ACTIONS(3219), + [anon_sym_rlock] = ACTIONS(3219), + [anon_sym_unsafe] = ACTIONS(3219), + [anon_sym_sql] = ACTIONS(3219), + [sym_int_literal] = ACTIONS(3219), + [sym_float_literal] = ACTIONS(3219), + [sym_rune_literal] = ACTIONS(3219), + [sym_pseudo_compile_time_identifier] = ACTIONS(3219), + [anon_sym_shared] = ACTIONS(3219), + [anon_sym_map_LBRACK] = ACTIONS(3219), + [anon_sym_chan] = ACTIONS(3219), + [anon_sym_thread] = ACTIONS(3219), + [anon_sym_atomic] = ACTIONS(3219), + [sym___double_quote] = ACTIONS(3219), + [sym___single_quote] = ACTIONS(3219), + [sym___c_double_quote] = ACTIONS(3219), + [sym___c_single_quote] = ACTIONS(3219), + [sym___r_double_quote] = ACTIONS(3219), + [sym___r_single_quote] = ACTIONS(3219), }, [1285] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_format_specifier] = STATE(4306), - [sym_identifier] = ACTIONS(3869), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3873), - [anon_sym_RBRACE] = ACTIONS(3873), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3881), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_EQ_EQ] = ACTIONS(3883), - [anon_sym_BANG_EQ] = ACTIONS(3883), - [anon_sym_LT_EQ] = ACTIONS(3883), - [anon_sym_GT_EQ] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(3869), - [anon_sym_mut] = ACTIONS(3869), - [anon_sym_COLON] = ACTIONS(3885), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(3869), - [anon_sym_spawn] = ACTIONS(3869), - [anon_sym_json_DOTdecode] = ACTIONS(3873), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(3873), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(3869), - [sym_true] = ACTIONS(3869), - [sym_false] = ACTIONS(3869), - [sym_nil] = ACTIONS(3869), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(3869), - [anon_sym_DOLLARif] = ACTIONS(3869), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3903), - [anon_sym_BANGin] = ACTIONS(3905), - [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(3873), - [sym_rune_literal] = ACTIONS(3873), - [sym_pseudo_compile_time_identifier] = ACTIONS(3869), - [anon_sym_shared] = ACTIONS(3869), - [anon_sym_map_LBRACK] = ACTIONS(3873), - [anon_sym_chan] = ACTIONS(3869), - [anon_sym_thread] = ACTIONS(3869), - [anon_sym_atomic] = ACTIONS(3869), - [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), + [sym_identifier] = ACTIONS(3229), + [anon_sym_LF] = ACTIONS(3229), + [anon_sym_CR] = ACTIONS(3229), + [anon_sym_CR_LF] = ACTIONS(3229), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_COMMA] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_RPAREN] = ACTIONS(3229), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3229), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_struct] = ACTIONS(3229), + [anon_sym_mut] = ACTIONS(3229), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3229), + [anon_sym_spawn] = ACTIONS(3229), + [anon_sym_json_DOTdecode] = ACTIONS(3229), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3229), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_or] = ACTIONS(3229), + [sym_none] = ACTIONS(3229), + [sym_true] = ACTIONS(3229), + [sym_false] = ACTIONS(3229), + [sym_nil] = ACTIONS(3229), + [anon_sym_QMARK_DOT] = ACTIONS(3229), + [anon_sym_POUND_LBRACK] = ACTIONS(3229), + [anon_sym_if] = ACTIONS(3229), + [anon_sym_DOLLARif] = ACTIONS(3229), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3229), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3229), + [anon_sym_match] = ACTIONS(3229), + [anon_sym_select] = ACTIONS(3229), + [anon_sym_lock] = ACTIONS(3229), + [anon_sym_rlock] = ACTIONS(3229), + [anon_sym_unsafe] = ACTIONS(3229), + [anon_sym_sql] = ACTIONS(3229), + [sym_int_literal] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3229), + [sym_rune_literal] = ACTIONS(3229), + [sym_pseudo_compile_time_identifier] = ACTIONS(3229), + [anon_sym_shared] = ACTIONS(3229), + [anon_sym_map_LBRACK] = ACTIONS(3229), + [anon_sym_chan] = ACTIONS(3229), + [anon_sym_thread] = ACTIONS(3229), + [anon_sym_atomic] = ACTIONS(3229), + [sym___double_quote] = ACTIONS(3229), + [sym___single_quote] = ACTIONS(3229), + [sym___c_double_quote] = ACTIONS(3229), + [sym___c_single_quote] = ACTIONS(3229), + [sym___r_double_quote] = ACTIONS(3229), + [sym___r_single_quote] = ACTIONS(3229), }, [1286] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_format_specifier] = STATE(4132), - [sym_identifier] = ACTIONS(3869), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1869), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3873), - [anon_sym_RBRACE] = ACTIONS(3873), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3881), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_EQ_EQ] = ACTIONS(3883), - [anon_sym_BANG_EQ] = ACTIONS(3883), - [anon_sym_LT_EQ] = ACTIONS(3883), - [anon_sym_GT_EQ] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(3869), - [anon_sym_mut] = ACTIONS(3869), - [anon_sym_COLON] = ACTIONS(3885), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(3869), - [anon_sym_spawn] = ACTIONS(3869), - [anon_sym_json_DOTdecode] = ACTIONS(3873), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(3873), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(3869), - [sym_true] = ACTIONS(3869), - [sym_false] = ACTIONS(3869), - [sym_nil] = ACTIONS(3869), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(3869), - [anon_sym_DOLLARif] = ACTIONS(3869), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3903), - [anon_sym_BANGin] = ACTIONS(3905), - [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(3873), - [sym_rune_literal] = ACTIONS(3873), - [sym_pseudo_compile_time_identifier] = ACTIONS(3869), - [anon_sym_shared] = ACTIONS(3869), - [anon_sym_map_LBRACK] = ACTIONS(3873), - [anon_sym_chan] = ACTIONS(3869), - [anon_sym_thread] = ACTIONS(3869), - [anon_sym_atomic] = ACTIONS(3869), - [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), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_fn] = ACTIONS(1869), + [anon_sym_PLUS] = ACTIONS(1869), + [anon_sym_DASH] = ACTIONS(1869), + [anon_sym_STAR] = ACTIONS(1867), + [anon_sym_SLASH] = ACTIONS(1869), + [anon_sym_PERCENT] = ACTIONS(1867), + [anon_sym_LT] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1869), + [anon_sym_EQ_EQ] = ACTIONS(1867), + [anon_sym_BANG_EQ] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1867), + [anon_sym_struct] = ACTIONS(1869), + [anon_sym_mut] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1867), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1869), + [anon_sym_spawn] = ACTIONS(1869), + [anon_sym_json_DOTdecode] = ACTIONS(1867), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1867), + [anon_sym_AMP] = ACTIONS(1869), + [anon_sym_LT_DASH] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1867), + [anon_sym_GT_GT] = ACTIONS(1869), + [anon_sym_GT_GT_GT] = ACTIONS(1867), + [anon_sym_AMP_CARET] = ACTIONS(1867), + [anon_sym_AMP_AMP] = ACTIONS(1867), + [anon_sym_PIPE_PIPE] = ACTIONS(1867), + [anon_sym_or] = ACTIONS(1869), + [sym_none] = ACTIONS(1869), + [sym_true] = ACTIONS(1869), + [sym_false] = ACTIONS(1869), + [sym_nil] = ACTIONS(1869), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_DOLLARif] = ACTIONS(1869), + [anon_sym_is] = ACTIONS(1869), + [anon_sym_BANGis] = ACTIONS(1867), + [anon_sym_in] = ACTIONS(1869), + [anon_sym_BANGin] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1869), + [anon_sym_select] = ACTIONS(1869), + [anon_sym_lock] = ACTIONS(1869), + [anon_sym_rlock] = ACTIONS(1869), + [anon_sym_unsafe] = ACTIONS(1869), + [anon_sym_sql] = ACTIONS(1869), + [sym_int_literal] = ACTIONS(1869), + [sym_float_literal] = ACTIONS(1867), + [sym_rune_literal] = ACTIONS(1867), + [sym_pseudo_compile_time_identifier] = ACTIONS(1869), + [anon_sym_shared] = ACTIONS(1869), + [anon_sym_map_LBRACK] = ACTIONS(1867), + [anon_sym_chan] = ACTIONS(1869), + [anon_sym_thread] = ACTIONS(1869), + [anon_sym_atomic] = ACTIONS(1869), + [sym___double_quote] = ACTIONS(1867), + [sym___single_quote] = ACTIONS(1867), + [sym___c_double_quote] = ACTIONS(1867), + [sym___c_single_quote] = ACTIONS(1867), + [sym___r_double_quote] = ACTIONS(1867), + [sym___r_single_quote] = ACTIONS(1867), }, [1287] = { - [sym_else_branch] = STATE(1399), - [sym_identifier] = ACTIONS(2515), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1853), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2515), - [anon_sym_LBRACE] = ACTIONS(2513), - [anon_sym_COMMA] = ACTIONS(2513), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_LPAREN] = ACTIONS(2513), - [anon_sym_PIPE] = ACTIONS(2515), - [anon_sym_fn] = ACTIONS(2515), - [anon_sym_PLUS] = ACTIONS(2515), - [anon_sym_DASH] = ACTIONS(2515), - [anon_sym_STAR] = ACTIONS(2513), - [anon_sym_SLASH] = ACTIONS(2515), - [anon_sym_PERCENT] = ACTIONS(2513), - [anon_sym_LT] = ACTIONS(2515), - [anon_sym_GT] = ACTIONS(2515), - [anon_sym_EQ_EQ] = ACTIONS(2513), - [anon_sym_BANG_EQ] = ACTIONS(2513), - [anon_sym_LT_EQ] = ACTIONS(2513), - [anon_sym_GT_EQ] = ACTIONS(2513), - [anon_sym_LBRACK] = ACTIONS(2513), - [anon_sym_RBRACK] = ACTIONS(2513), - [anon_sym_struct] = ACTIONS(2515), - [anon_sym_mut] = ACTIONS(2515), - [anon_sym_COLON] = ACTIONS(2513), - [anon_sym_PLUS_PLUS] = ACTIONS(2513), - [anon_sym_DASH_DASH] = ACTIONS(2513), - [anon_sym_QMARK] = ACTIONS(2515), - [anon_sym_BANG] = ACTIONS(2515), - [anon_sym_go] = ACTIONS(2515), - [anon_sym_spawn] = ACTIONS(2515), - [anon_sym_json_DOTdecode] = ACTIONS(2513), - [anon_sym_LBRACK2] = ACTIONS(2515), - [anon_sym_TILDE] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2513), - [anon_sym_AMP] = ACTIONS(2515), - [anon_sym_LT_DASH] = ACTIONS(2513), - [anon_sym_LT_LT] = ACTIONS(2513), - [anon_sym_GT_GT] = ACTIONS(2515), - [anon_sym_GT_GT_GT] = ACTIONS(2513), - [anon_sym_AMP_CARET] = ACTIONS(2513), - [anon_sym_AMP_AMP] = ACTIONS(2513), - [anon_sym_PIPE_PIPE] = ACTIONS(2513), - [anon_sym_or] = ACTIONS(2515), - [sym_none] = ACTIONS(2515), - [sym_true] = ACTIONS(2515), - [sym_false] = ACTIONS(2515), - [sym_nil] = ACTIONS(2515), - [anon_sym_QMARK_DOT] = ACTIONS(2513), - [anon_sym_POUND_LBRACK] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2515), - [anon_sym_else] = ACTIONS(3907), - [anon_sym_DOLLARif] = ACTIONS(2515), - [anon_sym_is] = ACTIONS(2515), - [anon_sym_BANGis] = ACTIONS(2513), - [anon_sym_in] = ACTIONS(2515), - [anon_sym_BANGin] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2515), - [anon_sym_select] = ACTIONS(2515), - [anon_sym_lock] = ACTIONS(2515), - [anon_sym_rlock] = ACTIONS(2515), - [anon_sym_unsafe] = ACTIONS(2515), - [anon_sym_sql] = ACTIONS(2515), - [sym_int_literal] = ACTIONS(2515), - [sym_float_literal] = ACTIONS(2513), - [sym_rune_literal] = ACTIONS(2513), - [sym_pseudo_compile_time_identifier] = ACTIONS(2515), - [anon_sym_shared] = ACTIONS(2515), - [anon_sym_map_LBRACK] = ACTIONS(2513), - [anon_sym_chan] = ACTIONS(2515), - [anon_sym_thread] = ACTIONS(2515), - [anon_sym_atomic] = ACTIONS(2515), - [sym___double_quote] = ACTIONS(2513), - [sym___single_quote] = ACTIONS(2513), - [sym___c_double_quote] = ACTIONS(2513), - [sym___c_single_quote] = ACTIONS(2513), - [sym___r_double_quote] = ACTIONS(2513), - [sym___r_single_quote] = ACTIONS(2513), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_fn] = ACTIONS(1853), + [anon_sym_PLUS] = ACTIONS(1853), + [anon_sym_DASH] = ACTIONS(1853), + [anon_sym_STAR] = ACTIONS(1851), + [anon_sym_SLASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1851), + [anon_sym_LT] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1851), + [anon_sym_BANG_EQ] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1851), + [anon_sym_GT_EQ] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1851), + [anon_sym_struct] = ACTIONS(1853), + [anon_sym_mut] = ACTIONS(1853), + [anon_sym_COLON] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1851), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1853), + [anon_sym_spawn] = ACTIONS(1853), + [anon_sym_json_DOTdecode] = ACTIONS(1851), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1851), + [anon_sym_AMP] = ACTIONS(1853), + [anon_sym_LT_DASH] = ACTIONS(1851), + [anon_sym_LT_LT] = ACTIONS(1851), + [anon_sym_GT_GT] = ACTIONS(1853), + [anon_sym_GT_GT_GT] = ACTIONS(1851), + [anon_sym_AMP_CARET] = ACTIONS(1851), + [anon_sym_AMP_AMP] = ACTIONS(1851), + [anon_sym_PIPE_PIPE] = ACTIONS(1851), + [anon_sym_or] = ACTIONS(1853), + [sym_none] = ACTIONS(1853), + [sym_true] = ACTIONS(1853), + [sym_false] = ACTIONS(1853), + [sym_nil] = ACTIONS(1853), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_DOLLARif] = ACTIONS(1853), + [anon_sym_is] = ACTIONS(1853), + [anon_sym_BANGis] = ACTIONS(1851), + [anon_sym_in] = ACTIONS(1853), + [anon_sym_BANGin] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1853), + [anon_sym_select] = ACTIONS(1853), + [anon_sym_lock] = ACTIONS(1853), + [anon_sym_rlock] = ACTIONS(1853), + [anon_sym_unsafe] = ACTIONS(1853), + [anon_sym_sql] = ACTIONS(1853), + [sym_int_literal] = ACTIONS(1853), + [sym_float_literal] = ACTIONS(1851), + [sym_rune_literal] = ACTIONS(1851), + [sym_pseudo_compile_time_identifier] = ACTIONS(1853), + [anon_sym_shared] = ACTIONS(1853), + [anon_sym_map_LBRACK] = ACTIONS(1851), + [anon_sym_chan] = ACTIONS(1853), + [anon_sym_thread] = ACTIONS(1853), + [anon_sym_atomic] = ACTIONS(1853), + [sym___double_quote] = ACTIONS(1851), + [sym___single_quote] = ACTIONS(1851), + [sym___c_double_quote] = ACTIONS(1851), + [sym___c_single_quote] = ACTIONS(1851), + [sym___r_double_quote] = ACTIONS(1851), + [sym___r_single_quote] = ACTIONS(1851), }, [1288] = { - [sym_else_branch] = STATE(1400), - [sym_identifier] = ACTIONS(2509), + [sym_else_branch] = STATE(1411), + [sym_identifier] = ACTIONS(2505), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_COMMA] = ACTIONS(2507), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_PIPE] = ACTIONS(2509), - [anon_sym_fn] = ACTIONS(2509), - [anon_sym_PLUS] = ACTIONS(2509), - [anon_sym_DASH] = ACTIONS(2509), - [anon_sym_STAR] = ACTIONS(2507), - [anon_sym_SLASH] = ACTIONS(2509), - [anon_sym_PERCENT] = ACTIONS(2507), - [anon_sym_LT] = ACTIONS(2509), - [anon_sym_GT] = ACTIONS(2509), - [anon_sym_EQ_EQ] = ACTIONS(2507), - [anon_sym_BANG_EQ] = ACTIONS(2507), - [anon_sym_LT_EQ] = ACTIONS(2507), - [anon_sym_GT_EQ] = ACTIONS(2507), - [anon_sym_LBRACK] = ACTIONS(2507), - [anon_sym_RBRACK] = ACTIONS(2507), - [anon_sym_struct] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_COLON] = ACTIONS(2507), - [anon_sym_PLUS_PLUS] = ACTIONS(2507), - [anon_sym_DASH_DASH] = ACTIONS(2507), - [anon_sym_QMARK] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(2509), - [anon_sym_go] = ACTIONS(2509), - [anon_sym_spawn] = ACTIONS(2509), - [anon_sym_json_DOTdecode] = ACTIONS(2507), - [anon_sym_LBRACK2] = ACTIONS(2509), - [anon_sym_TILDE] = ACTIONS(2507), - [anon_sym_CARET] = ACTIONS(2507), - [anon_sym_AMP] = ACTIONS(2509), - [anon_sym_LT_DASH] = ACTIONS(2507), - [anon_sym_LT_LT] = ACTIONS(2507), - [anon_sym_GT_GT] = ACTIONS(2509), - [anon_sym_GT_GT_GT] = ACTIONS(2507), - [anon_sym_AMP_CARET] = ACTIONS(2507), - [anon_sym_AMP_AMP] = ACTIONS(2507), - [anon_sym_PIPE_PIPE] = ACTIONS(2507), - [anon_sym_or] = ACTIONS(2509), - [sym_none] = ACTIONS(2509), - [sym_true] = ACTIONS(2509), - [sym_false] = ACTIONS(2509), - [sym_nil] = ACTIONS(2509), - [anon_sym_QMARK_DOT] = ACTIONS(2507), - [anon_sym_POUND_LBRACK] = ACTIONS(2507), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(3907), - [anon_sym_DOLLARif] = ACTIONS(2509), - [anon_sym_is] = ACTIONS(2509), - [anon_sym_BANGis] = ACTIONS(2507), - [anon_sym_in] = ACTIONS(2509), - [anon_sym_BANGin] = ACTIONS(2507), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_select] = ACTIONS(2509), - [anon_sym_lock] = ACTIONS(2509), - [anon_sym_rlock] = ACTIONS(2509), - [anon_sym_unsafe] = ACTIONS(2509), - [anon_sym_sql] = ACTIONS(2509), - [sym_int_literal] = ACTIONS(2509), - [sym_float_literal] = ACTIONS(2507), - [sym_rune_literal] = ACTIONS(2507), - [sym_pseudo_compile_time_identifier] = ACTIONS(2509), - [anon_sym_shared] = ACTIONS(2509), - [anon_sym_map_LBRACK] = ACTIONS(2507), - [anon_sym_chan] = ACTIONS(2509), - [anon_sym_thread] = ACTIONS(2509), - [anon_sym_atomic] = ACTIONS(2509), - [sym___double_quote] = ACTIONS(2507), - [sym___single_quote] = ACTIONS(2507), - [sym___c_double_quote] = ACTIONS(2507), - [sym___c_single_quote] = ACTIONS(2507), - [sym___r_double_quote] = ACTIONS(2507), - [sym___r_single_quote] = ACTIONS(2507), + [anon_sym_DOT] = ACTIONS(2505), + [anon_sym_as] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2503), + [anon_sym_COMMA] = ACTIONS(2503), + [anon_sym_RBRACE] = ACTIONS(2503), + [anon_sym_LPAREN] = ACTIONS(2503), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_fn] = ACTIONS(2505), + [anon_sym_PLUS] = ACTIONS(2505), + [anon_sym_DASH] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2503), + [anon_sym_SLASH] = ACTIONS(2505), + [anon_sym_PERCENT] = ACTIONS(2503), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_GT] = ACTIONS(2505), + [anon_sym_EQ_EQ] = ACTIONS(2503), + [anon_sym_BANG_EQ] = ACTIONS(2503), + [anon_sym_LT_EQ] = ACTIONS(2503), + [anon_sym_GT_EQ] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(2503), + [anon_sym_RBRACK] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2505), + [anon_sym_mut] = ACTIONS(2505), + [anon_sym_COLON] = ACTIONS(2503), + [anon_sym_PLUS_PLUS] = ACTIONS(2503), + [anon_sym_DASH_DASH] = ACTIONS(2503), + [anon_sym_QMARK] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_go] = ACTIONS(2505), + [anon_sym_spawn] = ACTIONS(2505), + [anon_sym_json_DOTdecode] = ACTIONS(2503), + [anon_sym_LBRACK2] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(2503), + [anon_sym_CARET] = ACTIONS(2503), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_LT_DASH] = ACTIONS(2503), + [anon_sym_LT_LT] = ACTIONS(2503), + [anon_sym_GT_GT] = ACTIONS(2505), + [anon_sym_GT_GT_GT] = ACTIONS(2503), + [anon_sym_AMP_CARET] = ACTIONS(2503), + [anon_sym_AMP_AMP] = ACTIONS(2503), + [anon_sym_PIPE_PIPE] = ACTIONS(2503), + [anon_sym_or] = ACTIONS(2505), + [sym_none] = ACTIONS(2505), + [sym_true] = ACTIONS(2505), + [sym_false] = ACTIONS(2505), + [sym_nil] = ACTIONS(2505), + [anon_sym_QMARK_DOT] = ACTIONS(2503), + [anon_sym_POUND_LBRACK] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2505), + [anon_sym_else] = ACTIONS(3881), + [anon_sym_DOLLARif] = ACTIONS(2505), + [anon_sym_is] = ACTIONS(2505), + [anon_sym_BANGis] = ACTIONS(2503), + [anon_sym_in] = ACTIONS(2505), + [anon_sym_BANGin] = ACTIONS(2503), + [anon_sym_match] = ACTIONS(2505), + [anon_sym_select] = ACTIONS(2505), + [anon_sym_lock] = ACTIONS(2505), + [anon_sym_rlock] = ACTIONS(2505), + [anon_sym_unsafe] = ACTIONS(2505), + [anon_sym_sql] = ACTIONS(2505), + [sym_int_literal] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2503), + [sym_rune_literal] = ACTIONS(2503), + [sym_pseudo_compile_time_identifier] = ACTIONS(2505), + [anon_sym_shared] = ACTIONS(2505), + [anon_sym_map_LBRACK] = ACTIONS(2503), + [anon_sym_chan] = ACTIONS(2505), + [anon_sym_thread] = ACTIONS(2505), + [anon_sym_atomic] = ACTIONS(2505), + [sym___double_quote] = ACTIONS(2503), + [sym___single_quote] = ACTIONS(2503), + [sym___c_double_quote] = ACTIONS(2503), + [sym___c_single_quote] = ACTIONS(2503), + [sym___r_double_quote] = ACTIONS(2503), + [sym___r_single_quote] = ACTIONS(2503), }, [1289] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), + [sym_else_branch] = STATE(1410), + [sym_identifier] = ACTIONS(2635), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2635), + [anon_sym_as] = ACTIONS(2635), + [anon_sym_LBRACE] = ACTIONS(2633), + [anon_sym_COMMA] = ACTIONS(2633), + [anon_sym_RBRACE] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2635), + [anon_sym_fn] = ACTIONS(2635), + [anon_sym_PLUS] = ACTIONS(2635), + [anon_sym_DASH] = ACTIONS(2635), + [anon_sym_STAR] = ACTIONS(2633), + [anon_sym_SLASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2633), + [anon_sym_LT] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2633), + [anon_sym_BANG_EQ] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2633), + [anon_sym_RBRACK] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2635), + [anon_sym_mut] = ACTIONS(2635), + [anon_sym_COLON] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2633), + [anon_sym_DASH_DASH] = ACTIONS(2633), + [anon_sym_QMARK] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2635), + [anon_sym_go] = ACTIONS(2635), + [anon_sym_spawn] = ACTIONS(2635), + [anon_sym_json_DOTdecode] = ACTIONS(2633), + [anon_sym_LBRACK2] = ACTIONS(2635), + [anon_sym_TILDE] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2633), + [anon_sym_AMP] = ACTIONS(2635), + [anon_sym_LT_DASH] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2633), + [anon_sym_GT_GT] = ACTIONS(2635), + [anon_sym_GT_GT_GT] = ACTIONS(2633), + [anon_sym_AMP_CARET] = ACTIONS(2633), + [anon_sym_AMP_AMP] = ACTIONS(2633), + [anon_sym_PIPE_PIPE] = ACTIONS(2633), + [anon_sym_or] = ACTIONS(2635), + [sym_none] = ACTIONS(2635), + [sym_true] = ACTIONS(2635), + [sym_false] = ACTIONS(2635), + [sym_nil] = ACTIONS(2635), + [anon_sym_QMARK_DOT] = ACTIONS(2633), + [anon_sym_POUND_LBRACK] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2635), + [anon_sym_else] = ACTIONS(3881), + [anon_sym_DOLLARif] = ACTIONS(2635), + [anon_sym_is] = ACTIONS(2635), + [anon_sym_BANGis] = ACTIONS(2633), + [anon_sym_in] = ACTIONS(2635), + [anon_sym_BANGin] = ACTIONS(2633), + [anon_sym_match] = ACTIONS(2635), + [anon_sym_select] = ACTIONS(2635), + [anon_sym_lock] = ACTIONS(2635), + [anon_sym_rlock] = ACTIONS(2635), + [anon_sym_unsafe] = ACTIONS(2635), + [anon_sym_sql] = ACTIONS(2635), + [sym_int_literal] = ACTIONS(2635), + [sym_float_literal] = ACTIONS(2633), + [sym_rune_literal] = ACTIONS(2633), + [sym_pseudo_compile_time_identifier] = ACTIONS(2635), + [anon_sym_shared] = ACTIONS(2635), + [anon_sym_map_LBRACK] = ACTIONS(2633), + [anon_sym_chan] = ACTIONS(2635), + [anon_sym_thread] = ACTIONS(2635), + [anon_sym_atomic] = ACTIONS(2635), + [sym___double_quote] = ACTIONS(2633), + [sym___single_quote] = ACTIONS(2633), + [sym___c_double_quote] = ACTIONS(2633), + [sym___c_single_quote] = ACTIONS(2633), + [sym___r_double_quote] = ACTIONS(2633), + [sym___r_single_quote] = ACTIONS(2633), }, [1290] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(1839), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_format_specifier] = STATE(4106), + [sym_identifier] = ACTIONS(3883), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_RBRACE] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3881), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_EQ_EQ] = ACTIONS(3883), - [anon_sym_BANG_EQ] = ACTIONS(3883), - [anon_sym_LT_EQ] = ACTIONS(3883), - [anon_sym_GT_EQ] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_COLON] = ACTIONS(1837), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(1839), - [anon_sym_spawn] = ACTIONS(1839), - [anon_sym_json_DOTdecode] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_nil] = ACTIONS(1839), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3903), - [anon_sym_BANGin] = ACTIONS(3905), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_select] = ACTIONS(1839), - [anon_sym_lock] = ACTIONS(1839), - [anon_sym_rlock] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1839), - [sym_int_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1837), - [sym_rune_literal] = ACTIONS(1837), - [sym_pseudo_compile_time_identifier] = ACTIONS(1839), - [anon_sym_shared] = ACTIONS(1839), - [anon_sym_map_LBRACK] = ACTIONS(1837), - [anon_sym_chan] = ACTIONS(1839), - [anon_sym_thread] = ACTIONS(1839), - [anon_sym_atomic] = ACTIONS(1839), - [sym___double_quote] = ACTIONS(1837), - [sym___single_quote] = ACTIONS(1837), - [sym___c_double_quote] = ACTIONS(1837), - [sym___c_single_quote] = ACTIONS(1837), - [sym___r_double_quote] = ACTIONS(1837), - [sym___r_single_quote] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_RBRACE] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(3883), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(3883), + [anon_sym_mut] = ACTIONS(3883), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(3883), + [anon_sym_spawn] = ACTIONS(3883), + [anon_sym_json_DOTdecode] = ACTIONS(3887), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(3883), + [sym_true] = ACTIONS(3883), + [sym_false] = ACTIONS(3883), + [sym_nil] = ACTIONS(3883), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_DOLLARif] = ACTIONS(3883), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3917), + [anon_sym_BANGin] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(3883), + [anon_sym_select] = ACTIONS(3883), + [anon_sym_lock] = ACTIONS(3883), + [anon_sym_rlock] = ACTIONS(3883), + [anon_sym_unsafe] = ACTIONS(3883), + [anon_sym_sql] = ACTIONS(3883), + [sym_int_literal] = ACTIONS(3883), + [sym_float_literal] = ACTIONS(3887), + [sym_rune_literal] = ACTIONS(3887), + [sym_pseudo_compile_time_identifier] = ACTIONS(3883), + [anon_sym_shared] = ACTIONS(3883), + [anon_sym_map_LBRACK] = ACTIONS(3887), + [anon_sym_chan] = ACTIONS(3883), + [anon_sym_thread] = ACTIONS(3883), + [anon_sym_atomic] = ACTIONS(3883), + [sym___double_quote] = ACTIONS(3887), + [sym___single_quote] = ACTIONS(3887), + [sym___c_double_quote] = ACTIONS(3887), + [sym___c_single_quote] = ACTIONS(3887), + [sym___r_double_quote] = ACTIONS(3887), + [sym___r_single_quote] = ACTIONS(3887), }, [1291] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2179), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_format_specifier] = STATE(4225), + [sym_identifier] = ACTIONS(3883), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_COMMA] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_GT] = ACTIONS(2179), - [anon_sym_EQ_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ] = ACTIONS(2177), - [anon_sym_LT_EQ] = ACTIONS(2177), - [anon_sym_GT_EQ] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2179), - [anon_sym_spawn] = ACTIONS(2179), - [anon_sym_json_DOTdecode] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_or] = ACTIONS(2179), - [sym_none] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_nil] = ACTIONS(2179), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_DOLLARif] = ACTIONS(2179), - [anon_sym_is] = ACTIONS(2179), - [anon_sym_BANGis] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2179), - [anon_sym_BANGin] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_select] = ACTIONS(2179), - [anon_sym_lock] = ACTIONS(2179), - [anon_sym_rlock] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_sql] = ACTIONS(2179), - [sym_int_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2177), - [sym_rune_literal] = ACTIONS(2177), - [sym_pseudo_compile_time_identifier] = ACTIONS(2179), - [anon_sym_shared] = ACTIONS(2179), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2179), - [anon_sym_thread] = ACTIONS(2179), - [anon_sym_atomic] = ACTIONS(2179), - [sym___double_quote] = ACTIONS(2177), - [sym___single_quote] = ACTIONS(2177), - [sym___c_double_quote] = ACTIONS(2177), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2177), - [sym___r_single_quote] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_RBRACE] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(3883), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(3883), + [anon_sym_mut] = ACTIONS(3883), + [anon_sym_COLON] = ACTIONS(3899), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(3883), + [anon_sym_spawn] = ACTIONS(3883), + [anon_sym_json_DOTdecode] = ACTIONS(3887), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(3883), + [sym_true] = ACTIONS(3883), + [sym_false] = ACTIONS(3883), + [sym_nil] = ACTIONS(3883), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_DOLLARif] = ACTIONS(3883), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3917), + [anon_sym_BANGin] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(3883), + [anon_sym_select] = ACTIONS(3883), + [anon_sym_lock] = ACTIONS(3883), + [anon_sym_rlock] = ACTIONS(3883), + [anon_sym_unsafe] = ACTIONS(3883), + [anon_sym_sql] = ACTIONS(3883), + [sym_int_literal] = ACTIONS(3883), + [sym_float_literal] = ACTIONS(3887), + [sym_rune_literal] = ACTIONS(3887), + [sym_pseudo_compile_time_identifier] = ACTIONS(3883), + [anon_sym_shared] = ACTIONS(3883), + [anon_sym_map_LBRACK] = ACTIONS(3887), + [anon_sym_chan] = ACTIONS(3883), + [anon_sym_thread] = ACTIONS(3883), + [anon_sym_atomic] = ACTIONS(3883), + [sym___double_quote] = ACTIONS(3887), + [sym___single_quote] = ACTIONS(3887), + [sym___c_double_quote] = ACTIONS(3887), + [sym___c_single_quote] = ACTIONS(3887), + [sym___r_double_quote] = ACTIONS(3887), + [sym___r_single_quote] = ACTIONS(3887), }, [1292] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2059), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2057), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_or] = ACTIONS(2059), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(2059), - [anon_sym_BANGis] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_BANGin] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2057), - [sym_rune_literal] = ACTIONS(2057), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2057), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [sym___double_quote] = ACTIONS(2057), - [sym___single_quote] = ACTIONS(2057), - [sym___c_double_quote] = ACTIONS(2057), - [sym___c_single_quote] = ACTIONS(2057), - [sym___r_double_quote] = ACTIONS(2057), - [sym___r_single_quote] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1941), + [anon_sym_BANG_EQ] = ACTIONS(1941), + [anon_sym_LT_EQ] = ACTIONS(1941), + [anon_sym_GT_EQ] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), }, [1293] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1941), + [anon_sym_BANG_EQ] = ACTIONS(1941), + [anon_sym_LT_EQ] = ACTIONS(1941), + [anon_sym_GT_EQ] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), }, [1294] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(3927), + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1861), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3929), - [anon_sym_COMMA] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(3927), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(3929), - [anon_sym_struct] = ACTIONS(3927), - [anon_sym_mut] = ACTIONS(3927), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(3927), - [anon_sym_spawn] = ACTIONS(3927), - [anon_sym_json_DOTdecode] = ACTIONS(3929), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(3929), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(3929), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(3927), - [sym_true] = ACTIONS(3927), - [sym_false] = ACTIONS(3927), - [sym_nil] = ACTIONS(3927), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(3927), - [anon_sym_DOLLARif] = ACTIONS(3927), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [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(3929), - [sym_rune_literal] = ACTIONS(3929), - [sym_pseudo_compile_time_identifier] = ACTIONS(3927), - [anon_sym_shared] = ACTIONS(3927), - [anon_sym_map_LBRACK] = ACTIONS(3929), - [anon_sym_chan] = ACTIONS(3927), - [anon_sym_thread] = ACTIONS(3927), - [anon_sym_atomic] = ACTIONS(3927), - [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), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_COLON] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1861), + [anon_sym_spawn] = ACTIONS(1861), + [anon_sym_json_DOTdecode] = ACTIONS(1859), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_nil] = ACTIONS(1861), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_DOLLARif] = ACTIONS(1861), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3917), + [anon_sym_BANGin] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_select] = ACTIONS(1861), + [anon_sym_lock] = ACTIONS(1861), + [anon_sym_rlock] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_sql] = ACTIONS(1861), + [sym_int_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1859), + [sym_rune_literal] = ACTIONS(1859), + [sym_pseudo_compile_time_identifier] = ACTIONS(1861), + [anon_sym_shared] = ACTIONS(1861), + [anon_sym_map_LBRACK] = ACTIONS(1859), + [anon_sym_chan] = ACTIONS(1861), + [anon_sym_thread] = ACTIONS(1861), + [anon_sym_atomic] = ACTIONS(1861), + [sym___double_quote] = ACTIONS(1859), + [sym___single_quote] = ACTIONS(1859), + [sym___c_double_quote] = ACTIONS(1859), + [sym___c_single_quote] = ACTIONS(1859), + [sym___r_double_quote] = ACTIONS(1859), + [sym___r_single_quote] = ACTIONS(1859), }, [1295] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), + [sym_identifier] = ACTIONS(3249), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_RBRACK] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_COLON] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3247), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_CARET] = ACTIONS(3247), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3247), + [anon_sym_LT_LT] = ACTIONS(3247), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3247), + [anon_sym_AMP_CARET] = ACTIONS(3247), + [anon_sym_AMP_AMP] = ACTIONS(3247), + [anon_sym_PIPE_PIPE] = ACTIONS(3247), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3247), + [anon_sym_POUND_LBRACK] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3247), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3247), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3247), + [sym_rune_literal] = ACTIONS(3247), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3247), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3247), + [sym___single_quote] = ACTIONS(3247), + [sym___c_double_quote] = ACTIONS(3247), + [sym___c_single_quote] = ACTIONS(3247), + [sym___r_double_quote] = ACTIONS(3247), + [sym___r_single_quote] = ACTIONS(3247), + }, + [1296] = { + [sym_identifier] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_COMMA] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2683), + [anon_sym_BANG_EQ] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2683), + [anon_sym_AMP_CARET] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_PIPE_PIPE] = ACTIONS(2683), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2683), + [anon_sym_POUND_LBRACK] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_DOLLARelse] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2683), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2683), + [sym_rune_literal] = ACTIONS(2683), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2683), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2683), + [sym___single_quote] = ACTIONS(2683), + [sym___c_double_quote] = ACTIONS(2683), + [sym___c_single_quote] = ACTIONS(2683), + [sym___r_double_quote] = ACTIONS(2683), + [sym___r_single_quote] = ACTIONS(2683), + }, + [1297] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3917), + [anon_sym_BANGin] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), + }, + [1298] = { + [sym_identifier] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_DOLLARelse] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2647), + [sym___single_quote] = ACTIONS(2647), + [sym___c_double_quote] = ACTIONS(2647), + [sym___c_single_quote] = ACTIONS(2647), + [sym___r_double_quote] = ACTIONS(2647), + [sym___r_single_quote] = ACTIONS(2647), + }, + [1299] = { + [sym_identifier] = ACTIONS(2873), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2873), + [anon_sym_as] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_COMMA] = ACTIONS(2871), + [anon_sym_RBRACE] = ACTIONS(2871), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_fn] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ] = ACTIONS(2871), + [anon_sym_LT_EQ] = ACTIONS(2871), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_RBRACK] = ACTIONS(2871), + [anon_sym_struct] = ACTIONS(2873), + [anon_sym_mut] = ACTIONS(2873), + [anon_sym_COLON] = ACTIONS(2871), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_QMARK] = ACTIONS(2873), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_go] = ACTIONS(2873), + [anon_sym_spawn] = ACTIONS(2873), + [anon_sym_json_DOTdecode] = ACTIONS(2871), + [anon_sym_LBRACK2] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_LT_DASH] = ACTIONS(2871), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2871), + [anon_sym_AMP_CARET] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_PIPE_PIPE] = ACTIONS(2871), + [anon_sym_or] = ACTIONS(2873), + [sym_none] = ACTIONS(2873), + [sym_true] = ACTIONS(2873), + [sym_false] = ACTIONS(2873), + [sym_nil] = ACTIONS(2873), + [anon_sym_QMARK_DOT] = ACTIONS(2871), + [anon_sym_POUND_LBRACK] = ACTIONS(2871), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_DOLLARif] = ACTIONS(2873), + [anon_sym_DOLLARelse] = ACTIONS(3929), + [anon_sym_is] = ACTIONS(2873), + [anon_sym_BANGis] = ACTIONS(2871), + [anon_sym_in] = ACTIONS(2873), + [anon_sym_BANGin] = ACTIONS(2871), + [anon_sym_match] = ACTIONS(2873), + [anon_sym_select] = ACTIONS(2873), + [anon_sym_lock] = ACTIONS(2873), + [anon_sym_rlock] = ACTIONS(2873), + [anon_sym_unsafe] = ACTIONS(2873), + [anon_sym_sql] = ACTIONS(2873), + [sym_int_literal] = ACTIONS(2873), + [sym_float_literal] = ACTIONS(2871), + [sym_rune_literal] = ACTIONS(2871), + [sym_pseudo_compile_time_identifier] = ACTIONS(2873), + [anon_sym_shared] = ACTIONS(2873), + [anon_sym_map_LBRACK] = ACTIONS(2871), + [anon_sym_chan] = ACTIONS(2873), + [anon_sym_thread] = ACTIONS(2873), + [anon_sym_atomic] = ACTIONS(2873), + [sym___double_quote] = ACTIONS(2871), + [sym___single_quote] = ACTIONS(2871), + [sym___c_double_quote] = ACTIONS(2871), + [sym___c_single_quote] = ACTIONS(2871), + [sym___r_double_quote] = ACTIONS(2871), + [sym___r_single_quote] = ACTIONS(2871), + }, + [1300] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2067), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2065), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(2065), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(2067), + [anon_sym_spawn] = ACTIONS(2067), + [anon_sym_json_DOTdecode] = ACTIONS(2065), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(2065), + [anon_sym_PIPE_PIPE] = ACTIONS(2065), + [anon_sym_or] = ACTIONS(2067), + [sym_none] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_nil] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_DOLLARif] = ACTIONS(2067), + [anon_sym_is] = ACTIONS(2067), + [anon_sym_BANGis] = ACTIONS(2065), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_BANGin] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_select] = ACTIONS(2067), + [anon_sym_lock] = ACTIONS(2067), + [anon_sym_rlock] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_sql] = ACTIONS(2067), + [sym_int_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2065), + [sym_rune_literal] = ACTIONS(2065), + [sym_pseudo_compile_time_identifier] = ACTIONS(2067), + [anon_sym_shared] = ACTIONS(2067), + [anon_sym_map_LBRACK] = ACTIONS(2065), + [anon_sym_chan] = ACTIONS(2067), + [anon_sym_thread] = ACTIONS(2067), + [anon_sym_atomic] = ACTIONS(2067), + [sym___double_quote] = ACTIONS(2065), + [sym___single_quote] = ACTIONS(2065), + [sym___c_double_quote] = ACTIONS(2065), + [sym___c_single_quote] = ACTIONS(2065), + [sym___r_double_quote] = ACTIONS(2065), + [sym___r_single_quote] = ACTIONS(2065), + }, + [1301] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1865), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1863), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_mut] = ACTIONS(1865), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1865), + [anon_sym_spawn] = ACTIONS(1865), + [anon_sym_json_DOTdecode] = ACTIONS(1863), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1865), + [sym_none] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_nil] = ACTIONS(1865), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1865), + [anon_sym_is] = ACTIONS(1865), + [anon_sym_BANGis] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_BANGin] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_select] = ACTIONS(1865), + [anon_sym_lock] = ACTIONS(1865), + [anon_sym_rlock] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1865), + [sym_int_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1863), + [sym_rune_literal] = ACTIONS(1863), + [sym_pseudo_compile_time_identifier] = ACTIONS(1865), + [anon_sym_shared] = ACTIONS(1865), + [anon_sym_map_LBRACK] = ACTIONS(1863), + [anon_sym_chan] = ACTIONS(1865), + [anon_sym_thread] = ACTIONS(1865), + [anon_sym_atomic] = ACTIONS(1865), + [sym___double_quote] = ACTIONS(1863), + [sym___single_quote] = ACTIONS(1863), + [sym___c_double_quote] = ACTIONS(1863), + [sym___c_single_quote] = ACTIONS(1863), + [sym___r_double_quote] = ACTIONS(1863), + [sym___r_single_quote] = ACTIONS(1863), + }, + [1302] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_LT_EQ] = ACTIONS(3933), + [anon_sym_GT_EQ] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3935), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(3937), + [anon_sym_BANGin] = ACTIONS(3939), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), + }, + [1303] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_LT_EQ] = ACTIONS(3933), + [anon_sym_GT_EQ] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(3937), + [anon_sym_BANGin] = ACTIONS(3939), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), + }, + [1304] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1941), + [anon_sym_BANG_EQ] = ACTIONS(1941), + [anon_sym_LT_EQ] = ACTIONS(1941), + [anon_sym_GT_EQ] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), + }, + [1305] = { + [sym_identifier] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3426), + [anon_sym_DOT] = ACTIONS(3428), + [anon_sym_as] = ACTIONS(3428), + [anon_sym_LBRACE] = ACTIONS(3426), + [anon_sym_COMMA] = ACTIONS(3426), + [anon_sym_RBRACE] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3426), + [anon_sym_PIPE] = ACTIONS(3428), + [anon_sym_fn] = ACTIONS(3428), + [anon_sym_PLUS] = ACTIONS(3428), + [anon_sym_DASH] = ACTIONS(3428), + [anon_sym_STAR] = ACTIONS(3426), + [anon_sym_SLASH] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3426), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3426), + [anon_sym_BANG_EQ] = ACTIONS(3426), + [anon_sym_LT_EQ] = ACTIONS(3426), + [anon_sym_GT_EQ] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3426), + [anon_sym_RBRACK] = ACTIONS(3426), + [anon_sym_struct] = ACTIONS(3428), + [anon_sym_mut] = ACTIONS(3428), + [anon_sym_COLON] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3426), + [anon_sym_DASH_DASH] = ACTIONS(3426), + [anon_sym_QMARK] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_go] = ACTIONS(3428), + [anon_sym_spawn] = ACTIONS(3428), + [anon_sym_json_DOTdecode] = ACTIONS(3426), + [anon_sym_LBRACK2] = ACTIONS(3428), + [anon_sym_TILDE] = ACTIONS(3426), + [anon_sym_CARET] = ACTIONS(3426), + [anon_sym_AMP] = ACTIONS(3428), + [anon_sym_LT_DASH] = ACTIONS(3426), + [anon_sym_LT_LT] = ACTIONS(3426), + [anon_sym_GT_GT] = ACTIONS(3428), + [anon_sym_GT_GT_GT] = ACTIONS(3426), + [anon_sym_AMP_CARET] = ACTIONS(3426), + [anon_sym_AMP_AMP] = ACTIONS(3426), + [anon_sym_PIPE_PIPE] = ACTIONS(3426), + [anon_sym_or] = ACTIONS(3428), + [sym_none] = ACTIONS(3428), + [sym_true] = ACTIONS(3428), + [sym_false] = ACTIONS(3428), + [sym_nil] = ACTIONS(3428), + [anon_sym_QMARK_DOT] = ACTIONS(3426), + [anon_sym_POUND_LBRACK] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3428), + [anon_sym_DOLLARif] = ACTIONS(3428), + [anon_sym_is] = ACTIONS(3428), + [anon_sym_BANGis] = ACTIONS(3426), + [anon_sym_in] = ACTIONS(3428), + [anon_sym_BANGin] = ACTIONS(3426), + [anon_sym_match] = ACTIONS(3428), + [anon_sym_select] = ACTIONS(3428), + [anon_sym_lock] = ACTIONS(3428), + [anon_sym_rlock] = ACTIONS(3428), + [anon_sym_unsafe] = ACTIONS(3428), + [anon_sym_sql] = ACTIONS(3428), + [sym_int_literal] = ACTIONS(3428), + [sym_float_literal] = ACTIONS(3426), + [sym_rune_literal] = ACTIONS(3426), + [sym_pseudo_compile_time_identifier] = ACTIONS(3428), + [anon_sym_shared] = ACTIONS(3428), + [anon_sym_map_LBRACK] = ACTIONS(3426), + [anon_sym_chan] = ACTIONS(3428), + [anon_sym_thread] = ACTIONS(3428), + [anon_sym_atomic] = ACTIONS(3428), + [sym___double_quote] = ACTIONS(3426), + [sym___single_quote] = ACTIONS(3426), + [sym___c_double_quote] = ACTIONS(3426), + [sym___c_single_quote] = ACTIONS(3426), + [sym___r_double_quote] = ACTIONS(3426), + [sym___r_single_quote] = ACTIONS(3426), + }, + [1306] = { + [sym_identifier] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_DOT] = ACTIONS(3099), + [anon_sym_as] = ACTIONS(3099), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_COMMA] = ACTIONS(3097), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_PIPE] = ACTIONS(3099), + [anon_sym_fn] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_SLASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3097), + [anon_sym_BANG_EQ] = ACTIONS(3097), + [anon_sym_LT_EQ] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_RBRACK] = ACTIONS(3097), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_mut] = ACTIONS(3099), + [anon_sym_COLON] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3097), + [anon_sym_DASH_DASH] = ACTIONS(3097), + [anon_sym_QMARK] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3099), + [anon_sym_go] = ACTIONS(3099), + [anon_sym_spawn] = ACTIONS(3099), + [anon_sym_json_DOTdecode] = ACTIONS(3097), + [anon_sym_LBRACK2] = ACTIONS(3099), + [anon_sym_TILDE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3099), + [anon_sym_LT_DASH] = ACTIONS(3097), + [anon_sym_LT_LT] = ACTIONS(3097), + [anon_sym_GT_GT] = ACTIONS(3099), + [anon_sym_GT_GT_GT] = ACTIONS(3097), + [anon_sym_AMP_CARET] = ACTIONS(3097), + [anon_sym_AMP_AMP] = ACTIONS(3097), + [anon_sym_PIPE_PIPE] = ACTIONS(3097), + [anon_sym_or] = ACTIONS(3099), + [sym_none] = ACTIONS(3099), + [sym_true] = ACTIONS(3099), + [sym_false] = ACTIONS(3099), + [sym_nil] = ACTIONS(3099), + [anon_sym_QMARK_DOT] = ACTIONS(3097), + [anon_sym_POUND_LBRACK] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_DOLLARif] = ACTIONS(3099), + [anon_sym_is] = ACTIONS(3099), + [anon_sym_BANGis] = ACTIONS(3097), + [anon_sym_in] = ACTIONS(3099), + [anon_sym_BANGin] = ACTIONS(3097), + [anon_sym_match] = ACTIONS(3099), + [anon_sym_select] = ACTIONS(3099), + [anon_sym_lock] = ACTIONS(3099), + [anon_sym_rlock] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_sql] = ACTIONS(3099), + [sym_int_literal] = ACTIONS(3099), + [sym_float_literal] = ACTIONS(3097), + [sym_rune_literal] = ACTIONS(3097), + [sym_pseudo_compile_time_identifier] = ACTIONS(3099), + [anon_sym_shared] = ACTIONS(3099), + [anon_sym_map_LBRACK] = ACTIONS(3097), + [anon_sym_chan] = ACTIONS(3099), + [anon_sym_thread] = ACTIONS(3099), + [anon_sym_atomic] = ACTIONS(3099), + [sym___double_quote] = ACTIONS(3097), + [sym___single_quote] = ACTIONS(3097), + [sym___c_double_quote] = ACTIONS(3097), + [sym___c_single_quote] = ACTIONS(3097), + [sym___r_double_quote] = ACTIONS(3097), + [sym___r_single_quote] = ACTIONS(3097), + }, + [1307] = { + [sym_type_parameters] = STATE(1388), + [sym_identifier] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2713), + [anon_sym_BANG_EQ] = ACTIONS(2713), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_RBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2713), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2713), + [anon_sym_LT_LT] = ACTIONS(2713), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2713), + [anon_sym_AMP_CARET] = ACTIONS(2713), + [anon_sym_AMP_AMP] = ACTIONS(2713), + [anon_sym_PIPE_PIPE] = ACTIONS(2713), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2713), + [anon_sym_POUND_LBRACK] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2713), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2713), + [sym_rune_literal] = ACTIONS(2713), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2713), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2713), + [sym___single_quote] = ACTIONS(2713), + [sym___c_double_quote] = ACTIONS(2713), + [sym___c_single_quote] = ACTIONS(2713), + [sym___r_double_quote] = ACTIONS(2713), + [sym___r_single_quote] = ACTIONS(2713), + }, + [1308] = { + [sym_identifier] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(2725), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_COMMA] = ACTIONS(2725), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2732), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_COLON] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2725), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_AMP_CARET] = ACTIONS(2725), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2725), + [anon_sym_POUND_LBRACK] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2725), + [sym_rune_literal] = ACTIONS(2725), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2725), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2725), + [sym___single_quote] = ACTIONS(2725), + [sym___c_double_quote] = ACTIONS(2725), + [sym___c_single_quote] = ACTIONS(2725), + [sym___r_double_quote] = ACTIONS(2725), + [sym___r_single_quote] = ACTIONS(2725), + }, + [1309] = { + [sym_identifier] = ACTIONS(3133), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(3133), + [anon_sym_as] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_COMMA] = ACTIONS(3131), + [anon_sym_RBRACE] = ACTIONS(3131), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_fn] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_EQ_EQ] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3131), + [anon_sym_LT_EQ] = ACTIONS(3131), + [anon_sym_GT_EQ] = ACTIONS(3131), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_RBRACK] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3133), + [anon_sym_mut] = ACTIONS(3133), + [anon_sym_COLON] = ACTIONS(3131), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_QMARK] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_go] = ACTIONS(3133), + [anon_sym_spawn] = ACTIONS(3133), + [anon_sym_json_DOTdecode] = ACTIONS(3131), + [anon_sym_LBRACK2] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_CARET] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_LT_DASH] = ACTIONS(3131), + [anon_sym_LT_LT] = ACTIONS(3131), + [anon_sym_GT_GT] = ACTIONS(3133), + [anon_sym_GT_GT_GT] = ACTIONS(3131), + [anon_sym_AMP_CARET] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_or] = ACTIONS(3133), + [sym_none] = ACTIONS(3133), + [sym_true] = ACTIONS(3133), + [sym_false] = ACTIONS(3133), + [sym_nil] = ACTIONS(3133), + [anon_sym_QMARK_DOT] = ACTIONS(3131), + [anon_sym_POUND_LBRACK] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_DOLLARif] = ACTIONS(3133), + [anon_sym_is] = ACTIONS(3133), + [anon_sym_BANGis] = ACTIONS(3131), + [anon_sym_in] = ACTIONS(3133), + [anon_sym_BANGin] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3133), + [anon_sym_select] = ACTIONS(3133), + [anon_sym_lock] = ACTIONS(3133), + [anon_sym_rlock] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(3133), + [anon_sym_sql] = ACTIONS(3133), + [sym_int_literal] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3131), + [sym_rune_literal] = ACTIONS(3131), + [sym_pseudo_compile_time_identifier] = ACTIONS(3133), + [anon_sym_shared] = ACTIONS(3133), + [anon_sym_map_LBRACK] = ACTIONS(3131), + [anon_sym_chan] = ACTIONS(3133), + [anon_sym_thread] = ACTIONS(3133), + [anon_sym_atomic] = ACTIONS(3133), + [sym___double_quote] = ACTIONS(3131), + [sym___single_quote] = ACTIONS(3131), + [sym___c_double_quote] = ACTIONS(3131), + [sym___c_single_quote] = ACTIONS(3131), + [sym___r_double_quote] = ACTIONS(3131), + [sym___r_single_quote] = ACTIONS(3131), + }, + [1310] = { + [sym_identifier] = ACTIONS(2643), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_as] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_COMMA] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_RBRACK] = ACTIONS(2641), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_mut] = ACTIONS(2643), + [anon_sym_COLON] = ACTIONS(2641), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_QMARK] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_go] = ACTIONS(2643), + [anon_sym_spawn] = ACTIONS(2643), + [anon_sym_json_DOTdecode] = ACTIONS(2641), + [anon_sym_LBRACK2] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2641), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_AMP_CARET] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_or] = ACTIONS(2643), + [sym_none] = ACTIONS(2643), + [sym_true] = ACTIONS(2643), + [sym_false] = ACTIONS(2643), + [sym_nil] = ACTIONS(2643), + [anon_sym_QMARK_DOT] = ACTIONS(2641), + [anon_sym_POUND_LBRACK] = ACTIONS(2641), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_DOLLARif] = ACTIONS(2643), + [anon_sym_DOLLARelse] = ACTIONS(3941), + [anon_sym_is] = ACTIONS(2643), + [anon_sym_BANGis] = ACTIONS(2641), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_BANGin] = ACTIONS(2641), + [anon_sym_match] = ACTIONS(2643), + [anon_sym_select] = ACTIONS(2643), + [anon_sym_lock] = ACTIONS(2643), + [anon_sym_rlock] = ACTIONS(2643), + [anon_sym_unsafe] = ACTIONS(2643), + [anon_sym_sql] = ACTIONS(2643), + [sym_int_literal] = ACTIONS(2643), + [sym_float_literal] = ACTIONS(2641), + [sym_rune_literal] = ACTIONS(2641), + [sym_pseudo_compile_time_identifier] = ACTIONS(2643), + [anon_sym_shared] = ACTIONS(2643), + [anon_sym_map_LBRACK] = ACTIONS(2641), + [anon_sym_chan] = ACTIONS(2643), + [anon_sym_thread] = ACTIONS(2643), + [anon_sym_atomic] = ACTIONS(2643), + [sym___double_quote] = ACTIONS(2641), + [sym___single_quote] = ACTIONS(2641), + [sym___c_double_quote] = ACTIONS(2641), + [sym___c_single_quote] = ACTIONS(2641), + [sym___r_double_quote] = ACTIONS(2641), + [sym___r_single_quote] = ACTIONS(2641), + }, + [1311] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(1881), + [anon_sym_DASH] = ACTIONS(1881), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1941), + [anon_sym_BANG_EQ] = ACTIONS(1941), + [anon_sym_LT_EQ] = ACTIONS(1941), + [anon_sym_GT_EQ] = ACTIONS(1941), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(1881), + [anon_sym_BANGin] = ACTIONS(1941), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), + }, + [1312] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(3943), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3945), + [anon_sym_COMMA] = ACTIONS(3947), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(3943), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_LT_EQ] = ACTIONS(3933), + [anon_sym_GT_EQ] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(3945), + [anon_sym_struct] = ACTIONS(3943), + [anon_sym_mut] = ACTIONS(3943), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(3943), + [anon_sym_spawn] = ACTIONS(3943), + [anon_sym_json_DOTdecode] = ACTIONS(3945), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3945), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(3945), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3935), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(3943), + [sym_true] = ACTIONS(3943), + [sym_false] = ACTIONS(3943), + [sym_nil] = ACTIONS(3943), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3943), + [anon_sym_DOLLARif] = ACTIONS(3943), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3937), + [anon_sym_BANGin] = ACTIONS(3939), + [anon_sym_match] = ACTIONS(3943), + [anon_sym_select] = ACTIONS(3943), + [anon_sym_lock] = ACTIONS(3943), + [anon_sym_rlock] = ACTIONS(3943), + [anon_sym_unsafe] = ACTIONS(3943), + [anon_sym_sql] = ACTIONS(3943), + [sym_int_literal] = ACTIONS(3943), + [sym_float_literal] = ACTIONS(3945), + [sym_rune_literal] = ACTIONS(3945), + [sym_pseudo_compile_time_identifier] = ACTIONS(3943), + [anon_sym_shared] = ACTIONS(3943), + [anon_sym_map_LBRACK] = ACTIONS(3945), + [anon_sym_chan] = ACTIONS(3943), + [anon_sym_thread] = ACTIONS(3943), + [anon_sym_atomic] = ACTIONS(3943), + [sym___double_quote] = ACTIONS(3945), + [sym___single_quote] = ACTIONS(3945), + [sym___c_double_quote] = ACTIONS(3945), + [sym___c_single_quote] = ACTIONS(3945), + [sym___r_double_quote] = ACTIONS(3945), + [sym___r_single_quote] = ACTIONS(3945), + }, + [1313] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(2067), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2065), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(2067), + [anon_sym_mut] = ACTIONS(2067), + [anon_sym_COLON] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2065), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(2067), + [anon_sym_spawn] = ACTIONS(2067), + [anon_sym_json_DOTdecode] = ACTIONS(2065), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(2065), + [anon_sym_PIPE_PIPE] = ACTIONS(2065), + [anon_sym_or] = ACTIONS(2067), + [sym_none] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_nil] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_DOLLARif] = ACTIONS(2067), + [anon_sym_is] = ACTIONS(2067), + [anon_sym_BANGis] = ACTIONS(2065), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_BANGin] = ACTIONS(2065), + [anon_sym_match] = ACTIONS(2067), + [anon_sym_select] = ACTIONS(2067), + [anon_sym_lock] = ACTIONS(2067), + [anon_sym_rlock] = ACTIONS(2067), + [anon_sym_unsafe] = ACTIONS(2067), + [anon_sym_sql] = ACTIONS(2067), + [sym_int_literal] = ACTIONS(2067), + [sym_float_literal] = ACTIONS(2065), + [sym_rune_literal] = ACTIONS(2065), + [sym_pseudo_compile_time_identifier] = ACTIONS(2067), + [anon_sym_shared] = ACTIONS(2067), + [anon_sym_map_LBRACK] = ACTIONS(2065), + [anon_sym_chan] = ACTIONS(2067), + [anon_sym_thread] = ACTIONS(2067), + [anon_sym_atomic] = ACTIONS(2067), + [sym___double_quote] = ACTIONS(2065), + [sym___single_quote] = ACTIONS(2065), + [sym___c_double_quote] = ACTIONS(2065), + [sym___c_single_quote] = ACTIONS(2065), + [sym___r_double_quote] = ACTIONS(2065), + [sym___r_single_quote] = ACTIONS(2065), + }, + [1314] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1865), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(1865), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1863), + [anon_sym_BANG_EQ] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(1865), + [anon_sym_mut] = ACTIONS(1865), + [anon_sym_COLON] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1863), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1865), + [anon_sym_spawn] = ACTIONS(1865), + [anon_sym_json_DOTdecode] = ACTIONS(1863), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(1863), + [anon_sym_PIPE_PIPE] = ACTIONS(1863), + [anon_sym_or] = ACTIONS(1865), + [sym_none] = ACTIONS(1865), + [sym_true] = ACTIONS(1865), + [sym_false] = ACTIONS(1865), + [sym_nil] = ACTIONS(1865), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_DOLLARif] = ACTIONS(1865), + [anon_sym_is] = ACTIONS(1865), + [anon_sym_BANGis] = ACTIONS(1863), + [anon_sym_in] = ACTIONS(1865), + [anon_sym_BANGin] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1865), + [anon_sym_select] = ACTIONS(1865), + [anon_sym_lock] = ACTIONS(1865), + [anon_sym_rlock] = ACTIONS(1865), + [anon_sym_unsafe] = ACTIONS(1865), + [anon_sym_sql] = ACTIONS(1865), + [sym_int_literal] = ACTIONS(1865), + [sym_float_literal] = ACTIONS(1863), + [sym_rune_literal] = ACTIONS(1863), + [sym_pseudo_compile_time_identifier] = ACTIONS(1865), + [anon_sym_shared] = ACTIONS(1865), + [anon_sym_map_LBRACK] = ACTIONS(1863), + [anon_sym_chan] = ACTIONS(1865), + [anon_sym_thread] = ACTIONS(1865), + [anon_sym_atomic] = ACTIONS(1865), + [sym___double_quote] = ACTIONS(1863), + [sym___single_quote] = ACTIONS(1863), + [sym___c_double_quote] = ACTIONS(1863), + [sym___c_single_quote] = ACTIONS(1863), + [sym___r_double_quote] = ACTIONS(1863), + [sym___r_single_quote] = ACTIONS(1863), + }, + [1315] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(3917), + [anon_sym_BANGin] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), + }, + [1316] = { + [sym_identifier] = ACTIONS(2649), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_else] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2647), + [sym___single_quote] = ACTIONS(2647), + [sym___c_double_quote] = ACTIONS(2647), + [sym___c_single_quote] = ACTIONS(2647), + [sym___r_double_quote] = ACTIONS(2647), + [sym___r_single_quote] = ACTIONS(2647), + }, + [1317] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1849), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(1849), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_LT_EQ] = ACTIONS(3933), + [anon_sym_GT_EQ] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1847), + [anon_sym_struct] = ACTIONS(1849), + [anon_sym_mut] = ACTIONS(1849), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1849), + [anon_sym_spawn] = ACTIONS(1849), + [anon_sym_json_DOTdecode] = ACTIONS(1847), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3935), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(1849), + [sym_true] = ACTIONS(1849), + [sym_false] = ACTIONS(1849), + [sym_nil] = ACTIONS(1849), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_DOLLARif] = ACTIONS(1849), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3937), + [anon_sym_BANGin] = ACTIONS(3939), + [anon_sym_match] = ACTIONS(1849), + [anon_sym_select] = ACTIONS(1849), + [anon_sym_lock] = ACTIONS(1849), + [anon_sym_rlock] = ACTIONS(1849), + [anon_sym_unsafe] = ACTIONS(1849), + [anon_sym_sql] = ACTIONS(1849), + [sym_int_literal] = ACTIONS(1849), + [sym_float_literal] = ACTIONS(1847), + [sym_rune_literal] = ACTIONS(1847), + [sym_pseudo_compile_time_identifier] = ACTIONS(1849), + [anon_sym_shared] = ACTIONS(1849), + [anon_sym_map_LBRACK] = ACTIONS(1847), + [anon_sym_chan] = ACTIONS(1849), + [anon_sym_thread] = ACTIONS(1849), + [anon_sym_atomic] = ACTIONS(1849), + [sym___double_quote] = ACTIONS(1847), + [sym___single_quote] = ACTIONS(1847), + [sym___c_double_quote] = ACTIONS(1847), + [sym___c_single_quote] = ACTIONS(1847), + [sym___r_double_quote] = ACTIONS(1847), + [sym___r_single_quote] = ACTIONS(1847), + }, + [1318] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1861), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3921), + [anon_sym_fn] = ACTIONS(1861), + [anon_sym_PLUS] = ACTIONS(3921), + [anon_sym_DASH] = ACTIONS(3921), + [anon_sym_STAR] = ACTIONS(3923), + [anon_sym_SLASH] = ACTIONS(3925), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_LT] = ACTIONS(3931), + [anon_sym_GT] = ACTIONS(3931), + [anon_sym_EQ_EQ] = ACTIONS(3933), + [anon_sym_BANG_EQ] = ACTIONS(3933), + [anon_sym_LT_EQ] = ACTIONS(3933), + [anon_sym_GT_EQ] = ACTIONS(3933), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_RBRACK] = ACTIONS(1859), + [anon_sym_struct] = ACTIONS(1861), + [anon_sym_mut] = ACTIONS(1861), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1861), + [anon_sym_spawn] = ACTIONS(1861), + [anon_sym_json_DOTdecode] = ACTIONS(1859), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(3927), + [anon_sym_AMP] = ACTIONS(3925), + [anon_sym_LT_DASH] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(3923), + [anon_sym_GT_GT] = ACTIONS(3925), + [anon_sym_GT_GT_GT] = ACTIONS(3923), + [anon_sym_AMP_CARET] = ACTIONS(3923), + [anon_sym_AMP_AMP] = ACTIONS(3935), + [anon_sym_PIPE_PIPE] = ACTIONS(3949), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(1861), + [sym_true] = ACTIONS(1861), + [sym_false] = ACTIONS(1861), + [sym_nil] = ACTIONS(1861), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_DOLLARif] = ACTIONS(1861), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3937), + [anon_sym_BANGin] = ACTIONS(3939), + [anon_sym_match] = ACTIONS(1861), + [anon_sym_select] = ACTIONS(1861), + [anon_sym_lock] = ACTIONS(1861), + [anon_sym_rlock] = ACTIONS(1861), + [anon_sym_unsafe] = ACTIONS(1861), + [anon_sym_sql] = ACTIONS(1861), + [sym_int_literal] = ACTIONS(1861), + [sym_float_literal] = ACTIONS(1859), + [sym_rune_literal] = ACTIONS(1859), + [sym_pseudo_compile_time_identifier] = ACTIONS(1861), + [anon_sym_shared] = ACTIONS(1861), + [anon_sym_map_LBRACK] = ACTIONS(1859), + [anon_sym_chan] = ACTIONS(1861), + [anon_sym_thread] = ACTIONS(1861), + [anon_sym_atomic] = ACTIONS(1861), + [sym___double_quote] = ACTIONS(1859), + [sym___single_quote] = ACTIONS(1859), + [sym___c_double_quote] = ACTIONS(1859), + [sym___c_single_quote] = ACTIONS(1859), + [sym___r_double_quote] = ACTIONS(1859), + [sym___r_single_quote] = ACTIONS(1859), + }, + [1319] = { + [sym_identifier] = ACTIONS(2685), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_as] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2683), + [anon_sym_COMMA] = ACTIONS(2683), + [anon_sym_RBRACE] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2683), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PERCENT] = ACTIONS(2683), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_EQ_EQ] = ACTIONS(2683), + [anon_sym_BANG_EQ] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2683), + [anon_sym_RBRACK] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_COLON] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2683), + [anon_sym_DASH_DASH] = ACTIONS(2683), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2683), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2683), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2683), + [anon_sym_AMP_CARET] = ACTIONS(2683), + [anon_sym_AMP_AMP] = ACTIONS(2683), + [anon_sym_PIPE_PIPE] = ACTIONS(2683), + [anon_sym_or] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_QMARK_DOT] = ACTIONS(2683), + [anon_sym_POUND_LBRACK] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_is] = ACTIONS(2685), + [anon_sym_BANGis] = ACTIONS(2683), + [anon_sym_in] = ACTIONS(2685), + [anon_sym_BANGin] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2683), + [sym_rune_literal] = ACTIONS(2683), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2683), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2683), + [sym___single_quote] = ACTIONS(2683), + [sym___c_double_quote] = ACTIONS(2683), + [sym___c_single_quote] = ACTIONS(2683), + [sym___r_double_quote] = ACTIONS(2683), + [sym___r_single_quote] = ACTIONS(2683), + }, + [1320] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(1881), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(1881), + [anon_sym_mut] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1941), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(1881), + [anon_sym_spawn] = ACTIONS(1881), + [anon_sym_json_DOTdecode] = ACTIONS(1941), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(1941), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_or] = ACTIONS(1881), + [sym_none] = ACTIONS(1881), + [sym_true] = ACTIONS(1881), + [sym_false] = ACTIONS(1881), + [sym_nil] = ACTIONS(1881), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_DOLLARif] = ACTIONS(1881), + [anon_sym_is] = ACTIONS(1881), + [anon_sym_BANGis] = ACTIONS(1941), + [anon_sym_in] = ACTIONS(3917), + [anon_sym_BANGin] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(1881), + [anon_sym_select] = ACTIONS(1881), + [anon_sym_lock] = ACTIONS(1881), + [anon_sym_rlock] = ACTIONS(1881), + [anon_sym_unsafe] = ACTIONS(1881), + [anon_sym_sql] = ACTIONS(1881), + [sym_int_literal] = ACTIONS(1881), + [sym_float_literal] = ACTIONS(1941), + [sym_rune_literal] = ACTIONS(1941), + [sym_pseudo_compile_time_identifier] = ACTIONS(1881), + [anon_sym_shared] = ACTIONS(1881), + [anon_sym_map_LBRACK] = ACTIONS(1941), + [anon_sym_chan] = ACTIONS(1881), + [anon_sym_thread] = ACTIONS(1881), + [anon_sym_atomic] = ACTIONS(1881), + [sym___double_quote] = ACTIONS(1941), + [sym___single_quote] = ACTIONS(1941), + [sym___c_double_quote] = ACTIONS(1941), + [sym___c_single_quote] = ACTIONS(1941), + [sym___r_double_quote] = ACTIONS(1941), + [sym___r_single_quote] = ACTIONS(1941), + }, + [1321] = { + [sym_identifier] = ACTIONS(3209), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_DOT] = ACTIONS(3209), + [anon_sym_as] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_COMMA] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_fn] = ACTIONS(3209), + [anon_sym_PLUS] = ACTIONS(3209), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3207), + [anon_sym_SLASH] = ACTIONS(3209), + [anon_sym_PERCENT] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3207), + [anon_sym_BANG_EQ] = ACTIONS(3207), + [anon_sym_LT_EQ] = ACTIONS(3207), + [anon_sym_GT_EQ] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_RBRACK] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3209), + [anon_sym_mut] = ACTIONS(3209), + [anon_sym_COLON] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [anon_sym_QMARK] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_go] = ACTIONS(3209), + [anon_sym_spawn] = ACTIONS(3209), + [anon_sym_json_DOTdecode] = ACTIONS(3207), + [anon_sym_LBRACK2] = ACTIONS(3209), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_CARET] = ACTIONS(3207), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_LT_DASH] = ACTIONS(3207), + [anon_sym_LT_LT] = ACTIONS(3207), + [anon_sym_GT_GT] = ACTIONS(3209), + [anon_sym_GT_GT_GT] = ACTIONS(3207), + [anon_sym_AMP_CARET] = ACTIONS(3207), + [anon_sym_AMP_AMP] = ACTIONS(3207), + [anon_sym_PIPE_PIPE] = ACTIONS(3207), + [anon_sym_or] = ACTIONS(3209), + [sym_none] = ACTIONS(3209), + [sym_true] = ACTIONS(3209), + [sym_false] = ACTIONS(3209), + [sym_nil] = ACTIONS(3209), + [anon_sym_QMARK_DOT] = ACTIONS(3207), + [anon_sym_POUND_LBRACK] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3209), + [anon_sym_DOLLARif] = ACTIONS(3209), + [anon_sym_is] = ACTIONS(3209), + [anon_sym_BANGis] = ACTIONS(3207), + [anon_sym_in] = ACTIONS(3209), + [anon_sym_BANGin] = ACTIONS(3207), + [anon_sym_match] = ACTIONS(3209), + [anon_sym_select] = ACTIONS(3209), + [anon_sym_lock] = ACTIONS(3209), + [anon_sym_rlock] = ACTIONS(3209), + [anon_sym_unsafe] = ACTIONS(3209), + [anon_sym_sql] = ACTIONS(3209), + [sym_int_literal] = ACTIONS(3209), + [sym_float_literal] = ACTIONS(3207), + [sym_rune_literal] = ACTIONS(3207), + [sym_pseudo_compile_time_identifier] = ACTIONS(3209), + [anon_sym_shared] = ACTIONS(3209), + [anon_sym_map_LBRACK] = ACTIONS(3207), + [anon_sym_chan] = ACTIONS(3209), + [anon_sym_thread] = ACTIONS(3209), + [anon_sym_atomic] = ACTIONS(3209), + [sym___double_quote] = ACTIONS(3207), + [sym___single_quote] = ACTIONS(3207), + [sym___c_double_quote] = ACTIONS(3207), + [sym___c_single_quote] = ACTIONS(3207), + [sym___r_double_quote] = ACTIONS(3207), + [sym___r_single_quote] = ACTIONS(3207), + }, + [1322] = { + [sym_identifier] = ACTIONS(3440), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3438), + [anon_sym_DOT] = ACTIONS(3440), + [anon_sym_as] = ACTIONS(3440), + [anon_sym_LBRACE] = ACTIONS(3438), + [anon_sym_COMMA] = ACTIONS(3438), + [anon_sym_RBRACE] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3438), + [anon_sym_PIPE] = ACTIONS(3440), + [anon_sym_fn] = ACTIONS(3440), + [anon_sym_PLUS] = ACTIONS(3440), + [anon_sym_DASH] = ACTIONS(3440), + [anon_sym_STAR] = ACTIONS(3438), + [anon_sym_SLASH] = ACTIONS(3440), + [anon_sym_PERCENT] = ACTIONS(3438), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_GT] = ACTIONS(3440), + [anon_sym_EQ_EQ] = ACTIONS(3438), + [anon_sym_BANG_EQ] = ACTIONS(3438), + [anon_sym_LT_EQ] = ACTIONS(3438), + [anon_sym_GT_EQ] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3438), + [anon_sym_RBRACK] = ACTIONS(3438), + [anon_sym_struct] = ACTIONS(3440), + [anon_sym_mut] = ACTIONS(3440), + [anon_sym_COLON] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3438), + [anon_sym_DASH_DASH] = ACTIONS(3438), + [anon_sym_QMARK] = ACTIONS(3440), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_go] = ACTIONS(3440), + [anon_sym_spawn] = ACTIONS(3440), + [anon_sym_json_DOTdecode] = ACTIONS(3438), + [anon_sym_LBRACK2] = ACTIONS(3440), + [anon_sym_TILDE] = ACTIONS(3438), + [anon_sym_CARET] = ACTIONS(3438), + [anon_sym_AMP] = ACTIONS(3440), + [anon_sym_LT_DASH] = ACTIONS(3438), + [anon_sym_LT_LT] = ACTIONS(3438), + [anon_sym_GT_GT] = ACTIONS(3440), + [anon_sym_GT_GT_GT] = ACTIONS(3438), + [anon_sym_AMP_CARET] = ACTIONS(3438), + [anon_sym_AMP_AMP] = ACTIONS(3438), + [anon_sym_PIPE_PIPE] = ACTIONS(3438), + [anon_sym_or] = ACTIONS(3440), + [sym_none] = ACTIONS(3440), + [sym_true] = ACTIONS(3440), + [sym_false] = ACTIONS(3440), + [sym_nil] = ACTIONS(3440), + [anon_sym_QMARK_DOT] = ACTIONS(3438), + [anon_sym_POUND_LBRACK] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3440), + [anon_sym_DOLLARif] = ACTIONS(3440), + [anon_sym_is] = ACTIONS(3440), + [anon_sym_BANGis] = ACTIONS(3438), + [anon_sym_in] = ACTIONS(3440), + [anon_sym_BANGin] = ACTIONS(3438), + [anon_sym_match] = ACTIONS(3440), + [anon_sym_select] = ACTIONS(3440), + [anon_sym_lock] = ACTIONS(3440), + [anon_sym_rlock] = ACTIONS(3440), + [anon_sym_unsafe] = ACTIONS(3440), + [anon_sym_sql] = ACTIONS(3440), + [sym_int_literal] = ACTIONS(3440), + [sym_float_literal] = ACTIONS(3438), + [sym_rune_literal] = ACTIONS(3438), + [sym_pseudo_compile_time_identifier] = ACTIONS(3440), + [anon_sym_shared] = ACTIONS(3440), + [anon_sym_map_LBRACK] = ACTIONS(3438), + [anon_sym_chan] = ACTIONS(3440), + [anon_sym_thread] = ACTIONS(3440), + [anon_sym_atomic] = ACTIONS(3440), + [sym___double_quote] = ACTIONS(3438), + [sym___single_quote] = ACTIONS(3438), + [sym___c_double_quote] = ACTIONS(3438), + [sym___c_single_quote] = ACTIONS(3438), + [sym___r_double_quote] = ACTIONS(3438), + [sym___r_single_quote] = ACTIONS(3438), + }, + [1323] = { + [sym_identifier] = ACTIONS(3283), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3283), + [anon_sym_as] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_COMMA] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_fn] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_GT] = ACTIONS(3283), + [anon_sym_EQ_EQ] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_RBRACK] = ACTIONS(3281), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_mut] = ACTIONS(3283), + [anon_sym_COLON] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_QMARK] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_go] = ACTIONS(3283), + [anon_sym_spawn] = ACTIONS(3283), + [anon_sym_json_DOTdecode] = ACTIONS(3281), + [anon_sym_LBRACK2] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_LT_DASH] = ACTIONS(3281), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_GT_GT_GT] = ACTIONS(3281), + [anon_sym_AMP_CARET] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_or] = ACTIONS(3283), + [sym_none] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_nil] = ACTIONS(3283), + [anon_sym_QMARK_DOT] = ACTIONS(3281), + [anon_sym_POUND_LBRACK] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_DOLLARif] = ACTIONS(3283), + [anon_sym_is] = ACTIONS(3283), + [anon_sym_BANGis] = ACTIONS(3281), + [anon_sym_in] = ACTIONS(3283), + [anon_sym_BANGin] = ACTIONS(3281), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_select] = ACTIONS(3283), + [anon_sym_lock] = ACTIONS(3283), + [anon_sym_rlock] = ACTIONS(3283), + [anon_sym_unsafe] = ACTIONS(3283), + [anon_sym_sql] = ACTIONS(3283), + [sym_int_literal] = ACTIONS(3283), + [sym_float_literal] = ACTIONS(3281), + [sym_rune_literal] = ACTIONS(3281), + [sym_pseudo_compile_time_identifier] = ACTIONS(3283), + [anon_sym_shared] = ACTIONS(3283), + [anon_sym_map_LBRACK] = ACTIONS(3281), + [anon_sym_chan] = ACTIONS(3283), + [anon_sym_thread] = ACTIONS(3283), + [anon_sym_atomic] = ACTIONS(3283), + [sym___double_quote] = ACTIONS(3281), + [sym___single_quote] = ACTIONS(3281), + [sym___c_double_quote] = ACTIONS(3281), + [sym___c_single_quote] = ACTIONS(3281), + [sym___r_double_quote] = ACTIONS(3281), + [sym___r_single_quote] = ACTIONS(3281), + }, + [1324] = { + [sym_identifier] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_as] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_COMMA] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_PERCENT] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_GT] = ACTIONS(3356), + [anon_sym_EQ_EQ] = ACTIONS(3354), + [anon_sym_BANG_EQ] = ACTIONS(3354), + [anon_sym_LT_EQ] = ACTIONS(3354), + [anon_sym_GT_EQ] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_RBRACK] = ACTIONS(3354), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_COLON] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3354), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_CARET] = ACTIONS(3354), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3354), + [anon_sym_LT_LT] = ACTIONS(3354), + [anon_sym_GT_GT] = ACTIONS(3356), + [anon_sym_GT_GT_GT] = ACTIONS(3354), + [anon_sym_AMP_CARET] = ACTIONS(3354), + [anon_sym_AMP_AMP] = ACTIONS(3354), + [anon_sym_PIPE_PIPE] = ACTIONS(3354), + [anon_sym_or] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_QMARK_DOT] = ACTIONS(3354), + [anon_sym_POUND_LBRACK] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_is] = ACTIONS(3356), + [anon_sym_BANGis] = ACTIONS(3354), + [anon_sym_in] = ACTIONS(3356), + [anon_sym_BANGin] = ACTIONS(3354), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3354), + [sym_rune_literal] = ACTIONS(3354), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3354), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [sym___double_quote] = ACTIONS(3354), + [sym___single_quote] = ACTIONS(3354), + [sym___c_double_quote] = ACTIONS(3354), + [sym___c_single_quote] = ACTIONS(3354), + [sym___r_double_quote] = ACTIONS(3354), + [sym___r_single_quote] = ACTIONS(3354), + }, + [1325] = { + [sym_identifier] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_as] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_COMMA] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_PERCENT] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_GT] = ACTIONS(3332), + [anon_sym_EQ_EQ] = ACTIONS(3330), + [anon_sym_BANG_EQ] = ACTIONS(3330), + [anon_sym_LT_EQ] = ACTIONS(3330), + [anon_sym_GT_EQ] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_RBRACK] = ACTIONS(3330), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_COLON] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3330), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_CARET] = ACTIONS(3330), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3330), + [anon_sym_LT_LT] = ACTIONS(3330), + [anon_sym_GT_GT] = ACTIONS(3332), + [anon_sym_GT_GT_GT] = ACTIONS(3330), + [anon_sym_AMP_CARET] = ACTIONS(3330), + [anon_sym_AMP_AMP] = ACTIONS(3330), + [anon_sym_PIPE_PIPE] = ACTIONS(3330), + [anon_sym_or] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_QMARK_DOT] = ACTIONS(3330), + [anon_sym_POUND_LBRACK] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_is] = ACTIONS(3332), + [anon_sym_BANGis] = ACTIONS(3330), + [anon_sym_in] = ACTIONS(3332), + [anon_sym_BANGin] = ACTIONS(3330), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3330), + [sym_rune_literal] = ACTIONS(3330), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3330), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), + [sym___double_quote] = ACTIONS(3330), + [sym___single_quote] = ACTIONS(3330), + [sym___c_double_quote] = ACTIONS(3330), + [sym___c_single_quote] = ACTIONS(3330), + [sym___r_double_quote] = ACTIONS(3330), + [sym___r_single_quote] = ACTIONS(3330), + }, + [1326] = { + [sym_identifier] = ACTIONS(3181), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3181), + [anon_sym_as] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_COMMA] = ACTIONS(3179), + [anon_sym_RBRACE] = ACTIONS(3179), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3181), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_GT] = ACTIONS(3181), + [anon_sym_EQ_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_RBRACK] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_mut] = ACTIONS(3181), + [anon_sym_COLON] = ACTIONS(3179), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_go] = ACTIONS(3181), + [anon_sym_spawn] = ACTIONS(3181), + [anon_sym_json_DOTdecode] = ACTIONS(3179), + [anon_sym_LBRACK2] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_LT_DASH] = ACTIONS(3179), + [anon_sym_LT_LT] = ACTIONS(3179), + [anon_sym_GT_GT] = ACTIONS(3181), + [anon_sym_GT_GT_GT] = ACTIONS(3179), + [anon_sym_AMP_CARET] = ACTIONS(3179), + [anon_sym_AMP_AMP] = ACTIONS(3179), + [anon_sym_PIPE_PIPE] = ACTIONS(3179), + [anon_sym_or] = ACTIONS(3181), + [sym_none] = ACTIONS(3181), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [sym_nil] = ACTIONS(3181), + [anon_sym_QMARK_DOT] = ACTIONS(3179), + [anon_sym_POUND_LBRACK] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_DOLLARif] = ACTIONS(3181), + [anon_sym_is] = ACTIONS(3181), + [anon_sym_BANGis] = ACTIONS(3179), + [anon_sym_in] = ACTIONS(3181), + [anon_sym_BANGin] = ACTIONS(3179), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_rlock] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_sql] = ACTIONS(3181), + [sym_int_literal] = ACTIONS(3181), + [sym_float_literal] = ACTIONS(3179), + [sym_rune_literal] = ACTIONS(3179), + [sym_pseudo_compile_time_identifier] = ACTIONS(3181), + [anon_sym_shared] = ACTIONS(3181), + [anon_sym_map_LBRACK] = ACTIONS(3179), + [anon_sym_chan] = ACTIONS(3181), + [anon_sym_thread] = ACTIONS(3181), + [anon_sym_atomic] = ACTIONS(3181), + [sym___double_quote] = ACTIONS(3179), + [sym___single_quote] = ACTIONS(3179), + [sym___c_double_quote] = ACTIONS(3179), + [sym___c_single_quote] = ACTIONS(3179), + [sym___r_double_quote] = ACTIONS(3179), + [sym___r_single_quote] = ACTIONS(3179), + }, + [1327] = { + [sym_identifier] = ACTIONS(2651), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_as] = ACTIONS(2651), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_PLUS] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2651), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_PERCENT] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2651), + [anon_sym_GT] = ACTIONS(2651), + [anon_sym_EQ_EQ] = ACTIONS(2653), + [anon_sym_BANG_EQ] = ACTIONS(2653), + [anon_sym_LT_EQ] = ACTIONS(2653), + [anon_sym_GT_EQ] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_RBRACK] = ACTIONS(2653), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_mut] = ACTIONS(2651), + [anon_sym_COLON] = ACTIONS(2653), + [anon_sym_PLUS_PLUS] = ACTIONS(2653), + [anon_sym_DASH_DASH] = ACTIONS(2653), + [anon_sym_QMARK] = ACTIONS(2651), + [anon_sym_BANG] = ACTIONS(2651), + [anon_sym_go] = ACTIONS(2651), + [anon_sym_spawn] = ACTIONS(2651), + [anon_sym_json_DOTdecode] = ACTIONS(2653), + [anon_sym_LBRACK2] = ACTIONS(2651), + [anon_sym_TILDE] = ACTIONS(2653), + [anon_sym_CARET] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2651), + [anon_sym_LT_DASH] = ACTIONS(2653), + [anon_sym_LT_LT] = ACTIONS(2653), + [anon_sym_GT_GT] = ACTIONS(2651), + [anon_sym_GT_GT_GT] = ACTIONS(2653), + [anon_sym_AMP_CARET] = ACTIONS(2653), + [anon_sym_AMP_AMP] = ACTIONS(2653), + [anon_sym_PIPE_PIPE] = ACTIONS(2653), + [anon_sym_or] = ACTIONS(2651), + [sym_none] = ACTIONS(2651), + [sym_true] = ACTIONS(2651), + [sym_false] = ACTIONS(2651), + [sym_nil] = ACTIONS(2651), + [anon_sym_QMARK_DOT] = ACTIONS(2653), + [anon_sym_POUND_LBRACK] = ACTIONS(2653), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_DOLLARif] = ACTIONS(2651), + [anon_sym_is] = ACTIONS(2651), + [anon_sym_BANGis] = ACTIONS(2653), + [anon_sym_in] = ACTIONS(2651), + [anon_sym_BANGin] = ACTIONS(2653), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_select] = ACTIONS(2651), + [anon_sym_lock] = ACTIONS(2651), + [anon_sym_rlock] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_sql] = ACTIONS(2651), + [sym_int_literal] = ACTIONS(2651), + [sym_float_literal] = ACTIONS(2653), + [sym_rune_literal] = ACTIONS(2653), + [sym_pseudo_compile_time_identifier] = ACTIONS(2651), + [anon_sym_shared] = ACTIONS(2651), + [anon_sym_map_LBRACK] = ACTIONS(2653), + [anon_sym_chan] = ACTIONS(2651), + [anon_sym_thread] = ACTIONS(2651), + [anon_sym_atomic] = ACTIONS(2651), + [sym___double_quote] = ACTIONS(2653), + [sym___single_quote] = ACTIONS(2653), + [sym___c_double_quote] = ACTIONS(2653), + [sym___c_single_quote] = ACTIONS(2653), + [sym___r_double_quote] = ACTIONS(2653), + [sym___r_single_quote] = ACTIONS(2653), + }, + [1328] = { + [sym_type_parameters] = STATE(4205), + [sym_argument_list] = STATE(1348), + [sym_or_block] = STATE(1349), + [sym_identifier] = ACTIONS(3883), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3863), + [anon_sym_as] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_RBRACE] = ACTIONS(3887), + [anon_sym_LPAREN] = ACTIONS(3865), + [anon_sym_PIPE] = ACTIONS(3889), + [anon_sym_fn] = ACTIONS(3883), + [anon_sym_PLUS] = ACTIONS(3889), + [anon_sym_DASH] = ACTIONS(3889), + [anon_sym_STAR] = ACTIONS(3891), + [anon_sym_SLASH] = ACTIONS(3893), + [anon_sym_PERCENT] = ACTIONS(3891), + [anon_sym_LT] = ACTIONS(3895), + [anon_sym_GT] = ACTIONS(3895), + [anon_sym_EQ_EQ] = ACTIONS(3897), + [anon_sym_BANG_EQ] = ACTIONS(3897), + [anon_sym_LT_EQ] = ACTIONS(3897), + [anon_sym_GT_EQ] = ACTIONS(3897), + [anon_sym_LBRACK] = ACTIONS(3867), + [anon_sym_struct] = ACTIONS(3883), + [anon_sym_mut] = ACTIONS(3883), + [anon_sym_PLUS_PLUS] = ACTIONS(3901), + [anon_sym_DASH_DASH] = ACTIONS(3903), + [anon_sym_QMARK] = ACTIONS(3869), + [anon_sym_BANG] = ACTIONS(3871), + [anon_sym_go] = ACTIONS(3883), + [anon_sym_spawn] = ACTIONS(3883), + [anon_sym_json_DOTdecode] = ACTIONS(3887), + [anon_sym_LBRACK2] = ACTIONS(3873), + [anon_sym_TILDE] = ACTIONS(3887), + [anon_sym_CARET] = ACTIONS(3905), + [anon_sym_AMP] = ACTIONS(3893), + [anon_sym_LT_DASH] = ACTIONS(3887), + [anon_sym_LT_LT] = ACTIONS(3891), + [anon_sym_GT_GT] = ACTIONS(3893), + [anon_sym_GT_GT_GT] = ACTIONS(3891), + [anon_sym_AMP_CARET] = ACTIONS(3891), + [anon_sym_AMP_AMP] = ACTIONS(3907), + [anon_sym_PIPE_PIPE] = ACTIONS(3909), + [anon_sym_or] = ACTIONS(3911), + [sym_none] = ACTIONS(3883), + [sym_true] = ACTIONS(3883), + [sym_false] = ACTIONS(3883), + [sym_nil] = ACTIONS(3883), + [anon_sym_QMARK_DOT] = ACTIONS(3875), + [anon_sym_POUND_LBRACK] = ACTIONS(3877), + [anon_sym_if] = ACTIONS(3883), + [anon_sym_DOLLARif] = ACTIONS(3883), + [anon_sym_is] = ACTIONS(3913), + [anon_sym_BANGis] = ACTIONS(3915), + [anon_sym_in] = ACTIONS(3917), + [anon_sym_BANGin] = ACTIONS(3919), + [anon_sym_match] = ACTIONS(3883), + [anon_sym_select] = ACTIONS(3883), + [anon_sym_lock] = ACTIONS(3883), + [anon_sym_rlock] = ACTIONS(3883), + [anon_sym_unsafe] = ACTIONS(3883), + [anon_sym_sql] = ACTIONS(3883), + [sym_int_literal] = ACTIONS(3883), + [sym_float_literal] = ACTIONS(3887), + [sym_rune_literal] = ACTIONS(3887), + [sym_pseudo_compile_time_identifier] = ACTIONS(3883), + [anon_sym_shared] = ACTIONS(3883), + [anon_sym_map_LBRACK] = ACTIONS(3887), + [anon_sym_chan] = ACTIONS(3883), + [anon_sym_thread] = ACTIONS(3883), + [anon_sym_atomic] = ACTIONS(3883), + [sym___double_quote] = ACTIONS(3887), + [sym___single_quote] = ACTIONS(3887), + [sym___c_double_quote] = ACTIONS(3887), + [sym___c_single_quote] = ACTIONS(3887), + [sym___r_double_quote] = ACTIONS(3887), + [sym___r_single_quote] = ACTIONS(3887), + }, + [1329] = { + [sym_identifier] = ACTIONS(3400), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3400), + [anon_sym_as] = ACTIONS(3400), + [anon_sym_LBRACE] = ACTIONS(3398), + [anon_sym_COMMA] = ACTIONS(3398), + [anon_sym_RBRACE] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3398), + [anon_sym_PIPE] = ACTIONS(3400), + [anon_sym_fn] = ACTIONS(3400), + [anon_sym_PLUS] = ACTIONS(3400), + [anon_sym_DASH] = ACTIONS(3400), + [anon_sym_STAR] = ACTIONS(3398), + [anon_sym_SLASH] = ACTIONS(3400), + [anon_sym_PERCENT] = ACTIONS(3398), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_GT] = ACTIONS(3400), + [anon_sym_EQ_EQ] = ACTIONS(3398), + [anon_sym_BANG_EQ] = ACTIONS(3398), + [anon_sym_LT_EQ] = ACTIONS(3398), + [anon_sym_GT_EQ] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3398), + [anon_sym_RBRACK] = ACTIONS(3398), + [anon_sym_struct] = ACTIONS(3400), + [anon_sym_mut] = ACTIONS(3400), + [anon_sym_COLON] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3398), + [anon_sym_DASH_DASH] = ACTIONS(3398), + [anon_sym_QMARK] = ACTIONS(3400), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_go] = ACTIONS(3400), + [anon_sym_spawn] = ACTIONS(3400), + [anon_sym_json_DOTdecode] = ACTIONS(3398), + [anon_sym_LBRACK2] = ACTIONS(3400), + [anon_sym_TILDE] = ACTIONS(3398), + [anon_sym_CARET] = ACTIONS(3398), + [anon_sym_AMP] = ACTIONS(3400), + [anon_sym_LT_DASH] = ACTIONS(3398), + [anon_sym_LT_LT] = ACTIONS(3398), + [anon_sym_GT_GT] = ACTIONS(3400), + [anon_sym_GT_GT_GT] = ACTIONS(3398), + [anon_sym_AMP_CARET] = ACTIONS(3398), + [anon_sym_AMP_AMP] = ACTIONS(3398), + [anon_sym_PIPE_PIPE] = ACTIONS(3398), + [anon_sym_or] = ACTIONS(3400), + [sym_none] = ACTIONS(3400), + [sym_true] = ACTIONS(3400), + [sym_false] = ACTIONS(3400), + [sym_nil] = ACTIONS(3400), + [anon_sym_QMARK_DOT] = ACTIONS(3398), + [anon_sym_POUND_LBRACK] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3400), + [anon_sym_DOLLARif] = ACTIONS(3400), + [anon_sym_is] = ACTIONS(3400), + [anon_sym_BANGis] = ACTIONS(3398), + [anon_sym_in] = ACTIONS(3400), + [anon_sym_BANGin] = ACTIONS(3398), + [anon_sym_match] = ACTIONS(3400), + [anon_sym_select] = ACTIONS(3400), + [anon_sym_lock] = ACTIONS(3400), + [anon_sym_rlock] = ACTIONS(3400), + [anon_sym_unsafe] = ACTIONS(3400), + [anon_sym_sql] = ACTIONS(3400), + [sym_int_literal] = ACTIONS(3400), + [sym_float_literal] = ACTIONS(3398), + [sym_rune_literal] = ACTIONS(3398), + [sym_pseudo_compile_time_identifier] = ACTIONS(3400), + [anon_sym_shared] = ACTIONS(3400), + [anon_sym_map_LBRACK] = ACTIONS(3398), + [anon_sym_chan] = ACTIONS(3400), + [anon_sym_thread] = ACTIONS(3400), + [anon_sym_atomic] = ACTIONS(3400), + [sym___double_quote] = ACTIONS(3398), + [sym___single_quote] = ACTIONS(3398), + [sym___c_double_quote] = ACTIONS(3398), + [sym___c_single_quote] = ACTIONS(3398), + [sym___r_double_quote] = ACTIONS(3398), + [sym___r_single_quote] = ACTIONS(3398), + }, + [1330] = { + [sym_identifier] = ACTIONS(3257), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_as] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_COMMA] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3255), + [anon_sym_BANG_EQ] = ACTIONS(3255), + [anon_sym_LT_EQ] = ACTIONS(3255), + [anon_sym_GT_EQ] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_RBRACK] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_COLON] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3255), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_CARET] = ACTIONS(3255), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3255), + [anon_sym_LT_LT] = ACTIONS(3255), + [anon_sym_GT_GT] = ACTIONS(3257), + [anon_sym_GT_GT_GT] = ACTIONS(3255), + [anon_sym_AMP_CARET] = ACTIONS(3255), + [anon_sym_AMP_AMP] = ACTIONS(3255), + [anon_sym_PIPE_PIPE] = ACTIONS(3255), + [anon_sym_or] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_QMARK_DOT] = ACTIONS(3255), + [anon_sym_POUND_LBRACK] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_is] = ACTIONS(3257), + [anon_sym_BANGis] = ACTIONS(3255), + [anon_sym_in] = ACTIONS(3257), + [anon_sym_BANGin] = ACTIONS(3255), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3255), + [sym_rune_literal] = ACTIONS(3255), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3255), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3255), + [sym___single_quote] = ACTIONS(3255), + [sym___c_double_quote] = ACTIONS(3255), + [sym___c_single_quote] = ACTIONS(3255), + [sym___r_double_quote] = ACTIONS(3255), + [sym___r_single_quote] = ACTIONS(3255), + }, + [1331] = { + [sym_identifier] = ACTIONS(3193), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_as] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_COMMA] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_PIPE] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3193), + [anon_sym_PERCENT] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_GT] = ACTIONS(3193), + [anon_sym_EQ_EQ] = ACTIONS(3191), + [anon_sym_BANG_EQ] = ACTIONS(3191), + [anon_sym_LT_EQ] = ACTIONS(3191), + [anon_sym_GT_EQ] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_RBRACK] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_mut] = ACTIONS(3193), + [anon_sym_COLON] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [anon_sym_QMARK] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_go] = ACTIONS(3193), + [anon_sym_spawn] = ACTIONS(3193), + [anon_sym_json_DOTdecode] = ACTIONS(3191), + [anon_sym_LBRACK2] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_CARET] = ACTIONS(3191), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_LT_DASH] = ACTIONS(3191), + [anon_sym_LT_LT] = ACTIONS(3191), + [anon_sym_GT_GT] = ACTIONS(3193), + [anon_sym_GT_GT_GT] = ACTIONS(3191), + [anon_sym_AMP_CARET] = ACTIONS(3191), + [anon_sym_AMP_AMP] = ACTIONS(3191), + [anon_sym_PIPE_PIPE] = ACTIONS(3191), + [anon_sym_or] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_nil] = ACTIONS(3193), + [anon_sym_QMARK_DOT] = ACTIONS(3191), + [anon_sym_POUND_LBRACK] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_DOLLARif] = ACTIONS(3193), + [anon_sym_is] = ACTIONS(3193), + [anon_sym_BANGis] = ACTIONS(3191), + [anon_sym_in] = ACTIONS(3193), + [anon_sym_BANGin] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_lock] = ACTIONS(3193), + [anon_sym_rlock] = ACTIONS(3193), + [anon_sym_unsafe] = ACTIONS(3193), + [anon_sym_sql] = ACTIONS(3193), + [sym_int_literal] = ACTIONS(3193), + [sym_float_literal] = ACTIONS(3191), + [sym_rune_literal] = ACTIONS(3191), + [sym_pseudo_compile_time_identifier] = ACTIONS(3193), + [anon_sym_shared] = ACTIONS(3193), + [anon_sym_map_LBRACK] = ACTIONS(3191), + [anon_sym_chan] = ACTIONS(3193), + [anon_sym_thread] = ACTIONS(3193), + [anon_sym_atomic] = ACTIONS(3193), + [sym___double_quote] = ACTIONS(3191), + [sym___single_quote] = ACTIONS(3191), + [sym___c_double_quote] = ACTIONS(3191), + [sym___c_single_quote] = ACTIONS(3191), + [sym___r_double_quote] = ACTIONS(3191), + [sym___r_single_quote] = ACTIONS(3191), + }, + [1332] = { + [sym_identifier] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3205), + [anon_sym_as] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3203), + [anon_sym_COMMA] = ACTIONS(3203), + [anon_sym_RBRACE] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_fn] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3203), + [anon_sym_SLASH] = ACTIONS(3205), + [anon_sym_PERCENT] = ACTIONS(3203), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3203), + [anon_sym_BANG_EQ] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3203), + [anon_sym_GT_EQ] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3203), + [anon_sym_RBRACK] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_mut] = ACTIONS(3205), + [anon_sym_COLON] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3203), + [anon_sym_DASH_DASH] = ACTIONS(3203), + [anon_sym_QMARK] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_go] = ACTIONS(3205), + [anon_sym_spawn] = ACTIONS(3205), + [anon_sym_json_DOTdecode] = ACTIONS(3203), + [anon_sym_LBRACK2] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3203), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_LT_DASH] = ACTIONS(3203), + [anon_sym_LT_LT] = ACTIONS(3203), + [anon_sym_GT_GT] = ACTIONS(3205), + [anon_sym_GT_GT_GT] = ACTIONS(3203), + [anon_sym_AMP_CARET] = ACTIONS(3203), + [anon_sym_AMP_AMP] = ACTIONS(3203), + [anon_sym_PIPE_PIPE] = ACTIONS(3203), + [anon_sym_or] = ACTIONS(3205), + [sym_none] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_nil] = ACTIONS(3205), + [anon_sym_QMARK_DOT] = ACTIONS(3203), + [anon_sym_POUND_LBRACK] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_DOLLARif] = ACTIONS(3205), + [anon_sym_is] = ACTIONS(3205), + [anon_sym_BANGis] = ACTIONS(3203), + [anon_sym_in] = ACTIONS(3205), + [anon_sym_BANGin] = ACTIONS(3203), + [anon_sym_match] = ACTIONS(3205), + [anon_sym_select] = ACTIONS(3205), + [anon_sym_lock] = ACTIONS(3205), + [anon_sym_rlock] = ACTIONS(3205), + [anon_sym_unsafe] = ACTIONS(3205), + [anon_sym_sql] = ACTIONS(3205), + [sym_int_literal] = ACTIONS(3205), + [sym_float_literal] = ACTIONS(3203), + [sym_rune_literal] = ACTIONS(3203), + [sym_pseudo_compile_time_identifier] = ACTIONS(3205), + [anon_sym_shared] = ACTIONS(3205), + [anon_sym_map_LBRACK] = ACTIONS(3203), + [anon_sym_chan] = ACTIONS(3205), + [anon_sym_thread] = ACTIONS(3205), + [anon_sym_atomic] = ACTIONS(3205), + [sym___double_quote] = ACTIONS(3203), + [sym___single_quote] = ACTIONS(3203), + [sym___c_double_quote] = ACTIONS(3203), + [sym___c_single_quote] = ACTIONS(3203), + [sym___r_double_quote] = ACTIONS(3203), + [sym___r_single_quote] = ACTIONS(3203), }, - [1296] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(1839), + [1333] = { + [sym_identifier] = ACTIONS(3009), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(1837), - [anon_sym_COMMA] = ACTIONS(1837), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1839), - [anon_sym_mut] = ACTIONS(1839), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(1839), - [anon_sym_spawn] = ACTIONS(1839), - [anon_sym_json_DOTdecode] = ACTIONS(1837), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(1837), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(1837), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(1839), - [sym_true] = ACTIONS(1839), - [sym_false] = ACTIONS(1839), - [sym_nil] = ACTIONS(1839), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(1839), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(1839), - [anon_sym_select] = ACTIONS(1839), - [anon_sym_lock] = ACTIONS(1839), - [anon_sym_rlock] = ACTIONS(1839), - [anon_sym_unsafe] = ACTIONS(1839), - [anon_sym_sql] = ACTIONS(1839), - [sym_int_literal] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1837), - [sym_rune_literal] = ACTIONS(1837), - [sym_pseudo_compile_time_identifier] = ACTIONS(1839), - [anon_sym_shared] = ACTIONS(1839), - [anon_sym_map_LBRACK] = ACTIONS(1837), - [anon_sym_chan] = ACTIONS(1839), - [anon_sym_thread] = ACTIONS(1839), - [anon_sym_atomic] = ACTIONS(1839), - [sym___double_quote] = ACTIONS(1837), - [sym___single_quote] = ACTIONS(1837), - [sym___c_double_quote] = ACTIONS(1837), - [sym___c_single_quote] = ACTIONS(1837), - [sym___r_double_quote] = ACTIONS(1837), - [sym___r_single_quote] = ACTIONS(1837), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_COMMA] = ACTIONS(3007), + [anon_sym_RBRACE] = ACTIONS(3007), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_RBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_COLON] = ACTIONS(3007), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3007), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3007), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_or] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3007), + [anon_sym_POUND_LBRACK] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3007), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3007), + [sym_rune_literal] = ACTIONS(3007), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3007), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3007), + [sym___single_quote] = ACTIONS(3007), + [sym___c_double_quote] = ACTIONS(3007), + [sym___c_single_quote] = ACTIONS(3007), + [sym___r_double_quote] = ACTIONS(3007), + [sym___r_single_quote] = ACTIONS(3007), }, - [1297] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(1835), + [1334] = { + [sym_identifier] = ACTIONS(3189), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_COMMA] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3917), - [anon_sym_GT] = ACTIONS(3917), - [anon_sym_EQ_EQ] = ACTIONS(3919), - [anon_sym_BANG_EQ] = ACTIONS(3919), - [anon_sym_LT_EQ] = ACTIONS(3919), - [anon_sym_GT_EQ] = ACTIONS(3919), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(1835), - [anon_sym_spawn] = ACTIONS(1835), - [anon_sym_json_DOTdecode] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3921), - [anon_sym_PIPE_PIPE] = ACTIONS(3933), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_nil] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_DOLLARif] = ACTIONS(1835), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3923), - [anon_sym_BANGin] = ACTIONS(3925), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1835), - [anon_sym_rlock] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1835), - [sym_int_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1833), - [sym_rune_literal] = ACTIONS(1833), - [sym_pseudo_compile_time_identifier] = ACTIONS(1835), - [anon_sym_shared] = ACTIONS(1835), - [anon_sym_map_LBRACK] = ACTIONS(1833), - [anon_sym_chan] = ACTIONS(1835), - [anon_sym_thread] = ACTIONS(1835), - [anon_sym_atomic] = ACTIONS(1835), - [sym___double_quote] = ACTIONS(1833), - [sym___single_quote] = ACTIONS(1833), - [sym___c_double_quote] = ACTIONS(1833), - [sym___c_single_quote] = ACTIONS(1833), - [sym___r_double_quote] = ACTIONS(1833), - [sym___r_single_quote] = ACTIONS(1833), + [anon_sym_DOT] = ACTIONS(3189), + [anon_sym_as] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_COMMA] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_PIPE] = ACTIONS(3189), + [anon_sym_fn] = ACTIONS(3189), + [anon_sym_PLUS] = ACTIONS(3189), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3189), + [anon_sym_PERCENT] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_GT] = ACTIONS(3189), + [anon_sym_EQ_EQ] = ACTIONS(3187), + [anon_sym_BANG_EQ] = ACTIONS(3187), + [anon_sym_LT_EQ] = ACTIONS(3187), + [anon_sym_GT_EQ] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_RBRACK] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3189), + [anon_sym_mut] = ACTIONS(3189), + [anon_sym_COLON] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_QMARK] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_go] = ACTIONS(3189), + [anon_sym_spawn] = ACTIONS(3189), + [anon_sym_json_DOTdecode] = ACTIONS(3187), + [anon_sym_LBRACK2] = ACTIONS(3189), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_LT_DASH] = ACTIONS(3187), + [anon_sym_LT_LT] = ACTIONS(3187), + [anon_sym_GT_GT] = ACTIONS(3189), + [anon_sym_GT_GT_GT] = ACTIONS(3187), + [anon_sym_AMP_CARET] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_PIPE_PIPE] = ACTIONS(3187), + [anon_sym_or] = ACTIONS(3189), + [sym_none] = ACTIONS(3189), + [sym_true] = ACTIONS(3189), + [sym_false] = ACTIONS(3189), + [sym_nil] = ACTIONS(3189), + [anon_sym_QMARK_DOT] = ACTIONS(3187), + [anon_sym_POUND_LBRACK] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3189), + [anon_sym_DOLLARif] = ACTIONS(3189), + [anon_sym_is] = ACTIONS(3189), + [anon_sym_BANGis] = ACTIONS(3187), + [anon_sym_in] = ACTIONS(3189), + [anon_sym_BANGin] = ACTIONS(3187), + [anon_sym_match] = ACTIONS(3189), + [anon_sym_select] = ACTIONS(3189), + [anon_sym_lock] = ACTIONS(3189), + [anon_sym_rlock] = ACTIONS(3189), + [anon_sym_unsafe] = ACTIONS(3189), + [anon_sym_sql] = ACTIONS(3189), + [sym_int_literal] = ACTIONS(3189), + [sym_float_literal] = ACTIONS(3187), + [sym_rune_literal] = ACTIONS(3187), + [sym_pseudo_compile_time_identifier] = ACTIONS(3189), + [anon_sym_shared] = ACTIONS(3189), + [anon_sym_map_LBRACK] = ACTIONS(3187), + [anon_sym_chan] = ACTIONS(3189), + [anon_sym_thread] = ACTIONS(3189), + [anon_sym_atomic] = ACTIONS(3189), + [sym___double_quote] = ACTIONS(3187), + [sym___single_quote] = ACTIONS(3187), + [sym___c_double_quote] = ACTIONS(3187), + [sym___c_single_quote] = ACTIONS(3187), + [sym___r_double_quote] = ACTIONS(3187), + [sym___r_single_quote] = ACTIONS(3187), }, - [1298] = { - [sym_identifier] = ACTIONS(2681), + [1335] = { + [sym_identifier] = ACTIONS(3408), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2681), - [anon_sym_as] = ACTIONS(2681), - [anon_sym_LBRACE] = ACTIONS(2679), - [anon_sym_COMMA] = ACTIONS(2679), - [anon_sym_RBRACE] = ACTIONS(2679), - [anon_sym_LPAREN] = ACTIONS(2679), - [anon_sym_PIPE] = ACTIONS(2681), - [anon_sym_fn] = ACTIONS(2681), - [anon_sym_PLUS] = ACTIONS(2681), - [anon_sym_DASH] = ACTIONS(2681), - [anon_sym_STAR] = ACTIONS(2679), - [anon_sym_SLASH] = ACTIONS(2681), - [anon_sym_PERCENT] = ACTIONS(2679), - [anon_sym_LT] = ACTIONS(2681), - [anon_sym_GT] = ACTIONS(2681), - [anon_sym_EQ_EQ] = ACTIONS(2679), - [anon_sym_BANG_EQ] = ACTIONS(2679), - [anon_sym_LT_EQ] = ACTIONS(2679), - [anon_sym_GT_EQ] = ACTIONS(2679), - [anon_sym_LBRACK] = ACTIONS(2679), - [anon_sym_RBRACK] = ACTIONS(2679), - [anon_sym_struct] = ACTIONS(2681), - [anon_sym_mut] = ACTIONS(2681), - [anon_sym_COLON] = ACTIONS(2679), - [anon_sym_PLUS_PLUS] = ACTIONS(2679), - [anon_sym_DASH_DASH] = ACTIONS(2679), - [anon_sym_QMARK] = ACTIONS(2681), - [anon_sym_BANG] = ACTIONS(2681), - [anon_sym_go] = ACTIONS(2681), - [anon_sym_spawn] = ACTIONS(2681), - [anon_sym_json_DOTdecode] = ACTIONS(2679), - [anon_sym_LBRACK2] = ACTIONS(2681), - [anon_sym_TILDE] = ACTIONS(2679), - [anon_sym_CARET] = ACTIONS(2679), - [anon_sym_AMP] = ACTIONS(2681), - [anon_sym_LT_DASH] = ACTIONS(2679), - [anon_sym_LT_LT] = ACTIONS(2679), - [anon_sym_GT_GT] = ACTIONS(2681), - [anon_sym_GT_GT_GT] = ACTIONS(2679), - [anon_sym_AMP_CARET] = ACTIONS(2679), - [anon_sym_AMP_AMP] = ACTIONS(2679), - [anon_sym_PIPE_PIPE] = ACTIONS(2679), - [anon_sym_or] = ACTIONS(2681), - [sym_none] = ACTIONS(2681), - [sym_true] = ACTIONS(2681), - [sym_false] = ACTIONS(2681), - [sym_nil] = ACTIONS(2681), - [anon_sym_QMARK_DOT] = ACTIONS(2679), - [anon_sym_POUND_LBRACK] = ACTIONS(2679), - [anon_sym_if] = ACTIONS(2681), - [anon_sym_DOLLARif] = ACTIONS(2681), - [anon_sym_DOLLARelse] = ACTIONS(3935), - [anon_sym_is] = ACTIONS(2681), - [anon_sym_BANGis] = ACTIONS(2679), - [anon_sym_in] = ACTIONS(2681), - [anon_sym_BANGin] = ACTIONS(2679), - [anon_sym_match] = ACTIONS(2681), - [anon_sym_select] = ACTIONS(2681), - [anon_sym_lock] = ACTIONS(2681), - [anon_sym_rlock] = ACTIONS(2681), - [anon_sym_unsafe] = ACTIONS(2681), - [anon_sym_sql] = ACTIONS(2681), - [sym_int_literal] = ACTIONS(2681), - [sym_float_literal] = ACTIONS(2679), - [sym_rune_literal] = ACTIONS(2679), - [sym_pseudo_compile_time_identifier] = ACTIONS(2681), - [anon_sym_shared] = ACTIONS(2681), - [anon_sym_map_LBRACK] = ACTIONS(2679), - [anon_sym_chan] = ACTIONS(2681), - [anon_sym_thread] = ACTIONS(2681), - [anon_sym_atomic] = ACTIONS(2681), - [sym___double_quote] = ACTIONS(2679), - [sym___single_quote] = ACTIONS(2679), - [sym___c_double_quote] = ACTIONS(2679), - [sym___c_single_quote] = ACTIONS(2679), - [sym___r_double_quote] = ACTIONS(2679), - [sym___r_single_quote] = ACTIONS(2679), + [anon_sym_DOT] = ACTIONS(3408), + [anon_sym_as] = ACTIONS(3408), + [anon_sym_LBRACE] = ACTIONS(3406), + [anon_sym_COMMA] = ACTIONS(3406), + [anon_sym_RBRACE] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3406), + [anon_sym_PIPE] = ACTIONS(3408), + [anon_sym_fn] = ACTIONS(3408), + [anon_sym_PLUS] = ACTIONS(3408), + [anon_sym_DASH] = ACTIONS(3408), + [anon_sym_STAR] = ACTIONS(3406), + [anon_sym_SLASH] = ACTIONS(3408), + [anon_sym_PERCENT] = ACTIONS(3406), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_GT] = ACTIONS(3408), + [anon_sym_EQ_EQ] = ACTIONS(3406), + [anon_sym_BANG_EQ] = ACTIONS(3406), + [anon_sym_LT_EQ] = ACTIONS(3406), + [anon_sym_GT_EQ] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3406), + [anon_sym_RBRACK] = ACTIONS(3406), + [anon_sym_struct] = ACTIONS(3408), + [anon_sym_mut] = ACTIONS(3408), + [anon_sym_COLON] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3406), + [anon_sym_DASH_DASH] = ACTIONS(3406), + [anon_sym_QMARK] = ACTIONS(3408), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_go] = ACTIONS(3408), + [anon_sym_spawn] = ACTIONS(3408), + [anon_sym_json_DOTdecode] = ACTIONS(3406), + [anon_sym_LBRACK2] = ACTIONS(3408), + [anon_sym_TILDE] = ACTIONS(3406), + [anon_sym_CARET] = ACTIONS(3406), + [anon_sym_AMP] = ACTIONS(3408), + [anon_sym_LT_DASH] = ACTIONS(3406), + [anon_sym_LT_LT] = ACTIONS(3406), + [anon_sym_GT_GT] = ACTIONS(3408), + [anon_sym_GT_GT_GT] = ACTIONS(3406), + [anon_sym_AMP_CARET] = ACTIONS(3406), + [anon_sym_AMP_AMP] = ACTIONS(3406), + [anon_sym_PIPE_PIPE] = ACTIONS(3406), + [anon_sym_or] = ACTIONS(3408), + [sym_none] = ACTIONS(3408), + [sym_true] = ACTIONS(3408), + [sym_false] = ACTIONS(3408), + [sym_nil] = ACTIONS(3408), + [anon_sym_QMARK_DOT] = ACTIONS(3406), + [anon_sym_POUND_LBRACK] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3408), + [anon_sym_DOLLARif] = ACTIONS(3408), + [anon_sym_is] = ACTIONS(3408), + [anon_sym_BANGis] = ACTIONS(3406), + [anon_sym_in] = ACTIONS(3408), + [anon_sym_BANGin] = ACTIONS(3406), + [anon_sym_match] = ACTIONS(3408), + [anon_sym_select] = ACTIONS(3408), + [anon_sym_lock] = ACTIONS(3408), + [anon_sym_rlock] = ACTIONS(3408), + [anon_sym_unsafe] = ACTIONS(3408), + [anon_sym_sql] = ACTIONS(3408), + [sym_int_literal] = ACTIONS(3408), + [sym_float_literal] = ACTIONS(3406), + [sym_rune_literal] = ACTIONS(3406), + [sym_pseudo_compile_time_identifier] = ACTIONS(3408), + [anon_sym_shared] = ACTIONS(3408), + [anon_sym_map_LBRACK] = ACTIONS(3406), + [anon_sym_chan] = ACTIONS(3408), + [anon_sym_thread] = ACTIONS(3408), + [anon_sym_atomic] = ACTIONS(3408), + [sym___double_quote] = ACTIONS(3406), + [sym___single_quote] = ACTIONS(3406), + [sym___c_double_quote] = ACTIONS(3406), + [sym___c_single_quote] = ACTIONS(3406), + [sym___r_double_quote] = ACTIONS(3406), + [sym___r_single_quote] = ACTIONS(3406), }, - [1299] = { - [sym_identifier] = ACTIONS(3299), + [1336] = { + [sym_identifier] = ACTIONS(3448), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_RBRACE] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_RBRACK] = ACTIONS(3297), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_COLON] = ACTIONS(3297), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3297), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3297), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3297), - [anon_sym_AMP_CARET] = ACTIONS(3297), - [anon_sym_AMP_AMP] = ACTIONS(3297), - [anon_sym_PIPE_PIPE] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3297), - [anon_sym_POUND_LBRACK] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3297), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3297), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3297), - [sym_rune_literal] = ACTIONS(3297), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3297), - [sym___single_quote] = ACTIONS(3297), - [sym___c_double_quote] = ACTIONS(3297), - [sym___c_single_quote] = ACTIONS(3297), - [sym___r_double_quote] = ACTIONS(3297), - [sym___r_single_quote] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3448), + [anon_sym_as] = ACTIONS(3448), + [anon_sym_LBRACE] = ACTIONS(3446), + [anon_sym_COMMA] = ACTIONS(3446), + [anon_sym_RBRACE] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3446), + [anon_sym_PIPE] = ACTIONS(3448), + [anon_sym_fn] = ACTIONS(3448), + [anon_sym_PLUS] = ACTIONS(3448), + [anon_sym_DASH] = ACTIONS(3448), + [anon_sym_STAR] = ACTIONS(3446), + [anon_sym_SLASH] = ACTIONS(3448), + [anon_sym_PERCENT] = ACTIONS(3446), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_GT] = ACTIONS(3448), + [anon_sym_EQ_EQ] = ACTIONS(3446), + [anon_sym_BANG_EQ] = ACTIONS(3446), + [anon_sym_LT_EQ] = ACTIONS(3446), + [anon_sym_GT_EQ] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3446), + [anon_sym_RBRACK] = ACTIONS(3446), + [anon_sym_struct] = ACTIONS(3448), + [anon_sym_mut] = ACTIONS(3448), + [anon_sym_COLON] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3446), + [anon_sym_DASH_DASH] = ACTIONS(3446), + [anon_sym_QMARK] = ACTIONS(3448), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_go] = ACTIONS(3448), + [anon_sym_spawn] = ACTIONS(3448), + [anon_sym_json_DOTdecode] = ACTIONS(3446), + [anon_sym_LBRACK2] = ACTIONS(3448), + [anon_sym_TILDE] = ACTIONS(3446), + [anon_sym_CARET] = ACTIONS(3446), + [anon_sym_AMP] = ACTIONS(3448), + [anon_sym_LT_DASH] = ACTIONS(3446), + [anon_sym_LT_LT] = ACTIONS(3446), + [anon_sym_GT_GT] = ACTIONS(3448), + [anon_sym_GT_GT_GT] = ACTIONS(3446), + [anon_sym_AMP_CARET] = ACTIONS(3446), + [anon_sym_AMP_AMP] = ACTIONS(3446), + [anon_sym_PIPE_PIPE] = ACTIONS(3446), + [anon_sym_or] = ACTIONS(3448), + [sym_none] = ACTIONS(3448), + [sym_true] = ACTIONS(3448), + [sym_false] = ACTIONS(3448), + [sym_nil] = ACTIONS(3448), + [anon_sym_QMARK_DOT] = ACTIONS(3446), + [anon_sym_POUND_LBRACK] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3448), + [anon_sym_DOLLARif] = ACTIONS(3448), + [anon_sym_is] = ACTIONS(3448), + [anon_sym_BANGis] = ACTIONS(3446), + [anon_sym_in] = ACTIONS(3448), + [anon_sym_BANGin] = ACTIONS(3446), + [anon_sym_match] = ACTIONS(3448), + [anon_sym_select] = ACTIONS(3448), + [anon_sym_lock] = ACTIONS(3448), + [anon_sym_rlock] = ACTIONS(3448), + [anon_sym_unsafe] = ACTIONS(3448), + [anon_sym_sql] = ACTIONS(3448), + [sym_int_literal] = ACTIONS(3448), + [sym_float_literal] = ACTIONS(3446), + [sym_rune_literal] = ACTIONS(3446), + [sym_pseudo_compile_time_identifier] = ACTIONS(3448), + [anon_sym_shared] = ACTIONS(3448), + [anon_sym_map_LBRACK] = ACTIONS(3446), + [anon_sym_chan] = ACTIONS(3448), + [anon_sym_thread] = ACTIONS(3448), + [anon_sym_atomic] = ACTIONS(3448), + [sym___double_quote] = ACTIONS(3446), + [sym___single_quote] = ACTIONS(3446), + [sym___c_double_quote] = ACTIONS(3446), + [sym___c_single_quote] = ACTIONS(3446), + [sym___r_double_quote] = ACTIONS(3446), + [sym___r_single_quote] = ACTIONS(3446), }, - [1300] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), + [1337] = { + [sym_identifier] = ACTIONS(3005), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_COMMA] = ACTIONS(3003), + [anon_sym_RBRACE] = ACTIONS(3003), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_RBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(3003), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3003), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_CARET] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3003), + [anon_sym_LT_LT] = ACTIONS(3003), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3003), + [anon_sym_AMP_CARET] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_or] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3003), + [anon_sym_POUND_LBRACK] = ACTIONS(3003), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3003), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3003), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3003), + [sym_rune_literal] = ACTIONS(3003), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3003), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3003), + [sym___single_quote] = ACTIONS(3003), + [sym___c_double_quote] = ACTIONS(3003), + [sym___c_single_quote] = ACTIONS(3003), + [sym___r_double_quote] = ACTIONS(3003), + [sym___r_single_quote] = ACTIONS(3003), }, - [1301] = { - [sym_identifier] = ACTIONS(2757), + [1338] = { + [sym_identifier] = ACTIONS(3245), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2755), - [anon_sym_BANG_EQ] = ACTIONS(2755), - [anon_sym_LT_EQ] = ACTIONS(2755), - [anon_sym_GT_EQ] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_COLON] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2755), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_CARET] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2755), - [anon_sym_LT_LT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2755), - [anon_sym_AMP_CARET] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_PIPE_PIPE] = ACTIONS(2755), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2755), - [anon_sym_POUND_LBRACK] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_DOLLARelse] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2755), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2755), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2755), - [sym_rune_literal] = ACTIONS(2755), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2755), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2755), - [sym___single_quote] = ACTIONS(2755), - [sym___c_double_quote] = ACTIONS(2755), - [sym___c_single_quote] = ACTIONS(2755), - [sym___r_double_quote] = ACTIONS(2755), - [sym___r_single_quote] = ACTIONS(2755), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_as] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_COMMA] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3243), + [anon_sym_BANG_EQ] = ACTIONS(3243), + [anon_sym_LT_EQ] = ACTIONS(3243), + [anon_sym_GT_EQ] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_RBRACK] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_COLON] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3243), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_CARET] = ACTIONS(3243), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3243), + [anon_sym_LT_LT] = ACTIONS(3243), + [anon_sym_GT_GT] = ACTIONS(3245), + [anon_sym_GT_GT_GT] = ACTIONS(3243), + [anon_sym_AMP_CARET] = ACTIONS(3243), + [anon_sym_AMP_AMP] = ACTIONS(3243), + [anon_sym_PIPE_PIPE] = ACTIONS(3243), + [anon_sym_or] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_QMARK_DOT] = ACTIONS(3243), + [anon_sym_POUND_LBRACK] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_is] = ACTIONS(3245), + [anon_sym_BANGis] = ACTIONS(3243), + [anon_sym_in] = ACTIONS(3245), + [anon_sym_BANGin] = ACTIONS(3243), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3243), + [sym_rune_literal] = ACTIONS(3243), + [sym_pseudo_compile_time_identifier] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3243), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3243), + [sym___single_quote] = ACTIONS(3243), + [sym___c_double_quote] = ACTIONS(3243), + [sym___c_single_quote] = ACTIONS(3243), + [sym___r_double_quote] = ACTIONS(3243), + [sym___r_single_quote] = ACTIONS(3243), }, - [1302] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), + [1339] = { + [sym_identifier] = ACTIONS(2895), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3881), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_EQ_EQ] = ACTIONS(3883), - [anon_sym_BANG_EQ] = ACTIONS(3883), - [anon_sym_LT_EQ] = ACTIONS(3883), - [anon_sym_GT_EQ] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(3903), - [anon_sym_BANGin] = ACTIONS(3905), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2895), + [anon_sym_as] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2893), + [anon_sym_COMMA] = ACTIONS(2893), + [anon_sym_RBRACE] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2893), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2893), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2893), + [anon_sym_BANG_EQ] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_RBRACK] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_mut] = ACTIONS(2895), + [anon_sym_COLON] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2893), + [anon_sym_DASH_DASH] = ACTIONS(2893), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2895), + [anon_sym_go] = ACTIONS(2895), + [anon_sym_spawn] = ACTIONS(2895), + [anon_sym_json_DOTdecode] = ACTIONS(2893), + [anon_sym_LBRACK2] = ACTIONS(2895), + [anon_sym_TILDE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2893), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_LT_DASH] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2893), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_GT_GT_GT] = ACTIONS(2893), + [anon_sym_AMP_CARET] = ACTIONS(2893), + [anon_sym_AMP_AMP] = ACTIONS(2893), + [anon_sym_PIPE_PIPE] = ACTIONS(2893), + [anon_sym_or] = ACTIONS(2895), + [sym_none] = ACTIONS(2895), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_nil] = ACTIONS(2895), + [anon_sym_QMARK_DOT] = ACTIONS(2893), + [anon_sym_POUND_LBRACK] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_is] = ACTIONS(2895), + [anon_sym_BANGis] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(2895), + [anon_sym_BANGin] = ACTIONS(2893), + [anon_sym_match] = ACTIONS(2895), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2895), + [anon_sym_rlock] = ACTIONS(2895), + [anon_sym_unsafe] = ACTIONS(2895), + [anon_sym_sql] = ACTIONS(2895), + [sym_int_literal] = ACTIONS(2895), + [sym_float_literal] = ACTIONS(2893), + [sym_rune_literal] = ACTIONS(2893), + [sym_pseudo_compile_time_identifier] = ACTIONS(2895), + [anon_sym_shared] = ACTIONS(2895), + [anon_sym_map_LBRACK] = ACTIONS(2893), + [anon_sym_chan] = ACTIONS(2895), + [anon_sym_thread] = ACTIONS(2895), + [anon_sym_atomic] = ACTIONS(2895), + [sym___double_quote] = ACTIONS(2893), + [sym___single_quote] = ACTIONS(2893), + [sym___c_double_quote] = ACTIONS(2893), + [sym___c_single_quote] = ACTIONS(2893), + [sym___r_double_quote] = ACTIONS(2893), + [sym___r_single_quote] = ACTIONS(2893), }, - [1303] = { - [sym_identifier] = ACTIONS(2865), + [1340] = { + [sym_identifier] = ACTIONS(3348), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2863), - [anon_sym_BANG_EQ] = ACTIONS(2863), - [anon_sym_LT_EQ] = ACTIONS(2863), - [anon_sym_GT_EQ] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_RBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_COLON] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2863), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_CARET] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2863), - [anon_sym_LT_LT] = ACTIONS(2863), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2863), - [anon_sym_AMP_CARET] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2863), - [anon_sym_POUND_LBRACK] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2863), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2863), - [sym_rune_literal] = ACTIONS(2863), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2863), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2863), - [sym___single_quote] = ACTIONS(2863), - [sym___c_double_quote] = ACTIONS(2863), - [sym___c_single_quote] = ACTIONS(2863), - [sym___r_double_quote] = ACTIONS(2863), - [sym___r_single_quote] = ACTIONS(2863), + [anon_sym_DOT] = ACTIONS(3348), + [anon_sym_as] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_COMMA] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_PIPE] = ACTIONS(3348), + [anon_sym_fn] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_STAR] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_PERCENT] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_GT] = ACTIONS(3348), + [anon_sym_EQ_EQ] = ACTIONS(3346), + [anon_sym_BANG_EQ] = ACTIONS(3346), + [anon_sym_LT_EQ] = ACTIONS(3346), + [anon_sym_GT_EQ] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_RBRACK] = ACTIONS(3346), + [anon_sym_struct] = ACTIONS(3348), + [anon_sym_mut] = ACTIONS(3348), + [anon_sym_COLON] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [anon_sym_QMARK] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_go] = ACTIONS(3348), + [anon_sym_spawn] = ACTIONS(3348), + [anon_sym_json_DOTdecode] = ACTIONS(3346), + [anon_sym_LBRACK2] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_CARET] = ACTIONS(3346), + [anon_sym_AMP] = ACTIONS(3348), + [anon_sym_LT_DASH] = ACTIONS(3346), + [anon_sym_LT_LT] = ACTIONS(3346), + [anon_sym_GT_GT] = ACTIONS(3348), + [anon_sym_GT_GT_GT] = ACTIONS(3346), + [anon_sym_AMP_CARET] = ACTIONS(3346), + [anon_sym_AMP_AMP] = ACTIONS(3346), + [anon_sym_PIPE_PIPE] = ACTIONS(3346), + [anon_sym_or] = ACTIONS(3348), + [sym_none] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_nil] = ACTIONS(3348), + [anon_sym_QMARK_DOT] = ACTIONS(3346), + [anon_sym_POUND_LBRACK] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_DOLLARif] = ACTIONS(3348), + [anon_sym_is] = ACTIONS(3348), + [anon_sym_BANGis] = ACTIONS(3346), + [anon_sym_in] = ACTIONS(3348), + [anon_sym_BANGin] = ACTIONS(3346), + [anon_sym_match] = ACTIONS(3348), + [anon_sym_select] = ACTIONS(3348), + [anon_sym_lock] = ACTIONS(3348), + [anon_sym_rlock] = ACTIONS(3348), + [anon_sym_unsafe] = ACTIONS(3348), + [anon_sym_sql] = ACTIONS(3348), + [sym_int_literal] = ACTIONS(3348), + [sym_float_literal] = ACTIONS(3346), + [sym_rune_literal] = ACTIONS(3346), + [sym_pseudo_compile_time_identifier] = ACTIONS(3348), + [anon_sym_shared] = ACTIONS(3348), + [anon_sym_map_LBRACK] = ACTIONS(3346), + [anon_sym_chan] = ACTIONS(3348), + [anon_sym_thread] = ACTIONS(3348), + [anon_sym_atomic] = ACTIONS(3348), + [sym___double_quote] = ACTIONS(3346), + [sym___single_quote] = ACTIONS(3346), + [sym___c_double_quote] = ACTIONS(3346), + [sym___c_single_quote] = ACTIONS(3346), + [sym___r_double_quote] = ACTIONS(3346), + [sym___r_single_quote] = ACTIONS(3346), }, - [1304] = { - [sym_identifier] = ACTIONS(2669), + [1341] = { + [sym_identifier] = ACTIONS(3352), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2667), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2667), - [anon_sym_LT_EQ] = ACTIONS(2667), - [anon_sym_GT_EQ] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_RBRACK] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2667), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2667), - [anon_sym_AMP_CARET] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2667), - [anon_sym_POUND_LBRACK] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2667), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2667), - [sym_rune_literal] = ACTIONS(2667), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2667), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2667), - [sym___single_quote] = ACTIONS(2667), - [sym___c_double_quote] = ACTIONS(2667), - [sym___c_single_quote] = ACTIONS(2667), - [sym___r_double_quote] = ACTIONS(2667), - [sym___r_single_quote] = ACTIONS(2667), + [anon_sym_DOT] = ACTIONS(3352), + [anon_sym_as] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_COMMA] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_PIPE] = ACTIONS(3352), + [anon_sym_fn] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_STAR] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_PERCENT] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_GT] = ACTIONS(3352), + [anon_sym_EQ_EQ] = ACTIONS(3350), + [anon_sym_BANG_EQ] = ACTIONS(3350), + [anon_sym_LT_EQ] = ACTIONS(3350), + [anon_sym_GT_EQ] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_RBRACK] = ACTIONS(3350), + [anon_sym_struct] = ACTIONS(3352), + [anon_sym_mut] = ACTIONS(3352), + [anon_sym_COLON] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [anon_sym_QMARK] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_go] = ACTIONS(3352), + [anon_sym_spawn] = ACTIONS(3352), + [anon_sym_json_DOTdecode] = ACTIONS(3350), + [anon_sym_LBRACK2] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_CARET] = ACTIONS(3350), + [anon_sym_AMP] = ACTIONS(3352), + [anon_sym_LT_DASH] = ACTIONS(3350), + [anon_sym_LT_LT] = ACTIONS(3350), + [anon_sym_GT_GT] = ACTIONS(3352), + [anon_sym_GT_GT_GT] = ACTIONS(3350), + [anon_sym_AMP_CARET] = ACTIONS(3350), + [anon_sym_AMP_AMP] = ACTIONS(3350), + [anon_sym_PIPE_PIPE] = ACTIONS(3350), + [anon_sym_or] = ACTIONS(3352), + [sym_none] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_nil] = ACTIONS(3352), + [anon_sym_QMARK_DOT] = ACTIONS(3350), + [anon_sym_POUND_LBRACK] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_DOLLARif] = ACTIONS(3352), + [anon_sym_is] = ACTIONS(3352), + [anon_sym_BANGis] = ACTIONS(3350), + [anon_sym_in] = ACTIONS(3352), + [anon_sym_BANGin] = ACTIONS(3350), + [anon_sym_match] = ACTIONS(3352), + [anon_sym_select] = ACTIONS(3352), + [anon_sym_lock] = ACTIONS(3352), + [anon_sym_rlock] = ACTIONS(3352), + [anon_sym_unsafe] = ACTIONS(3352), + [anon_sym_sql] = ACTIONS(3352), + [sym_int_literal] = ACTIONS(3352), + [sym_float_literal] = ACTIONS(3350), + [sym_rune_literal] = ACTIONS(3350), + [sym_pseudo_compile_time_identifier] = ACTIONS(3352), + [anon_sym_shared] = ACTIONS(3352), + [anon_sym_map_LBRACK] = ACTIONS(3350), + [anon_sym_chan] = ACTIONS(3352), + [anon_sym_thread] = ACTIONS(3352), + [anon_sym_atomic] = ACTIONS(3352), + [sym___double_quote] = ACTIONS(3350), + [sym___single_quote] = ACTIONS(3350), + [sym___c_double_quote] = ACTIONS(3350), + [sym___c_single_quote] = ACTIONS(3350), + [sym___r_double_quote] = ACTIONS(3350), + [sym___r_single_quote] = ACTIONS(3350), }, - [1305] = { - [sym_type_parameters] = STATE(1355), - [sym_identifier] = ACTIONS(2761), + [1342] = { + [sym_identifier] = ACTIONS(3388), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2759), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2759), - [anon_sym_BANG_EQ] = ACTIONS(2759), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_COLON] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_CARET] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2759), - [anon_sym_LT_LT] = ACTIONS(2759), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2759), - [anon_sym_AMP_CARET] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_PIPE_PIPE] = ACTIONS(2759), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2759), - [anon_sym_POUND_LBRACK] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2759), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2759), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2759), - [sym_rune_literal] = ACTIONS(2759), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2759), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2759), - [sym___single_quote] = ACTIONS(2759), - [sym___c_double_quote] = ACTIONS(2759), - [sym___c_single_quote] = ACTIONS(2759), - [sym___r_double_quote] = ACTIONS(2759), - [sym___r_single_quote] = ACTIONS(2759), + [anon_sym_DOT] = ACTIONS(3388), + [anon_sym_as] = ACTIONS(3388), + [anon_sym_LBRACE] = ACTIONS(3386), + [anon_sym_COMMA] = ACTIONS(3386), + [anon_sym_RBRACE] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3386), + [anon_sym_PIPE] = ACTIONS(3388), + [anon_sym_fn] = ACTIONS(3388), + [anon_sym_PLUS] = ACTIONS(3388), + [anon_sym_DASH] = ACTIONS(3388), + [anon_sym_STAR] = ACTIONS(3386), + [anon_sym_SLASH] = ACTIONS(3388), + [anon_sym_PERCENT] = ACTIONS(3386), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_GT] = ACTIONS(3388), + [anon_sym_EQ_EQ] = ACTIONS(3386), + [anon_sym_BANG_EQ] = ACTIONS(3386), + [anon_sym_LT_EQ] = ACTIONS(3386), + [anon_sym_GT_EQ] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3386), + [anon_sym_RBRACK] = ACTIONS(3386), + [anon_sym_struct] = ACTIONS(3388), + [anon_sym_mut] = ACTIONS(3388), + [anon_sym_COLON] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3386), + [anon_sym_DASH_DASH] = ACTIONS(3386), + [anon_sym_QMARK] = ACTIONS(3388), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_go] = ACTIONS(3388), + [anon_sym_spawn] = ACTIONS(3388), + [anon_sym_json_DOTdecode] = ACTIONS(3386), + [anon_sym_LBRACK2] = ACTIONS(3388), + [anon_sym_TILDE] = ACTIONS(3386), + [anon_sym_CARET] = ACTIONS(3386), + [anon_sym_AMP] = ACTIONS(3388), + [anon_sym_LT_DASH] = ACTIONS(3386), + [anon_sym_LT_LT] = ACTIONS(3386), + [anon_sym_GT_GT] = ACTIONS(3388), + [anon_sym_GT_GT_GT] = ACTIONS(3386), + [anon_sym_AMP_CARET] = ACTIONS(3386), + [anon_sym_AMP_AMP] = ACTIONS(3386), + [anon_sym_PIPE_PIPE] = ACTIONS(3386), + [anon_sym_or] = ACTIONS(3388), + [sym_none] = ACTIONS(3388), + [sym_true] = ACTIONS(3388), + [sym_false] = ACTIONS(3388), + [sym_nil] = ACTIONS(3388), + [anon_sym_QMARK_DOT] = ACTIONS(3386), + [anon_sym_POUND_LBRACK] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3388), + [anon_sym_DOLLARif] = ACTIONS(3388), + [anon_sym_is] = ACTIONS(3388), + [anon_sym_BANGis] = ACTIONS(3386), + [anon_sym_in] = ACTIONS(3388), + [anon_sym_BANGin] = ACTIONS(3386), + [anon_sym_match] = ACTIONS(3388), + [anon_sym_select] = ACTIONS(3388), + [anon_sym_lock] = ACTIONS(3388), + [anon_sym_rlock] = ACTIONS(3388), + [anon_sym_unsafe] = ACTIONS(3388), + [anon_sym_sql] = ACTIONS(3388), + [sym_int_literal] = ACTIONS(3388), + [sym_float_literal] = ACTIONS(3386), + [sym_rune_literal] = ACTIONS(3386), + [sym_pseudo_compile_time_identifier] = ACTIONS(3388), + [anon_sym_shared] = ACTIONS(3388), + [anon_sym_map_LBRACK] = ACTIONS(3386), + [anon_sym_chan] = ACTIONS(3388), + [anon_sym_thread] = ACTIONS(3388), + [anon_sym_atomic] = ACTIONS(3388), + [sym___double_quote] = ACTIONS(3386), + [sym___single_quote] = ACTIONS(3386), + [sym___c_double_quote] = ACTIONS(3386), + [sym___c_single_quote] = ACTIONS(3386), + [sym___r_double_quote] = ACTIONS(3386), + [sym___r_single_quote] = ACTIONS(3386), }, - [1306] = { - [sym_identifier] = ACTIONS(3295), + [1343] = { + [sym_identifier] = ACTIONS(3392), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_DOT] = ACTIONS(3295), - [anon_sym_as] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_COMMA] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_PIPE] = ACTIONS(3295), - [anon_sym_fn] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_STAR] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_PERCENT] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_GT] = ACTIONS(3295), - [anon_sym_EQ_EQ] = ACTIONS(3293), - [anon_sym_BANG_EQ] = ACTIONS(3293), - [anon_sym_LT_EQ] = ACTIONS(3293), - [anon_sym_GT_EQ] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_RBRACK] = ACTIONS(3293), - [anon_sym_struct] = ACTIONS(3295), - [anon_sym_mut] = ACTIONS(3295), - [anon_sym_COLON] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [anon_sym_QMARK] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_go] = ACTIONS(3295), - [anon_sym_spawn] = ACTIONS(3295), - [anon_sym_json_DOTdecode] = ACTIONS(3293), - [anon_sym_LBRACK2] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_CARET] = ACTIONS(3293), - [anon_sym_AMP] = ACTIONS(3295), - [anon_sym_LT_DASH] = ACTIONS(3293), - [anon_sym_LT_LT] = ACTIONS(3293), - [anon_sym_GT_GT] = ACTIONS(3295), - [anon_sym_GT_GT_GT] = ACTIONS(3293), - [anon_sym_AMP_CARET] = ACTIONS(3293), - [anon_sym_AMP_AMP] = ACTIONS(3293), - [anon_sym_PIPE_PIPE] = ACTIONS(3293), - [anon_sym_or] = ACTIONS(3295), - [sym_none] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_nil] = ACTIONS(3295), - [anon_sym_QMARK_DOT] = ACTIONS(3293), - [anon_sym_POUND_LBRACK] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_DOLLARif] = ACTIONS(3295), - [anon_sym_is] = ACTIONS(3295), - [anon_sym_BANGis] = ACTIONS(3293), - [anon_sym_in] = ACTIONS(3295), - [anon_sym_BANGin] = ACTIONS(3293), - [anon_sym_match] = ACTIONS(3295), - [anon_sym_select] = ACTIONS(3295), - [anon_sym_lock] = ACTIONS(3295), - [anon_sym_rlock] = ACTIONS(3295), - [anon_sym_unsafe] = ACTIONS(3295), - [anon_sym_sql] = ACTIONS(3295), - [sym_int_literal] = ACTIONS(3295), - [sym_float_literal] = ACTIONS(3293), - [sym_rune_literal] = ACTIONS(3293), - [sym_pseudo_compile_time_identifier] = ACTIONS(3295), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3293), - [anon_sym_chan] = ACTIONS(3295), - [anon_sym_thread] = ACTIONS(3295), - [anon_sym_atomic] = ACTIONS(3295), - [sym___double_quote] = ACTIONS(3293), - [sym___single_quote] = ACTIONS(3293), - [sym___c_double_quote] = ACTIONS(3293), - [sym___c_single_quote] = ACTIONS(3293), - [sym___r_double_quote] = ACTIONS(3293), - [sym___r_single_quote] = ACTIONS(3293), + [anon_sym_DOT] = ACTIONS(3392), + [anon_sym_as] = ACTIONS(3392), + [anon_sym_LBRACE] = ACTIONS(3390), + [anon_sym_COMMA] = ACTIONS(3390), + [anon_sym_RBRACE] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3390), + [anon_sym_PIPE] = ACTIONS(3392), + [anon_sym_fn] = ACTIONS(3392), + [anon_sym_PLUS] = ACTIONS(3392), + [anon_sym_DASH] = ACTIONS(3392), + [anon_sym_STAR] = ACTIONS(3390), + [anon_sym_SLASH] = ACTIONS(3392), + [anon_sym_PERCENT] = ACTIONS(3390), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_GT] = ACTIONS(3392), + [anon_sym_EQ_EQ] = ACTIONS(3390), + [anon_sym_BANG_EQ] = ACTIONS(3390), + [anon_sym_LT_EQ] = ACTIONS(3390), + [anon_sym_GT_EQ] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3390), + [anon_sym_RBRACK] = ACTIONS(3390), + [anon_sym_struct] = ACTIONS(3392), + [anon_sym_mut] = ACTIONS(3392), + [anon_sym_COLON] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3390), + [anon_sym_DASH_DASH] = ACTIONS(3390), + [anon_sym_QMARK] = ACTIONS(3392), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_go] = ACTIONS(3392), + [anon_sym_spawn] = ACTIONS(3392), + [anon_sym_json_DOTdecode] = ACTIONS(3390), + [anon_sym_LBRACK2] = ACTIONS(3392), + [anon_sym_TILDE] = ACTIONS(3390), + [anon_sym_CARET] = ACTIONS(3390), + [anon_sym_AMP] = ACTIONS(3392), + [anon_sym_LT_DASH] = ACTIONS(3390), + [anon_sym_LT_LT] = ACTIONS(3390), + [anon_sym_GT_GT] = ACTIONS(3392), + [anon_sym_GT_GT_GT] = ACTIONS(3390), + [anon_sym_AMP_CARET] = ACTIONS(3390), + [anon_sym_AMP_AMP] = ACTIONS(3390), + [anon_sym_PIPE_PIPE] = ACTIONS(3390), + [anon_sym_or] = ACTIONS(3392), + [sym_none] = ACTIONS(3392), + [sym_true] = ACTIONS(3392), + [sym_false] = ACTIONS(3392), + [sym_nil] = ACTIONS(3392), + [anon_sym_QMARK_DOT] = ACTIONS(3390), + [anon_sym_POUND_LBRACK] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3392), + [anon_sym_DOLLARif] = ACTIONS(3392), + [anon_sym_is] = ACTIONS(3392), + [anon_sym_BANGis] = ACTIONS(3390), + [anon_sym_in] = ACTIONS(3392), + [anon_sym_BANGin] = ACTIONS(3390), + [anon_sym_match] = ACTIONS(3392), + [anon_sym_select] = ACTIONS(3392), + [anon_sym_lock] = ACTIONS(3392), + [anon_sym_rlock] = ACTIONS(3392), + [anon_sym_unsafe] = ACTIONS(3392), + [anon_sym_sql] = ACTIONS(3392), + [sym_int_literal] = ACTIONS(3392), + [sym_float_literal] = ACTIONS(3390), + [sym_rune_literal] = ACTIONS(3390), + [sym_pseudo_compile_time_identifier] = ACTIONS(3392), + [anon_sym_shared] = ACTIONS(3392), + [anon_sym_map_LBRACK] = ACTIONS(3390), + [anon_sym_chan] = ACTIONS(3392), + [anon_sym_thread] = ACTIONS(3392), + [anon_sym_atomic] = ACTIONS(3392), + [sym___double_quote] = ACTIONS(3390), + [sym___single_quote] = ACTIONS(3390), + [sym___c_double_quote] = ACTIONS(3390), + [sym___c_single_quote] = ACTIONS(3390), + [sym___r_double_quote] = ACTIONS(3390), + [sym___r_single_quote] = ACTIONS(3390), }, - [1307] = { - [sym_identifier] = ACTIONS(3291), + [1344] = { + [sym_identifier] = ACTIONS(2891), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_DOT] = ACTIONS(3291), - [anon_sym_as] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_COMMA] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_PIPE] = ACTIONS(3291), - [anon_sym_fn] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_STAR] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_PERCENT] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_GT] = ACTIONS(3291), - [anon_sym_EQ_EQ] = ACTIONS(3289), - [anon_sym_BANG_EQ] = ACTIONS(3289), - [anon_sym_LT_EQ] = ACTIONS(3289), - [anon_sym_GT_EQ] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_RBRACK] = ACTIONS(3289), - [anon_sym_struct] = ACTIONS(3291), - [anon_sym_mut] = ACTIONS(3291), - [anon_sym_COLON] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_go] = ACTIONS(3291), - [anon_sym_spawn] = ACTIONS(3291), - [anon_sym_json_DOTdecode] = ACTIONS(3289), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_CARET] = ACTIONS(3289), - [anon_sym_AMP] = ACTIONS(3291), - [anon_sym_LT_DASH] = ACTIONS(3289), - [anon_sym_LT_LT] = ACTIONS(3289), - [anon_sym_GT_GT] = ACTIONS(3291), - [anon_sym_GT_GT_GT] = ACTIONS(3289), - [anon_sym_AMP_CARET] = ACTIONS(3289), - [anon_sym_AMP_AMP] = ACTIONS(3289), - [anon_sym_PIPE_PIPE] = ACTIONS(3289), - [anon_sym_or] = ACTIONS(3291), - [sym_none] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_nil] = ACTIONS(3291), - [anon_sym_QMARK_DOT] = ACTIONS(3289), - [anon_sym_POUND_LBRACK] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_DOLLARif] = ACTIONS(3291), - [anon_sym_is] = ACTIONS(3291), - [anon_sym_BANGis] = ACTIONS(3289), - [anon_sym_in] = ACTIONS(3291), - [anon_sym_BANGin] = ACTIONS(3289), - [anon_sym_match] = ACTIONS(3291), - [anon_sym_select] = ACTIONS(3291), - [anon_sym_lock] = ACTIONS(3291), - [anon_sym_rlock] = ACTIONS(3291), - [anon_sym_unsafe] = ACTIONS(3291), - [anon_sym_sql] = ACTIONS(3291), - [sym_int_literal] = ACTIONS(3291), - [sym_float_literal] = ACTIONS(3289), - [sym_rune_literal] = ACTIONS(3289), - [sym_pseudo_compile_time_identifier] = ACTIONS(3291), - [anon_sym_shared] = ACTIONS(3291), - [anon_sym_map_LBRACK] = ACTIONS(3289), - [anon_sym_chan] = ACTIONS(3291), - [anon_sym_thread] = ACTIONS(3291), - [anon_sym_atomic] = ACTIONS(3291), - [sym___double_quote] = ACTIONS(3289), - [sym___single_quote] = ACTIONS(3289), - [sym___c_double_quote] = ACTIONS(3289), - [sym___c_single_quote] = ACTIONS(3289), - [sym___r_double_quote] = ACTIONS(3289), - [sym___r_single_quote] = ACTIONS(3289), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2889), + [anon_sym_COMMA] = ACTIONS(2889), + [anon_sym_RBRACE] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2889), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2889), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2889), + [anon_sym_BANG_EQ] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_RBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_COLON] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2889), + [anon_sym_DASH_DASH] = ACTIONS(2889), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2889), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2889), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2889), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2889), + [anon_sym_AMP_CARET] = ACTIONS(2889), + [anon_sym_AMP_AMP] = ACTIONS(2889), + [anon_sym_PIPE_PIPE] = ACTIONS(2889), + [anon_sym_or] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2889), + [anon_sym_POUND_LBRACK] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2889), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2889), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2889), + [sym_rune_literal] = ACTIONS(2889), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2889), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + [sym___double_quote] = ACTIONS(2889), + [sym___single_quote] = ACTIONS(2889), + [sym___c_double_quote] = ACTIONS(2889), + [sym___c_single_quote] = ACTIONS(2889), + [sym___r_double_quote] = ACTIONS(2889), + [sym___r_single_quote] = ACTIONS(2889), }, - [1308] = { + [1345] = { [sym_identifier] = ACTIONS(3287), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3285), [anon_sym_DOT] = ACTIONS(3287), [anon_sym_as] = ACTIONS(3287), [anon_sym_LBRACE] = ACTIONS(3285), @@ -167611,1539 +170702,1367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3285), [sym___r_single_quote] = ACTIONS(3285), }, - [1309] = { - [sym_identifier] = ACTIONS(2865), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_as] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2863), - [anon_sym_SLASH] = ACTIONS(2865), - [anon_sym_PERCENT] = ACTIONS(2863), - [anon_sym_LT] = ACTIONS(2865), - [anon_sym_GT] = ACTIONS(2865), - [anon_sym_EQ_EQ] = ACTIONS(2863), - [anon_sym_BANG_EQ] = ACTIONS(2863), - [anon_sym_LT_EQ] = ACTIONS(2863), - [anon_sym_GT_EQ] = ACTIONS(2863), - [anon_sym_LBRACK] = ACTIONS(2863), - [anon_sym_RBRACK] = ACTIONS(2863), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_COLON] = ACTIONS(2863), - [anon_sym_PLUS_PLUS] = ACTIONS(2863), - [anon_sym_DASH_DASH] = ACTIONS(2863), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2863), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2863), - [anon_sym_CARET] = ACTIONS(2863), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2863), - [anon_sym_LT_LT] = ACTIONS(2863), - [anon_sym_GT_GT] = ACTIONS(2865), - [anon_sym_GT_GT_GT] = ACTIONS(2863), - [anon_sym_AMP_CARET] = ACTIONS(2863), - [anon_sym_AMP_AMP] = ACTIONS(2863), - [anon_sym_PIPE_PIPE] = ACTIONS(2863), - [anon_sym_or] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_QMARK_DOT] = ACTIONS(2863), - [anon_sym_POUND_LBRACK] = ACTIONS(2863), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_DOLLARelse] = ACTIONS(2865), - [anon_sym_is] = ACTIONS(2865), - [anon_sym_BANGis] = ACTIONS(2863), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_BANGin] = ACTIONS(2863), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2863), - [sym_rune_literal] = ACTIONS(2863), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2863), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2863), - [sym___single_quote] = ACTIONS(2863), - [sym___c_double_quote] = ACTIONS(2863), - [sym___c_single_quote] = ACTIONS(2863), - [sym___r_double_quote] = ACTIONS(2863), - [sym___r_single_quote] = ACTIONS(2863), - }, - [1310] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3881), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_EQ_EQ] = ACTIONS(3883), - [anon_sym_BANG_EQ] = ACTIONS(3883), - [anon_sym_LT_EQ] = ACTIONS(3883), - [anon_sym_GT_EQ] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_COLON] = ACTIONS(2009), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(3903), - [anon_sym_BANGin] = ACTIONS(3905), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), - }, - [1311] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2059), + [1346] = { + [sym_identifier] = ACTIONS(3213), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_RBRACE] = ACTIONS(2057), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(2059), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_GT] = ACTIONS(2059), - [anon_sym_EQ_EQ] = ACTIONS(2057), - [anon_sym_BANG_EQ] = ACTIONS(2057), - [anon_sym_LT_EQ] = ACTIONS(2057), - [anon_sym_GT_EQ] = ACTIONS(2057), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(2059), - [anon_sym_mut] = ACTIONS(2059), - [anon_sym_COLON] = ACTIONS(2057), - [anon_sym_PLUS_PLUS] = ACTIONS(2057), - [anon_sym_DASH_DASH] = ACTIONS(2057), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2059), - [anon_sym_spawn] = ACTIONS(2059), - [anon_sym_json_DOTdecode] = ACTIONS(2057), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2057), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(2057), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(2057), - [anon_sym_PIPE_PIPE] = ACTIONS(2057), - [anon_sym_or] = ACTIONS(2059), - [sym_none] = ACTIONS(2059), - [sym_true] = ACTIONS(2059), - [sym_false] = ACTIONS(2059), - [sym_nil] = ACTIONS(2059), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2059), - [anon_sym_DOLLARif] = ACTIONS(2059), - [anon_sym_is] = ACTIONS(2059), - [anon_sym_BANGis] = ACTIONS(2057), - [anon_sym_in] = ACTIONS(2059), - [anon_sym_BANGin] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2059), - [anon_sym_select] = ACTIONS(2059), - [anon_sym_lock] = ACTIONS(2059), - [anon_sym_rlock] = ACTIONS(2059), - [anon_sym_unsafe] = ACTIONS(2059), - [anon_sym_sql] = ACTIONS(2059), - [sym_int_literal] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2057), - [sym_rune_literal] = ACTIONS(2057), - [sym_pseudo_compile_time_identifier] = ACTIONS(2059), - [anon_sym_shared] = ACTIONS(2059), - [anon_sym_map_LBRACK] = ACTIONS(2057), - [anon_sym_chan] = ACTIONS(2059), - [anon_sym_thread] = ACTIONS(2059), - [anon_sym_atomic] = ACTIONS(2059), - [sym___double_quote] = ACTIONS(2057), - [sym___single_quote] = ACTIONS(2057), - [sym___c_double_quote] = ACTIONS(2057), - [sym___c_single_quote] = ACTIONS(2057), - [sym___r_double_quote] = ACTIONS(2057), - [sym___r_single_quote] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_as] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_COMMA] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3213), + [anon_sym_EQ_EQ] = ACTIONS(3211), + [anon_sym_BANG_EQ] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_RBRACK] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_COLON] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3211), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_CARET] = ACTIONS(3211), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3211), + [anon_sym_LT_LT] = ACTIONS(3211), + [anon_sym_GT_GT] = ACTIONS(3213), + [anon_sym_GT_GT_GT] = ACTIONS(3211), + [anon_sym_AMP_CARET] = ACTIONS(3211), + [anon_sym_AMP_AMP] = ACTIONS(3211), + [anon_sym_PIPE_PIPE] = ACTIONS(3211), + [anon_sym_or] = ACTIONS(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_QMARK_DOT] = ACTIONS(3211), + [anon_sym_POUND_LBRACK] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_is] = ACTIONS(3213), + [anon_sym_BANGis] = ACTIONS(3211), + [anon_sym_in] = ACTIONS(3213), + [anon_sym_BANGin] = ACTIONS(3211), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3211), + [sym_rune_literal] = ACTIONS(3211), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3211), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [sym___double_quote] = ACTIONS(3211), + [sym___single_quote] = ACTIONS(3211), + [sym___c_double_quote] = ACTIONS(3211), + [sym___c_single_quote] = ACTIONS(3211), + [sym___r_double_quote] = ACTIONS(3211), + [sym___r_single_quote] = ACTIONS(3211), }, - [1312] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2179), + [1347] = { + [sym_identifier] = ACTIONS(3382), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2177), - [anon_sym_RBRACE] = ACTIONS(2177), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(2179), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_GT] = ACTIONS(2179), - [anon_sym_EQ_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ] = ACTIONS(2177), - [anon_sym_LT_EQ] = ACTIONS(2177), - [anon_sym_GT_EQ] = ACTIONS(2177), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(2179), - [anon_sym_mut] = ACTIONS(2179), - [anon_sym_COLON] = ACTIONS(2177), - [anon_sym_PLUS_PLUS] = ACTIONS(2177), - [anon_sym_DASH_DASH] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2179), - [anon_sym_spawn] = ACTIONS(2179), - [anon_sym_json_DOTdecode] = ACTIONS(2177), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(2177), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(2177), - [anon_sym_PIPE_PIPE] = ACTIONS(2177), - [anon_sym_or] = ACTIONS(2179), - [sym_none] = ACTIONS(2179), - [sym_true] = ACTIONS(2179), - [sym_false] = ACTIONS(2179), - [sym_nil] = ACTIONS(2179), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2179), - [anon_sym_DOLLARif] = ACTIONS(2179), - [anon_sym_is] = ACTIONS(2179), - [anon_sym_BANGis] = ACTIONS(2177), - [anon_sym_in] = ACTIONS(2179), - [anon_sym_BANGin] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2179), - [anon_sym_select] = ACTIONS(2179), - [anon_sym_lock] = ACTIONS(2179), - [anon_sym_rlock] = ACTIONS(2179), - [anon_sym_unsafe] = ACTIONS(2179), - [anon_sym_sql] = ACTIONS(2179), - [sym_int_literal] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2177), - [sym_rune_literal] = ACTIONS(2177), - [sym_pseudo_compile_time_identifier] = ACTIONS(2179), - [anon_sym_shared] = ACTIONS(2179), - [anon_sym_map_LBRACK] = ACTIONS(2177), - [anon_sym_chan] = ACTIONS(2179), - [anon_sym_thread] = ACTIONS(2179), - [anon_sym_atomic] = ACTIONS(2179), - [sym___double_quote] = ACTIONS(2177), - [sym___single_quote] = ACTIONS(2177), - [sym___c_double_quote] = ACTIONS(2177), - [sym___c_single_quote] = ACTIONS(2177), - [sym___r_double_quote] = ACTIONS(2177), - [sym___r_single_quote] = ACTIONS(2177), + [anon_sym_DOT] = ACTIONS(3382), + [anon_sym_as] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_COMMA] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_PIPE] = ACTIONS(3382), + [anon_sym_fn] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_STAR] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_PERCENT] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3382), + [anon_sym_GT] = ACTIONS(3382), + [anon_sym_EQ_EQ] = ACTIONS(3380), + [anon_sym_BANG_EQ] = ACTIONS(3380), + [anon_sym_LT_EQ] = ACTIONS(3380), + [anon_sym_GT_EQ] = ACTIONS(3380), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_RBRACK] = ACTIONS(3380), + [anon_sym_struct] = ACTIONS(3382), + [anon_sym_mut] = ACTIONS(3382), + [anon_sym_COLON] = ACTIONS(3380), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_QMARK] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3382), + [anon_sym_go] = ACTIONS(3382), + [anon_sym_spawn] = ACTIONS(3382), + [anon_sym_json_DOTdecode] = ACTIONS(3380), + [anon_sym_LBRACK2] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_CARET] = ACTIONS(3380), + [anon_sym_AMP] = ACTIONS(3382), + [anon_sym_LT_DASH] = ACTIONS(3380), + [anon_sym_LT_LT] = ACTIONS(3380), + [anon_sym_GT_GT] = ACTIONS(3382), + [anon_sym_GT_GT_GT] = ACTIONS(3380), + [anon_sym_AMP_CARET] = ACTIONS(3380), + [anon_sym_AMP_AMP] = ACTIONS(3380), + [anon_sym_PIPE_PIPE] = ACTIONS(3380), + [anon_sym_or] = ACTIONS(3382), + [sym_none] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_nil] = ACTIONS(3382), + [anon_sym_QMARK_DOT] = ACTIONS(3380), + [anon_sym_POUND_LBRACK] = ACTIONS(3380), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_DOLLARif] = ACTIONS(3382), + [anon_sym_is] = ACTIONS(3382), + [anon_sym_BANGis] = ACTIONS(3380), + [anon_sym_in] = ACTIONS(3382), + [anon_sym_BANGin] = ACTIONS(3380), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_select] = ACTIONS(3382), + [anon_sym_lock] = ACTIONS(3382), + [anon_sym_rlock] = ACTIONS(3382), + [anon_sym_unsafe] = ACTIONS(3382), + [anon_sym_sql] = ACTIONS(3382), + [sym_int_literal] = ACTIONS(3382), + [sym_float_literal] = ACTIONS(3380), + [sym_rune_literal] = ACTIONS(3380), + [sym_pseudo_compile_time_identifier] = ACTIONS(3382), + [anon_sym_shared] = ACTIONS(3382), + [anon_sym_map_LBRACK] = ACTIONS(3380), + [anon_sym_chan] = ACTIONS(3382), + [anon_sym_thread] = ACTIONS(3382), + [anon_sym_atomic] = ACTIONS(3382), + [sym___double_quote] = ACTIONS(3380), + [sym___single_quote] = ACTIONS(3380), + [sym___c_double_quote] = ACTIONS(3380), + [sym___c_single_quote] = ACTIONS(3380), + [sym___r_double_quote] = ACTIONS(3380), + [sym___r_single_quote] = ACTIONS(3380), }, - [1313] = { - [sym_identifier] = ACTIONS(2913), + [1348] = { + [sym_identifier] = ACTIONS(3436), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_as] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2913), - [anon_sym_fn] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2913), - [anon_sym_DASH] = ACTIONS(2913), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2913), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2913), - [anon_sym_GT] = ACTIONS(2913), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2911), - [anon_sym_struct] = ACTIONS(2913), - [anon_sym_mut] = ACTIONS(2913), - [anon_sym_COLON] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2913), - [anon_sym_BANG] = ACTIONS(2913), - [anon_sym_go] = ACTIONS(2913), - [anon_sym_spawn] = ACTIONS(2913), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2913), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2913), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2913), - [sym_none] = ACTIONS(2913), - [sym_true] = ACTIONS(2913), - [sym_false] = ACTIONS(2913), - [sym_nil] = ACTIONS(2913), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2913), - [anon_sym_DOLLARif] = ACTIONS(2913), - [anon_sym_is] = ACTIONS(2913), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2913), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2913), - [anon_sym_select] = ACTIONS(2913), - [anon_sym_lock] = ACTIONS(2913), - [anon_sym_rlock] = ACTIONS(2913), - [anon_sym_unsafe] = ACTIONS(2913), - [anon_sym_sql] = ACTIONS(2913), - [sym_int_literal] = ACTIONS(2913), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [sym_pseudo_compile_time_identifier] = ACTIONS(2913), - [anon_sym_shared] = ACTIONS(2913), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2913), - [anon_sym_thread] = ACTIONS(2913), - [anon_sym_atomic] = ACTIONS(2913), - [sym___double_quote] = ACTIONS(2911), - [sym___single_quote] = ACTIONS(2911), - [sym___c_double_quote] = ACTIONS(2911), - [sym___c_single_quote] = ACTIONS(2911), - [sym___r_double_quote] = ACTIONS(2911), - [sym___r_single_quote] = ACTIONS(2911), + [anon_sym_DOT] = ACTIONS(3436), + [anon_sym_as] = ACTIONS(3436), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_COMMA] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_PIPE] = ACTIONS(3436), + [anon_sym_fn] = ACTIONS(3436), + [anon_sym_PLUS] = ACTIONS(3436), + [anon_sym_DASH] = ACTIONS(3436), + [anon_sym_STAR] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3436), + [anon_sym_PERCENT] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_GT] = ACTIONS(3436), + [anon_sym_EQ_EQ] = ACTIONS(3434), + [anon_sym_BANG_EQ] = ACTIONS(3434), + [anon_sym_LT_EQ] = ACTIONS(3434), + [anon_sym_GT_EQ] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_RBRACK] = ACTIONS(3434), + [anon_sym_struct] = ACTIONS(3436), + [anon_sym_mut] = ACTIONS(3436), + [anon_sym_COLON] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [anon_sym_QMARK] = ACTIONS(3436), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_go] = ACTIONS(3436), + [anon_sym_spawn] = ACTIONS(3436), + [anon_sym_json_DOTdecode] = ACTIONS(3434), + [anon_sym_LBRACK2] = ACTIONS(3436), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_CARET] = ACTIONS(3434), + [anon_sym_AMP] = ACTIONS(3436), + [anon_sym_LT_DASH] = ACTIONS(3434), + [anon_sym_LT_LT] = ACTIONS(3434), + [anon_sym_GT_GT] = ACTIONS(3436), + [anon_sym_GT_GT_GT] = ACTIONS(3434), + [anon_sym_AMP_CARET] = ACTIONS(3434), + [anon_sym_AMP_AMP] = ACTIONS(3434), + [anon_sym_PIPE_PIPE] = ACTIONS(3434), + [anon_sym_or] = ACTIONS(3436), + [sym_none] = ACTIONS(3436), + [sym_true] = ACTIONS(3436), + [sym_false] = ACTIONS(3436), + [sym_nil] = ACTIONS(3436), + [anon_sym_QMARK_DOT] = ACTIONS(3434), + [anon_sym_POUND_LBRACK] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3436), + [anon_sym_DOLLARif] = ACTIONS(3436), + [anon_sym_is] = ACTIONS(3436), + [anon_sym_BANGis] = ACTIONS(3434), + [anon_sym_in] = ACTIONS(3436), + [anon_sym_BANGin] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3436), + [anon_sym_select] = ACTIONS(3436), + [anon_sym_lock] = ACTIONS(3436), + [anon_sym_rlock] = ACTIONS(3436), + [anon_sym_unsafe] = ACTIONS(3436), + [anon_sym_sql] = ACTIONS(3436), + [sym_int_literal] = ACTIONS(3436), + [sym_float_literal] = ACTIONS(3434), + [sym_rune_literal] = ACTIONS(3434), + [sym_pseudo_compile_time_identifier] = ACTIONS(3436), + [anon_sym_shared] = ACTIONS(3436), + [anon_sym_map_LBRACK] = ACTIONS(3434), + [anon_sym_chan] = ACTIONS(3436), + [anon_sym_thread] = ACTIONS(3436), + [anon_sym_atomic] = ACTIONS(3436), + [sym___double_quote] = ACTIONS(3434), + [sym___single_quote] = ACTIONS(3434), + [sym___c_double_quote] = ACTIONS(3434), + [sym___c_single_quote] = ACTIONS(3434), + [sym___r_double_quote] = ACTIONS(3434), + [sym___r_single_quote] = ACTIONS(3434), }, - [1314] = { - [sym_identifier] = ACTIONS(2917), + [1349] = { + [sym_identifier] = ACTIONS(3452), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_as] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2917), - [anon_sym_fn] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2917), - [anon_sym_DASH] = ACTIONS(2917), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2917), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2917), - [anon_sym_GT] = ACTIONS(2917), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2917), - [anon_sym_mut] = ACTIONS(2917), - [anon_sym_COLON] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2917), - [anon_sym_BANG] = ACTIONS(2917), - [anon_sym_go] = ACTIONS(2917), - [anon_sym_spawn] = ACTIONS(2917), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2917), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2917), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_AMP_CARET] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2917), - [sym_none] = ACTIONS(2917), - [sym_true] = ACTIONS(2917), - [sym_false] = ACTIONS(2917), - [sym_nil] = ACTIONS(2917), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2917), - [anon_sym_DOLLARif] = ACTIONS(2917), - [anon_sym_is] = ACTIONS(2917), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2917), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2917), - [anon_sym_select] = ACTIONS(2917), - [anon_sym_lock] = ACTIONS(2917), - [anon_sym_rlock] = ACTIONS(2917), - [anon_sym_unsafe] = ACTIONS(2917), - [anon_sym_sql] = ACTIONS(2917), - [sym_int_literal] = ACTIONS(2917), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [sym_pseudo_compile_time_identifier] = ACTIONS(2917), - [anon_sym_shared] = ACTIONS(2917), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2917), - [anon_sym_thread] = ACTIONS(2917), - [anon_sym_atomic] = ACTIONS(2917), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), + [anon_sym_DOT] = ACTIONS(3452), + [anon_sym_as] = ACTIONS(3452), + [anon_sym_LBRACE] = ACTIONS(3450), + [anon_sym_COMMA] = ACTIONS(3450), + [anon_sym_RBRACE] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3450), + [anon_sym_PIPE] = ACTIONS(3452), + [anon_sym_fn] = ACTIONS(3452), + [anon_sym_PLUS] = ACTIONS(3452), + [anon_sym_DASH] = ACTIONS(3452), + [anon_sym_STAR] = ACTIONS(3450), + [anon_sym_SLASH] = ACTIONS(3452), + [anon_sym_PERCENT] = ACTIONS(3450), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_GT] = ACTIONS(3452), + [anon_sym_EQ_EQ] = ACTIONS(3450), + [anon_sym_BANG_EQ] = ACTIONS(3450), + [anon_sym_LT_EQ] = ACTIONS(3450), + [anon_sym_GT_EQ] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3450), + [anon_sym_RBRACK] = ACTIONS(3450), + [anon_sym_struct] = ACTIONS(3452), + [anon_sym_mut] = ACTIONS(3452), + [anon_sym_COLON] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3450), + [anon_sym_DASH_DASH] = ACTIONS(3450), + [anon_sym_QMARK] = ACTIONS(3452), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_go] = ACTIONS(3452), + [anon_sym_spawn] = ACTIONS(3452), + [anon_sym_json_DOTdecode] = ACTIONS(3450), + [anon_sym_LBRACK2] = ACTIONS(3452), + [anon_sym_TILDE] = ACTIONS(3450), + [anon_sym_CARET] = ACTIONS(3450), + [anon_sym_AMP] = ACTIONS(3452), + [anon_sym_LT_DASH] = ACTIONS(3450), + [anon_sym_LT_LT] = ACTIONS(3450), + [anon_sym_GT_GT] = ACTIONS(3452), + [anon_sym_GT_GT_GT] = ACTIONS(3450), + [anon_sym_AMP_CARET] = ACTIONS(3450), + [anon_sym_AMP_AMP] = ACTIONS(3450), + [anon_sym_PIPE_PIPE] = ACTIONS(3450), + [anon_sym_or] = ACTIONS(3452), + [sym_none] = ACTIONS(3452), + [sym_true] = ACTIONS(3452), + [sym_false] = ACTIONS(3452), + [sym_nil] = ACTIONS(3452), + [anon_sym_QMARK_DOT] = ACTIONS(3450), + [anon_sym_POUND_LBRACK] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3452), + [anon_sym_DOLLARif] = ACTIONS(3452), + [anon_sym_is] = ACTIONS(3452), + [anon_sym_BANGis] = ACTIONS(3450), + [anon_sym_in] = ACTIONS(3452), + [anon_sym_BANGin] = ACTIONS(3450), + [anon_sym_match] = ACTIONS(3452), + [anon_sym_select] = ACTIONS(3452), + [anon_sym_lock] = ACTIONS(3452), + [anon_sym_rlock] = ACTIONS(3452), + [anon_sym_unsafe] = ACTIONS(3452), + [anon_sym_sql] = ACTIONS(3452), + [sym_int_literal] = ACTIONS(3452), + [sym_float_literal] = ACTIONS(3450), + [sym_rune_literal] = ACTIONS(3450), + [sym_pseudo_compile_time_identifier] = ACTIONS(3452), + [anon_sym_shared] = ACTIONS(3452), + [anon_sym_map_LBRACK] = ACTIONS(3450), + [anon_sym_chan] = ACTIONS(3452), + [anon_sym_thread] = ACTIONS(3452), + [anon_sym_atomic] = ACTIONS(3452), + [sym___double_quote] = ACTIONS(3450), + [sym___single_quote] = ACTIONS(3450), + [sym___c_double_quote] = ACTIONS(3450), + [sym___c_single_quote] = ACTIONS(3450), + [sym___r_double_quote] = ACTIONS(3450), + [sym___r_single_quote] = ACTIONS(3450), }, - [1315] = { - [sym_identifier] = ACTIONS(2757), + [1350] = { + [sym_identifier] = ACTIONS(3311), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2755), - [anon_sym_BANG_EQ] = ACTIONS(2755), - [anon_sym_LT_EQ] = ACTIONS(2755), - [anon_sym_GT_EQ] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_COLON] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2755), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_CARET] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2755), - [anon_sym_LT_LT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2755), - [anon_sym_AMP_CARET] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_PIPE_PIPE] = ACTIONS(2755), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2755), - [anon_sym_POUND_LBRACK] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_else] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2755), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2755), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2755), - [sym_rune_literal] = ACTIONS(2755), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2755), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2755), - [sym___single_quote] = ACTIONS(2755), - [sym___c_double_quote] = ACTIONS(2755), - [sym___c_single_quote] = ACTIONS(2755), - [sym___r_double_quote] = ACTIONS(2755), - [sym___r_single_quote] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(3951), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_RBRACK] = ACTIONS(3951), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_COLON] = ACTIONS(3951), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3309), + [sym___single_quote] = ACTIONS(3309), + [sym___c_double_quote] = ACTIONS(3309), + [sym___c_single_quote] = ACTIONS(3309), + [sym___r_double_quote] = ACTIONS(3309), + [sym___r_single_quote] = ACTIONS(3309), }, - [1316] = { - [sym_identifier] = ACTIONS(2921), + [1351] = { + [sym_identifier] = ACTIONS(3420), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_as] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2921), - [anon_sym_fn] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2921), - [anon_sym_DASH] = ACTIONS(2921), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2921), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2921), - [anon_sym_GT] = ACTIONS(2921), - [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(2919), - [anon_sym_RBRACK] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2921), - [anon_sym_mut] = ACTIONS(2921), - [anon_sym_COLON] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2921), - [anon_sym_BANG] = ACTIONS(2921), - [anon_sym_go] = ACTIONS(2921), - [anon_sym_spawn] = ACTIONS(2921), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2921), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2921), - [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(2921), - [sym_none] = ACTIONS(2921), - [sym_true] = ACTIONS(2921), - [sym_false] = ACTIONS(2921), - [sym_nil] = ACTIONS(2921), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2921), - [anon_sym_DOLLARif] = ACTIONS(2921), - [anon_sym_is] = ACTIONS(2921), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2921), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2921), - [anon_sym_select] = ACTIONS(2921), - [anon_sym_lock] = ACTIONS(2921), - [anon_sym_rlock] = ACTIONS(2921), - [anon_sym_unsafe] = ACTIONS(2921), - [anon_sym_sql] = ACTIONS(2921), - [sym_int_literal] = ACTIONS(2921), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [sym_pseudo_compile_time_identifier] = ACTIONS(2921), - [anon_sym_shared] = ACTIONS(2921), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2921), - [anon_sym_thread] = ACTIONS(2921), - [anon_sym_atomic] = ACTIONS(2921), - [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), + [anon_sym_DOT] = ACTIONS(3420), + [anon_sym_as] = ACTIONS(3420), + [anon_sym_LBRACE] = ACTIONS(3418), + [anon_sym_COMMA] = ACTIONS(3418), + [anon_sym_RBRACE] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3418), + [anon_sym_PIPE] = ACTIONS(3420), + [anon_sym_fn] = ACTIONS(3420), + [anon_sym_PLUS] = ACTIONS(3420), + [anon_sym_DASH] = ACTIONS(3420), + [anon_sym_STAR] = ACTIONS(3418), + [anon_sym_SLASH] = ACTIONS(3420), + [anon_sym_PERCENT] = ACTIONS(3418), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_GT] = ACTIONS(3420), + [anon_sym_EQ_EQ] = ACTIONS(3418), + [anon_sym_BANG_EQ] = ACTIONS(3418), + [anon_sym_LT_EQ] = ACTIONS(3418), + [anon_sym_GT_EQ] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3418), + [anon_sym_RBRACK] = ACTIONS(3418), + [anon_sym_struct] = ACTIONS(3420), + [anon_sym_mut] = ACTIONS(3420), + [anon_sym_COLON] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3418), + [anon_sym_DASH_DASH] = ACTIONS(3418), + [anon_sym_QMARK] = ACTIONS(3420), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_go] = ACTIONS(3420), + [anon_sym_spawn] = ACTIONS(3420), + [anon_sym_json_DOTdecode] = ACTIONS(3418), + [anon_sym_LBRACK2] = ACTIONS(3420), + [anon_sym_TILDE] = ACTIONS(3418), + [anon_sym_CARET] = ACTIONS(3418), + [anon_sym_AMP] = ACTIONS(3420), + [anon_sym_LT_DASH] = ACTIONS(3418), + [anon_sym_LT_LT] = ACTIONS(3418), + [anon_sym_GT_GT] = ACTIONS(3420), + [anon_sym_GT_GT_GT] = ACTIONS(3418), + [anon_sym_AMP_CARET] = ACTIONS(3418), + [anon_sym_AMP_AMP] = ACTIONS(3418), + [anon_sym_PIPE_PIPE] = ACTIONS(3418), + [anon_sym_or] = ACTIONS(3420), + [sym_none] = ACTIONS(3420), + [sym_true] = ACTIONS(3420), + [sym_false] = ACTIONS(3420), + [sym_nil] = ACTIONS(3420), + [anon_sym_QMARK_DOT] = ACTIONS(3418), + [anon_sym_POUND_LBRACK] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3420), + [anon_sym_DOLLARif] = ACTIONS(3420), + [anon_sym_is] = ACTIONS(3420), + [anon_sym_BANGis] = ACTIONS(3418), + [anon_sym_in] = ACTIONS(3420), + [anon_sym_BANGin] = ACTIONS(3418), + [anon_sym_match] = ACTIONS(3420), + [anon_sym_select] = ACTIONS(3420), + [anon_sym_lock] = ACTIONS(3420), + [anon_sym_rlock] = ACTIONS(3420), + [anon_sym_unsafe] = ACTIONS(3420), + [anon_sym_sql] = ACTIONS(3420), + [sym_int_literal] = ACTIONS(3420), + [sym_float_literal] = ACTIONS(3418), + [sym_rune_literal] = ACTIONS(3418), + [sym_pseudo_compile_time_identifier] = ACTIONS(3420), + [anon_sym_shared] = ACTIONS(3420), + [anon_sym_map_LBRACK] = ACTIONS(3418), + [anon_sym_chan] = ACTIONS(3420), + [anon_sym_thread] = ACTIONS(3420), + [anon_sym_atomic] = ACTIONS(3420), + [sym___double_quote] = ACTIONS(3418), + [sym___single_quote] = ACTIONS(3418), + [sym___c_double_quote] = ACTIONS(3418), + [sym___c_single_quote] = ACTIONS(3418), + [sym___r_double_quote] = ACTIONS(3418), + [sym___r_single_quote] = ACTIONS(3418), }, - [1317] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(1835), + [1352] = { + [sym_identifier] = ACTIONS(3396), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(1833), - [anon_sym_RBRACE] = ACTIONS(1833), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(1835), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3881), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_EQ_EQ] = ACTIONS(3883), - [anon_sym_BANG_EQ] = ACTIONS(3883), - [anon_sym_LT_EQ] = ACTIONS(3883), - [anon_sym_GT_EQ] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(1835), - [anon_sym_mut] = ACTIONS(1835), - [anon_sym_COLON] = ACTIONS(1833), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(1835), - [anon_sym_spawn] = ACTIONS(1835), - [anon_sym_json_DOTdecode] = ACTIONS(1833), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(1833), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(1833), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(1835), - [sym_true] = ACTIONS(1835), - [sym_false] = ACTIONS(1835), - [sym_nil] = ACTIONS(1835), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(1835), - [anon_sym_DOLLARif] = ACTIONS(1835), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3903), - [anon_sym_BANGin] = ACTIONS(3905), - [anon_sym_match] = ACTIONS(1835), - [anon_sym_select] = ACTIONS(1835), - [anon_sym_lock] = ACTIONS(1835), - [anon_sym_rlock] = ACTIONS(1835), - [anon_sym_unsafe] = ACTIONS(1835), - [anon_sym_sql] = ACTIONS(1835), - [sym_int_literal] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1833), - [sym_rune_literal] = ACTIONS(1833), - [sym_pseudo_compile_time_identifier] = ACTIONS(1835), - [anon_sym_shared] = ACTIONS(1835), - [anon_sym_map_LBRACK] = ACTIONS(1833), - [anon_sym_chan] = ACTIONS(1835), - [anon_sym_thread] = ACTIONS(1835), - [anon_sym_atomic] = ACTIONS(1835), - [sym___double_quote] = ACTIONS(1833), - [sym___single_quote] = ACTIONS(1833), - [sym___c_double_quote] = ACTIONS(1833), - [sym___c_single_quote] = ACTIONS(1833), - [sym___r_double_quote] = ACTIONS(1833), - [sym___r_single_quote] = ACTIONS(1833), + [anon_sym_DOT] = ACTIONS(3396), + [anon_sym_as] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3394), + [anon_sym_COMMA] = ACTIONS(3394), + [anon_sym_RBRACE] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3394), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_fn] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3394), + [anon_sym_SLASH] = ACTIONS(3396), + [anon_sym_PERCENT] = ACTIONS(3394), + [anon_sym_LT] = ACTIONS(3396), + [anon_sym_GT] = ACTIONS(3396), + [anon_sym_EQ_EQ] = ACTIONS(3394), + [anon_sym_BANG_EQ] = ACTIONS(3394), + [anon_sym_LT_EQ] = ACTIONS(3394), + [anon_sym_GT_EQ] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3394), + [anon_sym_RBRACK] = ACTIONS(3394), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_mut] = ACTIONS(3396), + [anon_sym_COLON] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3394), + [anon_sym_DASH_DASH] = ACTIONS(3394), + [anon_sym_QMARK] = ACTIONS(3396), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_go] = ACTIONS(3396), + [anon_sym_spawn] = ACTIONS(3396), + [anon_sym_json_DOTdecode] = ACTIONS(3394), + [anon_sym_LBRACK2] = ACTIONS(3396), + [anon_sym_TILDE] = ACTIONS(3394), + [anon_sym_CARET] = ACTIONS(3394), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3394), + [anon_sym_LT_LT] = ACTIONS(3394), + [anon_sym_GT_GT] = ACTIONS(3396), + [anon_sym_GT_GT_GT] = ACTIONS(3394), + [anon_sym_AMP_CARET] = ACTIONS(3394), + [anon_sym_AMP_AMP] = ACTIONS(3394), + [anon_sym_PIPE_PIPE] = ACTIONS(3394), + [anon_sym_or] = ACTIONS(3396), + [sym_none] = ACTIONS(3396), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [sym_nil] = ACTIONS(3396), + [anon_sym_QMARK_DOT] = ACTIONS(3394), + [anon_sym_POUND_LBRACK] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_DOLLARif] = ACTIONS(3396), + [anon_sym_is] = ACTIONS(3396), + [anon_sym_BANGis] = ACTIONS(3394), + [anon_sym_in] = ACTIONS(3396), + [anon_sym_BANGin] = ACTIONS(3394), + [anon_sym_match] = ACTIONS(3396), + [anon_sym_select] = ACTIONS(3396), + [anon_sym_lock] = ACTIONS(3396), + [anon_sym_rlock] = ACTIONS(3396), + [anon_sym_unsafe] = ACTIONS(3396), + [anon_sym_sql] = ACTIONS(3396), + [sym_int_literal] = ACTIONS(3396), + [sym_float_literal] = ACTIONS(3394), + [sym_rune_literal] = ACTIONS(3394), + [sym_pseudo_compile_time_identifier] = ACTIONS(3396), + [anon_sym_shared] = ACTIONS(3396), + [anon_sym_map_LBRACK] = ACTIONS(3394), + [anon_sym_chan] = ACTIONS(3396), + [anon_sym_thread] = ACTIONS(3396), + [anon_sym_atomic] = ACTIONS(3396), + [sym___double_quote] = ACTIONS(3394), + [sym___single_quote] = ACTIONS(3394), + [sym___c_double_quote] = ACTIONS(3394), + [sym___c_single_quote] = ACTIONS(3394), + [sym___r_double_quote] = ACTIONS(3394), + [sym___r_single_quote] = ACTIONS(3394), }, - [1318] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), + [1353] = { + [sym_identifier] = ACTIONS(2715), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(2011), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(2009), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_as] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_COMMA] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_SLASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2713), + [anon_sym_BANG_EQ] = ACTIONS(2713), + [anon_sym_LT_EQ] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_RBRACK] = ACTIONS(2713), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_COLON] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2713), + [anon_sym_DASH_DASH] = ACTIONS(2713), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2713), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2713), + [anon_sym_CARET] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2713), + [anon_sym_LT_LT] = ACTIONS(2713), + [anon_sym_GT_GT] = ACTIONS(2715), + [anon_sym_GT_GT_GT] = ACTIONS(2713), + [anon_sym_AMP_CARET] = ACTIONS(2713), + [anon_sym_AMP_AMP] = ACTIONS(2713), + [anon_sym_PIPE_PIPE] = ACTIONS(2713), + [anon_sym_or] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_QMARK_DOT] = ACTIONS(2713), + [anon_sym_POUND_LBRACK] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_is] = ACTIONS(2715), + [anon_sym_BANGis] = ACTIONS(2713), + [anon_sym_in] = ACTIONS(2715), + [anon_sym_BANGin] = ACTIONS(2713), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2713), + [sym_rune_literal] = ACTIONS(2713), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2713), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2713), + [sym___single_quote] = ACTIONS(2713), + [sym___c_double_quote] = ACTIONS(2713), + [sym___c_single_quote] = ACTIONS(2713), + [sym___r_double_quote] = ACTIONS(2713), + [sym___r_single_quote] = ACTIONS(2713), }, - [1319] = { - [sym_identifier] = ACTIONS(2855), + [1354] = { + [sym_identifier] = ACTIONS(3265), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2855), - [anon_sym_as] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_fn] = ACTIONS(2855), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_STAR] = ACTIONS(2853), - [anon_sym_SLASH] = ACTIONS(2855), - [anon_sym_PERCENT] = ACTIONS(2853), - [anon_sym_LT] = ACTIONS(2855), - [anon_sym_GT] = ACTIONS(2855), - [anon_sym_EQ_EQ] = ACTIONS(2853), - [anon_sym_BANG_EQ] = ACTIONS(2853), - [anon_sym_LT_EQ] = ACTIONS(2853), - [anon_sym_GT_EQ] = ACTIONS(2853), - [anon_sym_LBRACK] = ACTIONS(2853), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_struct] = ACTIONS(2855), - [anon_sym_mut] = ACTIONS(2855), - [anon_sym_COLON] = ACTIONS(2853), - [anon_sym_PLUS_PLUS] = ACTIONS(2853), - [anon_sym_DASH_DASH] = ACTIONS(2853), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_BANG] = ACTIONS(2855), - [anon_sym_go] = ACTIONS(2855), - [anon_sym_spawn] = ACTIONS(2855), - [anon_sym_json_DOTdecode] = ACTIONS(2853), - [anon_sym_LBRACK2] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2853), - [anon_sym_CARET] = ACTIONS(2853), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_LT_DASH] = ACTIONS(2853), - [anon_sym_LT_LT] = ACTIONS(2853), - [anon_sym_GT_GT] = ACTIONS(2855), - [anon_sym_GT_GT_GT] = ACTIONS(2853), - [anon_sym_AMP_CARET] = ACTIONS(2853), - [anon_sym_AMP_AMP] = ACTIONS(2853), - [anon_sym_PIPE_PIPE] = ACTIONS(2853), - [anon_sym_or] = ACTIONS(2855), - [sym_none] = ACTIONS(2855), - [sym_true] = ACTIONS(2855), - [sym_false] = ACTIONS(2855), - [sym_nil] = ACTIONS(2855), - [anon_sym_QMARK_DOT] = ACTIONS(2853), - [anon_sym_POUND_LBRACK] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2855), - [anon_sym_DOLLARif] = ACTIONS(2855), - [anon_sym_DOLLARelse] = ACTIONS(3937), - [anon_sym_is] = ACTIONS(2855), - [anon_sym_BANGis] = ACTIONS(2853), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_BANGin] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2855), - [anon_sym_select] = ACTIONS(2855), - [anon_sym_lock] = ACTIONS(2855), - [anon_sym_rlock] = ACTIONS(2855), - [anon_sym_unsafe] = ACTIONS(2855), - [anon_sym_sql] = ACTIONS(2855), - [sym_int_literal] = ACTIONS(2855), - [sym_float_literal] = ACTIONS(2853), - [sym_rune_literal] = ACTIONS(2853), - [sym_pseudo_compile_time_identifier] = ACTIONS(2855), - [anon_sym_shared] = ACTIONS(2855), - [anon_sym_map_LBRACK] = ACTIONS(2853), - [anon_sym_chan] = ACTIONS(2855), - [anon_sym_thread] = ACTIONS(2855), - [anon_sym_atomic] = ACTIONS(2855), - [sym___double_quote] = ACTIONS(2853), - [sym___single_quote] = ACTIONS(2853), - [sym___c_double_quote] = ACTIONS(2853), - [sym___c_single_quote] = ACTIONS(2853), - [sym___r_double_quote] = ACTIONS(2853), - [sym___r_single_quote] = ACTIONS(2853), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_as] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3263), + [anon_sym_COMMA] = ACTIONS(3263), + [anon_sym_RBRACE] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3263), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_fn] = ACTIONS(3265), + [anon_sym_PLUS] = ACTIONS(3265), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3263), + [anon_sym_SLASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3263), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3263), + [anon_sym_BANG_EQ] = ACTIONS(3263), + [anon_sym_LT_EQ] = ACTIONS(3263), + [anon_sym_GT_EQ] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3263), + [anon_sym_RBRACK] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3265), + [anon_sym_mut] = ACTIONS(3265), + [anon_sym_COLON] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3263), + [anon_sym_DASH_DASH] = ACTIONS(3263), + [anon_sym_QMARK] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_go] = ACTIONS(3265), + [anon_sym_spawn] = ACTIONS(3265), + [anon_sym_json_DOTdecode] = ACTIONS(3263), + [anon_sym_LBRACK2] = ACTIONS(3265), + [anon_sym_TILDE] = ACTIONS(3263), + [anon_sym_CARET] = ACTIONS(3263), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_LT_DASH] = ACTIONS(3263), + [anon_sym_LT_LT] = ACTIONS(3263), + [anon_sym_GT_GT] = ACTIONS(3265), + [anon_sym_GT_GT_GT] = ACTIONS(3263), + [anon_sym_AMP_CARET] = ACTIONS(3263), + [anon_sym_AMP_AMP] = ACTIONS(3263), + [anon_sym_PIPE_PIPE] = ACTIONS(3263), + [anon_sym_or] = ACTIONS(3265), + [sym_none] = ACTIONS(3265), + [sym_true] = ACTIONS(3265), + [sym_false] = ACTIONS(3265), + [sym_nil] = ACTIONS(3265), + [anon_sym_QMARK_DOT] = ACTIONS(3263), + [anon_sym_POUND_LBRACK] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3265), + [anon_sym_DOLLARif] = ACTIONS(3265), + [anon_sym_is] = ACTIONS(3265), + [anon_sym_BANGis] = ACTIONS(3263), + [anon_sym_in] = ACTIONS(3265), + [anon_sym_BANGin] = ACTIONS(3263), + [anon_sym_match] = ACTIONS(3265), + [anon_sym_select] = ACTIONS(3265), + [anon_sym_lock] = ACTIONS(3265), + [anon_sym_rlock] = ACTIONS(3265), + [anon_sym_unsafe] = ACTIONS(3265), + [anon_sym_sql] = ACTIONS(3265), + [sym_int_literal] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3263), + [sym_rune_literal] = ACTIONS(3263), + [sym_pseudo_compile_time_identifier] = ACTIONS(3265), + [anon_sym_shared] = ACTIONS(3265), + [anon_sym_map_LBRACK] = ACTIONS(3263), + [anon_sym_chan] = ACTIONS(3265), + [anon_sym_thread] = ACTIONS(3265), + [anon_sym_atomic] = ACTIONS(3265), + [sym___double_quote] = ACTIONS(3263), + [sym___single_quote] = ACTIONS(3263), + [sym___c_double_quote] = ACTIONS(3263), + [sym___c_single_quote] = ACTIONS(3263), + [sym___r_double_quote] = ACTIONS(3263), + [sym___r_single_quote] = ACTIONS(3263), }, - [1320] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(2011), + [1355] = { + [sym_identifier] = ACTIONS(3374), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2009), - [anon_sym_COMMA] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3909), - [anon_sym_fn] = ACTIONS(2011), - [anon_sym_PLUS] = ACTIONS(3909), - [anon_sym_DASH] = ACTIONS(3909), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_SLASH] = ACTIONS(3913), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_GT] = ACTIONS(2011), - [anon_sym_EQ_EQ] = ACTIONS(2009), - [anon_sym_BANG_EQ] = ACTIONS(2009), - [anon_sym_LT_EQ] = ACTIONS(2009), - [anon_sym_GT_EQ] = ACTIONS(2009), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_RBRACK] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2011), - [anon_sym_mut] = ACTIONS(2011), - [anon_sym_PLUS_PLUS] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2009), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(2011), - [anon_sym_spawn] = ACTIONS(2011), - [anon_sym_json_DOTdecode] = ACTIONS(2009), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(2009), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3913), - [anon_sym_LT_DASH] = ACTIONS(2009), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3913), - [anon_sym_GT_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_CARET] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(2009), - [anon_sym_PIPE_PIPE] = ACTIONS(2009), - [anon_sym_or] = ACTIONS(2011), - [sym_none] = ACTIONS(2011), - [sym_true] = ACTIONS(2011), - [sym_false] = ACTIONS(2011), - [sym_nil] = ACTIONS(2011), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_DOLLARif] = ACTIONS(2011), - [anon_sym_is] = ACTIONS(2011), - [anon_sym_BANGis] = ACTIONS(2009), - [anon_sym_in] = ACTIONS(2011), - [anon_sym_BANGin] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2011), - [anon_sym_select] = ACTIONS(2011), - [anon_sym_lock] = ACTIONS(2011), - [anon_sym_rlock] = ACTIONS(2011), - [anon_sym_unsafe] = ACTIONS(2011), - [anon_sym_sql] = ACTIONS(2011), - [sym_int_literal] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2009), - [sym_rune_literal] = ACTIONS(2009), - [sym_pseudo_compile_time_identifier] = ACTIONS(2011), - [anon_sym_shared] = ACTIONS(2011), - [anon_sym_map_LBRACK] = ACTIONS(2009), - [anon_sym_chan] = ACTIONS(2011), - [anon_sym_thread] = ACTIONS(2011), - [anon_sym_atomic] = ACTIONS(2011), - [sym___double_quote] = ACTIONS(2009), - [sym___single_quote] = ACTIONS(2009), - [sym___c_double_quote] = ACTIONS(2009), - [sym___c_single_quote] = ACTIONS(2009), - [sym___r_double_quote] = ACTIONS(2009), - [sym___r_single_quote] = ACTIONS(2009), + [anon_sym_DOT] = ACTIONS(3374), + [anon_sym_as] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_COMMA] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_PIPE] = ACTIONS(3374), + [anon_sym_fn] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_STAR] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_PERCENT] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3374), + [anon_sym_GT] = ACTIONS(3374), + [anon_sym_EQ_EQ] = ACTIONS(3372), + [anon_sym_BANG_EQ] = ACTIONS(3372), + [anon_sym_LT_EQ] = ACTIONS(3372), + [anon_sym_GT_EQ] = ACTIONS(3372), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_RBRACK] = ACTIONS(3372), + [anon_sym_struct] = ACTIONS(3374), + [anon_sym_mut] = ACTIONS(3374), + [anon_sym_COLON] = ACTIONS(3372), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_QMARK] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3374), + [anon_sym_go] = ACTIONS(3374), + [anon_sym_spawn] = ACTIONS(3374), + [anon_sym_json_DOTdecode] = ACTIONS(3372), + [anon_sym_LBRACK2] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3372), + [anon_sym_CARET] = ACTIONS(3372), + [anon_sym_AMP] = ACTIONS(3374), + [anon_sym_LT_DASH] = ACTIONS(3372), + [anon_sym_LT_LT] = ACTIONS(3372), + [anon_sym_GT_GT] = ACTIONS(3374), + [anon_sym_GT_GT_GT] = ACTIONS(3372), + [anon_sym_AMP_CARET] = ACTIONS(3372), + [anon_sym_AMP_AMP] = ACTIONS(3372), + [anon_sym_PIPE_PIPE] = ACTIONS(3372), + [anon_sym_or] = ACTIONS(3374), + [sym_none] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_nil] = ACTIONS(3374), + [anon_sym_QMARK_DOT] = ACTIONS(3372), + [anon_sym_POUND_LBRACK] = ACTIONS(3372), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_DOLLARif] = ACTIONS(3374), + [anon_sym_is] = ACTIONS(3374), + [anon_sym_BANGis] = ACTIONS(3372), + [anon_sym_in] = ACTIONS(3374), + [anon_sym_BANGin] = ACTIONS(3372), + [anon_sym_match] = ACTIONS(3374), + [anon_sym_select] = ACTIONS(3374), + [anon_sym_lock] = ACTIONS(3374), + [anon_sym_rlock] = ACTIONS(3374), + [anon_sym_unsafe] = ACTIONS(3374), + [anon_sym_sql] = ACTIONS(3374), + [sym_int_literal] = ACTIONS(3374), + [sym_float_literal] = ACTIONS(3372), + [sym_rune_literal] = ACTIONS(3372), + [sym_pseudo_compile_time_identifier] = ACTIONS(3374), + [anon_sym_shared] = ACTIONS(3374), + [anon_sym_map_LBRACK] = ACTIONS(3372), + [anon_sym_chan] = ACTIONS(3374), + [anon_sym_thread] = ACTIONS(3374), + [anon_sym_atomic] = ACTIONS(3374), + [sym___double_quote] = ACTIONS(3372), + [sym___single_quote] = ACTIONS(3372), + [sym___c_double_quote] = ACTIONS(3372), + [sym___c_single_quote] = ACTIONS(3372), + [sym___r_double_quote] = ACTIONS(3372), + [sym___r_single_quote] = ACTIONS(3372), }, - [1321] = { - [sym_identifier] = ACTIONS(2931), + [1356] = { + [sym_identifier] = ACTIONS(3253), [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_RBRACE] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2929), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2929), - [anon_sym_BANG_EQ] = ACTIONS(2929), - [anon_sym_LT_EQ] = ACTIONS(2929), - [anon_sym_GT_EQ] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_COLON] = ACTIONS(2929), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2929), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_CARET] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2929), - [anon_sym_LT_LT] = ACTIONS(2929), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2929), - [anon_sym_AMP_CARET] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_PIPE_PIPE] = ACTIONS(2929), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2929), - [anon_sym_POUND_LBRACK] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2929), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2929), - [sym_rune_literal] = ACTIONS(2929), - [sym_pseudo_compile_time_identifier] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2929), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2929), - [sym___single_quote] = ACTIONS(2929), - [sym___c_double_quote] = ACTIONS(2929), - [sym___c_single_quote] = ACTIONS(2929), - [sym___r_double_quote] = ACTIONS(2929), - [sym___r_single_quote] = ACTIONS(2929), + [anon_sym_DOT] = ACTIONS(3253), + [anon_sym_as] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3251), + [anon_sym_COMMA] = ACTIONS(3251), + [anon_sym_RBRACE] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3251), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_fn] = ACTIONS(3253), + [anon_sym_PLUS] = ACTIONS(3253), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3251), + [anon_sym_SLASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3251), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3251), + [anon_sym_BANG_EQ] = ACTIONS(3251), + [anon_sym_LT_EQ] = ACTIONS(3251), + [anon_sym_GT_EQ] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3251), + [anon_sym_RBRACK] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3253), + [anon_sym_mut] = ACTIONS(3253), + [anon_sym_COLON] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3251), + [anon_sym_DASH_DASH] = ACTIONS(3251), + [anon_sym_QMARK] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_go] = ACTIONS(3253), + [anon_sym_spawn] = ACTIONS(3253), + [anon_sym_json_DOTdecode] = ACTIONS(3251), + [anon_sym_LBRACK2] = ACTIONS(3253), + [anon_sym_TILDE] = ACTIONS(3251), + [anon_sym_CARET] = ACTIONS(3251), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_LT_DASH] = ACTIONS(3251), + [anon_sym_LT_LT] = ACTIONS(3251), + [anon_sym_GT_GT] = ACTIONS(3253), + [anon_sym_GT_GT_GT] = ACTIONS(3251), + [anon_sym_AMP_CARET] = ACTIONS(3251), + [anon_sym_AMP_AMP] = ACTIONS(3251), + [anon_sym_PIPE_PIPE] = ACTIONS(3251), + [anon_sym_or] = ACTIONS(3253), + [sym_none] = ACTIONS(3253), + [sym_true] = ACTIONS(3253), + [sym_false] = ACTIONS(3253), + [sym_nil] = ACTIONS(3253), + [anon_sym_QMARK_DOT] = ACTIONS(3251), + [anon_sym_POUND_LBRACK] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3253), + [anon_sym_DOLLARif] = ACTIONS(3253), + [anon_sym_is] = ACTIONS(3253), + [anon_sym_BANGis] = ACTIONS(3251), + [anon_sym_in] = ACTIONS(3253), + [anon_sym_BANGin] = ACTIONS(3251), + [anon_sym_match] = ACTIONS(3253), + [anon_sym_select] = ACTIONS(3253), + [anon_sym_lock] = ACTIONS(3253), + [anon_sym_rlock] = ACTIONS(3253), + [anon_sym_unsafe] = ACTIONS(3253), + [anon_sym_sql] = ACTIONS(3253), + [sym_int_literal] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3251), + [sym_rune_literal] = ACTIONS(3251), + [sym_pseudo_compile_time_identifier] = ACTIONS(3253), + [anon_sym_shared] = ACTIONS(3253), + [anon_sym_map_LBRACK] = ACTIONS(3251), + [anon_sym_chan] = ACTIONS(3253), + [anon_sym_thread] = ACTIONS(3253), + [anon_sym_atomic] = ACTIONS(3253), + [sym___double_quote] = ACTIONS(3251), + [sym___single_quote] = ACTIONS(3251), + [sym___c_double_quote] = ACTIONS(3251), + [sym___c_single_quote] = ACTIONS(3251), + [sym___r_double_quote] = ACTIONS(3251), + [sym___r_single_quote] = ACTIONS(3251), }, - [1322] = { - [sym_identifier] = ACTIONS(3359), + [1357] = { + [sym_identifier] = ACTIONS(3412), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_as] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_PERCENT] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_GT] = ACTIONS(3359), - [anon_sym_EQ_EQ] = ACTIONS(3357), - [anon_sym_BANG_EQ] = ACTIONS(3357), - [anon_sym_LT_EQ] = ACTIONS(3357), - [anon_sym_GT_EQ] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3357), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_COLON] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3357), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_CARET] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3357), - [anon_sym_LT_LT] = ACTIONS(3357), - [anon_sym_GT_GT] = ACTIONS(3359), - [anon_sym_GT_GT_GT] = ACTIONS(3357), - [anon_sym_AMP_CARET] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_QMARK_DOT] = ACTIONS(3357), - [anon_sym_POUND_LBRACK] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_is] = ACTIONS(3359), - [anon_sym_BANGis] = ACTIONS(3357), - [anon_sym_in] = ACTIONS(3359), - [anon_sym_BANGin] = ACTIONS(3357), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3357), - [sym_rune_literal] = ACTIONS(3357), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3357), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3357), - [sym___single_quote] = ACTIONS(3357), - [sym___c_double_quote] = ACTIONS(3357), - [sym___c_single_quote] = ACTIONS(3357), - [sym___r_double_quote] = ACTIONS(3357), - [sym___r_single_quote] = ACTIONS(3357), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_COMMA] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3410), + [anon_sym_BANG_EQ] = ACTIONS(3410), + [anon_sym_LT_EQ] = ACTIONS(3410), + [anon_sym_GT_EQ] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_COLON] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3410), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(3410), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_CARET] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3410), + [anon_sym_POUND_LBRACK] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3410), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3410), + [sym_rune_literal] = ACTIONS(3410), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3410), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3410), + [sym___single_quote] = ACTIONS(3410), + [sym___c_double_quote] = ACTIONS(3410), + [sym___c_single_quote] = ACTIONS(3410), + [sym___r_double_quote] = ACTIONS(3410), + [sym___r_single_quote] = ACTIONS(3410), }, - [1323] = { - [sym_identifier] = ACTIONS(3429), + [1358] = { + [sym_identifier] = ACTIONS(3366), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3429), - [anon_sym_as] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_fn] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_STAR] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_PERCENT] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_GT] = ACTIONS(3429), - [anon_sym_EQ_EQ] = ACTIONS(3427), - [anon_sym_BANG_EQ] = ACTIONS(3427), - [anon_sym_LT_EQ] = ACTIONS(3427), - [anon_sym_GT_EQ] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_RBRACK] = ACTIONS(3427), - [anon_sym_struct] = ACTIONS(3429), - [anon_sym_mut] = ACTIONS(3429), - [anon_sym_COLON] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_go] = ACTIONS(3429), - [anon_sym_spawn] = ACTIONS(3429), - [anon_sym_json_DOTdecode] = ACTIONS(3427), - [anon_sym_LBRACK2] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_CARET] = ACTIONS(3427), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_LT_DASH] = ACTIONS(3427), - [anon_sym_LT_LT] = ACTIONS(3427), - [anon_sym_GT_GT] = ACTIONS(3429), - [anon_sym_GT_GT_GT] = ACTIONS(3427), - [anon_sym_AMP_CARET] = ACTIONS(3427), - [anon_sym_AMP_AMP] = ACTIONS(3427), - [anon_sym_PIPE_PIPE] = ACTIONS(3427), - [anon_sym_or] = ACTIONS(3429), - [sym_none] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_nil] = ACTIONS(3429), - [anon_sym_QMARK_DOT] = ACTIONS(3427), - [anon_sym_POUND_LBRACK] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_DOLLARif] = ACTIONS(3429), - [anon_sym_is] = ACTIONS(3429), - [anon_sym_BANGis] = ACTIONS(3427), - [anon_sym_in] = ACTIONS(3429), - [anon_sym_BANGin] = ACTIONS(3427), - [anon_sym_match] = ACTIONS(3429), - [anon_sym_select] = ACTIONS(3429), - [anon_sym_lock] = ACTIONS(3429), - [anon_sym_rlock] = ACTIONS(3429), - [anon_sym_unsafe] = ACTIONS(3429), - [anon_sym_sql] = ACTIONS(3429), - [sym_int_literal] = ACTIONS(3429), - [sym_float_literal] = ACTIONS(3427), - [sym_rune_literal] = ACTIONS(3427), - [sym_pseudo_compile_time_identifier] = ACTIONS(3429), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3427), - [anon_sym_chan] = ACTIONS(3429), - [anon_sym_thread] = ACTIONS(3429), - [anon_sym_atomic] = ACTIONS(3429), - [sym___double_quote] = ACTIONS(3427), - [sym___single_quote] = ACTIONS(3427), - [sym___c_double_quote] = ACTIONS(3427), - [sym___c_single_quote] = ACTIONS(3427), - [sym___r_double_quote] = ACTIONS(3427), - [sym___r_single_quote] = ACTIONS(3427), + [anon_sym_DOT] = ACTIONS(3366), + [anon_sym_as] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_COMMA] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_PIPE] = ACTIONS(3366), + [anon_sym_fn] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_STAR] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_PERCENT] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_GT] = ACTIONS(3366), + [anon_sym_EQ_EQ] = ACTIONS(3364), + [anon_sym_BANG_EQ] = ACTIONS(3364), + [anon_sym_LT_EQ] = ACTIONS(3364), + [anon_sym_GT_EQ] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_RBRACK] = ACTIONS(3364), + [anon_sym_struct] = ACTIONS(3366), + [anon_sym_mut] = ACTIONS(3366), + [anon_sym_COLON] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_QMARK] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_go] = ACTIONS(3366), + [anon_sym_spawn] = ACTIONS(3366), + [anon_sym_json_DOTdecode] = ACTIONS(3364), + [anon_sym_LBRACK2] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_CARET] = ACTIONS(3364), + [anon_sym_AMP] = ACTIONS(3366), + [anon_sym_LT_DASH] = ACTIONS(3364), + [anon_sym_LT_LT] = ACTIONS(3364), + [anon_sym_GT_GT] = ACTIONS(3366), + [anon_sym_GT_GT_GT] = ACTIONS(3364), + [anon_sym_AMP_CARET] = ACTIONS(3364), + [anon_sym_AMP_AMP] = ACTIONS(3364), + [anon_sym_PIPE_PIPE] = ACTIONS(3364), + [anon_sym_or] = ACTIONS(3366), + [sym_none] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_nil] = ACTIONS(3366), + [anon_sym_QMARK_DOT] = ACTIONS(3364), + [anon_sym_POUND_LBRACK] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_DOLLARif] = ACTIONS(3366), + [anon_sym_is] = ACTIONS(3366), + [anon_sym_BANGis] = ACTIONS(3364), + [anon_sym_in] = ACTIONS(3366), + [anon_sym_BANGin] = ACTIONS(3364), + [anon_sym_match] = ACTIONS(3366), + [anon_sym_select] = ACTIONS(3366), + [anon_sym_lock] = ACTIONS(3366), + [anon_sym_rlock] = ACTIONS(3366), + [anon_sym_unsafe] = ACTIONS(3366), + [anon_sym_sql] = ACTIONS(3366), + [sym_int_literal] = ACTIONS(3366), + [sym_float_literal] = ACTIONS(3364), + [sym_rune_literal] = ACTIONS(3364), + [sym_pseudo_compile_time_identifier] = ACTIONS(3366), + [anon_sym_shared] = ACTIONS(3366), + [anon_sym_map_LBRACK] = ACTIONS(3364), + [anon_sym_chan] = ACTIONS(3366), + [anon_sym_thread] = ACTIONS(3366), + [anon_sym_atomic] = ACTIONS(3366), + [sym___double_quote] = ACTIONS(3364), + [sym___single_quote] = ACTIONS(3364), + [sym___c_double_quote] = ACTIONS(3364), + [sym___c_single_quote] = ACTIONS(3364), + [sym___r_double_quote] = ACTIONS(3364), + [sym___r_single_quote] = ACTIONS(3364), }, - [1324] = { - [sym_identifier] = ACTIONS(3433), + [1359] = { + [sym_identifier] = ACTIONS(3027), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3433), - [anon_sym_as] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_fn] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_STAR] = ACTIONS(3431), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_PERCENT] = ACTIONS(3431), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_GT] = ACTIONS(3433), - [anon_sym_EQ_EQ] = ACTIONS(3431), - [anon_sym_BANG_EQ] = ACTIONS(3431), - [anon_sym_LT_EQ] = ACTIONS(3431), - [anon_sym_GT_EQ] = ACTIONS(3431), - [anon_sym_LBRACK] = ACTIONS(3431), - [anon_sym_RBRACK] = ACTIONS(3431), - [anon_sym_struct] = ACTIONS(3433), - [anon_sym_mut] = ACTIONS(3433), - [anon_sym_COLON] = ACTIONS(3431), - [anon_sym_PLUS_PLUS] = ACTIONS(3431), - [anon_sym_DASH_DASH] = ACTIONS(3431), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_go] = ACTIONS(3433), - [anon_sym_spawn] = ACTIONS(3433), - [anon_sym_json_DOTdecode] = ACTIONS(3431), - [anon_sym_LBRACK2] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3431), - [anon_sym_CARET] = ACTIONS(3431), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_LT_DASH] = ACTIONS(3431), - [anon_sym_LT_LT] = ACTIONS(3431), - [anon_sym_GT_GT] = ACTIONS(3433), - [anon_sym_GT_GT_GT] = ACTIONS(3431), - [anon_sym_AMP_CARET] = ACTIONS(3431), - [anon_sym_AMP_AMP] = ACTIONS(3431), - [anon_sym_PIPE_PIPE] = ACTIONS(3431), - [anon_sym_or] = ACTIONS(3433), - [sym_none] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_nil] = ACTIONS(3433), - [anon_sym_QMARK_DOT] = ACTIONS(3431), - [anon_sym_POUND_LBRACK] = ACTIONS(3431), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_DOLLARif] = ACTIONS(3433), - [anon_sym_is] = ACTIONS(3433), - [anon_sym_BANGis] = ACTIONS(3431), - [anon_sym_in] = ACTIONS(3433), - [anon_sym_BANGin] = ACTIONS(3431), - [anon_sym_match] = ACTIONS(3433), - [anon_sym_select] = ACTIONS(3433), - [anon_sym_lock] = ACTIONS(3433), - [anon_sym_rlock] = ACTIONS(3433), - [anon_sym_unsafe] = ACTIONS(3433), - [anon_sym_sql] = ACTIONS(3433), - [sym_int_literal] = ACTIONS(3433), - [sym_float_literal] = ACTIONS(3431), - [sym_rune_literal] = ACTIONS(3431), - [sym_pseudo_compile_time_identifier] = ACTIONS(3433), - [anon_sym_shared] = ACTIONS(3433), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3433), - [anon_sym_atomic] = ACTIONS(3433), - [sym___double_quote] = ACTIONS(3431), - [sym___single_quote] = ACTIONS(3431), - [sym___c_double_quote] = ACTIONS(3431), - [sym___c_single_quote] = ACTIONS(3431), - [sym___r_double_quote] = ACTIONS(3431), - [sym___r_single_quote] = ACTIONS(3431), + [anon_sym_DOT] = ACTIONS(3027), + [anon_sym_as] = ACTIONS(3027), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_COMMA] = ACTIONS(3025), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_PLUS] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_SLASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3027), + [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(3025), + [anon_sym_RBRACK] = ACTIONS(3025), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_mut] = ACTIONS(3027), + [anon_sym_COLON] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3025), + [anon_sym_DASH_DASH] = ACTIONS(3025), + [anon_sym_QMARK] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3027), + [anon_sym_go] = ACTIONS(3027), + [anon_sym_spawn] = ACTIONS(3027), + [anon_sym_json_DOTdecode] = ACTIONS(3025), + [anon_sym_LBRACK2] = ACTIONS(3027), + [anon_sym_TILDE] = ACTIONS(3025), + [anon_sym_CARET] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3027), + [anon_sym_LT_DASH] = ACTIONS(3025), + [anon_sym_LT_LT] = ACTIONS(3025), + [anon_sym_GT_GT] = ACTIONS(3027), + [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(3027), + [sym_none] = ACTIONS(3027), + [sym_true] = ACTIONS(3027), + [sym_false] = ACTIONS(3027), + [sym_nil] = ACTIONS(3027), + [anon_sym_QMARK_DOT] = ACTIONS(3025), + [anon_sym_POUND_LBRACK] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_DOLLARif] = ACTIONS(3027), + [anon_sym_is] = ACTIONS(3027), + [anon_sym_BANGis] = ACTIONS(3025), + [anon_sym_in] = ACTIONS(3027), + [anon_sym_BANGin] = ACTIONS(3025), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_select] = ACTIONS(3027), + [anon_sym_lock] = ACTIONS(3027), + [anon_sym_rlock] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_sql] = ACTIONS(3027), + [sym_int_literal] = ACTIONS(3027), + [sym_float_literal] = ACTIONS(3025), + [sym_rune_literal] = ACTIONS(3025), + [sym_pseudo_compile_time_identifier] = ACTIONS(3027), + [anon_sym_shared] = ACTIONS(3027), + [anon_sym_map_LBRACK] = ACTIONS(3025), + [anon_sym_chan] = ACTIONS(3027), + [anon_sym_thread] = ACTIONS(3027), + [anon_sym_atomic] = ACTIONS(3027), + [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), }, - [1325] = { - [sym_identifier] = ACTIONS(3425), + [1360] = { + [sym_identifier] = ACTIONS(3227), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3425), - [anon_sym_as] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_fn] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_PERCENT] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_GT] = ACTIONS(3425), - [anon_sym_EQ_EQ] = ACTIONS(3423), - [anon_sym_BANG_EQ] = ACTIONS(3423), - [anon_sym_LT_EQ] = ACTIONS(3423), - [anon_sym_GT_EQ] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_struct] = ACTIONS(3425), - [anon_sym_mut] = ACTIONS(3425), - [anon_sym_COLON] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_go] = ACTIONS(3425), - [anon_sym_spawn] = ACTIONS(3425), - [anon_sym_json_DOTdecode] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_CARET] = ACTIONS(3423), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_LT_DASH] = ACTIONS(3423), - [anon_sym_LT_LT] = ACTIONS(3423), - [anon_sym_GT_GT] = ACTIONS(3425), - [anon_sym_GT_GT_GT] = ACTIONS(3423), - [anon_sym_AMP_CARET] = ACTIONS(3423), - [anon_sym_AMP_AMP] = ACTIONS(3423), - [anon_sym_PIPE_PIPE] = ACTIONS(3423), - [anon_sym_or] = ACTIONS(3425), - [sym_none] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_nil] = ACTIONS(3425), - [anon_sym_QMARK_DOT] = ACTIONS(3423), - [anon_sym_POUND_LBRACK] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_DOLLARif] = ACTIONS(3425), - [anon_sym_is] = ACTIONS(3425), - [anon_sym_BANGis] = ACTIONS(3423), - [anon_sym_in] = ACTIONS(3425), - [anon_sym_BANGin] = ACTIONS(3423), - [anon_sym_match] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_lock] = ACTIONS(3425), - [anon_sym_rlock] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3425), - [anon_sym_sql] = ACTIONS(3425), - [sym_int_literal] = ACTIONS(3425), - [sym_float_literal] = ACTIONS(3423), - [sym_rune_literal] = ACTIONS(3423), - [sym_pseudo_compile_time_identifier] = ACTIONS(3425), - [anon_sym_shared] = ACTIONS(3425), - [anon_sym_map_LBRACK] = ACTIONS(3423), - [anon_sym_chan] = ACTIONS(3425), - [anon_sym_thread] = ACTIONS(3425), - [anon_sym_atomic] = ACTIONS(3425), - [sym___double_quote] = ACTIONS(3423), - [sym___single_quote] = ACTIONS(3423), - [sym___c_double_quote] = ACTIONS(3423), - [sym___c_single_quote] = ACTIONS(3423), - [sym___r_double_quote] = ACTIONS(3423), - [sym___r_single_quote] = ACTIONS(3423), + [anon_sym_DOT] = ACTIONS(3229), + [anon_sym_as] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_COMMA] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_fn] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3229), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3232), + [anon_sym_BANG_EQ] = ACTIONS(3232), + [anon_sym_LT_EQ] = ACTIONS(3232), + [anon_sym_GT_EQ] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_RBRACK] = ACTIONS(3225), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_mut] = ACTIONS(3227), + [anon_sym_COLON] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_QMARK] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_go] = ACTIONS(3227), + [anon_sym_spawn] = ACTIONS(3227), + [anon_sym_json_DOTdecode] = ACTIONS(3225), + [anon_sym_LBRACK2] = ACTIONS(3229), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_CARET] = ACTIONS(3232), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_LT_DASH] = ACTIONS(3225), + [anon_sym_LT_LT] = ACTIONS(3232), + [anon_sym_GT_GT] = ACTIONS(3229), + [anon_sym_GT_GT_GT] = ACTIONS(3232), + [anon_sym_AMP_CARET] = ACTIONS(3232), + [anon_sym_AMP_AMP] = ACTIONS(3232), + [anon_sym_PIPE_PIPE] = ACTIONS(3232), + [anon_sym_or] = ACTIONS(3229), + [sym_none] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_nil] = ACTIONS(3227), + [anon_sym_QMARK_DOT] = ACTIONS(3232), + [anon_sym_POUND_LBRACK] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_DOLLARif] = ACTIONS(3227), + [anon_sym_is] = ACTIONS(3229), + [anon_sym_BANGis] = ACTIONS(3232), + [anon_sym_in] = ACTIONS(3229), + [anon_sym_BANGin] = ACTIONS(3232), + [anon_sym_match] = ACTIONS(3227), + [anon_sym_select] = ACTIONS(3227), + [anon_sym_lock] = ACTIONS(3227), + [anon_sym_rlock] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_sql] = ACTIONS(3227), + [sym_int_literal] = ACTIONS(3227), + [sym_float_literal] = ACTIONS(3225), + [sym_rune_literal] = ACTIONS(3225), + [sym_pseudo_compile_time_identifier] = ACTIONS(3227), + [anon_sym_shared] = ACTIONS(3227), + [anon_sym_map_LBRACK] = ACTIONS(3225), + [anon_sym_chan] = ACTIONS(3227), + [anon_sym_thread] = ACTIONS(3227), + [anon_sym_atomic] = ACTIONS(3227), + [sym___double_quote] = ACTIONS(3225), + [sym___single_quote] = ACTIONS(3225), + [sym___c_double_quote] = ACTIONS(3225), + [sym___c_single_quote] = ACTIONS(3225), + [sym___r_double_quote] = ACTIONS(3225), + [sym___r_single_quote] = ACTIONS(3225), }, - [1326] = { - [sym_identifier] = ACTIONS(3283), + [1361] = { + [sym_identifier] = ACTIONS(3217), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3283), - [anon_sym_as] = ACTIONS(3283), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_COMMA] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_PIPE] = ACTIONS(3283), - [anon_sym_fn] = ACTIONS(3283), - [anon_sym_PLUS] = ACTIONS(3283), - [anon_sym_DASH] = ACTIONS(3283), - [anon_sym_STAR] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3283), - [anon_sym_PERCENT] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3283), - [anon_sym_GT] = ACTIONS(3283), - [anon_sym_EQ_EQ] = ACTIONS(3281), - [anon_sym_BANG_EQ] = ACTIONS(3281), - [anon_sym_LT_EQ] = ACTIONS(3281), - [anon_sym_GT_EQ] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_RBRACK] = ACTIONS(3281), - [anon_sym_struct] = ACTIONS(3283), - [anon_sym_mut] = ACTIONS(3283), - [anon_sym_COLON] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), - [anon_sym_QMARK] = ACTIONS(3283), - [anon_sym_BANG] = ACTIONS(3283), - [anon_sym_go] = ACTIONS(3283), - [anon_sym_spawn] = ACTIONS(3283), - [anon_sym_json_DOTdecode] = ACTIONS(3281), - [anon_sym_LBRACK2] = ACTIONS(3283), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_CARET] = ACTIONS(3281), - [anon_sym_AMP] = ACTIONS(3283), - [anon_sym_LT_DASH] = ACTIONS(3281), - [anon_sym_LT_LT] = ACTIONS(3281), - [anon_sym_GT_GT] = ACTIONS(3283), - [anon_sym_GT_GT_GT] = ACTIONS(3281), - [anon_sym_AMP_CARET] = ACTIONS(3281), - [anon_sym_AMP_AMP] = ACTIONS(3281), - [anon_sym_PIPE_PIPE] = ACTIONS(3281), - [anon_sym_or] = ACTIONS(3283), - [sym_none] = ACTIONS(3283), - [sym_true] = ACTIONS(3283), - [sym_false] = ACTIONS(3283), - [sym_nil] = ACTIONS(3283), - [anon_sym_QMARK_DOT] = ACTIONS(3281), - [anon_sym_POUND_LBRACK] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3283), - [anon_sym_DOLLARif] = ACTIONS(3283), - [anon_sym_is] = ACTIONS(3283), - [anon_sym_BANGis] = ACTIONS(3281), - [anon_sym_in] = ACTIONS(3283), - [anon_sym_BANGin] = ACTIONS(3281), - [anon_sym_match] = ACTIONS(3283), - [anon_sym_select] = ACTIONS(3283), - [anon_sym_lock] = ACTIONS(3283), - [anon_sym_rlock] = ACTIONS(3283), - [anon_sym_unsafe] = ACTIONS(3283), - [anon_sym_sql] = ACTIONS(3283), - [sym_int_literal] = ACTIONS(3283), - [sym_float_literal] = ACTIONS(3281), - [sym_rune_literal] = ACTIONS(3281), - [sym_pseudo_compile_time_identifier] = ACTIONS(3283), - [anon_sym_shared] = ACTIONS(3283), - [anon_sym_map_LBRACK] = ACTIONS(3281), - [anon_sym_chan] = ACTIONS(3283), - [anon_sym_thread] = ACTIONS(3283), - [anon_sym_atomic] = ACTIONS(3283), - [sym___double_quote] = ACTIONS(3281), - [sym___single_quote] = ACTIONS(3281), - [sym___c_double_quote] = ACTIONS(3281), - [sym___c_single_quote] = ACTIONS(3281), - [sym___r_double_quote] = ACTIONS(3281), - [sym___r_single_quote] = ACTIONS(3281), + [anon_sym_DOT] = ACTIONS(3219), + [anon_sym_as] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3215), + [anon_sym_COMMA] = ACTIONS(3215), + [anon_sym_RBRACE] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PERCENT] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_EQ_EQ] = ACTIONS(3222), + [anon_sym_BANG_EQ] = ACTIONS(3222), + [anon_sym_LT_EQ] = ACTIONS(3222), + [anon_sym_GT_EQ] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_RBRACK] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3217), + [anon_sym_mut] = ACTIONS(3217), + [anon_sym_COLON] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [anon_sym_QMARK] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_go] = ACTIONS(3217), + [anon_sym_spawn] = ACTIONS(3217), + [anon_sym_json_DOTdecode] = ACTIONS(3215), + [anon_sym_LBRACK2] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3215), + [anon_sym_CARET] = ACTIONS(3222), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_LT_DASH] = ACTIONS(3215), + [anon_sym_LT_LT] = ACTIONS(3222), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3222), + [anon_sym_AMP_CARET] = ACTIONS(3222), + [anon_sym_AMP_AMP] = ACTIONS(3222), + [anon_sym_PIPE_PIPE] = ACTIONS(3222), + [anon_sym_or] = ACTIONS(3219), + [sym_none] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_nil] = ACTIONS(3217), + [anon_sym_QMARK_DOT] = ACTIONS(3222), + [anon_sym_POUND_LBRACK] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_DOLLARif] = ACTIONS(3217), + [anon_sym_is] = ACTIONS(3219), + [anon_sym_BANGis] = ACTIONS(3222), + [anon_sym_in] = ACTIONS(3219), + [anon_sym_BANGin] = ACTIONS(3222), + [anon_sym_match] = ACTIONS(3217), + [anon_sym_select] = ACTIONS(3217), + [anon_sym_lock] = ACTIONS(3217), + [anon_sym_rlock] = ACTIONS(3217), + [anon_sym_unsafe] = ACTIONS(3217), + [anon_sym_sql] = ACTIONS(3217), + [sym_int_literal] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3215), + [sym_rune_literal] = ACTIONS(3215), + [sym_pseudo_compile_time_identifier] = ACTIONS(3217), + [anon_sym_shared] = ACTIONS(3217), + [anon_sym_map_LBRACK] = ACTIONS(3215), + [anon_sym_chan] = ACTIONS(3217), + [anon_sym_thread] = ACTIONS(3217), + [anon_sym_atomic] = ACTIONS(3217), + [sym___double_quote] = ACTIONS(3215), + [sym___single_quote] = ACTIONS(3215), + [sym___c_double_quote] = ACTIONS(3215), + [sym___c_single_quote] = ACTIONS(3215), + [sym___r_double_quote] = ACTIONS(3215), + [sym___r_single_quote] = ACTIONS(3215), }, - [1327] = { - [sym_identifier] = ACTIONS(3279), + [1362] = { + [sym_identifier] = ACTIONS(3362), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3279), - [anon_sym_as] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_COMMA] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_PIPE] = ACTIONS(3279), - [anon_sym_fn] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_STAR] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_PERCENT] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_GT] = ACTIONS(3279), - [anon_sym_EQ_EQ] = ACTIONS(3277), - [anon_sym_BANG_EQ] = ACTIONS(3277), - [anon_sym_LT_EQ] = ACTIONS(3277), - [anon_sym_GT_EQ] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_RBRACK] = ACTIONS(3277), - [anon_sym_struct] = ACTIONS(3279), - [anon_sym_mut] = ACTIONS(3279), - [anon_sym_COLON] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [anon_sym_QMARK] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_go] = ACTIONS(3279), - [anon_sym_spawn] = ACTIONS(3279), - [anon_sym_json_DOTdecode] = ACTIONS(3277), - [anon_sym_LBRACK2] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_CARET] = ACTIONS(3277), - [anon_sym_AMP] = ACTIONS(3279), - [anon_sym_LT_DASH] = ACTIONS(3277), - [anon_sym_LT_LT] = ACTIONS(3277), - [anon_sym_GT_GT] = ACTIONS(3279), - [anon_sym_GT_GT_GT] = ACTIONS(3277), - [anon_sym_AMP_CARET] = ACTIONS(3277), - [anon_sym_AMP_AMP] = ACTIONS(3277), - [anon_sym_PIPE_PIPE] = ACTIONS(3277), - [anon_sym_or] = ACTIONS(3279), - [sym_none] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_nil] = ACTIONS(3279), - [anon_sym_QMARK_DOT] = ACTIONS(3277), - [anon_sym_POUND_LBRACK] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_DOLLARif] = ACTIONS(3279), - [anon_sym_is] = ACTIONS(3279), - [anon_sym_BANGis] = ACTIONS(3277), - [anon_sym_in] = ACTIONS(3279), - [anon_sym_BANGin] = ACTIONS(3277), - [anon_sym_match] = ACTIONS(3279), - [anon_sym_select] = ACTIONS(3279), - [anon_sym_lock] = ACTIONS(3279), - [anon_sym_rlock] = ACTIONS(3279), - [anon_sym_unsafe] = ACTIONS(3279), - [anon_sym_sql] = ACTIONS(3279), - [sym_int_literal] = ACTIONS(3279), - [sym_float_literal] = ACTIONS(3277), - [sym_rune_literal] = ACTIONS(3277), - [sym_pseudo_compile_time_identifier] = ACTIONS(3279), - [anon_sym_shared] = ACTIONS(3279), - [anon_sym_map_LBRACK] = ACTIONS(3277), - [anon_sym_chan] = ACTIONS(3279), - [anon_sym_thread] = ACTIONS(3279), - [anon_sym_atomic] = ACTIONS(3279), - [sym___double_quote] = ACTIONS(3277), - [sym___single_quote] = ACTIONS(3277), - [sym___c_double_quote] = ACTIONS(3277), - [sym___c_single_quote] = ACTIONS(3277), - [sym___r_double_quote] = ACTIONS(3277), - [sym___r_single_quote] = ACTIONS(3277), + [anon_sym_DOT] = ACTIONS(3362), + [anon_sym_as] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_COMMA] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_PIPE] = ACTIONS(3362), + [anon_sym_fn] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_STAR] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_PERCENT] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3362), + [anon_sym_GT] = ACTIONS(3362), + [anon_sym_EQ_EQ] = ACTIONS(3360), + [anon_sym_BANG_EQ] = ACTIONS(3360), + [anon_sym_LT_EQ] = ACTIONS(3360), + [anon_sym_GT_EQ] = ACTIONS(3360), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_RBRACK] = ACTIONS(3360), + [anon_sym_struct] = ACTIONS(3362), + [anon_sym_mut] = ACTIONS(3362), + [anon_sym_COLON] = ACTIONS(3360), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_QMARK] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3362), + [anon_sym_go] = ACTIONS(3362), + [anon_sym_spawn] = ACTIONS(3362), + [anon_sym_json_DOTdecode] = ACTIONS(3360), + [anon_sym_LBRACK2] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_CARET] = ACTIONS(3360), + [anon_sym_AMP] = ACTIONS(3362), + [anon_sym_LT_DASH] = ACTIONS(3360), + [anon_sym_LT_LT] = ACTIONS(3360), + [anon_sym_GT_GT] = ACTIONS(3362), + [anon_sym_GT_GT_GT] = ACTIONS(3360), + [anon_sym_AMP_CARET] = ACTIONS(3360), + [anon_sym_AMP_AMP] = ACTIONS(3360), + [anon_sym_PIPE_PIPE] = ACTIONS(3360), + [anon_sym_or] = ACTIONS(3362), + [sym_none] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_nil] = ACTIONS(3362), + [anon_sym_QMARK_DOT] = ACTIONS(3360), + [anon_sym_POUND_LBRACK] = ACTIONS(3360), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_DOLLARif] = ACTIONS(3362), + [anon_sym_is] = ACTIONS(3362), + [anon_sym_BANGis] = ACTIONS(3360), + [anon_sym_in] = ACTIONS(3362), + [anon_sym_BANGin] = ACTIONS(3360), + [anon_sym_match] = ACTIONS(3362), + [anon_sym_select] = ACTIONS(3362), + [anon_sym_lock] = ACTIONS(3362), + [anon_sym_rlock] = ACTIONS(3362), + [anon_sym_unsafe] = ACTIONS(3362), + [anon_sym_sql] = ACTIONS(3362), + [sym_int_literal] = ACTIONS(3362), + [sym_float_literal] = ACTIONS(3360), + [sym_rune_literal] = ACTIONS(3360), + [sym_pseudo_compile_time_identifier] = ACTIONS(3362), + [anon_sym_shared] = ACTIONS(3362), + [anon_sym_map_LBRACK] = ACTIONS(3360), + [anon_sym_chan] = ACTIONS(3362), + [anon_sym_thread] = ACTIONS(3362), + [anon_sym_atomic] = ACTIONS(3362), + [sym___double_quote] = ACTIONS(3360), + [sym___single_quote] = ACTIONS(3360), + [sym___c_double_quote] = ACTIONS(3360), + [sym___c_single_quote] = ACTIONS(3360), + [sym___r_double_quote] = ACTIONS(3360), + [sym___r_single_quote] = ACTIONS(3360), }, - [1328] = { + [1363] = { [sym_identifier] = ACTIONS(3275), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(3275), @@ -169223,1207 +172142,967 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3273), [sym___r_single_quote] = ACTIONS(3273), }, - [1329] = { - [sym_identifier] = ACTIONS(3271), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3271), - [anon_sym_as] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3269), - [anon_sym_COMMA] = ACTIONS(3269), - [anon_sym_RBRACE] = ACTIONS(3269), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_PIPE] = ACTIONS(3271), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_STAR] = ACTIONS(3269), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_PERCENT] = ACTIONS(3269), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_GT] = ACTIONS(3271), - [anon_sym_EQ_EQ] = ACTIONS(3269), - [anon_sym_BANG_EQ] = ACTIONS(3269), - [anon_sym_LT_EQ] = ACTIONS(3269), - [anon_sym_GT_EQ] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3269), - [anon_sym_RBRACK] = ACTIONS(3269), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_COLON] = ACTIONS(3269), - [anon_sym_PLUS_PLUS] = ACTIONS(3269), - [anon_sym_DASH_DASH] = ACTIONS(3269), - [anon_sym_QMARK] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3269), - [anon_sym_LBRACK2] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3269), - [anon_sym_CARET] = ACTIONS(3269), - [anon_sym_AMP] = ACTIONS(3271), - [anon_sym_LT_DASH] = ACTIONS(3269), - [anon_sym_LT_LT] = ACTIONS(3269), - [anon_sym_GT_GT] = ACTIONS(3271), - [anon_sym_GT_GT_GT] = ACTIONS(3269), - [anon_sym_AMP_CARET] = ACTIONS(3269), - [anon_sym_AMP_AMP] = ACTIONS(3269), - [anon_sym_PIPE_PIPE] = ACTIONS(3269), - [anon_sym_or] = ACTIONS(3271), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3269), - [anon_sym_POUND_LBRACK] = ACTIONS(3269), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3271), - [anon_sym_BANGis] = ACTIONS(3269), - [anon_sym_in] = ACTIONS(3271), - [anon_sym_BANGin] = ACTIONS(3269), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3269), - [sym_rune_literal] = ACTIONS(3269), - [sym_pseudo_compile_time_identifier] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3269), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3269), - [sym___single_quote] = ACTIONS(3269), - [sym___c_double_quote] = ACTIONS(3269), - [sym___c_single_quote] = ACTIONS(3269), - [sym___r_double_quote] = ACTIONS(3269), - [sym___r_single_quote] = ACTIONS(3269), - }, - [1330] = { - [sym_type_parameters] = STATE(4173), - [sym_argument_list] = STATE(1334), - [sym_or_block] = STATE(1335), - [sym_identifier] = ACTIONS(3869), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_as] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3873), - [anon_sym_RBRACE] = ACTIONS(3873), - [anon_sym_LPAREN] = ACTIONS(3853), - [anon_sym_PIPE] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(3869), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3877), - [anon_sym_SLASH] = ACTIONS(3879), - [anon_sym_PERCENT] = ACTIONS(3877), - [anon_sym_LT] = ACTIONS(3881), - [anon_sym_GT] = ACTIONS(3881), - [anon_sym_EQ_EQ] = ACTIONS(3883), - [anon_sym_BANG_EQ] = ACTIONS(3883), - [anon_sym_LT_EQ] = ACTIONS(3883), - [anon_sym_GT_EQ] = ACTIONS(3883), - [anon_sym_LBRACK] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(3869), - [anon_sym_mut] = ACTIONS(3869), - [anon_sym_PLUS_PLUS] = ACTIONS(3887), - [anon_sym_DASH_DASH] = ACTIONS(3889), - [anon_sym_QMARK] = ACTIONS(3857), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(3869), - [anon_sym_spawn] = ACTIONS(3869), - [anon_sym_json_DOTdecode] = ACTIONS(3873), - [anon_sym_LBRACK2] = ACTIONS(3861), - [anon_sym_TILDE] = ACTIONS(3873), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(3873), - [anon_sym_LT_LT] = ACTIONS(3877), - [anon_sym_GT_GT] = ACTIONS(3879), - [anon_sym_GT_GT_GT] = ACTIONS(3877), - [anon_sym_AMP_CARET] = ACTIONS(3877), - [anon_sym_AMP_AMP] = ACTIONS(3893), - [anon_sym_PIPE_PIPE] = ACTIONS(3895), - [anon_sym_or] = ACTIONS(3897), - [sym_none] = ACTIONS(3869), - [sym_true] = ACTIONS(3869), - [sym_false] = ACTIONS(3869), - [sym_nil] = ACTIONS(3869), - [anon_sym_QMARK_DOT] = ACTIONS(3863), - [anon_sym_POUND_LBRACK] = ACTIONS(3865), - [anon_sym_if] = ACTIONS(3869), - [anon_sym_DOLLARif] = ACTIONS(3869), - [anon_sym_is] = ACTIONS(3899), - [anon_sym_BANGis] = ACTIONS(3901), - [anon_sym_in] = ACTIONS(3903), - [anon_sym_BANGin] = ACTIONS(3905), - [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(3873), - [sym_rune_literal] = ACTIONS(3873), - [sym_pseudo_compile_time_identifier] = ACTIONS(3869), - [anon_sym_shared] = ACTIONS(3869), - [anon_sym_map_LBRACK] = ACTIONS(3873), - [anon_sym_chan] = ACTIONS(3869), - [anon_sym_thread] = ACTIONS(3869), - [anon_sym_atomic] = ACTIONS(3869), - [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), - }, - [1331] = { - [sym_identifier] = ACTIONS(2761), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_as] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2759), - [anon_sym_COMMA] = ACTIONS(2759), - [anon_sym_RBRACE] = ACTIONS(2759), - [anon_sym_LPAREN] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2759), - [anon_sym_SLASH] = ACTIONS(2761), - [anon_sym_PERCENT] = ACTIONS(2759), - [anon_sym_LT] = ACTIONS(2761), - [anon_sym_GT] = ACTIONS(2761), - [anon_sym_EQ_EQ] = ACTIONS(2759), - [anon_sym_BANG_EQ] = ACTIONS(2759), - [anon_sym_LT_EQ] = ACTIONS(2759), - [anon_sym_GT_EQ] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2759), - [anon_sym_RBRACK] = ACTIONS(2759), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_COLON] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2759), - [anon_sym_DASH_DASH] = ACTIONS(2759), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2759), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2759), - [anon_sym_CARET] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2759), - [anon_sym_LT_LT] = ACTIONS(2759), - [anon_sym_GT_GT] = ACTIONS(2761), - [anon_sym_GT_GT_GT] = ACTIONS(2759), - [anon_sym_AMP_CARET] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2759), - [anon_sym_PIPE_PIPE] = ACTIONS(2759), - [anon_sym_or] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_QMARK_DOT] = ACTIONS(2759), - [anon_sym_POUND_LBRACK] = ACTIONS(2759), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_is] = ACTIONS(2761), - [anon_sym_BANGis] = ACTIONS(2759), - [anon_sym_in] = ACTIONS(2761), - [anon_sym_BANGin] = ACTIONS(2759), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2759), - [sym_rune_literal] = ACTIONS(2759), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2759), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2759), - [sym___single_quote] = ACTIONS(2759), - [sym___c_double_quote] = ACTIONS(2759), - [sym___c_single_quote] = ACTIONS(2759), - [sym___r_double_quote] = ACTIONS(2759), - [sym___r_single_quote] = ACTIONS(2759), - }, - [1332] = { - [sym_identifier] = ACTIONS(3367), + [1364] = { + [sym_identifier] = ACTIONS(3322), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_as] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3365), - [anon_sym_RBRACE] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3365), - [anon_sym_PIPE] = ACTIONS(3367), - [anon_sym_fn] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_STAR] = ACTIONS(3365), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_PERCENT] = ACTIONS(3365), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_GT] = ACTIONS(3367), - [anon_sym_EQ_EQ] = ACTIONS(3365), - [anon_sym_BANG_EQ] = ACTIONS(3365), - [anon_sym_LT_EQ] = ACTIONS(3365), - [anon_sym_GT_EQ] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_RBRACK] = ACTIONS(3365), - [anon_sym_struct] = ACTIONS(3367), - [anon_sym_mut] = ACTIONS(3367), - [anon_sym_COLON] = ACTIONS(3365), - [anon_sym_PLUS_PLUS] = ACTIONS(3365), - [anon_sym_DASH_DASH] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_go] = ACTIONS(3367), - [anon_sym_spawn] = ACTIONS(3367), - [anon_sym_json_DOTdecode] = ACTIONS(3365), - [anon_sym_LBRACK2] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_CARET] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3367), - [anon_sym_LT_DASH] = ACTIONS(3365), - [anon_sym_LT_LT] = ACTIONS(3365), - [anon_sym_GT_GT] = ACTIONS(3367), - [anon_sym_GT_GT_GT] = ACTIONS(3365), - [anon_sym_AMP_CARET] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3367), - [sym_none] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_nil] = ACTIONS(3367), - [anon_sym_QMARK_DOT] = ACTIONS(3365), - [anon_sym_POUND_LBRACK] = ACTIONS(3365), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_DOLLARif] = ACTIONS(3367), - [anon_sym_is] = ACTIONS(3367), - [anon_sym_BANGis] = ACTIONS(3365), - [anon_sym_in] = ACTIONS(3367), - [anon_sym_BANGin] = ACTIONS(3365), - [anon_sym_match] = ACTIONS(3367), - [anon_sym_select] = ACTIONS(3367), - [anon_sym_lock] = ACTIONS(3367), - [anon_sym_rlock] = ACTIONS(3367), - [anon_sym_unsafe] = ACTIONS(3367), - [anon_sym_sql] = ACTIONS(3367), - [sym_int_literal] = ACTIONS(3367), - [sym_float_literal] = ACTIONS(3365), - [sym_rune_literal] = ACTIONS(3365), - [sym_pseudo_compile_time_identifier] = ACTIONS(3367), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3365), - [anon_sym_chan] = ACTIONS(3367), - [anon_sym_thread] = ACTIONS(3367), - [anon_sym_atomic] = ACTIONS(3367), - [sym___double_quote] = ACTIONS(3365), - [sym___single_quote] = ACTIONS(3365), - [sym___c_double_quote] = ACTIONS(3365), - [sym___c_single_quote] = ACTIONS(3365), - [sym___r_double_quote] = ACTIONS(3365), - [sym___r_single_quote] = ACTIONS(3365), + [anon_sym_DOT] = ACTIONS(3322), + [anon_sym_as] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_COMMA] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_PIPE] = ACTIONS(3322), + [anon_sym_fn] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_STAR] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_PERCENT] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_GT] = ACTIONS(3322), + [anon_sym_EQ_EQ] = ACTIONS(3320), + [anon_sym_BANG_EQ] = ACTIONS(3320), + [anon_sym_LT_EQ] = ACTIONS(3320), + [anon_sym_GT_EQ] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_RBRACK] = ACTIONS(3320), + [anon_sym_struct] = ACTIONS(3322), + [anon_sym_mut] = ACTIONS(3322), + [anon_sym_COLON] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [anon_sym_QMARK] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_go] = ACTIONS(3322), + [anon_sym_spawn] = ACTIONS(3322), + [anon_sym_json_DOTdecode] = ACTIONS(3320), + [anon_sym_LBRACK2] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_CARET] = ACTIONS(3320), + [anon_sym_AMP] = ACTIONS(3322), + [anon_sym_LT_DASH] = ACTIONS(3320), + [anon_sym_LT_LT] = ACTIONS(3320), + [anon_sym_GT_GT] = ACTIONS(3322), + [anon_sym_GT_GT_GT] = ACTIONS(3320), + [anon_sym_AMP_CARET] = ACTIONS(3320), + [anon_sym_AMP_AMP] = ACTIONS(3320), + [anon_sym_PIPE_PIPE] = ACTIONS(3320), + [anon_sym_or] = ACTIONS(3322), + [sym_none] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_nil] = ACTIONS(3322), + [anon_sym_QMARK_DOT] = ACTIONS(3320), + [anon_sym_POUND_LBRACK] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_DOLLARif] = ACTIONS(3322), + [anon_sym_is] = ACTIONS(3322), + [anon_sym_BANGis] = ACTIONS(3320), + [anon_sym_in] = ACTIONS(3322), + [anon_sym_BANGin] = ACTIONS(3320), + [anon_sym_match] = ACTIONS(3322), + [anon_sym_select] = ACTIONS(3322), + [anon_sym_lock] = ACTIONS(3322), + [anon_sym_rlock] = ACTIONS(3322), + [anon_sym_unsafe] = ACTIONS(3322), + [anon_sym_sql] = ACTIONS(3322), + [sym_int_literal] = ACTIONS(3322), + [sym_float_literal] = ACTIONS(3320), + [sym_rune_literal] = ACTIONS(3320), + [sym_pseudo_compile_time_identifier] = ACTIONS(3322), + [anon_sym_shared] = ACTIONS(3322), + [anon_sym_map_LBRACK] = ACTIONS(3320), + [anon_sym_chan] = ACTIONS(3322), + [anon_sym_thread] = ACTIONS(3322), + [anon_sym_atomic] = ACTIONS(3322), + [sym___double_quote] = ACTIONS(3320), + [sym___single_quote] = ACTIONS(3320), + [sym___c_double_quote] = ACTIONS(3320), + [sym___c_single_quote] = ACTIONS(3320), + [sym___r_double_quote] = ACTIONS(3320), + [sym___r_single_quote] = ACTIONS(3320), }, - [1333] = { - [sym_identifier] = ACTIONS(3363), + [1365] = { + [sym_identifier] = ACTIONS(3318), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_as] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_PIPE] = ACTIONS(3363), - [anon_sym_fn] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_STAR] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_PERCENT] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_GT] = ACTIONS(3363), - [anon_sym_EQ_EQ] = ACTIONS(3361), - [anon_sym_BANG_EQ] = ACTIONS(3361), - [anon_sym_LT_EQ] = ACTIONS(3361), - [anon_sym_GT_EQ] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_RBRACK] = ACTIONS(3361), - [anon_sym_struct] = ACTIONS(3363), - [anon_sym_mut] = ACTIONS(3363), - [anon_sym_COLON] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_go] = ACTIONS(3363), - [anon_sym_spawn] = ACTIONS(3363), - [anon_sym_json_DOTdecode] = ACTIONS(3361), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_CARET] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3363), - [anon_sym_LT_DASH] = ACTIONS(3361), - [anon_sym_LT_LT] = ACTIONS(3361), - [anon_sym_GT_GT] = ACTIONS(3363), - [anon_sym_GT_GT_GT] = ACTIONS(3361), - [anon_sym_AMP_CARET] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3363), - [sym_none] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_nil] = ACTIONS(3363), - [anon_sym_QMARK_DOT] = ACTIONS(3361), - [anon_sym_POUND_LBRACK] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_DOLLARif] = ACTIONS(3363), - [anon_sym_is] = ACTIONS(3363), - [anon_sym_BANGis] = ACTIONS(3361), - [anon_sym_in] = ACTIONS(3363), - [anon_sym_BANGin] = ACTIONS(3361), - [anon_sym_match] = ACTIONS(3363), - [anon_sym_select] = ACTIONS(3363), - [anon_sym_lock] = ACTIONS(3363), - [anon_sym_rlock] = ACTIONS(3363), - [anon_sym_unsafe] = ACTIONS(3363), - [anon_sym_sql] = ACTIONS(3363), - [sym_int_literal] = ACTIONS(3363), - [sym_float_literal] = ACTIONS(3361), - [sym_rune_literal] = ACTIONS(3361), - [sym_pseudo_compile_time_identifier] = ACTIONS(3363), - [anon_sym_shared] = ACTIONS(3363), - [anon_sym_map_LBRACK] = ACTIONS(3361), - [anon_sym_chan] = ACTIONS(3363), - [anon_sym_thread] = ACTIONS(3363), - [anon_sym_atomic] = ACTIONS(3363), - [sym___double_quote] = ACTIONS(3361), - [sym___single_quote] = ACTIONS(3361), - [sym___c_double_quote] = ACTIONS(3361), - [sym___c_single_quote] = ACTIONS(3361), - [sym___r_double_quote] = ACTIONS(3361), - [sym___r_single_quote] = ACTIONS(3361), + [anon_sym_DOT] = ACTIONS(3318), + [anon_sym_as] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_COMMA] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_PIPE] = ACTIONS(3318), + [anon_sym_fn] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_STAR] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_PERCENT] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_GT] = ACTIONS(3318), + [anon_sym_EQ_EQ] = ACTIONS(3316), + [anon_sym_BANG_EQ] = ACTIONS(3316), + [anon_sym_LT_EQ] = ACTIONS(3316), + [anon_sym_GT_EQ] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_RBRACK] = ACTIONS(3316), + [anon_sym_struct] = ACTIONS(3318), + [anon_sym_mut] = ACTIONS(3318), + [anon_sym_COLON] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [anon_sym_QMARK] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_go] = ACTIONS(3318), + [anon_sym_spawn] = ACTIONS(3318), + [anon_sym_json_DOTdecode] = ACTIONS(3316), + [anon_sym_LBRACK2] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_CARET] = ACTIONS(3316), + [anon_sym_AMP] = ACTIONS(3318), + [anon_sym_LT_DASH] = ACTIONS(3316), + [anon_sym_LT_LT] = ACTIONS(3316), + [anon_sym_GT_GT] = ACTIONS(3318), + [anon_sym_GT_GT_GT] = ACTIONS(3316), + [anon_sym_AMP_CARET] = ACTIONS(3316), + [anon_sym_AMP_AMP] = ACTIONS(3316), + [anon_sym_PIPE_PIPE] = ACTIONS(3316), + [anon_sym_or] = ACTIONS(3318), + [sym_none] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_nil] = ACTIONS(3318), + [anon_sym_QMARK_DOT] = ACTIONS(3316), + [anon_sym_POUND_LBRACK] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_DOLLARif] = ACTIONS(3318), + [anon_sym_is] = ACTIONS(3318), + [anon_sym_BANGis] = ACTIONS(3316), + [anon_sym_in] = ACTIONS(3318), + [anon_sym_BANGin] = ACTIONS(3316), + [anon_sym_match] = ACTIONS(3318), + [anon_sym_select] = ACTIONS(3318), + [anon_sym_lock] = ACTIONS(3318), + [anon_sym_rlock] = ACTIONS(3318), + [anon_sym_unsafe] = ACTIONS(3318), + [anon_sym_sql] = ACTIONS(3318), + [sym_int_literal] = ACTIONS(3318), + [sym_float_literal] = ACTIONS(3316), + [sym_rune_literal] = ACTIONS(3316), + [sym_pseudo_compile_time_identifier] = ACTIONS(3318), + [anon_sym_shared] = ACTIONS(3318), + [anon_sym_map_LBRACK] = ACTIONS(3316), + [anon_sym_chan] = ACTIONS(3318), + [anon_sym_thread] = ACTIONS(3318), + [anon_sym_atomic] = ACTIONS(3318), + [sym___double_quote] = ACTIONS(3316), + [sym___single_quote] = ACTIONS(3316), + [sym___c_double_quote] = ACTIONS(3316), + [sym___c_single_quote] = ACTIONS(3316), + [sym___r_double_quote] = ACTIONS(3316), + [sym___r_single_quote] = ACTIONS(3316), }, - [1334] = { - [sym_identifier] = ACTIONS(3267), + [1366] = { + [sym_identifier] = ACTIONS(3307), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3267), - [anon_sym_as] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3265), - [anon_sym_COMMA] = ACTIONS(3265), - [anon_sym_RBRACE] = ACTIONS(3265), - [anon_sym_LPAREN] = ACTIONS(3265), - [anon_sym_PIPE] = ACTIONS(3267), - [anon_sym_fn] = ACTIONS(3267), - [anon_sym_PLUS] = ACTIONS(3267), - [anon_sym_DASH] = ACTIONS(3267), - [anon_sym_STAR] = ACTIONS(3265), - [anon_sym_SLASH] = ACTIONS(3267), - [anon_sym_PERCENT] = ACTIONS(3265), - [anon_sym_LT] = ACTIONS(3267), - [anon_sym_GT] = ACTIONS(3267), - [anon_sym_EQ_EQ] = ACTIONS(3265), - [anon_sym_BANG_EQ] = ACTIONS(3265), - [anon_sym_LT_EQ] = ACTIONS(3265), - [anon_sym_GT_EQ] = ACTIONS(3265), - [anon_sym_LBRACK] = ACTIONS(3265), - [anon_sym_RBRACK] = ACTIONS(3265), - [anon_sym_struct] = ACTIONS(3267), - [anon_sym_mut] = ACTIONS(3267), - [anon_sym_COLON] = ACTIONS(3265), - [anon_sym_PLUS_PLUS] = ACTIONS(3265), - [anon_sym_DASH_DASH] = ACTIONS(3265), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_BANG] = ACTIONS(3267), - [anon_sym_go] = ACTIONS(3267), - [anon_sym_spawn] = ACTIONS(3267), - [anon_sym_json_DOTdecode] = ACTIONS(3265), - [anon_sym_LBRACK2] = ACTIONS(3267), - [anon_sym_TILDE] = ACTIONS(3265), - [anon_sym_CARET] = ACTIONS(3265), - [anon_sym_AMP] = ACTIONS(3267), - [anon_sym_LT_DASH] = ACTIONS(3265), - [anon_sym_LT_LT] = ACTIONS(3265), - [anon_sym_GT_GT] = ACTIONS(3267), - [anon_sym_GT_GT_GT] = ACTIONS(3265), - [anon_sym_AMP_CARET] = ACTIONS(3265), - [anon_sym_AMP_AMP] = ACTIONS(3265), - [anon_sym_PIPE_PIPE] = ACTIONS(3265), - [anon_sym_or] = ACTIONS(3267), - [sym_none] = ACTIONS(3267), - [sym_true] = ACTIONS(3267), - [sym_false] = ACTIONS(3267), - [sym_nil] = ACTIONS(3267), - [anon_sym_QMARK_DOT] = ACTIONS(3265), - [anon_sym_POUND_LBRACK] = ACTIONS(3265), - [anon_sym_if] = ACTIONS(3267), - [anon_sym_DOLLARif] = ACTIONS(3267), - [anon_sym_is] = ACTIONS(3267), - [anon_sym_BANGis] = ACTIONS(3265), - [anon_sym_in] = ACTIONS(3267), - [anon_sym_BANGin] = ACTIONS(3265), - [anon_sym_match] = ACTIONS(3267), - [anon_sym_select] = ACTIONS(3267), - [anon_sym_lock] = ACTIONS(3267), - [anon_sym_rlock] = ACTIONS(3267), - [anon_sym_unsafe] = ACTIONS(3267), - [anon_sym_sql] = ACTIONS(3267), - [sym_int_literal] = ACTIONS(3267), - [sym_float_literal] = ACTIONS(3265), - [sym_rune_literal] = ACTIONS(3265), - [sym_pseudo_compile_time_identifier] = ACTIONS(3267), - [anon_sym_shared] = ACTIONS(3267), - [anon_sym_map_LBRACK] = ACTIONS(3265), - [anon_sym_chan] = ACTIONS(3267), - [anon_sym_thread] = ACTIONS(3267), - [anon_sym_atomic] = ACTIONS(3267), - [sym___double_quote] = ACTIONS(3265), - [sym___single_quote] = ACTIONS(3265), - [sym___c_double_quote] = ACTIONS(3265), - [sym___c_single_quote] = ACTIONS(3265), - [sym___r_double_quote] = ACTIONS(3265), - [sym___r_single_quote] = ACTIONS(3265), + [anon_sym_DOT] = ACTIONS(3307), + [anon_sym_as] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_COMMA] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3307), + [anon_sym_fn] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_GT] = ACTIONS(3307), + [anon_sym_EQ_EQ] = ACTIONS(3305), + [anon_sym_BANG_EQ] = ACTIONS(3305), + [anon_sym_LT_EQ] = ACTIONS(3305), + [anon_sym_GT_EQ] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_RBRACK] = ACTIONS(3305), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_mut] = ACTIONS(3307), + [anon_sym_COLON] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_QMARK] = ACTIONS(3307), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_go] = ACTIONS(3307), + [anon_sym_spawn] = ACTIONS(3307), + [anon_sym_json_DOTdecode] = ACTIONS(3305), + [anon_sym_LBRACK2] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_LT_DASH] = ACTIONS(3305), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3307), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_PIPE_PIPE] = ACTIONS(3305), + [anon_sym_or] = ACTIONS(3307), + [sym_none] = ACTIONS(3307), + [sym_true] = ACTIONS(3307), + [sym_false] = ACTIONS(3307), + [sym_nil] = ACTIONS(3307), + [anon_sym_QMARK_DOT] = ACTIONS(3305), + [anon_sym_POUND_LBRACK] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_DOLLARif] = ACTIONS(3307), + [anon_sym_is] = ACTIONS(3307), + [anon_sym_BANGis] = ACTIONS(3305), + [anon_sym_in] = ACTIONS(3307), + [anon_sym_BANGin] = ACTIONS(3305), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_select] = ACTIONS(3307), + [anon_sym_lock] = ACTIONS(3307), + [anon_sym_rlock] = ACTIONS(3307), + [anon_sym_unsafe] = ACTIONS(3307), + [anon_sym_sql] = ACTIONS(3307), + [sym_int_literal] = ACTIONS(3307), + [sym_float_literal] = ACTIONS(3305), + [sym_rune_literal] = ACTIONS(3305), + [sym_pseudo_compile_time_identifier] = ACTIONS(3307), + [anon_sym_shared] = ACTIONS(3307), + [anon_sym_map_LBRACK] = ACTIONS(3305), + [anon_sym_chan] = ACTIONS(3307), + [anon_sym_thread] = ACTIONS(3307), + [anon_sym_atomic] = ACTIONS(3307), + [sym___double_quote] = ACTIONS(3305), + [sym___single_quote] = ACTIONS(3305), + [sym___c_double_quote] = ACTIONS(3305), + [sym___c_single_quote] = ACTIONS(3305), + [sym___r_double_quote] = ACTIONS(3305), + [sym___r_single_quote] = ACTIONS(3305), }, - [1335] = { - [sym_identifier] = ACTIONS(3263), + [1367] = { + [sym_identifier] = ACTIONS(3378), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3263), - [anon_sym_as] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3261), - [anon_sym_COMMA] = ACTIONS(3261), - [anon_sym_RBRACE] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3261), - [anon_sym_PIPE] = ACTIONS(3263), - [anon_sym_fn] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_STAR] = ACTIONS(3261), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_PERCENT] = ACTIONS(3261), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_GT] = ACTIONS(3263), - [anon_sym_EQ_EQ] = ACTIONS(3261), - [anon_sym_BANG_EQ] = ACTIONS(3261), - [anon_sym_LT_EQ] = ACTIONS(3261), - [anon_sym_GT_EQ] = ACTIONS(3261), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_RBRACK] = ACTIONS(3261), - [anon_sym_struct] = ACTIONS(3263), - [anon_sym_mut] = ACTIONS(3263), - [anon_sym_COLON] = ACTIONS(3261), - [anon_sym_PLUS_PLUS] = ACTIONS(3261), - [anon_sym_DASH_DASH] = ACTIONS(3261), - [anon_sym_QMARK] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_go] = ACTIONS(3263), - [anon_sym_spawn] = ACTIONS(3263), - [anon_sym_json_DOTdecode] = ACTIONS(3261), - [anon_sym_LBRACK2] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3261), - [anon_sym_CARET] = ACTIONS(3261), - [anon_sym_AMP] = ACTIONS(3263), - [anon_sym_LT_DASH] = ACTIONS(3261), - [anon_sym_LT_LT] = ACTIONS(3261), - [anon_sym_GT_GT] = ACTIONS(3263), - [anon_sym_GT_GT_GT] = ACTIONS(3261), - [anon_sym_AMP_CARET] = ACTIONS(3261), - [anon_sym_AMP_AMP] = ACTIONS(3261), - [anon_sym_PIPE_PIPE] = ACTIONS(3261), - [anon_sym_or] = ACTIONS(3263), - [sym_none] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_nil] = ACTIONS(3263), - [anon_sym_QMARK_DOT] = ACTIONS(3261), - [anon_sym_POUND_LBRACK] = ACTIONS(3261), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_DOLLARif] = ACTIONS(3263), - [anon_sym_is] = ACTIONS(3263), - [anon_sym_BANGis] = ACTIONS(3261), - [anon_sym_in] = ACTIONS(3263), - [anon_sym_BANGin] = ACTIONS(3261), - [anon_sym_match] = ACTIONS(3263), - [anon_sym_select] = ACTIONS(3263), - [anon_sym_lock] = ACTIONS(3263), - [anon_sym_rlock] = ACTIONS(3263), - [anon_sym_unsafe] = ACTIONS(3263), - [anon_sym_sql] = ACTIONS(3263), - [sym_int_literal] = ACTIONS(3263), - [sym_float_literal] = ACTIONS(3261), - [sym_rune_literal] = ACTIONS(3261), - [sym_pseudo_compile_time_identifier] = ACTIONS(3263), - [anon_sym_shared] = ACTIONS(3263), - [anon_sym_map_LBRACK] = ACTIONS(3261), - [anon_sym_chan] = ACTIONS(3263), - [anon_sym_thread] = ACTIONS(3263), - [anon_sym_atomic] = ACTIONS(3263), - [sym___double_quote] = ACTIONS(3261), - [sym___single_quote] = ACTIONS(3261), - [sym___c_double_quote] = ACTIONS(3261), - [sym___c_single_quote] = ACTIONS(3261), - [sym___r_double_quote] = ACTIONS(3261), - [sym___r_single_quote] = ACTIONS(3261), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_as] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_COMMA] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3376), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_PERCENT] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3378), + [anon_sym_GT] = ACTIONS(3378), + [anon_sym_EQ_EQ] = ACTIONS(3376), + [anon_sym_BANG_EQ] = ACTIONS(3376), + [anon_sym_LT_EQ] = ACTIONS(3376), + [anon_sym_GT_EQ] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_RBRACK] = ACTIONS(3376), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_COLON] = ACTIONS(3376), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3376), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_CARET] = ACTIONS(3376), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3376), + [anon_sym_LT_LT] = ACTIONS(3376), + [anon_sym_GT_GT] = ACTIONS(3378), + [anon_sym_GT_GT_GT] = ACTIONS(3376), + [anon_sym_AMP_CARET] = ACTIONS(3376), + [anon_sym_AMP_AMP] = ACTIONS(3376), + [anon_sym_PIPE_PIPE] = ACTIONS(3376), + [anon_sym_or] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_QMARK_DOT] = ACTIONS(3376), + [anon_sym_POUND_LBRACK] = ACTIONS(3376), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_is] = ACTIONS(3378), + [anon_sym_BANGis] = ACTIONS(3376), + [anon_sym_in] = ACTIONS(3378), + [anon_sym_BANGin] = ACTIONS(3376), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3376), + [sym_rune_literal] = ACTIONS(3376), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3376), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3376), + [sym___single_quote] = ACTIONS(3376), + [sym___c_double_quote] = ACTIONS(3376), + [sym___c_single_quote] = ACTIONS(3376), + [sym___r_double_quote] = ACTIONS(3376), + [sym___r_single_quote] = ACTIONS(3376), }, - [1336] = { - [sym_identifier] = ACTIONS(3199), + [1368] = { + [sym_identifier] = ACTIONS(3303), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3199), - [anon_sym_fn] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3199), - [anon_sym_DASH] = ACTIONS(3199), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3199), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3199), - [anon_sym_GT] = ACTIONS(3199), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3197), - [anon_sym_struct] = ACTIONS(3199), - [anon_sym_mut] = ACTIONS(3199), - [anon_sym_COLON] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3199), - [anon_sym_BANG] = ACTIONS(3199), - [anon_sym_go] = ACTIONS(3199), - [anon_sym_spawn] = ACTIONS(3199), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3199), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3199), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3199), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), + [anon_sym_DOT] = ACTIONS(3303), + [anon_sym_as] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_COMMA] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3303), + [anon_sym_fn] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_GT] = ACTIONS(3303), + [anon_sym_EQ_EQ] = ACTIONS(3301), + [anon_sym_BANG_EQ] = ACTIONS(3301), + [anon_sym_LT_EQ] = ACTIONS(3301), + [anon_sym_GT_EQ] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_RBRACK] = ACTIONS(3301), + [anon_sym_struct] = ACTIONS(3303), + [anon_sym_mut] = ACTIONS(3303), + [anon_sym_COLON] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_QMARK] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_go] = ACTIONS(3303), + [anon_sym_spawn] = ACTIONS(3303), + [anon_sym_json_DOTdecode] = ACTIONS(3301), + [anon_sym_LBRACK2] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_LT_DASH] = ACTIONS(3301), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3303), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3301), + [anon_sym_PIPE_PIPE] = ACTIONS(3301), + [anon_sym_or] = ACTIONS(3303), + [sym_none] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_nil] = ACTIONS(3303), + [anon_sym_QMARK_DOT] = ACTIONS(3301), + [anon_sym_POUND_LBRACK] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_DOLLARif] = ACTIONS(3303), + [anon_sym_is] = ACTIONS(3303), + [anon_sym_BANGis] = ACTIONS(3301), + [anon_sym_in] = ACTIONS(3303), + [anon_sym_BANGin] = ACTIONS(3301), + [anon_sym_match] = ACTIONS(3303), + [anon_sym_select] = ACTIONS(3303), + [anon_sym_lock] = ACTIONS(3303), + [anon_sym_rlock] = ACTIONS(3303), + [anon_sym_unsafe] = ACTIONS(3303), + [anon_sym_sql] = ACTIONS(3303), + [sym_int_literal] = ACTIONS(3303), + [sym_float_literal] = ACTIONS(3301), + [sym_rune_literal] = ACTIONS(3301), + [sym_pseudo_compile_time_identifier] = ACTIONS(3303), + [anon_sym_shared] = ACTIONS(3303), + [anon_sym_map_LBRACK] = ACTIONS(3301), + [anon_sym_chan] = ACTIONS(3303), + [anon_sym_thread] = ACTIONS(3303), + [anon_sym_atomic] = ACTIONS(3303), + [sym___double_quote] = ACTIONS(3301), + [sym___single_quote] = ACTIONS(3301), + [sym___c_double_quote] = ACTIONS(3301), + [sym___c_single_quote] = ACTIONS(3301), + [sym___r_double_quote] = ACTIONS(3301), + [sym___r_single_quote] = ACTIONS(3301), }, - [1337] = { - [sym_identifier] = ACTIONS(3351), + [1369] = { + [sym_identifier] = ACTIONS(3177), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_as] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_PIPE] = ACTIONS(3351), - [anon_sym_fn] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_STAR] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_PERCENT] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_GT] = ACTIONS(3351), - [anon_sym_EQ_EQ] = ACTIONS(3349), - [anon_sym_BANG_EQ] = ACTIONS(3349), - [anon_sym_LT_EQ] = ACTIONS(3349), - [anon_sym_GT_EQ] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_RBRACK] = ACTIONS(3349), - [anon_sym_struct] = ACTIONS(3351), - [anon_sym_mut] = ACTIONS(3351), - [anon_sym_COLON] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_go] = ACTIONS(3351), - [anon_sym_spawn] = ACTIONS(3351), - [anon_sym_json_DOTdecode] = ACTIONS(3349), - [anon_sym_LBRACK2] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_CARET] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3351), - [anon_sym_LT_DASH] = ACTIONS(3349), - [anon_sym_LT_LT] = ACTIONS(3349), - [anon_sym_GT_GT] = ACTIONS(3351), - [anon_sym_GT_GT_GT] = ACTIONS(3349), - [anon_sym_AMP_CARET] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3351), - [sym_none] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_nil] = ACTIONS(3351), - [anon_sym_QMARK_DOT] = ACTIONS(3349), - [anon_sym_POUND_LBRACK] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_DOLLARif] = ACTIONS(3351), - [anon_sym_is] = ACTIONS(3351), - [anon_sym_BANGis] = ACTIONS(3349), - [anon_sym_in] = ACTIONS(3351), - [anon_sym_BANGin] = ACTIONS(3349), - [anon_sym_match] = ACTIONS(3351), - [anon_sym_select] = ACTIONS(3351), - [anon_sym_lock] = ACTIONS(3351), - [anon_sym_rlock] = ACTIONS(3351), - [anon_sym_unsafe] = ACTIONS(3351), - [anon_sym_sql] = ACTIONS(3351), - [sym_int_literal] = ACTIONS(3351), - [sym_float_literal] = ACTIONS(3349), - [sym_rune_literal] = ACTIONS(3349), - [sym_pseudo_compile_time_identifier] = ACTIONS(3351), - [anon_sym_shared] = ACTIONS(3351), - [anon_sym_map_LBRACK] = ACTIONS(3349), - [anon_sym_chan] = ACTIONS(3351), - [anon_sym_thread] = ACTIONS(3351), - [anon_sym_atomic] = ACTIONS(3351), - [sym___double_quote] = ACTIONS(3349), - [sym___single_quote] = ACTIONS(3349), - [sym___c_double_quote] = ACTIONS(3349), - [sym___c_single_quote] = ACTIONS(3349), - [sym___r_double_quote] = ACTIONS(3349), - [sym___r_single_quote] = ACTIONS(3349), + [anon_sym_DOT] = ACTIONS(3177), + [anon_sym_as] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_COMMA] = ACTIONS(3175), + [anon_sym_RBRACE] = ACTIONS(3175), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_fn] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3177), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_GT] = ACTIONS(3177), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_LT_EQ] = ACTIONS(3175), + [anon_sym_GT_EQ] = ACTIONS(3175), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_RBRACK] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_mut] = ACTIONS(3177), + [anon_sym_COLON] = ACTIONS(3175), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_QMARK] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_go] = ACTIONS(3177), + [anon_sym_spawn] = ACTIONS(3177), + [anon_sym_json_DOTdecode] = ACTIONS(3175), + [anon_sym_LBRACK2] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_LT_DASH] = ACTIONS(3175), + [anon_sym_LT_LT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3177), + [anon_sym_GT_GT_GT] = ACTIONS(3175), + [anon_sym_AMP_CARET] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_or] = ACTIONS(3177), + [sym_none] = ACTIONS(3177), + [sym_true] = ACTIONS(3177), + [sym_false] = ACTIONS(3177), + [sym_nil] = ACTIONS(3177), + [anon_sym_QMARK_DOT] = ACTIONS(3175), + [anon_sym_POUND_LBRACK] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_DOLLARif] = ACTIONS(3177), + [anon_sym_is] = ACTIONS(3177), + [anon_sym_BANGis] = ACTIONS(3175), + [anon_sym_in] = ACTIONS(3177), + [anon_sym_BANGin] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_rlock] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_sql] = ACTIONS(3177), + [sym_int_literal] = ACTIONS(3177), + [sym_float_literal] = ACTIONS(3175), + [sym_rune_literal] = ACTIONS(3175), + [sym_pseudo_compile_time_identifier] = ACTIONS(3177), + [anon_sym_shared] = ACTIONS(3177), + [anon_sym_map_LBRACK] = ACTIONS(3175), + [anon_sym_chan] = ACTIONS(3177), + [anon_sym_thread] = ACTIONS(3177), + [anon_sym_atomic] = ACTIONS(3177), + [sym___double_quote] = ACTIONS(3175), + [sym___single_quote] = ACTIONS(3175), + [sym___c_double_quote] = ACTIONS(3175), + [sym___c_single_quote] = ACTIONS(3175), + [sym___r_double_quote] = ACTIONS(3175), + [sym___r_single_quote] = ACTIONS(3175), }, - [1338] = { - [sym_identifier] = ACTIONS(3243), + [1370] = { + [sym_identifier] = ACTIONS(3269), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3243), - [anon_sym_as] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_COMMA] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_PIPE] = ACTIONS(3243), - [anon_sym_fn] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_STAR] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_PERCENT] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_GT] = ACTIONS(3243), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_RBRACK] = ACTIONS(3241), - [anon_sym_struct] = ACTIONS(3243), - [anon_sym_mut] = ACTIONS(3243), - [anon_sym_COLON] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [anon_sym_QMARK] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_go] = ACTIONS(3243), - [anon_sym_spawn] = ACTIONS(3243), - [anon_sym_json_DOTdecode] = ACTIONS(3241), - [anon_sym_LBRACK2] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_CARET] = ACTIONS(3241), - [anon_sym_AMP] = ACTIONS(3243), - [anon_sym_LT_DASH] = ACTIONS(3241), - [anon_sym_LT_LT] = ACTIONS(3241), - [anon_sym_GT_GT] = ACTIONS(3243), - [anon_sym_GT_GT_GT] = ACTIONS(3241), - [anon_sym_AMP_CARET] = ACTIONS(3241), - [anon_sym_AMP_AMP] = ACTIONS(3241), - [anon_sym_PIPE_PIPE] = ACTIONS(3241), - [anon_sym_or] = ACTIONS(3243), - [sym_none] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_nil] = ACTIONS(3243), - [anon_sym_QMARK_DOT] = ACTIONS(3241), - [anon_sym_POUND_LBRACK] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_DOLLARif] = ACTIONS(3243), - [anon_sym_is] = ACTIONS(3243), - [anon_sym_BANGis] = ACTIONS(3241), - [anon_sym_in] = ACTIONS(3243), - [anon_sym_BANGin] = ACTIONS(3241), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_select] = ACTIONS(3243), - [anon_sym_lock] = ACTIONS(3243), - [anon_sym_rlock] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_sql] = ACTIONS(3243), - [sym_int_literal] = ACTIONS(3243), - [sym_float_literal] = ACTIONS(3241), - [sym_rune_literal] = ACTIONS(3241), - [sym_pseudo_compile_time_identifier] = ACTIONS(3243), - [anon_sym_shared] = ACTIONS(3243), - [anon_sym_map_LBRACK] = ACTIONS(3241), - [anon_sym_chan] = ACTIONS(3243), - [anon_sym_thread] = ACTIONS(3243), - [anon_sym_atomic] = ACTIONS(3243), - [sym___double_quote] = ACTIONS(3241), - [sym___single_quote] = ACTIONS(3241), - [sym___c_double_quote] = ACTIONS(3241), - [sym___c_single_quote] = ACTIONS(3241), - [sym___r_double_quote] = ACTIONS(3241), - [sym___r_single_quote] = ACTIONS(3241), + [anon_sym_DOT] = ACTIONS(3269), + [anon_sym_as] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_COMMA] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_fn] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_PERCENT] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_GT] = ACTIONS(3269), + [anon_sym_EQ_EQ] = ACTIONS(3267), + [anon_sym_BANG_EQ] = ACTIONS(3267), + [anon_sym_LT_EQ] = ACTIONS(3267), + [anon_sym_GT_EQ] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_RBRACK] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3269), + [anon_sym_mut] = ACTIONS(3269), + [anon_sym_COLON] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3953), + [anon_sym_go] = ACTIONS(3269), + [anon_sym_spawn] = ACTIONS(3269), + [anon_sym_json_DOTdecode] = ACTIONS(3267), + [anon_sym_LBRACK2] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_CARET] = ACTIONS(3267), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_LT_DASH] = ACTIONS(3267), + [anon_sym_LT_LT] = ACTIONS(3267), + [anon_sym_GT_GT] = ACTIONS(3269), + [anon_sym_GT_GT_GT] = ACTIONS(3267), + [anon_sym_AMP_CARET] = ACTIONS(3267), + [anon_sym_AMP_AMP] = ACTIONS(3267), + [anon_sym_PIPE_PIPE] = ACTIONS(3267), + [anon_sym_or] = ACTIONS(3269), + [sym_none] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_nil] = ACTIONS(3269), + [anon_sym_QMARK_DOT] = ACTIONS(3267), + [anon_sym_POUND_LBRACK] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_DOLLARif] = ACTIONS(3269), + [anon_sym_is] = ACTIONS(3269), + [anon_sym_BANGis] = ACTIONS(3267), + [anon_sym_in] = ACTIONS(3269), + [anon_sym_BANGin] = ACTIONS(3267), + [anon_sym_match] = ACTIONS(3269), + [anon_sym_select] = ACTIONS(3269), + [anon_sym_lock] = ACTIONS(3269), + [anon_sym_rlock] = ACTIONS(3269), + [anon_sym_unsafe] = ACTIONS(3269), + [anon_sym_sql] = ACTIONS(3269), + [sym_int_literal] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3267), + [sym_rune_literal] = ACTIONS(3267), + [sym_pseudo_compile_time_identifier] = ACTIONS(3269), + [anon_sym_shared] = ACTIONS(3269), + [anon_sym_map_LBRACK] = ACTIONS(3267), + [anon_sym_chan] = ACTIONS(3269), + [anon_sym_thread] = ACTIONS(3269), + [anon_sym_atomic] = ACTIONS(3269), + [sym___double_quote] = ACTIONS(3267), + [sym___single_quote] = ACTIONS(3267), + [sym___c_double_quote] = ACTIONS(3267), + [sym___c_single_quote] = ACTIONS(3267), + [sym___r_double_quote] = ACTIONS(3267), + [sym___r_single_quote] = ACTIONS(3267), }, - [1339] = { - [sym_identifier] = ACTIONS(3207), + [1371] = { + [sym_identifier] = ACTIONS(3299), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3205), - [anon_sym_COMMA] = ACTIONS(3205), - [anon_sym_RBRACE] = ACTIONS(3205), - [anon_sym_LPAREN] = ACTIONS(3205), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3205), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3205), - [anon_sym_BANG_EQ] = ACTIONS(3205), - [anon_sym_LT_EQ] = ACTIONS(3205), - [anon_sym_GT_EQ] = ACTIONS(3205), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_RBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_COLON] = ACTIONS(3205), - [anon_sym_PLUS_PLUS] = ACTIONS(3205), - [anon_sym_DASH_DASH] = ACTIONS(3205), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3205), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3205), - [anon_sym_CARET] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3205), - [anon_sym_LT_LT] = ACTIONS(3205), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3205), - [anon_sym_AMP_CARET] = ACTIONS(3205), - [anon_sym_AMP_AMP] = ACTIONS(3205), - [anon_sym_PIPE_PIPE] = ACTIONS(3205), - [anon_sym_or] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3205), - [anon_sym_POUND_LBRACK] = ACTIONS(3205), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3205), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3205), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3205), - [sym_rune_literal] = ACTIONS(3205), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3205), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3205), - [sym___single_quote] = ACTIONS(3205), - [sym___c_double_quote] = ACTIONS(3205), - [sym___c_single_quote] = ACTIONS(3205), - [sym___r_double_quote] = ACTIONS(3205), - [sym___r_single_quote] = ACTIONS(3205), + [anon_sym_DOT] = ACTIONS(3299), + [anon_sym_as] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_COMMA] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_fn] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_EQ_EQ] = ACTIONS(3297), + [anon_sym_BANG_EQ] = ACTIONS(3297), + [anon_sym_LT_EQ] = ACTIONS(3297), + [anon_sym_GT_EQ] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_RBRACK] = ACTIONS(3297), + [anon_sym_struct] = ACTIONS(3299), + [anon_sym_mut] = ACTIONS(3299), + [anon_sym_COLON] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_QMARK] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_go] = ACTIONS(3299), + [anon_sym_spawn] = ACTIONS(3299), + [anon_sym_json_DOTdecode] = ACTIONS(3297), + [anon_sym_LBRACK2] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_LT_DASH] = ACTIONS(3297), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_GT_GT_GT] = ACTIONS(3297), + [anon_sym_AMP_CARET] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_or] = ACTIONS(3299), + [sym_none] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_nil] = ACTIONS(3299), + [anon_sym_QMARK_DOT] = ACTIONS(3297), + [anon_sym_POUND_LBRACK] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_DOLLARif] = ACTIONS(3299), + [anon_sym_is] = ACTIONS(3299), + [anon_sym_BANGis] = ACTIONS(3297), + [anon_sym_in] = ACTIONS(3299), + [anon_sym_BANGin] = ACTIONS(3297), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_select] = ACTIONS(3299), + [anon_sym_lock] = ACTIONS(3299), + [anon_sym_rlock] = ACTIONS(3299), + [anon_sym_unsafe] = ACTIONS(3299), + [anon_sym_sql] = ACTIONS(3299), + [sym_int_literal] = ACTIONS(3299), + [sym_float_literal] = ACTIONS(3297), + [sym_rune_literal] = ACTIONS(3297), + [sym_pseudo_compile_time_identifier] = ACTIONS(3299), + [anon_sym_shared] = ACTIONS(3299), + [anon_sym_map_LBRACK] = ACTIONS(3297), + [anon_sym_chan] = ACTIONS(3299), + [anon_sym_thread] = ACTIONS(3299), + [anon_sym_atomic] = ACTIONS(3299), + [sym___double_quote] = ACTIONS(3297), + [sym___single_quote] = ACTIONS(3297), + [sym___c_double_quote] = ACTIONS(3297), + [sym___c_single_quote] = ACTIONS(3297), + [sym___r_double_quote] = ACTIONS(3297), + [sym___r_single_quote] = ACTIONS(3297), }, - [1340] = { - [sym_identifier] = ACTIONS(3413), + [1372] = { + [sym_identifier] = ACTIONS(2727), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_as] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_fn] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_STAR] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_PERCENT] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_GT] = ACTIONS(3413), - [anon_sym_EQ_EQ] = ACTIONS(3411), - [anon_sym_BANG_EQ] = ACTIONS(3411), - [anon_sym_LT_EQ] = ACTIONS(3411), - [anon_sym_GT_EQ] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_RBRACK] = ACTIONS(3411), - [anon_sym_struct] = ACTIONS(3413), - [anon_sym_mut] = ACTIONS(3413), - [anon_sym_COLON] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_go] = ACTIONS(3413), - [anon_sym_spawn] = ACTIONS(3413), - [anon_sym_json_DOTdecode] = ACTIONS(3411), - [anon_sym_LBRACK2] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_CARET] = ACTIONS(3411), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3411), - [anon_sym_LT_LT] = ACTIONS(3411), - [anon_sym_GT_GT] = ACTIONS(3413), - [anon_sym_GT_GT_GT] = ACTIONS(3411), - [anon_sym_AMP_CARET] = ACTIONS(3411), - [anon_sym_AMP_AMP] = ACTIONS(3411), - [anon_sym_PIPE_PIPE] = ACTIONS(3411), - [anon_sym_or] = ACTIONS(3413), - [sym_none] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_nil] = ACTIONS(3413), - [anon_sym_QMARK_DOT] = ACTIONS(3411), - [anon_sym_POUND_LBRACK] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_DOLLARif] = ACTIONS(3413), - [anon_sym_is] = ACTIONS(3413), - [anon_sym_BANGis] = ACTIONS(3411), - [anon_sym_in] = ACTIONS(3413), - [anon_sym_BANGin] = ACTIONS(3411), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_select] = ACTIONS(3413), - [anon_sym_lock] = ACTIONS(3413), - [anon_sym_rlock] = ACTIONS(3413), - [anon_sym_unsafe] = ACTIONS(3413), - [anon_sym_sql] = ACTIONS(3413), - [sym_int_literal] = ACTIONS(3413), - [sym_float_literal] = ACTIONS(3411), - [sym_rune_literal] = ACTIONS(3411), - [sym_pseudo_compile_time_identifier] = ACTIONS(3413), - [anon_sym_shared] = ACTIONS(3413), - [anon_sym_map_LBRACK] = ACTIONS(3411), - [anon_sym_chan] = ACTIONS(3413), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3413), - [sym___double_quote] = ACTIONS(3411), - [sym___single_quote] = ACTIONS(3411), - [sym___c_double_quote] = ACTIONS(3411), - [sym___c_single_quote] = ACTIONS(3411), - [sym___r_double_quote] = ACTIONS(3411), - [sym___r_single_quote] = ACTIONS(3411), + [anon_sym_DOT] = ACTIONS(2727), + [anon_sym_as] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(2725), + [anon_sym_COMMA] = ACTIONS(2725), + [anon_sym_RBRACE] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2727), + [anon_sym_fn] = ACTIONS(2727), + [anon_sym_PLUS] = ACTIONS(2727), + [anon_sym_DASH] = ACTIONS(2727), + [anon_sym_STAR] = ACTIONS(2725), + [anon_sym_SLASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2725), + [anon_sym_LT] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2725), + [anon_sym_BANG_EQ] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2725), + [anon_sym_RBRACK] = ACTIONS(2725), + [anon_sym_struct] = ACTIONS(2727), + [anon_sym_mut] = ACTIONS(2727), + [anon_sym_COLON] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2725), + [anon_sym_DASH_DASH] = ACTIONS(2725), + [anon_sym_QMARK] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2727), + [anon_sym_go] = ACTIONS(2727), + [anon_sym_spawn] = ACTIONS(2727), + [anon_sym_json_DOTdecode] = ACTIONS(2725), + [anon_sym_LBRACK2] = ACTIONS(2727), + [anon_sym_TILDE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2725), + [anon_sym_AMP] = ACTIONS(2727), + [anon_sym_LT_DASH] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2725), + [anon_sym_GT_GT] = ACTIONS(2727), + [anon_sym_GT_GT_GT] = ACTIONS(2725), + [anon_sym_AMP_CARET] = ACTIONS(2725), + [anon_sym_AMP_AMP] = ACTIONS(2725), + [anon_sym_PIPE_PIPE] = ACTIONS(2725), + [anon_sym_or] = ACTIONS(2727), + [sym_none] = ACTIONS(2727), + [sym_true] = ACTIONS(2727), + [sym_false] = ACTIONS(2727), + [sym_nil] = ACTIONS(2727), + [anon_sym_QMARK_DOT] = ACTIONS(2725), + [anon_sym_POUND_LBRACK] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2727), + [anon_sym_DOLLARif] = ACTIONS(2727), + [anon_sym_is] = ACTIONS(2727), + [anon_sym_BANGis] = ACTIONS(2725), + [anon_sym_in] = ACTIONS(2727), + [anon_sym_BANGin] = ACTIONS(2725), + [anon_sym_match] = ACTIONS(2727), + [anon_sym_select] = ACTIONS(2727), + [anon_sym_lock] = ACTIONS(2727), + [anon_sym_rlock] = ACTIONS(2727), + [anon_sym_unsafe] = ACTIONS(2727), + [anon_sym_sql] = ACTIONS(2727), + [sym_int_literal] = ACTIONS(2727), + [sym_float_literal] = ACTIONS(2725), + [sym_rune_literal] = ACTIONS(2725), + [sym_pseudo_compile_time_identifier] = ACTIONS(2727), + [anon_sym_shared] = ACTIONS(2727), + [anon_sym_map_LBRACK] = ACTIONS(2725), + [anon_sym_chan] = ACTIONS(2727), + [anon_sym_thread] = ACTIONS(2727), + [anon_sym_atomic] = ACTIONS(2727), + [sym___double_quote] = ACTIONS(2725), + [sym___single_quote] = ACTIONS(2725), + [sym___c_double_quote] = ACTIONS(2725), + [sym___c_single_quote] = ACTIONS(2725), + [sym___r_double_quote] = ACTIONS(2725), + [sym___r_single_quote] = ACTIONS(2725), }, - [1341] = { - [sym_identifier] = ACTIONS(3203), + [1373] = { + [sym_identifier] = ACTIONS(3295), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_as] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3201), - [anon_sym_RBRACE] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym_PIPE] = ACTIONS(3203), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_STAR] = ACTIONS(3201), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_PERCENT] = ACTIONS(3201), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_GT] = ACTIONS(3203), - [anon_sym_EQ_EQ] = ACTIONS(3201), - [anon_sym_BANG_EQ] = ACTIONS(3201), - [anon_sym_LT_EQ] = ACTIONS(3201), - [anon_sym_GT_EQ] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3201), - [anon_sym_struct] = ACTIONS(3203), - [anon_sym_mut] = ACTIONS(3203), - [anon_sym_COLON] = ACTIONS(3201), - [anon_sym_PLUS_PLUS] = ACTIONS(3201), - [anon_sym_DASH_DASH] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_go] = ACTIONS(3203), - [anon_sym_spawn] = ACTIONS(3203), - [anon_sym_json_DOTdecode] = ACTIONS(3201), - [anon_sym_LBRACK2] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_CARET] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3201), - [anon_sym_LT_LT] = ACTIONS(3201), - [anon_sym_GT_GT] = ACTIONS(3203), - [anon_sym_GT_GT_GT] = ACTIONS(3201), - [anon_sym_AMP_CARET] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3203), - [sym_none] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_nil] = ACTIONS(3203), - [anon_sym_QMARK_DOT] = ACTIONS(3201), - [anon_sym_POUND_LBRACK] = ACTIONS(3201), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_DOLLARif] = ACTIONS(3203), - [anon_sym_is] = ACTIONS(3203), - [anon_sym_BANGis] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3203), - [anon_sym_BANGin] = ACTIONS(3201), - [anon_sym_match] = ACTIONS(3203), - [anon_sym_select] = ACTIONS(3203), - [anon_sym_lock] = ACTIONS(3203), - [anon_sym_rlock] = ACTIONS(3203), - [anon_sym_unsafe] = ACTIONS(3203), - [anon_sym_sql] = ACTIONS(3203), - [sym_int_literal] = ACTIONS(3203), - [sym_float_literal] = ACTIONS(3201), - [sym_rune_literal] = ACTIONS(3201), - [sym_pseudo_compile_time_identifier] = ACTIONS(3203), - [anon_sym_shared] = ACTIONS(3203), - [anon_sym_map_LBRACK] = ACTIONS(3201), - [anon_sym_chan] = ACTIONS(3203), - [anon_sym_thread] = ACTIONS(3203), - [anon_sym_atomic] = ACTIONS(3203), - [sym___double_quote] = ACTIONS(3201), - [sym___single_quote] = ACTIONS(3201), - [sym___c_double_quote] = ACTIONS(3201), - [sym___c_single_quote] = ACTIONS(3201), - [sym___r_double_quote] = ACTIONS(3201), - [sym___r_single_quote] = ACTIONS(3201), + [anon_sym_DOT] = ACTIONS(3295), + [anon_sym_as] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_COMMA] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_fn] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_EQ_EQ] = ACTIONS(3293), + [anon_sym_BANG_EQ] = ACTIONS(3293), + [anon_sym_LT_EQ] = ACTIONS(3293), + [anon_sym_GT_EQ] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_RBRACK] = ACTIONS(3293), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_mut] = ACTIONS(3295), + [anon_sym_COLON] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_QMARK] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_go] = ACTIONS(3295), + [anon_sym_spawn] = ACTIONS(3295), + [anon_sym_json_DOTdecode] = ACTIONS(3293), + [anon_sym_LBRACK2] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_LT_DASH] = ACTIONS(3293), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_GT_GT_GT] = ACTIONS(3293), + [anon_sym_AMP_CARET] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_or] = ACTIONS(3295), + [sym_none] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_nil] = ACTIONS(3295), + [anon_sym_QMARK_DOT] = ACTIONS(3293), + [anon_sym_POUND_LBRACK] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_DOLLARif] = ACTIONS(3295), + [anon_sym_is] = ACTIONS(3295), + [anon_sym_BANGis] = ACTIONS(3293), + [anon_sym_in] = ACTIONS(3295), + [anon_sym_BANGin] = ACTIONS(3293), + [anon_sym_match] = ACTIONS(3295), + [anon_sym_select] = ACTIONS(3295), + [anon_sym_lock] = ACTIONS(3295), + [anon_sym_rlock] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_sql] = ACTIONS(3295), + [sym_int_literal] = ACTIONS(3295), + [sym_float_literal] = ACTIONS(3293), + [sym_rune_literal] = ACTIONS(3293), + [sym_pseudo_compile_time_identifier] = ACTIONS(3295), + [anon_sym_shared] = ACTIONS(3295), + [anon_sym_map_LBRACK] = ACTIONS(3293), + [anon_sym_chan] = ACTIONS(3295), + [anon_sym_thread] = ACTIONS(3295), + [anon_sym_atomic] = ACTIONS(3295), + [sym___double_quote] = ACTIONS(3293), + [sym___single_quote] = ACTIONS(3293), + [sym___c_double_quote] = ACTIONS(3293), + [sym___c_single_quote] = ACTIONS(3293), + [sym___r_double_quote] = ACTIONS(3293), + [sym___r_single_quote] = ACTIONS(3293), }, - [1342] = { - [sym_identifier] = ACTIONS(3401), + [1374] = { + [sym_identifier] = ACTIONS(3404), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_as] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_fn] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_STAR] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_PERCENT] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_GT] = ACTIONS(3401), - [anon_sym_EQ_EQ] = ACTIONS(3399), - [anon_sym_BANG_EQ] = ACTIONS(3399), - [anon_sym_LT_EQ] = ACTIONS(3399), - [anon_sym_GT_EQ] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_RBRACK] = ACTIONS(3399), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_mut] = ACTIONS(3401), - [anon_sym_COLON] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(3401), - [anon_sym_spawn] = ACTIONS(3401), - [anon_sym_json_DOTdecode] = ACTIONS(3399), - [anon_sym_LBRACK2] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_CARET] = ACTIONS(3399), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3399), - [anon_sym_LT_LT] = ACTIONS(3399), - [anon_sym_GT_GT] = ACTIONS(3401), - [anon_sym_GT_GT_GT] = ACTIONS(3399), - [anon_sym_AMP_CARET] = ACTIONS(3399), - [anon_sym_AMP_AMP] = ACTIONS(3399), - [anon_sym_PIPE_PIPE] = ACTIONS(3399), - [anon_sym_or] = ACTIONS(3401), - [sym_none] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_nil] = ACTIONS(3401), - [anon_sym_QMARK_DOT] = ACTIONS(3399), - [anon_sym_POUND_LBRACK] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_DOLLARif] = ACTIONS(3401), - [anon_sym_is] = ACTIONS(3401), - [anon_sym_BANGis] = ACTIONS(3399), - [anon_sym_in] = ACTIONS(3401), - [anon_sym_BANGin] = ACTIONS(3399), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_select] = ACTIONS(3401), - [anon_sym_lock] = ACTIONS(3401), - [anon_sym_rlock] = ACTIONS(3401), - [anon_sym_unsafe] = ACTIONS(3401), - [anon_sym_sql] = ACTIONS(3401), - [sym_int_literal] = ACTIONS(3401), - [sym_float_literal] = ACTIONS(3399), - [sym_rune_literal] = ACTIONS(3399), - [sym_pseudo_compile_time_identifier] = ACTIONS(3401), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3399), - [anon_sym_chan] = ACTIONS(3401), - [anon_sym_thread] = ACTIONS(3401), - [anon_sym_atomic] = ACTIONS(3401), - [sym___double_quote] = ACTIONS(3399), - [sym___single_quote] = ACTIONS(3399), - [sym___c_double_quote] = ACTIONS(3399), - [sym___c_single_quote] = ACTIONS(3399), - [sym___r_double_quote] = ACTIONS(3399), - [sym___r_single_quote] = ACTIONS(3399), + [anon_sym_DOT] = ACTIONS(3404), + [anon_sym_as] = ACTIONS(3404), + [anon_sym_LBRACE] = ACTIONS(3402), + [anon_sym_COMMA] = ACTIONS(3402), + [anon_sym_RBRACE] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3402), + [anon_sym_PIPE] = ACTIONS(3404), + [anon_sym_fn] = ACTIONS(3404), + [anon_sym_PLUS] = ACTIONS(3404), + [anon_sym_DASH] = ACTIONS(3404), + [anon_sym_STAR] = ACTIONS(3402), + [anon_sym_SLASH] = ACTIONS(3404), + [anon_sym_PERCENT] = ACTIONS(3402), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_GT] = ACTIONS(3404), + [anon_sym_EQ_EQ] = ACTIONS(3402), + [anon_sym_BANG_EQ] = ACTIONS(3402), + [anon_sym_LT_EQ] = ACTIONS(3402), + [anon_sym_GT_EQ] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3402), + [anon_sym_RBRACK] = ACTIONS(3402), + [anon_sym_struct] = ACTIONS(3404), + [anon_sym_mut] = ACTIONS(3404), + [anon_sym_COLON] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3402), + [anon_sym_DASH_DASH] = ACTIONS(3402), + [anon_sym_QMARK] = ACTIONS(3404), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_go] = ACTIONS(3404), + [anon_sym_spawn] = ACTIONS(3404), + [anon_sym_json_DOTdecode] = ACTIONS(3402), + [anon_sym_LBRACK2] = ACTIONS(3404), + [anon_sym_TILDE] = ACTIONS(3402), + [anon_sym_CARET] = ACTIONS(3402), + [anon_sym_AMP] = ACTIONS(3404), + [anon_sym_LT_DASH] = ACTIONS(3402), + [anon_sym_LT_LT] = ACTIONS(3402), + [anon_sym_GT_GT] = ACTIONS(3404), + [anon_sym_GT_GT_GT] = ACTIONS(3402), + [anon_sym_AMP_CARET] = ACTIONS(3402), + [anon_sym_AMP_AMP] = ACTIONS(3402), + [anon_sym_PIPE_PIPE] = ACTIONS(3402), + [anon_sym_or] = ACTIONS(3404), + [sym_none] = ACTIONS(3404), + [sym_true] = ACTIONS(3404), + [sym_false] = ACTIONS(3404), + [sym_nil] = ACTIONS(3404), + [anon_sym_QMARK_DOT] = ACTIONS(3402), + [anon_sym_POUND_LBRACK] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3404), + [anon_sym_DOLLARif] = ACTIONS(3404), + [anon_sym_is] = ACTIONS(3404), + [anon_sym_BANGis] = ACTIONS(3402), + [anon_sym_in] = ACTIONS(3404), + [anon_sym_BANGin] = ACTIONS(3402), + [anon_sym_match] = ACTIONS(3404), + [anon_sym_select] = ACTIONS(3404), + [anon_sym_lock] = ACTIONS(3404), + [anon_sym_rlock] = ACTIONS(3404), + [anon_sym_unsafe] = ACTIONS(3404), + [anon_sym_sql] = ACTIONS(3404), + [sym_int_literal] = ACTIONS(3404), + [sym_float_literal] = ACTIONS(3402), + [sym_rune_literal] = ACTIONS(3402), + [sym_pseudo_compile_time_identifier] = ACTIONS(3404), + [anon_sym_shared] = ACTIONS(3404), + [anon_sym_map_LBRACK] = ACTIONS(3402), + [anon_sym_chan] = ACTIONS(3404), + [anon_sym_thread] = ACTIONS(3404), + [anon_sym_atomic] = ACTIONS(3404), + [sym___double_quote] = ACTIONS(3402), + [sym___single_quote] = ACTIONS(3402), + [sym___c_double_quote] = ACTIONS(3402), + [sym___c_single_quote] = ACTIONS(3402), + [sym___r_double_quote] = ACTIONS(3402), + [sym___r_single_quote] = ACTIONS(3402), }, - [1343] = { - [sym_identifier] = ACTIONS(3187), + [1375] = { + [sym_identifier] = ACTIONS(3340), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_as] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3187), - [anon_sym_fn] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3187), - [anon_sym_DASH] = ACTIONS(3187), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3187), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3187), - [anon_sym_GT] = ACTIONS(3187), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3185), - [anon_sym_struct] = ACTIONS(3187), - [anon_sym_mut] = ACTIONS(3187), - [anon_sym_COLON] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3187), - [anon_sym_BANG] = ACTIONS(3187), - [anon_sym_go] = ACTIONS(3187), - [anon_sym_spawn] = ACTIONS(3187), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3187), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3187), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3187), - [sym_none] = ACTIONS(3187), - [sym_true] = ACTIONS(3187), - [sym_false] = ACTIONS(3187), - [sym_nil] = ACTIONS(3187), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3187), - [anon_sym_DOLLARif] = ACTIONS(3187), - [anon_sym_is] = ACTIONS(3187), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3187), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3187), - [anon_sym_select] = ACTIONS(3187), - [anon_sym_lock] = ACTIONS(3187), - [anon_sym_rlock] = ACTIONS(3187), - [anon_sym_unsafe] = ACTIONS(3187), - [anon_sym_sql] = ACTIONS(3187), - [sym_int_literal] = ACTIONS(3187), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [sym_pseudo_compile_time_identifier] = ACTIONS(3187), - [anon_sym_shared] = ACTIONS(3187), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3187), - [anon_sym_thread] = ACTIONS(3187), - [anon_sym_atomic] = ACTIONS(3187), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_as] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_COMMA] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_PERCENT] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_GT] = ACTIONS(3340), + [anon_sym_EQ_EQ] = ACTIONS(3338), + [anon_sym_BANG_EQ] = ACTIONS(3338), + [anon_sym_LT_EQ] = ACTIONS(3338), + [anon_sym_GT_EQ] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_RBRACK] = ACTIONS(3338), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_COLON] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3338), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_CARET] = ACTIONS(3338), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3338), + [anon_sym_LT_LT] = ACTIONS(3338), + [anon_sym_GT_GT] = ACTIONS(3340), + [anon_sym_GT_GT_GT] = ACTIONS(3338), + [anon_sym_AMP_CARET] = ACTIONS(3338), + [anon_sym_AMP_AMP] = ACTIONS(3338), + [anon_sym_PIPE_PIPE] = ACTIONS(3338), + [anon_sym_or] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_QMARK_DOT] = ACTIONS(3338), + [anon_sym_POUND_LBRACK] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_is] = ACTIONS(3340), + [anon_sym_BANGis] = ACTIONS(3338), + [anon_sym_in] = ACTIONS(3340), + [anon_sym_BANGin] = ACTIONS(3338), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3338), + [sym_rune_literal] = ACTIONS(3338), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3338), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [sym___double_quote] = ACTIONS(3338), + [sym___single_quote] = ACTIONS(3338), + [sym___c_double_quote] = ACTIONS(3338), + [sym___c_single_quote] = ACTIONS(3338), + [sym___r_double_quote] = ACTIONS(3338), + [sym___r_single_quote] = ACTIONS(3338), }, - [1344] = { + [1376] = { [sym_identifier] = ACTIONS(3444), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(3444), @@ -170503,1607 +173182,1847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3442), [sym___r_single_quote] = ACTIONS(3442), }, - [1345] = { - [sym_identifier] = ACTIONS(3391), + [1377] = { + [sym_identifier] = ACTIONS(3336), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_as] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3389), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_SLASH] = ACTIONS(3391), - [anon_sym_PERCENT] = ACTIONS(3389), - [anon_sym_LT] = ACTIONS(3391), - [anon_sym_GT] = ACTIONS(3391), - [anon_sym_EQ_EQ] = ACTIONS(3389), - [anon_sym_BANG_EQ] = ACTIONS(3389), - [anon_sym_LT_EQ] = ACTIONS(3389), - [anon_sym_GT_EQ] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_COLON] = ACTIONS(3389), - [anon_sym_PLUS_PLUS] = ACTIONS(3389), - [anon_sym_DASH_DASH] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3389), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_CARET] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3389), - [anon_sym_LT_LT] = ACTIONS(3389), - [anon_sym_GT_GT] = ACTIONS(3391), - [anon_sym_GT_GT_GT] = ACTIONS(3389), - [anon_sym_AMP_CARET] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_QMARK_DOT] = ACTIONS(3389), - [anon_sym_POUND_LBRACK] = ACTIONS(3389), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_is] = ACTIONS(3391), - [anon_sym_BANGis] = ACTIONS(3389), - [anon_sym_in] = ACTIONS(3391), - [anon_sym_BANGin] = ACTIONS(3389), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3389), - [sym_rune_literal] = ACTIONS(3389), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3389), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3389), - [sym___single_quote] = ACTIONS(3389), - [sym___c_double_quote] = ACTIONS(3389), - [sym___c_single_quote] = ACTIONS(3389), - [sym___r_double_quote] = ACTIONS(3389), - [sym___r_single_quote] = ACTIONS(3389), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_as] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_COMMA] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3336), + [anon_sym_PERCENT] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_GT] = ACTIONS(3336), + [anon_sym_EQ_EQ] = ACTIONS(3334), + [anon_sym_BANG_EQ] = ACTIONS(3334), + [anon_sym_LT_EQ] = ACTIONS(3334), + [anon_sym_GT_EQ] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_RBRACK] = ACTIONS(3334), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_COLON] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3334), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_CARET] = ACTIONS(3334), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3334), + [anon_sym_LT_LT] = ACTIONS(3334), + [anon_sym_GT_GT] = ACTIONS(3336), + [anon_sym_GT_GT_GT] = ACTIONS(3334), + [anon_sym_AMP_CARET] = ACTIONS(3334), + [anon_sym_AMP_AMP] = ACTIONS(3334), + [anon_sym_PIPE_PIPE] = ACTIONS(3334), + [anon_sym_or] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_QMARK_DOT] = ACTIONS(3334), + [anon_sym_POUND_LBRACK] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_is] = ACTIONS(3336), + [anon_sym_BANGis] = ACTIONS(3334), + [anon_sym_in] = ACTIONS(3336), + [anon_sym_BANGin] = ACTIONS(3334), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3334), + [sym_rune_literal] = ACTIONS(3334), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3334), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), + [sym___double_quote] = ACTIONS(3334), + [sym___single_quote] = ACTIONS(3334), + [sym___c_double_quote] = ACTIONS(3334), + [sym___c_single_quote] = ACTIONS(3334), + [sym___r_double_quote] = ACTIONS(3334), + [sym___r_single_quote] = ACTIONS(3334), }, - [1346] = { - [sym_identifier] = ACTIONS(3161), + [1378] = { + [sym_identifier] = ACTIONS(3279), [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_RBRACE] = 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_COLON] = ACTIONS(3159), - [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), - [sym_pseudo_compile_time_identifier] = 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(3279), + [anon_sym_as] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_COMMA] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PERCENT] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_EQ_EQ] = ACTIONS(3277), + [anon_sym_BANG_EQ] = ACTIONS(3277), + [anon_sym_LT_EQ] = ACTIONS(3277), + [anon_sym_GT_EQ] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_RBRACK] = ACTIONS(3277), + [anon_sym_struct] = ACTIONS(3279), + [anon_sym_mut] = ACTIONS(3279), + [anon_sym_COLON] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_QMARK] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_go] = ACTIONS(3279), + [anon_sym_spawn] = ACTIONS(3279), + [anon_sym_json_DOTdecode] = ACTIONS(3277), + [anon_sym_LBRACK2] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_LT_DASH] = ACTIONS(3277), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(3279), + [anon_sym_GT_GT_GT] = ACTIONS(3277), + [anon_sym_AMP_CARET] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_or] = ACTIONS(3279), + [sym_none] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_nil] = ACTIONS(3279), + [anon_sym_QMARK_DOT] = ACTIONS(3277), + [anon_sym_POUND_LBRACK] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_DOLLARif] = ACTIONS(3279), + [anon_sym_is] = ACTIONS(3279), + [anon_sym_BANGis] = ACTIONS(3277), + [anon_sym_in] = ACTIONS(3279), + [anon_sym_BANGin] = ACTIONS(3277), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_select] = ACTIONS(3279), + [anon_sym_lock] = ACTIONS(3279), + [anon_sym_rlock] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_sql] = ACTIONS(3279), + [sym_int_literal] = ACTIONS(3279), + [sym_float_literal] = ACTIONS(3277), + [sym_rune_literal] = ACTIONS(3277), + [sym_pseudo_compile_time_identifier] = ACTIONS(3279), + [anon_sym_shared] = ACTIONS(3279), + [anon_sym_map_LBRACK] = ACTIONS(3277), + [anon_sym_chan] = ACTIONS(3279), + [anon_sym_thread] = ACTIONS(3279), + [anon_sym_atomic] = ACTIONS(3279), + [sym___double_quote] = ACTIONS(3277), + [sym___single_quote] = ACTIONS(3277), + [sym___c_double_quote] = ACTIONS(3277), + [sym___c_single_quote] = ACTIONS(3277), + [sym___r_double_quote] = ACTIONS(3277), + [sym___r_single_quote] = ACTIONS(3277), }, - [1347] = { - [sym_identifier] = ACTIONS(3387), + [1379] = { + [sym_identifier] = ACTIONS(3241), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_as] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3385), - [anon_sym_RBRACE] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3385), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_PERCENT] = ACTIONS(3385), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_GT] = ACTIONS(3387), - [anon_sym_EQ_EQ] = ACTIONS(3385), - [anon_sym_BANG_EQ] = ACTIONS(3385), - [anon_sym_LT_EQ] = ACTIONS(3385), - [anon_sym_GT_EQ] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3385), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_COLON] = ACTIONS(3385), - [anon_sym_PLUS_PLUS] = ACTIONS(3385), - [anon_sym_DASH_DASH] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3385), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_CARET] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3385), - [anon_sym_LT_LT] = ACTIONS(3385), - [anon_sym_GT_GT] = ACTIONS(3387), - [anon_sym_GT_GT_GT] = ACTIONS(3385), - [anon_sym_AMP_CARET] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_QMARK_DOT] = ACTIONS(3385), - [anon_sym_POUND_LBRACK] = ACTIONS(3385), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_is] = ACTIONS(3387), - [anon_sym_BANGis] = ACTIONS(3385), - [anon_sym_in] = ACTIONS(3387), - [anon_sym_BANGin] = ACTIONS(3385), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3385), - [sym_rune_literal] = ACTIONS(3385), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3385), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3385), - [sym___single_quote] = ACTIONS(3385), - [sym___c_double_quote] = ACTIONS(3385), - [sym___c_single_quote] = ACTIONS(3385), - [sym___r_double_quote] = ACTIONS(3385), - [sym___r_single_quote] = ACTIONS(3385), + [anon_sym_DOT] = ACTIONS(3241), + [anon_sym_as] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_COMMA] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_fn] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3239), + [anon_sym_BANG_EQ] = ACTIONS(3239), + [anon_sym_LT_EQ] = ACTIONS(3239), + [anon_sym_GT_EQ] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_RBRACK] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3241), + [anon_sym_mut] = ACTIONS(3241), + [anon_sym_COLON] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [anon_sym_QMARK] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_go] = ACTIONS(3241), + [anon_sym_spawn] = ACTIONS(3241), + [anon_sym_json_DOTdecode] = ACTIONS(3239), + [anon_sym_LBRACK2] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_CARET] = ACTIONS(3239), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_LT_DASH] = ACTIONS(3239), + [anon_sym_LT_LT] = ACTIONS(3239), + [anon_sym_GT_GT] = ACTIONS(3241), + [anon_sym_GT_GT_GT] = ACTIONS(3239), + [anon_sym_AMP_CARET] = ACTIONS(3239), + [anon_sym_AMP_AMP] = ACTIONS(3239), + [anon_sym_PIPE_PIPE] = ACTIONS(3239), + [anon_sym_or] = ACTIONS(3241), + [sym_none] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_nil] = ACTIONS(3241), + [anon_sym_QMARK_DOT] = ACTIONS(3239), + [anon_sym_POUND_LBRACK] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_DOLLARif] = ACTIONS(3241), + [anon_sym_is] = ACTIONS(3241), + [anon_sym_BANGis] = ACTIONS(3239), + [anon_sym_in] = ACTIONS(3241), + [anon_sym_BANGin] = ACTIONS(3239), + [anon_sym_match] = ACTIONS(3241), + [anon_sym_select] = ACTIONS(3241), + [anon_sym_lock] = ACTIONS(3241), + [anon_sym_rlock] = ACTIONS(3241), + [anon_sym_unsafe] = ACTIONS(3241), + [anon_sym_sql] = ACTIONS(3241), + [sym_int_literal] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3239), + [sym_rune_literal] = ACTIONS(3239), + [sym_pseudo_compile_time_identifier] = ACTIONS(3241), + [anon_sym_shared] = ACTIONS(3241), + [anon_sym_map_LBRACK] = ACTIONS(3239), + [anon_sym_chan] = ACTIONS(3241), + [anon_sym_thread] = ACTIONS(3241), + [anon_sym_atomic] = ACTIONS(3241), + [sym___double_quote] = ACTIONS(3239), + [sym___single_quote] = ACTIONS(3239), + [sym___c_double_quote] = ACTIONS(3239), + [sym___c_single_quote] = ACTIONS(3239), + [sym___r_double_quote] = ACTIONS(3239), + [sym___r_single_quote] = ACTIONS(3239), }, - [1348] = { - [sym_identifier] = ACTIONS(3383), + [1380] = { + [sym_identifier] = ACTIONS(3344), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_as] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3383), - [anon_sym_PERCENT] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3383), - [anon_sym_GT] = ACTIONS(3383), - [anon_sym_EQ_EQ] = ACTIONS(3381), - [anon_sym_BANG_EQ] = ACTIONS(3381), - [anon_sym_LT_EQ] = ACTIONS(3381), - [anon_sym_GT_EQ] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3381), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_COLON] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3381), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_CARET] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3381), - [anon_sym_LT_LT] = ACTIONS(3381), - [anon_sym_GT_GT] = ACTIONS(3383), - [anon_sym_GT_GT_GT] = ACTIONS(3381), - [anon_sym_AMP_CARET] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_QMARK_DOT] = ACTIONS(3381), - [anon_sym_POUND_LBRACK] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_is] = ACTIONS(3383), - [anon_sym_BANGis] = ACTIONS(3381), - [anon_sym_in] = ACTIONS(3383), - [anon_sym_BANGin] = ACTIONS(3381), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3381), - [sym_rune_literal] = ACTIONS(3381), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3381), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3381), - [sym___single_quote] = ACTIONS(3381), - [sym___c_double_quote] = ACTIONS(3381), - [sym___c_single_quote] = ACTIONS(3381), - [sym___r_double_quote] = ACTIONS(3381), - [sym___r_single_quote] = ACTIONS(3381), + [anon_sym_DOT] = ACTIONS(3344), + [anon_sym_as] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_COMMA] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_PIPE] = ACTIONS(3344), + [anon_sym_fn] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_STAR] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_PERCENT] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_GT] = ACTIONS(3344), + [anon_sym_EQ_EQ] = ACTIONS(3342), + [anon_sym_BANG_EQ] = ACTIONS(3342), + [anon_sym_LT_EQ] = ACTIONS(3342), + [anon_sym_GT_EQ] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_RBRACK] = ACTIONS(3342), + [anon_sym_struct] = ACTIONS(3344), + [anon_sym_mut] = ACTIONS(3344), + [anon_sym_COLON] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [anon_sym_QMARK] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_go] = ACTIONS(3344), + [anon_sym_spawn] = ACTIONS(3344), + [anon_sym_json_DOTdecode] = ACTIONS(3342), + [anon_sym_LBRACK2] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_CARET] = ACTIONS(3342), + [anon_sym_AMP] = ACTIONS(3344), + [anon_sym_LT_DASH] = ACTIONS(3342), + [anon_sym_LT_LT] = ACTIONS(3342), + [anon_sym_GT_GT] = ACTIONS(3344), + [anon_sym_GT_GT_GT] = ACTIONS(3342), + [anon_sym_AMP_CARET] = ACTIONS(3342), + [anon_sym_AMP_AMP] = ACTIONS(3342), + [anon_sym_PIPE_PIPE] = ACTIONS(3342), + [anon_sym_or] = ACTIONS(3344), + [sym_none] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_nil] = ACTIONS(3344), + [anon_sym_QMARK_DOT] = ACTIONS(3342), + [anon_sym_POUND_LBRACK] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_DOLLARif] = ACTIONS(3344), + [anon_sym_is] = ACTIONS(3344), + [anon_sym_BANGis] = ACTIONS(3342), + [anon_sym_in] = ACTIONS(3344), + [anon_sym_BANGin] = ACTIONS(3342), + [anon_sym_match] = ACTIONS(3344), + [anon_sym_select] = ACTIONS(3344), + [anon_sym_lock] = ACTIONS(3344), + [anon_sym_rlock] = ACTIONS(3344), + [anon_sym_unsafe] = ACTIONS(3344), + [anon_sym_sql] = ACTIONS(3344), + [sym_int_literal] = ACTIONS(3344), + [sym_float_literal] = ACTIONS(3342), + [sym_rune_literal] = ACTIONS(3342), + [sym_pseudo_compile_time_identifier] = ACTIONS(3344), + [anon_sym_shared] = ACTIONS(3344), + [anon_sym_map_LBRACK] = ACTIONS(3342), + [anon_sym_chan] = ACTIONS(3344), + [anon_sym_thread] = ACTIONS(3344), + [anon_sym_atomic] = ACTIONS(3344), + [sym___double_quote] = ACTIONS(3342), + [sym___single_quote] = ACTIONS(3342), + [sym___c_double_quote] = ACTIONS(3342), + [sym___c_single_quote] = ACTIONS(3342), + [sym___r_double_quote] = ACTIONS(3342), + [sym___r_single_quote] = ACTIONS(3342), }, - [1349] = { - [sym_identifier] = ACTIONS(3379), + [1381] = { + [sym_identifier] = ACTIONS(2899), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_as] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_PERCENT] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_GT] = ACTIONS(3379), - [anon_sym_EQ_EQ] = ACTIONS(3377), - [anon_sym_BANG_EQ] = ACTIONS(3377), - [anon_sym_LT_EQ] = ACTIONS(3377), - [anon_sym_GT_EQ] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_RBRACK] = ACTIONS(3377), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_COLON] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3377), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_CARET] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3377), - [anon_sym_LT_LT] = ACTIONS(3377), - [anon_sym_GT_GT] = ACTIONS(3379), - [anon_sym_GT_GT_GT] = ACTIONS(3377), - [anon_sym_AMP_CARET] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_QMARK_DOT] = ACTIONS(3377), - [anon_sym_POUND_LBRACK] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_is] = ACTIONS(3379), - [anon_sym_BANGis] = ACTIONS(3377), - [anon_sym_in] = ACTIONS(3379), - [anon_sym_BANGin] = ACTIONS(3377), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3377), - [sym_rune_literal] = ACTIONS(3377), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3377), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3377), - [sym___single_quote] = ACTIONS(3377), - [sym___c_double_quote] = ACTIONS(3377), - [sym___c_single_quote] = ACTIONS(3377), - [sym___r_double_quote] = ACTIONS(3377), - [sym___r_single_quote] = ACTIONS(3377), + [anon_sym_DOT] = ACTIONS(2899), + [anon_sym_as] = ACTIONS(2899), + [anon_sym_LBRACE] = ACTIONS(2897), + [anon_sym_COMMA] = ACTIONS(2897), + [anon_sym_RBRACE] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2899), + [anon_sym_fn] = ACTIONS(2899), + [anon_sym_PLUS] = ACTIONS(2899), + [anon_sym_DASH] = ACTIONS(2899), + [anon_sym_STAR] = ACTIONS(2897), + [anon_sym_SLASH] = ACTIONS(2899), + [anon_sym_PERCENT] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2899), + [anon_sym_GT] = ACTIONS(2899), + [anon_sym_EQ_EQ] = ACTIONS(2897), + [anon_sym_BANG_EQ] = ACTIONS(2897), + [anon_sym_LT_EQ] = ACTIONS(2897), + [anon_sym_GT_EQ] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_RBRACK] = ACTIONS(2897), + [anon_sym_struct] = ACTIONS(2899), + [anon_sym_mut] = ACTIONS(2899), + [anon_sym_COLON] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2897), + [anon_sym_DASH_DASH] = ACTIONS(2897), + [anon_sym_QMARK] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2899), + [anon_sym_go] = ACTIONS(2899), + [anon_sym_spawn] = ACTIONS(2899), + [anon_sym_json_DOTdecode] = ACTIONS(2897), + [anon_sym_LBRACK2] = ACTIONS(2899), + [anon_sym_TILDE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2897), + [anon_sym_AMP] = ACTIONS(2899), + [anon_sym_LT_DASH] = ACTIONS(2897), + [anon_sym_LT_LT] = ACTIONS(2897), + [anon_sym_GT_GT] = ACTIONS(2899), + [anon_sym_GT_GT_GT] = ACTIONS(2897), + [anon_sym_AMP_CARET] = ACTIONS(2897), + [anon_sym_AMP_AMP] = ACTIONS(2897), + [anon_sym_PIPE_PIPE] = ACTIONS(2897), + [anon_sym_or] = ACTIONS(2899), + [sym_none] = ACTIONS(2899), + [sym_true] = ACTIONS(2899), + [sym_false] = ACTIONS(2899), + [sym_nil] = ACTIONS(2899), + [anon_sym_QMARK_DOT] = ACTIONS(2897), + [anon_sym_POUND_LBRACK] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2899), + [anon_sym_DOLLARif] = ACTIONS(2899), + [anon_sym_is] = ACTIONS(2899), + [anon_sym_BANGis] = ACTIONS(2897), + [anon_sym_in] = ACTIONS(2899), + [anon_sym_BANGin] = ACTIONS(2897), + [anon_sym_match] = ACTIONS(2899), + [anon_sym_select] = ACTIONS(2899), + [anon_sym_lock] = ACTIONS(2899), + [anon_sym_rlock] = ACTIONS(2899), + [anon_sym_unsafe] = ACTIONS(2899), + [anon_sym_sql] = ACTIONS(2899), + [sym_int_literal] = ACTIONS(2899), + [sym_float_literal] = ACTIONS(2897), + [sym_rune_literal] = ACTIONS(2897), + [sym_pseudo_compile_time_identifier] = ACTIONS(2899), + [anon_sym_shared] = ACTIONS(2899), + [anon_sym_map_LBRACK] = ACTIONS(2897), + [anon_sym_chan] = ACTIONS(2899), + [anon_sym_thread] = ACTIONS(2899), + [anon_sym_atomic] = ACTIONS(2899), + [sym___double_quote] = ACTIONS(2897), + [sym___single_quote] = ACTIONS(2897), + [sym___c_double_quote] = ACTIONS(2897), + [sym___c_single_quote] = ACTIONS(2897), + [sym___r_double_quote] = ACTIONS(2897), + [sym___r_single_quote] = ACTIONS(2897), }, - [1350] = { - [sym_identifier] = ACTIONS(2909), + [1382] = { + [sym_identifier] = ACTIONS(2903), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_as] = ACTIONS(2903), + [anon_sym_LBRACE] = ACTIONS(2901), + [anon_sym_COMMA] = ACTIONS(2901), + [anon_sym_RBRACE] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2903), + [anon_sym_fn] = ACTIONS(2903), + [anon_sym_PLUS] = ACTIONS(2903), + [anon_sym_DASH] = ACTIONS(2903), + [anon_sym_STAR] = ACTIONS(2901), + [anon_sym_SLASH] = ACTIONS(2903), + [anon_sym_PERCENT] = ACTIONS(2901), + [anon_sym_LT] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2901), + [anon_sym_BANG_EQ] = ACTIONS(2901), + [anon_sym_LT_EQ] = ACTIONS(2901), + [anon_sym_GT_EQ] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2901), + [anon_sym_RBRACK] = ACTIONS(2901), + [anon_sym_struct] = ACTIONS(2903), + [anon_sym_mut] = ACTIONS(2903), + [anon_sym_COLON] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2901), + [anon_sym_DASH_DASH] = ACTIONS(2901), + [anon_sym_QMARK] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2903), + [anon_sym_go] = ACTIONS(2903), + [anon_sym_spawn] = ACTIONS(2903), + [anon_sym_json_DOTdecode] = ACTIONS(2901), + [anon_sym_LBRACK2] = ACTIONS(2903), + [anon_sym_TILDE] = ACTIONS(2901), + [anon_sym_CARET] = ACTIONS(2901), + [anon_sym_AMP] = ACTIONS(2903), + [anon_sym_LT_DASH] = ACTIONS(2901), + [anon_sym_LT_LT] = ACTIONS(2901), + [anon_sym_GT_GT] = ACTIONS(2903), + [anon_sym_GT_GT_GT] = ACTIONS(2901), + [anon_sym_AMP_CARET] = ACTIONS(2901), + [anon_sym_AMP_AMP] = ACTIONS(2901), + [anon_sym_PIPE_PIPE] = ACTIONS(2901), + [anon_sym_or] = ACTIONS(2903), + [sym_none] = ACTIONS(2903), + [sym_true] = ACTIONS(2903), + [sym_false] = ACTIONS(2903), + [sym_nil] = ACTIONS(2903), + [anon_sym_QMARK_DOT] = ACTIONS(2901), + [anon_sym_POUND_LBRACK] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2903), + [anon_sym_DOLLARif] = ACTIONS(2903), + [anon_sym_is] = ACTIONS(2903), + [anon_sym_BANGis] = ACTIONS(2901), + [anon_sym_in] = ACTIONS(2903), + [anon_sym_BANGin] = ACTIONS(2901), + [anon_sym_match] = ACTIONS(2903), + [anon_sym_select] = ACTIONS(2903), + [anon_sym_lock] = ACTIONS(2903), + [anon_sym_rlock] = ACTIONS(2903), + [anon_sym_unsafe] = ACTIONS(2903), + [anon_sym_sql] = ACTIONS(2903), + [sym_int_literal] = ACTIONS(2903), + [sym_float_literal] = ACTIONS(2901), + [sym_rune_literal] = ACTIONS(2901), + [sym_pseudo_compile_time_identifier] = ACTIONS(2903), + [anon_sym_shared] = ACTIONS(2903), + [anon_sym_map_LBRACK] = ACTIONS(2901), + [anon_sym_chan] = ACTIONS(2903), + [anon_sym_thread] = ACTIONS(2903), + [anon_sym_atomic] = ACTIONS(2903), + [sym___double_quote] = ACTIONS(2901), + [sym___single_quote] = ACTIONS(2901), + [sym___c_double_quote] = ACTIONS(2901), + [sym___c_single_quote] = ACTIONS(2901), + [sym___r_double_quote] = ACTIONS(2901), + [sym___r_single_quote] = ACTIONS(2901), }, - [1351] = { - [sym_identifier] = ACTIONS(3437), + [1383] = { + [sym_identifier] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(2911), + [anon_sym_as] = ACTIONS(2911), + [anon_sym_LBRACE] = ACTIONS(2909), + [anon_sym_COMMA] = ACTIONS(2909), + [anon_sym_RBRACE] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2911), + [anon_sym_fn] = ACTIONS(2911), + [anon_sym_PLUS] = ACTIONS(2911), + [anon_sym_DASH] = ACTIONS(2911), + [anon_sym_STAR] = ACTIONS(2909), + [anon_sym_SLASH] = ACTIONS(2911), + [anon_sym_PERCENT] = ACTIONS(2909), + [anon_sym_LT] = ACTIONS(2911), + [anon_sym_GT] = ACTIONS(2911), + [anon_sym_EQ_EQ] = ACTIONS(2909), + [anon_sym_BANG_EQ] = ACTIONS(2909), + [anon_sym_LT_EQ] = ACTIONS(2909), + [anon_sym_GT_EQ] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2909), + [anon_sym_RBRACK] = ACTIONS(2909), + [anon_sym_struct] = ACTIONS(2911), + [anon_sym_mut] = ACTIONS(2911), + [anon_sym_COLON] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2909), + [anon_sym_DASH_DASH] = ACTIONS(2909), + [anon_sym_QMARK] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2911), + [anon_sym_go] = ACTIONS(2911), + [anon_sym_spawn] = ACTIONS(2911), + [anon_sym_json_DOTdecode] = ACTIONS(2909), + [anon_sym_LBRACK2] = ACTIONS(2911), + [anon_sym_TILDE] = ACTIONS(2909), + [anon_sym_CARET] = ACTIONS(2909), + [anon_sym_AMP] = ACTIONS(2911), + [anon_sym_LT_DASH] = ACTIONS(2909), + [anon_sym_LT_LT] = ACTIONS(2909), + [anon_sym_GT_GT] = ACTIONS(2911), + [anon_sym_GT_GT_GT] = ACTIONS(2909), + [anon_sym_AMP_CARET] = ACTIONS(2909), + [anon_sym_AMP_AMP] = ACTIONS(2909), + [anon_sym_PIPE_PIPE] = ACTIONS(2909), + [anon_sym_or] = ACTIONS(2911), + [sym_none] = ACTIONS(2911), + [sym_true] = ACTIONS(2911), + [sym_false] = ACTIONS(2911), + [sym_nil] = ACTIONS(2911), + [anon_sym_QMARK_DOT] = ACTIONS(2909), + [anon_sym_POUND_LBRACK] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2911), + [anon_sym_DOLLARif] = ACTIONS(2911), + [anon_sym_is] = ACTIONS(2911), + [anon_sym_BANGis] = ACTIONS(2909), + [anon_sym_in] = ACTIONS(2911), + [anon_sym_BANGin] = ACTIONS(2909), + [anon_sym_match] = ACTIONS(2911), + [anon_sym_select] = ACTIONS(2911), + [anon_sym_lock] = ACTIONS(2911), + [anon_sym_rlock] = ACTIONS(2911), + [anon_sym_unsafe] = ACTIONS(2911), + [anon_sym_sql] = ACTIONS(2911), + [sym_int_literal] = ACTIONS(2911), + [sym_float_literal] = ACTIONS(2909), + [sym_rune_literal] = ACTIONS(2909), + [sym_pseudo_compile_time_identifier] = ACTIONS(2911), + [anon_sym_shared] = ACTIONS(2911), + [anon_sym_map_LBRACK] = ACTIONS(2909), + [anon_sym_chan] = ACTIONS(2911), + [anon_sym_thread] = ACTIONS(2911), + [anon_sym_atomic] = ACTIONS(2911), + [sym___double_quote] = ACTIONS(2909), + [sym___single_quote] = ACTIONS(2909), + [sym___c_double_quote] = ACTIONS(2909), + [sym___c_single_quote] = ACTIONS(2909), + [sym___r_double_quote] = ACTIONS(2909), + [sym___r_single_quote] = ACTIONS(2909), + }, + [1384] = { + [sym_identifier] = ACTIONS(3311), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_EQ] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3435), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3435), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_CARET] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3435), - [anon_sym_POUND_LBRACK] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3435), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3435), - [sym_rune_literal] = ACTIONS(3435), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3435), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3435), - [sym___single_quote] = ACTIONS(3435), - [sym___c_double_quote] = ACTIONS(3435), - [sym___c_single_quote] = ACTIONS(3435), - [sym___r_double_quote] = ACTIONS(3435), - [sym___r_single_quote] = ACTIONS(3435), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_RBRACK] = ACTIONS(3309), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_COLON] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3309), + [sym___single_quote] = ACTIONS(3309), + [sym___c_double_quote] = ACTIONS(3309), + [sym___c_single_quote] = ACTIONS(3309), + [sym___r_double_quote] = ACTIONS(3309), + [sym___r_single_quote] = ACTIONS(3309), }, - [1352] = { - [sym_identifier] = ACTIONS(3239), + [1385] = { + [sym_identifier] = ACTIONS(3261), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3237), - [anon_sym_COMMA] = ACTIONS(3237), - [anon_sym_RBRACE] = ACTIONS(3237), - [anon_sym_LPAREN] = ACTIONS(3237), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3237), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3237), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3237), - [anon_sym_BANG_EQ] = ACTIONS(3237), - [anon_sym_LT_EQ] = ACTIONS(3237), - [anon_sym_GT_EQ] = ACTIONS(3237), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_RBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_COLON] = ACTIONS(3237), - [anon_sym_PLUS_PLUS] = ACTIONS(3237), - [anon_sym_DASH_DASH] = ACTIONS(3237), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3237), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3237), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3237), - [anon_sym_LT_LT] = ACTIONS(3237), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3237), - [anon_sym_AMP_CARET] = ACTIONS(3237), - [anon_sym_AMP_AMP] = ACTIONS(3237), - [anon_sym_PIPE_PIPE] = ACTIONS(3237), - [anon_sym_or] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3237), - [anon_sym_POUND_LBRACK] = ACTIONS(3237), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3237), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3237), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3237), - [sym_rune_literal] = ACTIONS(3237), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3237), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3237), - [sym___single_quote] = ACTIONS(3237), - [sym___c_double_quote] = ACTIONS(3237), - [sym___c_single_quote] = ACTIONS(3237), - [sym___r_double_quote] = ACTIONS(3237), - [sym___r_single_quote] = ACTIONS(3237), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3259), + [anon_sym_COMMA] = ACTIONS(3259), + [anon_sym_RBRACE] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3259), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3259), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3259), + [anon_sym_BANG_EQ] = ACTIONS(3259), + [anon_sym_LT_EQ] = ACTIONS(3259), + [anon_sym_GT_EQ] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_RBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_COLON] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3259), + [anon_sym_DASH_DASH] = ACTIONS(3259), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3259), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3259), + [anon_sym_CARET] = ACTIONS(3259), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3259), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3259), + [anon_sym_AMP_CARET] = ACTIONS(3259), + [anon_sym_AMP_AMP] = ACTIONS(3259), + [anon_sym_PIPE_PIPE] = ACTIONS(3259), + [anon_sym_or] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3259), + [anon_sym_POUND_LBRACK] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3259), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3259), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3259), + [sym_rune_literal] = ACTIONS(3259), + [sym_pseudo_compile_time_identifier] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3259), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3259), + [sym___single_quote] = ACTIONS(3259), + [sym___c_double_quote] = ACTIONS(3259), + [sym___c_single_quote] = ACTIONS(3259), + [sym___r_double_quote] = ACTIONS(3259), + [sym___r_single_quote] = ACTIONS(3259), }, - [1353] = { - [sym_identifier] = ACTIONS(3247), + [1386] = { + [sym_identifier] = ACTIONS(3432), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_COMMA] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3245), - [anon_sym_BANG_EQ] = ACTIONS(3245), - [anon_sym_LT_EQ] = ACTIONS(3245), - [anon_sym_GT_EQ] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_RBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3245), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_CARET] = ACTIONS(3245), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3245), - [anon_sym_LT_LT] = ACTIONS(3245), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3245), - [anon_sym_AMP_CARET] = ACTIONS(3245), - [anon_sym_AMP_AMP] = ACTIONS(3245), - [anon_sym_PIPE_PIPE] = ACTIONS(3245), - [anon_sym_or] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3245), - [anon_sym_POUND_LBRACK] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3245), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3245), - [sym_rune_literal] = ACTIONS(3245), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3245), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3245), - [sym___single_quote] = ACTIONS(3245), - [sym___c_double_quote] = ACTIONS(3245), - [sym___c_single_quote] = ACTIONS(3245), - [sym___r_double_quote] = ACTIONS(3245), - [sym___r_single_quote] = ACTIONS(3245), + [anon_sym_DOT] = ACTIONS(3432), + [anon_sym_as] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3430), + [anon_sym_COMMA] = ACTIONS(3430), + [anon_sym_RBRACE] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3430), + [anon_sym_PIPE] = ACTIONS(3432), + [anon_sym_fn] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3430), + [anon_sym_SLASH] = ACTIONS(3432), + [anon_sym_PERCENT] = ACTIONS(3430), + [anon_sym_LT] = ACTIONS(3432), + [anon_sym_GT] = ACTIONS(3432), + [anon_sym_EQ_EQ] = ACTIONS(3430), + [anon_sym_BANG_EQ] = ACTIONS(3430), + [anon_sym_LT_EQ] = ACTIONS(3430), + [anon_sym_GT_EQ] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3430), + [anon_sym_RBRACK] = ACTIONS(3430), + [anon_sym_struct] = ACTIONS(3432), + [anon_sym_mut] = ACTIONS(3432), + [anon_sym_COLON] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3430), + [anon_sym_DASH_DASH] = ACTIONS(3430), + [anon_sym_QMARK] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_go] = ACTIONS(3432), + [anon_sym_spawn] = ACTIONS(3432), + [anon_sym_json_DOTdecode] = ACTIONS(3430), + [anon_sym_LBRACK2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3430), + [anon_sym_CARET] = ACTIONS(3430), + [anon_sym_AMP] = ACTIONS(3432), + [anon_sym_LT_DASH] = ACTIONS(3430), + [anon_sym_LT_LT] = ACTIONS(3430), + [anon_sym_GT_GT] = ACTIONS(3432), + [anon_sym_GT_GT_GT] = ACTIONS(3430), + [anon_sym_AMP_CARET] = ACTIONS(3430), + [anon_sym_AMP_AMP] = ACTIONS(3430), + [anon_sym_PIPE_PIPE] = ACTIONS(3430), + [anon_sym_or] = ACTIONS(3432), + [sym_none] = ACTIONS(3432), + [sym_true] = ACTIONS(3432), + [sym_false] = ACTIONS(3432), + [sym_nil] = ACTIONS(3432), + [anon_sym_QMARK_DOT] = ACTIONS(3430), + [anon_sym_POUND_LBRACK] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_DOLLARif] = ACTIONS(3432), + [anon_sym_is] = ACTIONS(3432), + [anon_sym_BANGis] = ACTIONS(3430), + [anon_sym_in] = ACTIONS(3432), + [anon_sym_BANGin] = ACTIONS(3430), + [anon_sym_match] = ACTIONS(3432), + [anon_sym_select] = ACTIONS(3432), + [anon_sym_lock] = ACTIONS(3432), + [anon_sym_rlock] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_sql] = ACTIONS(3432), + [sym_int_literal] = ACTIONS(3432), + [sym_float_literal] = ACTIONS(3430), + [sym_rune_literal] = ACTIONS(3430), + [sym_pseudo_compile_time_identifier] = ACTIONS(3432), + [anon_sym_shared] = ACTIONS(3432), + [anon_sym_map_LBRACK] = ACTIONS(3430), + [anon_sym_chan] = ACTIONS(3432), + [anon_sym_thread] = ACTIONS(3432), + [anon_sym_atomic] = ACTIONS(3432), + [sym___double_quote] = ACTIONS(3430), + [sym___single_quote] = ACTIONS(3430), + [sym___c_double_quote] = ACTIONS(3430), + [sym___c_single_quote] = ACTIONS(3430), + [sym___r_double_quote] = ACTIONS(3430), + [sym___r_single_quote] = ACTIONS(3430), }, - [1354] = { - [sym_identifier] = ACTIONS(3091), + [1387] = { + [sym_identifier] = ACTIONS(3237), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3237), + [anon_sym_as] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_COMMA] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_fn] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3235), + [anon_sym_BANG_EQ] = ACTIONS(3235), + [anon_sym_LT_EQ] = ACTIONS(3235), + [anon_sym_GT_EQ] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_RBRACK] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3237), + [anon_sym_mut] = ACTIONS(3237), + [anon_sym_COLON] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), + [anon_sym_QMARK] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_go] = ACTIONS(3237), + [anon_sym_spawn] = ACTIONS(3237), + [anon_sym_json_DOTdecode] = ACTIONS(3235), + [anon_sym_LBRACK2] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_CARET] = ACTIONS(3235), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_LT_DASH] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(3235), + [anon_sym_GT_GT] = ACTIONS(3237), + [anon_sym_GT_GT_GT] = ACTIONS(3235), + [anon_sym_AMP_CARET] = ACTIONS(3235), + [anon_sym_AMP_AMP] = ACTIONS(3235), + [anon_sym_PIPE_PIPE] = ACTIONS(3235), + [anon_sym_or] = ACTIONS(3237), + [sym_none] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_nil] = ACTIONS(3237), + [anon_sym_QMARK_DOT] = ACTIONS(3235), + [anon_sym_POUND_LBRACK] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_DOLLARif] = ACTIONS(3237), + [anon_sym_is] = ACTIONS(3237), + [anon_sym_BANGis] = ACTIONS(3235), + [anon_sym_in] = ACTIONS(3237), + [anon_sym_BANGin] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3237), + [anon_sym_select] = ACTIONS(3237), + [anon_sym_lock] = ACTIONS(3237), + [anon_sym_rlock] = ACTIONS(3237), + [anon_sym_unsafe] = ACTIONS(3237), + [anon_sym_sql] = ACTIONS(3237), + [sym_int_literal] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3235), + [sym_rune_literal] = ACTIONS(3235), + [sym_pseudo_compile_time_identifier] = ACTIONS(3237), + [anon_sym_shared] = ACTIONS(3237), + [anon_sym_map_LBRACK] = ACTIONS(3235), + [anon_sym_chan] = ACTIONS(3237), + [anon_sym_thread] = ACTIONS(3237), + [anon_sym_atomic] = ACTIONS(3237), + [sym___double_quote] = ACTIONS(3235), + [sym___single_quote] = ACTIONS(3235), + [sym___c_double_quote] = ACTIONS(3235), + [sym___c_single_quote] = ACTIONS(3235), + [sym___r_double_quote] = ACTIONS(3235), + [sym___r_single_quote] = ACTIONS(3235), + }, + [1388] = { + [sym_identifier] = ACTIONS(3370), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_as] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_COMMA] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_RBRACK] = ACTIONS(3368), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_COLON] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3368), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3368), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_or] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_QMARK_DOT] = ACTIONS(3368), + [anon_sym_POUND_LBRACK] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_is] = ACTIONS(3370), + [anon_sym_BANGis] = ACTIONS(3368), + [anon_sym_in] = ACTIONS(3370), + [anon_sym_BANGin] = ACTIONS(3368), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3368), + [sym_rune_literal] = ACTIONS(3368), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3368), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3368), + [sym___single_quote] = ACTIONS(3368), + [sym___c_double_quote] = ACTIONS(3368), + [sym___c_single_quote] = ACTIONS(3368), + [sym___r_double_quote] = ACTIONS(3368), + [sym___r_single_quote] = ACTIONS(3368), + }, + [1389] = { + [sym_identifier] = ACTIONS(2989), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3096), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3096), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [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(3089), - [anon_sym_struct] = ACTIONS(3091), - [anon_sym_mut] = ACTIONS(3091), - [anon_sym_COLON] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3091), - [anon_sym_spawn] = ACTIONS(3091), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3096), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3096), - [anon_sym_GT_GT] = ACTIONS(3093), - [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(3093), - [sym_none] = ACTIONS(3091), - [sym_true] = ACTIONS(3091), - [sym_false] = ACTIONS(3091), - [sym_nil] = ACTIONS(3091), - [anon_sym_QMARK_DOT] = ACTIONS(3096), - [anon_sym_POUND_LBRACK] = ACTIONS(3096), - [anon_sym_if] = ACTIONS(3091), - [anon_sym_DOLLARif] = ACTIONS(3091), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3096), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3096), - [anon_sym_match] = ACTIONS(3091), - [anon_sym_select] = ACTIONS(3091), - [anon_sym_lock] = ACTIONS(3091), - [anon_sym_rlock] = ACTIONS(3091), - [anon_sym_unsafe] = ACTIONS(3091), - [anon_sym_sql] = ACTIONS(3091), - [sym_int_literal] = ACTIONS(3091), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [sym_pseudo_compile_time_identifier] = ACTIONS(3091), - [anon_sym_shared] = ACTIONS(3091), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3091), - [anon_sym_thread] = ACTIONS(3091), - [anon_sym_atomic] = ACTIONS(3091), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), + [anon_sym_DOT] = ACTIONS(2989), + [anon_sym_as] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_COMMA] = ACTIONS(2987), + [anon_sym_RBRACE] = ACTIONS(2987), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_fn] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_EQ_EQ] = ACTIONS(2987), + [anon_sym_BANG_EQ] = ACTIONS(2987), + [anon_sym_LT_EQ] = ACTIONS(2987), + [anon_sym_GT_EQ] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_RBRACK] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2989), + [anon_sym_mut] = ACTIONS(2989), + [anon_sym_COLON] = ACTIONS(2987), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_QMARK] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_go] = ACTIONS(2989), + [anon_sym_spawn] = ACTIONS(2989), + [anon_sym_json_DOTdecode] = ACTIONS(2987), + [anon_sym_LBRACK2] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_LT_DASH] = ACTIONS(2987), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2987), + [anon_sym_AMP_CARET] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_PIPE_PIPE] = ACTIONS(2987), + [anon_sym_or] = ACTIONS(2989), + [sym_none] = ACTIONS(2989), + [sym_true] = ACTIONS(2989), + [sym_false] = ACTIONS(2989), + [sym_nil] = ACTIONS(2989), + [anon_sym_QMARK_DOT] = ACTIONS(2987), + [anon_sym_POUND_LBRACK] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_DOLLARif] = ACTIONS(2989), + [anon_sym_is] = ACTIONS(2989), + [anon_sym_BANGis] = ACTIONS(2987), + [anon_sym_in] = ACTIONS(2989), + [anon_sym_BANGin] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2989), + [anon_sym_select] = ACTIONS(2989), + [anon_sym_lock] = ACTIONS(2989), + [anon_sym_rlock] = ACTIONS(2989), + [anon_sym_unsafe] = ACTIONS(2989), + [anon_sym_sql] = ACTIONS(2989), + [sym_int_literal] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2987), + [sym_rune_literal] = ACTIONS(2987), + [sym_pseudo_compile_time_identifier] = ACTIONS(2989), + [anon_sym_shared] = ACTIONS(2989), + [anon_sym_map_LBRACK] = ACTIONS(2987), + [anon_sym_chan] = ACTIONS(2989), + [anon_sym_thread] = ACTIONS(2989), + [anon_sym_atomic] = ACTIONS(2989), + [sym___double_quote] = ACTIONS(2987), + [sym___single_quote] = ACTIONS(2987), + [sym___c_double_quote] = ACTIONS(2987), + [sym___c_single_quote] = ACTIONS(2987), + [sym___r_double_quote] = ACTIONS(2987), + [sym___r_single_quote] = ACTIONS(2987), }, - [1355] = { - [sym_identifier] = ACTIONS(3137), + [1390] = { + [sym_identifier] = ACTIONS(2993), [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_RBRACE] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_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_COLON] = ACTIONS(3135), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [sym_pseudo_compile_time_identifier] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), + [anon_sym_DOT] = ACTIONS(2993), + [anon_sym_as] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_COMMA] = ACTIONS(2991), + [anon_sym_RBRACE] = ACTIONS(2991), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_fn] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_RBRACK] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2993), + [anon_sym_mut] = ACTIONS(2993), + [anon_sym_COLON] = ACTIONS(2991), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_QMARK] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_go] = ACTIONS(2993), + [anon_sym_spawn] = ACTIONS(2993), + [anon_sym_json_DOTdecode] = ACTIONS(2991), + [anon_sym_LBRACK2] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_LT_DASH] = ACTIONS(2991), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_AMP_CARET] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_or] = ACTIONS(2993), + [sym_none] = ACTIONS(2993), + [sym_true] = ACTIONS(2993), + [sym_false] = ACTIONS(2993), + [sym_nil] = ACTIONS(2993), + [anon_sym_QMARK_DOT] = ACTIONS(2991), + [anon_sym_POUND_LBRACK] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_DOLLARif] = ACTIONS(2993), + [anon_sym_is] = ACTIONS(2993), + [anon_sym_BANGis] = ACTIONS(2991), + [anon_sym_in] = ACTIONS(2993), + [anon_sym_BANGin] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2993), + [anon_sym_select] = ACTIONS(2993), + [anon_sym_lock] = ACTIONS(2993), + [anon_sym_rlock] = ACTIONS(2993), + [anon_sym_unsafe] = ACTIONS(2993), + [anon_sym_sql] = ACTIONS(2993), + [sym_int_literal] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2991), + [sym_rune_literal] = ACTIONS(2991), + [sym_pseudo_compile_time_identifier] = ACTIONS(2993), + [anon_sym_shared] = ACTIONS(2993), + [anon_sym_map_LBRACK] = ACTIONS(2991), + [anon_sym_chan] = ACTIONS(2993), + [anon_sym_thread] = ACTIONS(2993), + [anon_sym_atomic] = ACTIONS(2993), + [sym___double_quote] = ACTIONS(2991), + [sym___single_quote] = ACTIONS(2991), + [sym___c_double_quote] = ACTIONS(2991), + [sym___c_single_quote] = ACTIONS(2991), + [sym___r_double_quote] = ACTIONS(2991), + [sym___r_single_quote] = ACTIONS(2991), }, - [1356] = { - [sym_identifier] = ACTIONS(3101), + [1391] = { + [sym_identifier] = ACTIONS(2997), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_as] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_PIPE] = ACTIONS(3103), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_DASH] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3103), - [anon_sym_PERCENT] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3103), - [anon_sym_GT] = ACTIONS(3103), - [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(3106), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_COLON] = ACTIONS(3099), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_BANG] = ACTIONS(3103), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3099), - [anon_sym_LBRACK2] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3106), - [anon_sym_AMP] = ACTIONS(3103), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_LT_LT] = ACTIONS(3106), - [anon_sym_GT_GT] = ACTIONS(3103), - [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(3103), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3106), - [anon_sym_POUND_LBRACK] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3103), - [anon_sym_BANGis] = ACTIONS(3106), - [anon_sym_in] = ACTIONS(3103), - [anon_sym_BANGin] = ACTIONS(3106), - [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), - [sym_pseudo_compile_time_identifier] = 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(2997), + [anon_sym_as] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_COMMA] = ACTIONS(2995), + [anon_sym_RBRACE] = ACTIONS(2995), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_fn] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_LT_EQ] = ACTIONS(2995), + [anon_sym_GT_EQ] = ACTIONS(2995), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_RBRACK] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2997), + [anon_sym_mut] = ACTIONS(2997), + [anon_sym_COLON] = ACTIONS(2995), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_go] = ACTIONS(2997), + [anon_sym_spawn] = ACTIONS(2997), + [anon_sym_json_DOTdecode] = ACTIONS(2995), + [anon_sym_LBRACK2] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_LT_DASH] = ACTIONS(2995), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2995), + [anon_sym_AMP_CARET] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_or] = ACTIONS(2997), + [sym_none] = ACTIONS(2997), + [sym_true] = ACTIONS(2997), + [sym_false] = ACTIONS(2997), + [sym_nil] = ACTIONS(2997), + [anon_sym_QMARK_DOT] = ACTIONS(2995), + [anon_sym_POUND_LBRACK] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_DOLLARif] = ACTIONS(2997), + [anon_sym_is] = ACTIONS(2997), + [anon_sym_BANGis] = ACTIONS(2995), + [anon_sym_in] = ACTIONS(2997), + [anon_sym_BANGin] = ACTIONS(2995), + [anon_sym_match] = ACTIONS(2997), + [anon_sym_select] = ACTIONS(2997), + [anon_sym_lock] = ACTIONS(2997), + [anon_sym_rlock] = ACTIONS(2997), + [anon_sym_unsafe] = ACTIONS(2997), + [anon_sym_sql] = ACTIONS(2997), + [sym_int_literal] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2995), + [sym_rune_literal] = ACTIONS(2995), + [sym_pseudo_compile_time_identifier] = ACTIONS(2997), + [anon_sym_shared] = ACTIONS(2997), + [anon_sym_map_LBRACK] = ACTIONS(2995), + [anon_sym_chan] = ACTIONS(2997), + [anon_sym_thread] = ACTIONS(2997), + [anon_sym_atomic] = ACTIONS(2997), + [sym___double_quote] = ACTIONS(2995), + [sym___single_quote] = ACTIONS(2995), + [sym___c_double_quote] = ACTIONS(2995), + [sym___c_single_quote] = ACTIONS(2995), + [sym___r_double_quote] = ACTIONS(2995), + [sym___r_single_quote] = ACTIONS(2995), }, - [1357] = { - [sym_identifier] = ACTIONS(2669), + [1392] = { + [sym_identifier] = ACTIONS(3197), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2669), - [anon_sym_as] = ACTIONS(2669), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_COMMA] = ACTIONS(2667), - [anon_sym_RBRACE] = ACTIONS(2667), - [anon_sym_LPAREN] = ACTIONS(2667), - [anon_sym_PIPE] = ACTIONS(2669), - [anon_sym_fn] = ACTIONS(2669), - [anon_sym_PLUS] = ACTIONS(2669), - [anon_sym_DASH] = ACTIONS(2669), - [anon_sym_STAR] = ACTIONS(2667), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_PERCENT] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2669), - [anon_sym_GT] = ACTIONS(2669), - [anon_sym_EQ_EQ] = ACTIONS(2667), - [anon_sym_BANG_EQ] = ACTIONS(2667), - [anon_sym_LT_EQ] = ACTIONS(2667), - [anon_sym_GT_EQ] = ACTIONS(2667), - [anon_sym_LBRACK] = ACTIONS(2667), - [anon_sym_RBRACK] = ACTIONS(2667), - [anon_sym_struct] = ACTIONS(2669), - [anon_sym_mut] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2667), - [anon_sym_PLUS_PLUS] = ACTIONS(2667), - [anon_sym_DASH_DASH] = ACTIONS(2667), - [anon_sym_QMARK] = ACTIONS(2669), - [anon_sym_BANG] = ACTIONS(2669), - [anon_sym_go] = ACTIONS(2669), - [anon_sym_spawn] = ACTIONS(2669), - [anon_sym_json_DOTdecode] = ACTIONS(2667), - [anon_sym_LBRACK2] = ACTIONS(2669), - [anon_sym_TILDE] = ACTIONS(2667), - [anon_sym_CARET] = ACTIONS(2667), - [anon_sym_AMP] = ACTIONS(2669), - [anon_sym_LT_DASH] = ACTIONS(2667), - [anon_sym_LT_LT] = ACTIONS(2667), - [anon_sym_GT_GT] = ACTIONS(2669), - [anon_sym_GT_GT_GT] = ACTIONS(2667), - [anon_sym_AMP_CARET] = ACTIONS(2667), - [anon_sym_AMP_AMP] = ACTIONS(2667), - [anon_sym_PIPE_PIPE] = ACTIONS(2667), - [anon_sym_or] = ACTIONS(2669), - [sym_none] = ACTIONS(2669), - [sym_true] = ACTIONS(2669), - [sym_false] = ACTIONS(2669), - [sym_nil] = ACTIONS(2669), - [anon_sym_QMARK_DOT] = ACTIONS(2667), - [anon_sym_POUND_LBRACK] = ACTIONS(2667), - [anon_sym_if] = ACTIONS(2669), - [anon_sym_DOLLARif] = ACTIONS(2669), - [anon_sym_is] = ACTIONS(2669), - [anon_sym_BANGis] = ACTIONS(2667), - [anon_sym_in] = ACTIONS(2669), - [anon_sym_BANGin] = ACTIONS(2667), - [anon_sym_match] = ACTIONS(2669), - [anon_sym_select] = ACTIONS(2669), - [anon_sym_lock] = ACTIONS(2669), - [anon_sym_rlock] = ACTIONS(2669), - [anon_sym_unsafe] = ACTIONS(2669), - [anon_sym_sql] = ACTIONS(2669), - [sym_int_literal] = ACTIONS(2669), - [sym_float_literal] = ACTIONS(2667), - [sym_rune_literal] = ACTIONS(2667), - [sym_pseudo_compile_time_identifier] = ACTIONS(2669), - [anon_sym_shared] = ACTIONS(2669), - [anon_sym_map_LBRACK] = ACTIONS(2667), - [anon_sym_chan] = ACTIONS(2669), - [anon_sym_thread] = ACTIONS(2669), - [anon_sym_atomic] = ACTIONS(2669), - [sym___double_quote] = ACTIONS(2667), - [sym___single_quote] = ACTIONS(2667), - [sym___c_double_quote] = ACTIONS(2667), - [sym___c_single_quote] = ACTIONS(2667), - [sym___r_double_quote] = ACTIONS(2667), - [sym___r_single_quote] = ACTIONS(2667), + [anon_sym_DOT] = ACTIONS(3197), + [anon_sym_as] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3195), + [anon_sym_COMMA] = ACTIONS(3195), + [anon_sym_RBRACE] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3195), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_fn] = ACTIONS(3197), + [anon_sym_PLUS] = ACTIONS(3197), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3195), + [anon_sym_SLASH] = ACTIONS(3197), + [anon_sym_PERCENT] = ACTIONS(3195), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3195), + [anon_sym_BANG_EQ] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3195), + [anon_sym_RBRACK] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3197), + [anon_sym_mut] = ACTIONS(3197), + [anon_sym_COLON] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3195), + [anon_sym_DASH_DASH] = ACTIONS(3195), + [anon_sym_QMARK] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_go] = ACTIONS(3197), + [anon_sym_spawn] = ACTIONS(3197), + [anon_sym_json_DOTdecode] = ACTIONS(3195), + [anon_sym_LBRACK2] = ACTIONS(3197), + [anon_sym_TILDE] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3195), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_LT_DASH] = ACTIONS(3195), + [anon_sym_LT_LT] = ACTIONS(3195), + [anon_sym_GT_GT] = ACTIONS(3197), + [anon_sym_GT_GT_GT] = ACTIONS(3195), + [anon_sym_AMP_CARET] = ACTIONS(3195), + [anon_sym_AMP_AMP] = ACTIONS(3195), + [anon_sym_PIPE_PIPE] = ACTIONS(3195), + [anon_sym_or] = ACTIONS(3197), + [sym_none] = ACTIONS(3197), + [sym_true] = ACTIONS(3197), + [sym_false] = ACTIONS(3197), + [sym_nil] = ACTIONS(3197), + [anon_sym_QMARK_DOT] = ACTIONS(3195), + [anon_sym_POUND_LBRACK] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3197), + [anon_sym_DOLLARif] = ACTIONS(3197), + [anon_sym_is] = ACTIONS(3197), + [anon_sym_BANGis] = ACTIONS(3195), + [anon_sym_in] = ACTIONS(3197), + [anon_sym_BANGin] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(3197), + [anon_sym_select] = ACTIONS(3197), + [anon_sym_lock] = ACTIONS(3197), + [anon_sym_rlock] = ACTIONS(3197), + [anon_sym_unsafe] = ACTIONS(3197), + [anon_sym_sql] = ACTIONS(3197), + [sym_int_literal] = ACTIONS(3197), + [sym_float_literal] = ACTIONS(3195), + [sym_rune_literal] = ACTIONS(3195), + [sym_pseudo_compile_time_identifier] = ACTIONS(3197), + [anon_sym_shared] = ACTIONS(3197), + [anon_sym_map_LBRACK] = ACTIONS(3195), + [anon_sym_chan] = ACTIONS(3197), + [anon_sym_thread] = ACTIONS(3197), + [anon_sym_atomic] = ACTIONS(3197), + [sym___double_quote] = ACTIONS(3195), + [sym___single_quote] = ACTIONS(3195), + [sym___c_double_quote] = ACTIONS(3195), + [sym___c_single_quote] = ACTIONS(3195), + [sym___r_double_quote] = ACTIONS(3195), + [sym___r_single_quote] = ACTIONS(3195), }, - [1358] = { - [sym_identifier] = ACTIONS(3063), + [1393] = { + [sym_identifier] = ACTIONS(3185), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3063), - [anon_sym_as] = ACTIONS(3063), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3063), - [anon_sym_fn] = ACTIONS(3063), - [anon_sym_PLUS] = ACTIONS(3063), - [anon_sym_DASH] = ACTIONS(3063), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3063), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3063), - [anon_sym_GT] = ACTIONS(3063), - [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(3061), - [anon_sym_RBRACK] = ACTIONS(3061), - [anon_sym_struct] = ACTIONS(3063), - [anon_sym_mut] = ACTIONS(3063), - [anon_sym_COLON] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3939), - [anon_sym_go] = ACTIONS(3063), - [anon_sym_spawn] = ACTIONS(3063), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3063), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3063), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3063), - [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(3063), - [sym_none] = ACTIONS(3063), - [sym_true] = ACTIONS(3063), - [sym_false] = ACTIONS(3063), - [sym_nil] = ACTIONS(3063), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3063), - [anon_sym_DOLLARif] = ACTIONS(3063), - [anon_sym_is] = ACTIONS(3063), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3063), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3063), - [anon_sym_select] = ACTIONS(3063), - [anon_sym_lock] = ACTIONS(3063), - [anon_sym_rlock] = ACTIONS(3063), - [anon_sym_unsafe] = ACTIONS(3063), - [anon_sym_sql] = ACTIONS(3063), - [sym_int_literal] = ACTIONS(3063), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [sym_pseudo_compile_time_identifier] = ACTIONS(3063), - [anon_sym_shared] = ACTIONS(3063), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3063), - [anon_sym_thread] = ACTIONS(3063), - [anon_sym_atomic] = ACTIONS(3063), - [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), + [anon_sym_DOT] = ACTIONS(3185), + [anon_sym_as] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_COMMA] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_PIPE] = ACTIONS(3185), + [anon_sym_fn] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_RBRACK] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3185), + [anon_sym_mut] = ACTIONS(3185), + [anon_sym_COLON] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_QMARK] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_go] = ACTIONS(3185), + [anon_sym_spawn] = ACTIONS(3185), + [anon_sym_json_DOTdecode] = ACTIONS(3183), + [anon_sym_LBRACK2] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_LT_DASH] = ACTIONS(3183), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3185), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_or] = ACTIONS(3185), + [sym_none] = ACTIONS(3185), + [sym_true] = ACTIONS(3185), + [sym_false] = ACTIONS(3185), + [sym_nil] = ACTIONS(3185), + [anon_sym_QMARK_DOT] = ACTIONS(3183), + [anon_sym_POUND_LBRACK] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_DOLLARif] = ACTIONS(3185), + [anon_sym_is] = ACTIONS(3185), + [anon_sym_BANGis] = ACTIONS(3183), + [anon_sym_in] = ACTIONS(3185), + [anon_sym_BANGin] = ACTIONS(3183), + [anon_sym_match] = ACTIONS(3185), + [anon_sym_select] = ACTIONS(3185), + [anon_sym_lock] = ACTIONS(3185), + [anon_sym_rlock] = ACTIONS(3185), + [anon_sym_unsafe] = ACTIONS(3185), + [anon_sym_sql] = ACTIONS(3185), + [sym_int_literal] = ACTIONS(3185), + [sym_float_literal] = ACTIONS(3183), + [sym_rune_literal] = ACTIONS(3183), + [sym_pseudo_compile_time_identifier] = ACTIONS(3185), + [anon_sym_shared] = ACTIONS(3185), + [anon_sym_map_LBRACK] = ACTIONS(3183), + [anon_sym_chan] = ACTIONS(3185), + [anon_sym_thread] = ACTIONS(3185), + [anon_sym_atomic] = ACTIONS(3185), + [sym___double_quote] = ACTIONS(3183), + [sym___single_quote] = ACTIONS(3183), + [sym___c_double_quote] = ACTIONS(3183), + [sym___c_single_quote] = ACTIONS(3183), + [sym___r_double_quote] = ACTIONS(3183), + [sym___r_single_quote] = ACTIONS(3183), }, - [1359] = { - [sym_identifier] = ACTIONS(3397), + [1394] = { + [sym_identifier] = ACTIONS(3001), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3397), - [anon_sym_as] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_COMMA] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_fn] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_STAR] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_PERCENT] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_GT] = ACTIONS(3397), - [anon_sym_EQ_EQ] = ACTIONS(3395), - [anon_sym_BANG_EQ] = ACTIONS(3395), - [anon_sym_LT_EQ] = ACTIONS(3395), - [anon_sym_GT_EQ] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_RBRACK] = ACTIONS(3395), - [anon_sym_struct] = ACTIONS(3397), - [anon_sym_mut] = ACTIONS(3397), - [anon_sym_COLON] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_go] = ACTIONS(3397), - [anon_sym_spawn] = ACTIONS(3397), - [anon_sym_json_DOTdecode] = ACTIONS(3395), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_CARET] = ACTIONS(3395), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_LT_DASH] = ACTIONS(3395), - [anon_sym_LT_LT] = ACTIONS(3395), - [anon_sym_GT_GT] = ACTIONS(3397), - [anon_sym_GT_GT_GT] = ACTIONS(3395), - [anon_sym_AMP_CARET] = ACTIONS(3395), - [anon_sym_AMP_AMP] = ACTIONS(3395), - [anon_sym_PIPE_PIPE] = ACTIONS(3395), - [anon_sym_or] = ACTIONS(3397), - [sym_none] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_nil] = ACTIONS(3397), - [anon_sym_QMARK_DOT] = ACTIONS(3395), - [anon_sym_POUND_LBRACK] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_DOLLARif] = ACTIONS(3397), - [anon_sym_is] = ACTIONS(3397), - [anon_sym_BANGis] = ACTIONS(3395), - [anon_sym_in] = ACTIONS(3397), - [anon_sym_BANGin] = ACTIONS(3395), - [anon_sym_match] = ACTIONS(3397), - [anon_sym_select] = ACTIONS(3397), - [anon_sym_lock] = ACTIONS(3397), - [anon_sym_rlock] = ACTIONS(3397), - [anon_sym_unsafe] = ACTIONS(3397), - [anon_sym_sql] = ACTIONS(3397), - [sym_int_literal] = ACTIONS(3397), - [sym_float_literal] = ACTIONS(3395), - [sym_rune_literal] = ACTIONS(3395), - [sym_pseudo_compile_time_identifier] = ACTIONS(3397), - [anon_sym_shared] = ACTIONS(3397), - [anon_sym_map_LBRACK] = ACTIONS(3395), - [anon_sym_chan] = ACTIONS(3397), - [anon_sym_thread] = ACTIONS(3397), - [anon_sym_atomic] = ACTIONS(3397), - [sym___double_quote] = ACTIONS(3395), - [sym___single_quote] = ACTIONS(3395), - [sym___c_double_quote] = ACTIONS(3395), - [sym___c_single_quote] = ACTIONS(3395), - [sym___r_double_quote] = ACTIONS(3395), - [sym___r_single_quote] = ACTIONS(3395), + [anon_sym_DOT] = ACTIONS(3001), + [anon_sym_as] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_COMMA] = ACTIONS(2999), + [anon_sym_RBRACE] = ACTIONS(2999), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_fn] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_EQ_EQ] = ACTIONS(2999), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_LT_EQ] = ACTIONS(2999), + [anon_sym_GT_EQ] = ACTIONS(2999), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_RBRACK] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(3001), + [anon_sym_mut] = ACTIONS(3001), + [anon_sym_COLON] = ACTIONS(2999), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_QMARK] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_go] = ACTIONS(3001), + [anon_sym_spawn] = ACTIONS(3001), + [anon_sym_json_DOTdecode] = ACTIONS(2999), + [anon_sym_LBRACK2] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_LT_DASH] = ACTIONS(2999), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(2999), + [anon_sym_AMP_CARET] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_or] = ACTIONS(3001), + [sym_none] = ACTIONS(3001), + [sym_true] = ACTIONS(3001), + [sym_false] = ACTIONS(3001), + [sym_nil] = ACTIONS(3001), + [anon_sym_QMARK_DOT] = ACTIONS(2999), + [anon_sym_POUND_LBRACK] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_DOLLARif] = ACTIONS(3001), + [anon_sym_is] = ACTIONS(3001), + [anon_sym_BANGis] = ACTIONS(2999), + [anon_sym_in] = ACTIONS(3001), + [anon_sym_BANGin] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(3001), + [anon_sym_select] = ACTIONS(3001), + [anon_sym_lock] = ACTIONS(3001), + [anon_sym_rlock] = ACTIONS(3001), + [anon_sym_unsafe] = ACTIONS(3001), + [anon_sym_sql] = ACTIONS(3001), + [sym_int_literal] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(2999), + [sym_rune_literal] = ACTIONS(2999), + [sym_pseudo_compile_time_identifier] = ACTIONS(3001), + [anon_sym_shared] = ACTIONS(3001), + [anon_sym_map_LBRACK] = ACTIONS(2999), + [anon_sym_chan] = ACTIONS(3001), + [anon_sym_thread] = ACTIONS(3001), + [anon_sym_atomic] = ACTIONS(3001), + [sym___double_quote] = ACTIONS(2999), + [sym___single_quote] = ACTIONS(2999), + [sym___c_double_quote] = ACTIONS(2999), + [sym___c_single_quote] = ACTIONS(2999), + [sym___r_double_quote] = ACTIONS(2999), + [sym___r_single_quote] = ACTIONS(2999), }, - [1360] = { - [sym_identifier] = ACTIONS(3331), + [1395] = { + [sym_identifier] = ACTIONS(3328), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_as] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_PERCENT] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_GT] = ACTIONS(3331), - [anon_sym_EQ_EQ] = ACTIONS(3329), - [anon_sym_BANG_EQ] = ACTIONS(3329), - [anon_sym_LT_EQ] = ACTIONS(3329), - [anon_sym_GT_EQ] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3329), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_COLON] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3329), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_CARET] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3329), - [anon_sym_LT_LT] = ACTIONS(3329), - [anon_sym_GT_GT] = ACTIONS(3331), - [anon_sym_GT_GT_GT] = ACTIONS(3329), - [anon_sym_AMP_CARET] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3329), - [anon_sym_POUND_LBRACK] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3331), - [anon_sym_BANGis] = ACTIONS(3329), - [anon_sym_in] = ACTIONS(3331), - [anon_sym_BANGin] = ACTIONS(3329), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3329), - [sym_rune_literal] = ACTIONS(3329), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3329), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3329), - [sym___single_quote] = ACTIONS(3329), - [sym___c_double_quote] = ACTIONS(3329), - [sym___c_single_quote] = ACTIONS(3329), - [sym___r_double_quote] = ACTIONS(3329), - [sym___r_single_quote] = ACTIONS(3329), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_as] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_COMMA] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_PERCENT] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_GT] = ACTIONS(3328), + [anon_sym_EQ_EQ] = ACTIONS(3326), + [anon_sym_BANG_EQ] = ACTIONS(3326), + [anon_sym_LT_EQ] = ACTIONS(3326), + [anon_sym_GT_EQ] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_RBRACK] = ACTIONS(3326), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_COLON] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3326), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_CARET] = ACTIONS(3326), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3326), + [anon_sym_LT_LT] = ACTIONS(3326), + [anon_sym_GT_GT] = ACTIONS(3328), + [anon_sym_GT_GT_GT] = ACTIONS(3326), + [anon_sym_AMP_CARET] = ACTIONS(3326), + [anon_sym_AMP_AMP] = ACTIONS(3326), + [anon_sym_PIPE_PIPE] = ACTIONS(3326), + [anon_sym_or] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_QMARK_DOT] = ACTIONS(3326), + [anon_sym_POUND_LBRACK] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_is] = ACTIONS(3328), + [anon_sym_BANGis] = ACTIONS(3326), + [anon_sym_in] = ACTIONS(3328), + [anon_sym_BANGin] = ACTIONS(3326), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3326), + [sym_rune_literal] = ACTIONS(3326), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3326), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + [sym___double_quote] = ACTIONS(3326), + [sym___single_quote] = ACTIONS(3326), + [sym___c_double_quote] = ACTIONS(3326), + [sym___c_single_quote] = ACTIONS(3326), + [sym___r_double_quote] = ACTIONS(3326), + [sym___r_single_quote] = ACTIONS(3326), }, - [1361] = { - [sym_identifier] = ACTIONS(3327), + [1396] = { + [sym_identifier] = ACTIONS(2907), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_as] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_PERCENT] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_GT] = ACTIONS(3327), - [anon_sym_EQ_EQ] = ACTIONS(3325), - [anon_sym_BANG_EQ] = ACTIONS(3325), - [anon_sym_LT_EQ] = ACTIONS(3325), - [anon_sym_GT_EQ] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3325), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_COLON] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3325), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_CARET] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3325), - [anon_sym_LT_LT] = ACTIONS(3325), - [anon_sym_GT_GT] = ACTIONS(3327), - [anon_sym_GT_GT_GT] = ACTIONS(3325), - [anon_sym_AMP_CARET] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_QMARK_DOT] = ACTIONS(3325), - [anon_sym_POUND_LBRACK] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_is] = ACTIONS(3327), - [anon_sym_BANGis] = ACTIONS(3325), - [anon_sym_in] = ACTIONS(3327), - [anon_sym_BANGin] = ACTIONS(3325), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3325), - [sym_rune_literal] = ACTIONS(3325), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3325), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3325), - [sym___single_quote] = ACTIONS(3325), - [sym___c_double_quote] = ACTIONS(3325), - [sym___c_single_quote] = ACTIONS(3325), - [sym___r_double_quote] = ACTIONS(3325), - [sym___r_single_quote] = ACTIONS(3325), + [anon_sym_DOT] = ACTIONS(2907), + [anon_sym_as] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2905), + [anon_sym_COMMA] = ACTIONS(2905), + [anon_sym_RBRACE] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2905), + [anon_sym_SLASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2905), + [anon_sym_LT] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2905), + [anon_sym_BANG_EQ] = ACTIONS(2905), + [anon_sym_LT_EQ] = ACTIONS(2905), + [anon_sym_GT_EQ] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2905), + [anon_sym_RBRACK] = ACTIONS(2905), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_mut] = ACTIONS(2907), + [anon_sym_COLON] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2905), + [anon_sym_DASH_DASH] = ACTIONS(2905), + [anon_sym_QMARK] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2907), + [anon_sym_spawn] = ACTIONS(2907), + [anon_sym_json_DOTdecode] = ACTIONS(2905), + [anon_sym_LBRACK2] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2905), + [anon_sym_CARET] = ACTIONS(2905), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2905), + [anon_sym_GT_GT] = ACTIONS(2907), + [anon_sym_GT_GT_GT] = ACTIONS(2905), + [anon_sym_AMP_CARET] = ACTIONS(2905), + [anon_sym_AMP_AMP] = ACTIONS(2905), + [anon_sym_PIPE_PIPE] = ACTIONS(2905), + [anon_sym_or] = ACTIONS(2907), + [sym_none] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_nil] = ACTIONS(2907), + [anon_sym_QMARK_DOT] = ACTIONS(2905), + [anon_sym_POUND_LBRACK] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_DOLLARif] = ACTIONS(2907), + [anon_sym_is] = ACTIONS(2907), + [anon_sym_BANGis] = ACTIONS(2905), + [anon_sym_in] = ACTIONS(2907), + [anon_sym_BANGin] = ACTIONS(2905), + [anon_sym_match] = ACTIONS(2907), + [anon_sym_select] = ACTIONS(2907), + [anon_sym_lock] = ACTIONS(2907), + [anon_sym_rlock] = ACTIONS(2907), + [anon_sym_unsafe] = ACTIONS(2907), + [anon_sym_sql] = ACTIONS(2907), + [sym_int_literal] = ACTIONS(2907), + [sym_float_literal] = ACTIONS(2905), + [sym_rune_literal] = ACTIONS(2905), + [sym_pseudo_compile_time_identifier] = ACTIONS(2907), + [anon_sym_shared] = ACTIONS(2907), + [anon_sym_map_LBRACK] = ACTIONS(2905), + [anon_sym_chan] = ACTIONS(2907), + [anon_sym_thread] = ACTIONS(2907), + [anon_sym_atomic] = ACTIONS(2907), + [sym___double_quote] = ACTIONS(2905), + [sym___single_quote] = ACTIONS(2905), + [sym___c_double_quote] = ACTIONS(2905), + [sym___c_single_quote] = ACTIONS(2905), + [sym___r_double_quote] = ACTIONS(2905), + [sym___r_single_quote] = ACTIONS(2905), }, - [1362] = { - [sym_identifier] = ACTIONS(3323), + [1397] = { + [sym_identifier] = ACTIONS(3017), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_as] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3321), - [anon_sym_RBRACE] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3321), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3321), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_PERCENT] = ACTIONS(3321), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_GT] = ACTIONS(3323), - [anon_sym_EQ_EQ] = ACTIONS(3321), - [anon_sym_BANG_EQ] = ACTIONS(3321), - [anon_sym_LT_EQ] = ACTIONS(3321), - [anon_sym_GT_EQ] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3321), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_COLON] = ACTIONS(3321), - [anon_sym_PLUS_PLUS] = ACTIONS(3321), - [anon_sym_DASH_DASH] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3321), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_CARET] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3321), - [anon_sym_LT_LT] = ACTIONS(3321), - [anon_sym_GT_GT] = ACTIONS(3323), - [anon_sym_GT_GT_GT] = ACTIONS(3321), - [anon_sym_AMP_CARET] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_QMARK_DOT] = ACTIONS(3321), - [anon_sym_POUND_LBRACK] = ACTIONS(3321), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_is] = ACTIONS(3323), - [anon_sym_BANGis] = ACTIONS(3321), - [anon_sym_in] = ACTIONS(3323), - [anon_sym_BANGin] = ACTIONS(3321), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3321), - [sym_rune_literal] = ACTIONS(3321), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3321), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3321), - [sym___single_quote] = ACTIONS(3321), - [sym___c_double_quote] = ACTIONS(3321), - [sym___c_single_quote] = ACTIONS(3321), - [sym___r_double_quote] = ACTIONS(3321), - [sym___r_single_quote] = ACTIONS(3321), + [anon_sym_DOT] = ACTIONS(3017), + [anon_sym_as] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_COMMA] = ACTIONS(3015), + [anon_sym_RBRACE] = ACTIONS(3015), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_fn] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_RBRACK] = ACTIONS(3015), + [anon_sym_struct] = ACTIONS(3017), + [anon_sym_mut] = ACTIONS(3017), + [anon_sym_COLON] = ACTIONS(3015), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_QMARK] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_go] = ACTIONS(3017), + [anon_sym_spawn] = ACTIONS(3017), + [anon_sym_json_DOTdecode] = ACTIONS(3015), + [anon_sym_LBRACK2] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_LT_DASH] = ACTIONS(3015), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_or] = ACTIONS(3017), + [sym_none] = ACTIONS(3017), + [sym_true] = ACTIONS(3017), + [sym_false] = ACTIONS(3017), + [sym_nil] = ACTIONS(3017), + [anon_sym_QMARK_DOT] = ACTIONS(3015), + [anon_sym_POUND_LBRACK] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_DOLLARif] = ACTIONS(3017), + [anon_sym_is] = ACTIONS(3017), + [anon_sym_BANGis] = ACTIONS(3015), + [anon_sym_in] = ACTIONS(3017), + [anon_sym_BANGin] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3017), + [anon_sym_select] = ACTIONS(3017), + [anon_sym_lock] = ACTIONS(3017), + [anon_sym_rlock] = ACTIONS(3017), + [anon_sym_unsafe] = ACTIONS(3017), + [anon_sym_sql] = ACTIONS(3017), + [sym_int_literal] = ACTIONS(3017), + [sym_float_literal] = ACTIONS(3015), + [sym_rune_literal] = ACTIONS(3015), + [sym_pseudo_compile_time_identifier] = ACTIONS(3017), + [anon_sym_shared] = ACTIONS(3017), + [anon_sym_map_LBRACK] = ACTIONS(3015), + [anon_sym_chan] = ACTIONS(3017), + [anon_sym_thread] = ACTIONS(3017), + [anon_sym_atomic] = ACTIONS(3017), + [sym___double_quote] = ACTIONS(3015), + [sym___single_quote] = ACTIONS(3015), + [sym___c_double_quote] = ACTIONS(3015), + [sym___c_single_quote] = ACTIONS(3015), + [sym___r_double_quote] = ACTIONS(3015), + [sym___r_single_quote] = ACTIONS(3015), }, - [1363] = { - [sym_identifier] = ACTIONS(2991), + [1398] = { + [sym_identifier] = ACTIONS(3424), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_as] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_RBRACE] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_fn] = ACTIONS(2991), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2991), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2991), - [anon_sym_GT] = ACTIONS(2991), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2989), - [anon_sym_RBRACK] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2991), - [anon_sym_mut] = ACTIONS(2991), - [anon_sym_COLON] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_BANG] = ACTIONS(2991), - [anon_sym_go] = ACTIONS(2991), - [anon_sym_spawn] = ACTIONS(2991), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2991), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2991), - [sym_none] = ACTIONS(2991), - [sym_true] = ACTIONS(2991), - [sym_false] = ACTIONS(2991), - [sym_nil] = ACTIONS(2991), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2991), - [anon_sym_DOLLARif] = ACTIONS(2991), - [anon_sym_is] = ACTIONS(2991), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2991), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2991), - [anon_sym_select] = ACTIONS(2991), - [anon_sym_lock] = ACTIONS(2991), - [anon_sym_rlock] = ACTIONS(2991), - [anon_sym_unsafe] = ACTIONS(2991), - [anon_sym_sql] = ACTIONS(2991), - [sym_int_literal] = ACTIONS(2991), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [sym_pseudo_compile_time_identifier] = ACTIONS(2991), - [anon_sym_shared] = ACTIONS(2991), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2991), - [anon_sym_thread] = ACTIONS(2991), - [anon_sym_atomic] = ACTIONS(2991), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_as] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3422), + [anon_sym_COMMA] = ACTIONS(3422), + [anon_sym_RBRACE] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3422), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_fn] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3422), + [anon_sym_SLASH] = ACTIONS(3424), + [anon_sym_PERCENT] = ACTIONS(3422), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_GT] = ACTIONS(3424), + [anon_sym_EQ_EQ] = ACTIONS(3422), + [anon_sym_BANG_EQ] = ACTIONS(3422), + [anon_sym_LT_EQ] = ACTIONS(3422), + [anon_sym_GT_EQ] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3422), + [anon_sym_RBRACK] = ACTIONS(3422), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_mut] = ACTIONS(3424), + [anon_sym_COLON] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3422), + [anon_sym_DASH_DASH] = ACTIONS(3422), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_go] = ACTIONS(3424), + [anon_sym_spawn] = ACTIONS(3424), + [anon_sym_json_DOTdecode] = ACTIONS(3422), + [anon_sym_LBRACK2] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3422), + [anon_sym_CARET] = ACTIONS(3422), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3422), + [anon_sym_LT_LT] = ACTIONS(3422), + [anon_sym_GT_GT] = ACTIONS(3424), + [anon_sym_GT_GT_GT] = ACTIONS(3422), + [anon_sym_AMP_CARET] = ACTIONS(3422), + [anon_sym_AMP_AMP] = ACTIONS(3422), + [anon_sym_PIPE_PIPE] = ACTIONS(3422), + [anon_sym_or] = ACTIONS(3424), + [sym_none] = ACTIONS(3424), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_nil] = ACTIONS(3424), + [anon_sym_QMARK_DOT] = ACTIONS(3422), + [anon_sym_POUND_LBRACK] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_DOLLARif] = ACTIONS(3424), + [anon_sym_is] = ACTIONS(3424), + [anon_sym_BANGis] = ACTIONS(3422), + [anon_sym_in] = ACTIONS(3424), + [anon_sym_BANGin] = ACTIONS(3422), + [anon_sym_match] = ACTIONS(3424), + [anon_sym_select] = ACTIONS(3424), + [anon_sym_lock] = ACTIONS(3424), + [anon_sym_rlock] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_sql] = ACTIONS(3424), + [sym_int_literal] = ACTIONS(3424), + [sym_float_literal] = ACTIONS(3422), + [sym_rune_literal] = ACTIONS(3422), + [sym_pseudo_compile_time_identifier] = ACTIONS(3424), + [anon_sym_shared] = ACTIONS(3424), + [anon_sym_map_LBRACK] = ACTIONS(3422), + [anon_sym_chan] = ACTIONS(3424), + [anon_sym_thread] = ACTIONS(3424), + [anon_sym_atomic] = ACTIONS(3424), + [sym___double_quote] = ACTIONS(3422), + [sym___single_quote] = ACTIONS(3422), + [sym___c_double_quote] = ACTIONS(3422), + [sym___c_single_quote] = ACTIONS(3422), + [sym___r_double_quote] = ACTIONS(3422), + [sym___r_single_quote] = ACTIONS(3422), }, - [1364] = { - [sym_identifier] = ACTIONS(2867), + [1399] = { + [sym_identifier] = ACTIONS(2915), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_as] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_PIPE] = ACTIONS(2867), - [anon_sym_fn] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2867), - [anon_sym_DASH] = ACTIONS(2867), - [anon_sym_STAR] = ACTIONS(2869), - [anon_sym_SLASH] = ACTIONS(2867), - [anon_sym_PERCENT] = ACTIONS(2869), - [anon_sym_LT] = ACTIONS(2867), - [anon_sym_GT] = ACTIONS(2867), - [anon_sym_EQ_EQ] = ACTIONS(2869), - [anon_sym_BANG_EQ] = ACTIONS(2869), - [anon_sym_LT_EQ] = ACTIONS(2869), - [anon_sym_GT_EQ] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_RBRACK] = ACTIONS(2869), - [anon_sym_struct] = ACTIONS(2867), - [anon_sym_mut] = ACTIONS(2867), - [anon_sym_COLON] = ACTIONS(2869), - [anon_sym_PLUS_PLUS] = ACTIONS(2869), - [anon_sym_DASH_DASH] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2867), - [anon_sym_BANG] = ACTIONS(2867), - [anon_sym_go] = ACTIONS(2867), - [anon_sym_spawn] = ACTIONS(2867), - [anon_sym_json_DOTdecode] = ACTIONS(2869), - [anon_sym_LBRACK2] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_CARET] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2867), - [anon_sym_LT_DASH] = ACTIONS(2869), - [anon_sym_LT_LT] = ACTIONS(2869), - [anon_sym_GT_GT] = ACTIONS(2867), - [anon_sym_GT_GT_GT] = ACTIONS(2869), - [anon_sym_AMP_CARET] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2867), - [sym_none] = ACTIONS(2867), - [sym_true] = ACTIONS(2867), - [sym_false] = ACTIONS(2867), - [sym_nil] = ACTIONS(2867), - [anon_sym_QMARK_DOT] = ACTIONS(2869), - [anon_sym_POUND_LBRACK] = ACTIONS(2869), - [anon_sym_if] = ACTIONS(2867), - [anon_sym_DOLLARif] = ACTIONS(2867), - [anon_sym_is] = ACTIONS(2867), - [anon_sym_BANGis] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2867), - [anon_sym_BANGin] = ACTIONS(2869), - [anon_sym_match] = ACTIONS(2867), - [anon_sym_select] = ACTIONS(2867), - [anon_sym_lock] = ACTIONS(2867), - [anon_sym_rlock] = ACTIONS(2867), - [anon_sym_unsafe] = ACTIONS(2867), - [anon_sym_sql] = ACTIONS(2867), - [sym_int_literal] = ACTIONS(2867), - [sym_float_literal] = ACTIONS(2869), - [sym_rune_literal] = ACTIONS(2869), - [sym_pseudo_compile_time_identifier] = ACTIONS(2867), - [anon_sym_shared] = ACTIONS(2867), - [anon_sym_map_LBRACK] = ACTIONS(2869), - [anon_sym_chan] = ACTIONS(2867), - [anon_sym_thread] = ACTIONS(2867), - [anon_sym_atomic] = ACTIONS(2867), - [sym___double_quote] = ACTIONS(2869), - [sym___single_quote] = ACTIONS(2869), - [sym___c_double_quote] = ACTIONS(2869), - [sym___c_single_quote] = ACTIONS(2869), - [sym___r_double_quote] = ACTIONS(2869), - [sym___r_single_quote] = ACTIONS(2869), + [anon_sym_DOT] = ACTIONS(2915), + [anon_sym_as] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2913), + [anon_sym_COMMA] = ACTIONS(2913), + [anon_sym_RBRACE] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_fn] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2913), + [anon_sym_SLASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2913), + [anon_sym_LT] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2913), + [anon_sym_BANG_EQ] = ACTIONS(2913), + [anon_sym_LT_EQ] = ACTIONS(2913), + [anon_sym_GT_EQ] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2913), + [anon_sym_RBRACK] = ACTIONS(2913), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_mut] = ACTIONS(2915), + [anon_sym_COLON] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2913), + [anon_sym_DASH_DASH] = ACTIONS(2913), + [anon_sym_QMARK] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_go] = ACTIONS(2915), + [anon_sym_spawn] = ACTIONS(2915), + [anon_sym_json_DOTdecode] = ACTIONS(2913), + [anon_sym_LBRACK2] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2913), + [anon_sym_CARET] = ACTIONS(2913), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2913), + [anon_sym_GT_GT] = ACTIONS(2915), + [anon_sym_GT_GT_GT] = ACTIONS(2913), + [anon_sym_AMP_CARET] = ACTIONS(2913), + [anon_sym_AMP_AMP] = ACTIONS(2913), + [anon_sym_PIPE_PIPE] = ACTIONS(2913), + [anon_sym_or] = ACTIONS(2915), + [sym_none] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_nil] = ACTIONS(2915), + [anon_sym_QMARK_DOT] = ACTIONS(2913), + [anon_sym_POUND_LBRACK] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_DOLLARif] = ACTIONS(2915), + [anon_sym_is] = ACTIONS(2915), + [anon_sym_BANGis] = ACTIONS(2913), + [anon_sym_in] = ACTIONS(2915), + [anon_sym_BANGin] = ACTIONS(2913), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_select] = ACTIONS(2915), + [anon_sym_lock] = ACTIONS(2915), + [anon_sym_rlock] = ACTIONS(2915), + [anon_sym_unsafe] = ACTIONS(2915), + [anon_sym_sql] = ACTIONS(2915), + [sym_int_literal] = ACTIONS(2915), + [sym_float_literal] = ACTIONS(2913), + [sym_rune_literal] = ACTIONS(2913), + [sym_pseudo_compile_time_identifier] = ACTIONS(2915), + [anon_sym_shared] = ACTIONS(2915), + [anon_sym_map_LBRACK] = ACTIONS(2913), + [anon_sym_chan] = ACTIONS(2915), + [anon_sym_thread] = ACTIONS(2915), + [anon_sym_atomic] = ACTIONS(2915), + [sym___double_quote] = ACTIONS(2913), + [sym___single_quote] = ACTIONS(2913), + [sym___c_double_quote] = ACTIONS(2913), + [sym___c_single_quote] = ACTIONS(2913), + [sym___r_double_quote] = ACTIONS(2913), + [sym___r_single_quote] = ACTIONS(2913), }, - [1365] = { + [1400] = { [sym_identifier] = ACTIONS(2981), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(2981), @@ -172183,1287 +175102,1047 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(2979), [sym___r_single_quote] = ACTIONS(2979), }, - [1366] = { - [sym_identifier] = ACTIONS(3319), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_as] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3317), - [anon_sym_BANG_EQ] = ACTIONS(3317), - [anon_sym_LT_EQ] = ACTIONS(3317), - [anon_sym_GT_EQ] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3317), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_COLON] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3317), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_CARET] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3317), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3319), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_QMARK_DOT] = ACTIONS(3317), - [anon_sym_POUND_LBRACK] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_is] = ACTIONS(3319), - [anon_sym_BANGis] = ACTIONS(3317), - [anon_sym_in] = ACTIONS(3319), - [anon_sym_BANGin] = ACTIONS(3317), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3317), - [sym_rune_literal] = ACTIONS(3317), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3317), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3317), - [sym___single_quote] = ACTIONS(3317), - [sym___c_double_quote] = ACTIONS(3317), - [sym___c_single_quote] = ACTIONS(3317), - [sym___r_double_quote] = ACTIONS(3317), - [sym___r_single_quote] = ACTIONS(3317), - }, - [1367] = { - [sym_identifier] = ACTIONS(3311), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_as] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_PERCENT] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_GT] = ACTIONS(3311), - [anon_sym_EQ_EQ] = ACTIONS(3309), - [anon_sym_BANG_EQ] = ACTIONS(3309), - [anon_sym_LT_EQ] = ACTIONS(3309), - [anon_sym_GT_EQ] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_RBRACK] = ACTIONS(3309), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_COLON] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3309), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_CARET] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3309), - [anon_sym_LT_LT] = ACTIONS(3309), - [anon_sym_GT_GT] = ACTIONS(3311), - [anon_sym_GT_GT_GT] = ACTIONS(3309), - [anon_sym_AMP_CARET] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_QMARK_DOT] = ACTIONS(3309), - [anon_sym_POUND_LBRACK] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_is] = ACTIONS(3311), - [anon_sym_BANGis] = ACTIONS(3309), - [anon_sym_in] = ACTIONS(3311), - [anon_sym_BANGin] = ACTIONS(3309), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3309), - [sym_rune_literal] = ACTIONS(3309), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3309), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3309), - [sym___single_quote] = ACTIONS(3309), - [sym___c_double_quote] = ACTIONS(3309), - [sym___c_single_quote] = ACTIONS(3309), - [sym___r_double_quote] = ACTIONS(3309), - [sym___r_single_quote] = ACTIONS(3309), - }, - [1368] = { - [sym_identifier] = ACTIONS(3307), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_as] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3305), - [anon_sym_RBRACE] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3305), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3305), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_PERCENT] = ACTIONS(3305), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_GT] = ACTIONS(3307), - [anon_sym_EQ_EQ] = ACTIONS(3305), - [anon_sym_BANG_EQ] = ACTIONS(3305), - [anon_sym_LT_EQ] = ACTIONS(3305), - [anon_sym_GT_EQ] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_RBRACK] = ACTIONS(3305), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_COLON] = ACTIONS(3305), - [anon_sym_PLUS_PLUS] = ACTIONS(3305), - [anon_sym_DASH_DASH] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3305), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_CARET] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3305), - [anon_sym_LT_LT] = ACTIONS(3305), - [anon_sym_GT_GT] = ACTIONS(3307), - [anon_sym_GT_GT_GT] = ACTIONS(3305), - [anon_sym_AMP_CARET] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_QMARK_DOT] = ACTIONS(3305), - [anon_sym_POUND_LBRACK] = ACTIONS(3305), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3305), - [anon_sym_in] = ACTIONS(3307), - [anon_sym_BANGin] = ACTIONS(3305), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3305), - [sym_rune_literal] = ACTIONS(3305), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3305), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3305), - [sym___single_quote] = ACTIONS(3305), - [sym___c_double_quote] = ACTIONS(3305), - [sym___c_single_quote] = ACTIONS(3305), - [sym___r_double_quote] = ACTIONS(3305), - [sym___r_single_quote] = ACTIONS(3305), - }, - [1369] = { - [sym_identifier] = ACTIONS(3303), + [1401] = { + [sym_identifier] = ACTIONS(3049), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3303), - [anon_sym_as] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3301), - [anon_sym_COMMA] = ACTIONS(3301), - [anon_sym_RBRACE] = ACTIONS(3301), - [anon_sym_LPAREN] = ACTIONS(3301), - [anon_sym_PIPE] = ACTIONS(3303), - [anon_sym_fn] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3301), - [anon_sym_SLASH] = ACTIONS(3303), - [anon_sym_PERCENT] = ACTIONS(3301), - [anon_sym_LT] = ACTIONS(3303), - [anon_sym_GT] = ACTIONS(3303), - [anon_sym_EQ_EQ] = ACTIONS(3301), - [anon_sym_BANG_EQ] = ACTIONS(3301), - [anon_sym_LT_EQ] = ACTIONS(3301), - [anon_sym_GT_EQ] = ACTIONS(3301), - [anon_sym_LBRACK] = ACTIONS(3301), - [anon_sym_RBRACK] = ACTIONS(3301), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_mut] = ACTIONS(3303), - [anon_sym_COLON] = ACTIONS(3301), - [anon_sym_PLUS_PLUS] = ACTIONS(3301), - [anon_sym_DASH_DASH] = ACTIONS(3301), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_go] = ACTIONS(3303), - [anon_sym_spawn] = ACTIONS(3303), - [anon_sym_json_DOTdecode] = ACTIONS(3301), - [anon_sym_LBRACK2] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3301), - [anon_sym_CARET] = ACTIONS(3301), - [anon_sym_AMP] = ACTIONS(3303), - [anon_sym_LT_DASH] = ACTIONS(3301), - [anon_sym_LT_LT] = ACTIONS(3301), - [anon_sym_GT_GT] = ACTIONS(3303), - [anon_sym_GT_GT_GT] = ACTIONS(3301), - [anon_sym_AMP_CARET] = ACTIONS(3301), - [anon_sym_AMP_AMP] = ACTIONS(3301), - [anon_sym_PIPE_PIPE] = ACTIONS(3301), - [anon_sym_or] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_nil] = ACTIONS(3303), - [anon_sym_QMARK_DOT] = ACTIONS(3301), - [anon_sym_POUND_LBRACK] = ACTIONS(3301), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_DOLLARif] = ACTIONS(3303), - [anon_sym_is] = ACTIONS(3303), - [anon_sym_BANGis] = ACTIONS(3301), - [anon_sym_in] = ACTIONS(3303), - [anon_sym_BANGin] = ACTIONS(3301), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_rlock] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_sql] = ACTIONS(3303), - [sym_int_literal] = ACTIONS(3303), - [sym_float_literal] = ACTIONS(3301), - [sym_rune_literal] = ACTIONS(3301), - [sym_pseudo_compile_time_identifier] = ACTIONS(3303), - [anon_sym_shared] = ACTIONS(3303), - [anon_sym_map_LBRACK] = ACTIONS(3301), - [anon_sym_chan] = ACTIONS(3303), - [anon_sym_thread] = ACTIONS(3303), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(3301), - [sym___single_quote] = ACTIONS(3301), - [sym___c_double_quote] = ACTIONS(3301), - [sym___c_single_quote] = ACTIONS(3301), - [sym___r_double_quote] = ACTIONS(3301), - [sym___r_single_quote] = ACTIONS(3301), + [anon_sym_DOT] = ACTIONS(3049), + [anon_sym_as] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_COMMA] = ACTIONS(3047), + [anon_sym_RBRACE] = ACTIONS(3047), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_fn] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_RBRACK] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3049), + [anon_sym_mut] = ACTIONS(3049), + [anon_sym_COLON] = ACTIONS(3047), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_QMARK] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_go] = ACTIONS(3049), + [anon_sym_spawn] = ACTIONS(3049), + [anon_sym_json_DOTdecode] = ACTIONS(3047), + [anon_sym_LBRACK2] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3047), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_LT_DASH] = ACTIONS(3047), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3047), + [anon_sym_AMP_CARET] = ACTIONS(3047), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_or] = ACTIONS(3049), + [sym_none] = ACTIONS(3049), + [sym_true] = ACTIONS(3049), + [sym_false] = ACTIONS(3049), + [sym_nil] = ACTIONS(3049), + [anon_sym_QMARK_DOT] = ACTIONS(3047), + [anon_sym_POUND_LBRACK] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_DOLLARif] = ACTIONS(3049), + [anon_sym_is] = ACTIONS(3049), + [anon_sym_BANGis] = ACTIONS(3047), + [anon_sym_in] = ACTIONS(3049), + [anon_sym_BANGin] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3049), + [anon_sym_select] = ACTIONS(3049), + [anon_sym_lock] = ACTIONS(3049), + [anon_sym_rlock] = ACTIONS(3049), + [anon_sym_unsafe] = ACTIONS(3049), + [anon_sym_sql] = ACTIONS(3049), + [sym_int_literal] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3047), + [sym_rune_literal] = ACTIONS(3047), + [sym_pseudo_compile_time_identifier] = ACTIONS(3049), + [anon_sym_shared] = ACTIONS(3049), + [anon_sym_map_LBRACK] = ACTIONS(3047), + [anon_sym_chan] = ACTIONS(3049), + [anon_sym_thread] = ACTIONS(3049), + [anon_sym_atomic] = ACTIONS(3049), + [sym___double_quote] = ACTIONS(3047), + [sym___single_quote] = ACTIONS(3047), + [sym___c_double_quote] = ACTIONS(3047), + [sym___c_single_quote] = ACTIONS(3047), + [sym___r_double_quote] = ACTIONS(3047), + [sym___r_single_quote] = ACTIONS(3047), }, - [1370] = { - [sym_identifier] = ACTIONS(2909), + [1402] = { + [sym_identifier] = ACTIONS(3053), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_as] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2909), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2909), - [anon_sym_GT] = ACTIONS(2909), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_COLON] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2909), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_is] = ACTIONS(2909), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2909), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), + [anon_sym_DOT] = ACTIONS(3053), + [anon_sym_as] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_COMMA] = ACTIONS(3051), + [anon_sym_RBRACE] = ACTIONS(3051), + [anon_sym_LPAREN] = ACTIONS(3051), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_fn] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3053), + [anon_sym_PERCENT] = ACTIONS(3051), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_EQ_EQ] = ACTIONS(3051), + [anon_sym_BANG_EQ] = ACTIONS(3051), + [anon_sym_LT_EQ] = ACTIONS(3051), + [anon_sym_GT_EQ] = ACTIONS(3051), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_RBRACK] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3053), + [anon_sym_mut] = ACTIONS(3053), + [anon_sym_COLON] = ACTIONS(3051), + [anon_sym_PLUS_PLUS] = ACTIONS(3051), + [anon_sym_DASH_DASH] = ACTIONS(3051), + [anon_sym_QMARK] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_go] = ACTIONS(3053), + [anon_sym_spawn] = ACTIONS(3053), + [anon_sym_json_DOTdecode] = ACTIONS(3051), + [anon_sym_LBRACK2] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3051), + [anon_sym_CARET] = ACTIONS(3051), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_LT_DASH] = ACTIONS(3051), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(3053), + [anon_sym_GT_GT_GT] = ACTIONS(3051), + [anon_sym_AMP_CARET] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(3051), + [anon_sym_PIPE_PIPE] = ACTIONS(3051), + [anon_sym_or] = ACTIONS(3053), + [sym_none] = ACTIONS(3053), + [sym_true] = ACTIONS(3053), + [sym_false] = ACTIONS(3053), + [sym_nil] = ACTIONS(3053), + [anon_sym_QMARK_DOT] = ACTIONS(3051), + [anon_sym_POUND_LBRACK] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_DOLLARif] = ACTIONS(3053), + [anon_sym_is] = ACTIONS(3053), + [anon_sym_BANGis] = ACTIONS(3051), + [anon_sym_in] = ACTIONS(3053), + [anon_sym_BANGin] = ACTIONS(3051), + [anon_sym_match] = ACTIONS(3053), + [anon_sym_select] = ACTIONS(3053), + [anon_sym_lock] = ACTIONS(3053), + [anon_sym_rlock] = ACTIONS(3053), + [anon_sym_unsafe] = ACTIONS(3053), + [anon_sym_sql] = ACTIONS(3053), + [sym_int_literal] = ACTIONS(3053), + [sym_float_literal] = ACTIONS(3051), + [sym_rune_literal] = ACTIONS(3051), + [sym_pseudo_compile_time_identifier] = ACTIONS(3053), + [anon_sym_shared] = ACTIONS(3053), + [anon_sym_map_LBRACK] = ACTIONS(3051), + [anon_sym_chan] = ACTIONS(3053), + [anon_sym_thread] = ACTIONS(3053), + [anon_sym_atomic] = ACTIONS(3053), + [sym___double_quote] = ACTIONS(3051), + [sym___single_quote] = ACTIONS(3051), + [sym___c_double_quote] = ACTIONS(3051), + [sym___c_single_quote] = ACTIONS(3051), + [sym___r_double_quote] = ACTIONS(3051), + [sym___r_single_quote] = ACTIONS(3051), }, - [1371] = { - [sym_identifier] = ACTIONS(2935), + [1403] = { + [sym_identifier] = ACTIONS(3057), [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_RBRACE] = ACTIONS(2933), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2933), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2933), - [anon_sym_BANG_EQ] = ACTIONS(2933), - [anon_sym_LT_EQ] = ACTIONS(2933), - [anon_sym_GT_EQ] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_COLON] = ACTIONS(2933), - [anon_sym_PLUS_PLUS] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2933), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2933), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_CARET] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2933), - [anon_sym_LT_LT] = ACTIONS(2933), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2933), - [anon_sym_AMP_CARET] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_PIPE_PIPE] = ACTIONS(2933), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2933), - [anon_sym_POUND_LBRACK] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2933), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2933), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2933), - [sym_rune_literal] = ACTIONS(2933), - [sym_pseudo_compile_time_identifier] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2933), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2933), - [sym___single_quote] = ACTIONS(2933), - [sym___c_double_quote] = ACTIONS(2933), - [sym___c_single_quote] = ACTIONS(2933), - [sym___r_double_quote] = ACTIONS(2933), - [sym___r_single_quote] = ACTIONS(2933), + [anon_sym_DOT] = ACTIONS(3057), + [anon_sym_as] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_COMMA] = ACTIONS(3055), + [anon_sym_RBRACE] = ACTIONS(3055), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_PIPE] = ACTIONS(3057), + [anon_sym_fn] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3057), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_RBRACK] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3057), + [anon_sym_mut] = ACTIONS(3057), + [anon_sym_COLON] = ACTIONS(3055), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_QMARK] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_go] = ACTIONS(3057), + [anon_sym_spawn] = ACTIONS(3057), + [anon_sym_json_DOTdecode] = ACTIONS(3055), + [anon_sym_LBRACK2] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_LT_DASH] = ACTIONS(3055), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3057), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_or] = ACTIONS(3057), + [sym_none] = ACTIONS(3057), + [sym_true] = ACTIONS(3057), + [sym_false] = ACTIONS(3057), + [sym_nil] = ACTIONS(3057), + [anon_sym_QMARK_DOT] = ACTIONS(3055), + [anon_sym_POUND_LBRACK] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_DOLLARif] = ACTIONS(3057), + [anon_sym_is] = ACTIONS(3057), + [anon_sym_BANGis] = ACTIONS(3055), + [anon_sym_in] = ACTIONS(3057), + [anon_sym_BANGin] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3057), + [anon_sym_select] = ACTIONS(3057), + [anon_sym_lock] = ACTIONS(3057), + [anon_sym_rlock] = ACTIONS(3057), + [anon_sym_unsafe] = ACTIONS(3057), + [anon_sym_sql] = ACTIONS(3057), + [sym_int_literal] = ACTIONS(3057), + [sym_float_literal] = ACTIONS(3055), + [sym_rune_literal] = ACTIONS(3055), + [sym_pseudo_compile_time_identifier] = ACTIONS(3057), + [anon_sym_shared] = ACTIONS(3057), + [anon_sym_map_LBRACK] = ACTIONS(3055), + [anon_sym_chan] = ACTIONS(3057), + [anon_sym_thread] = ACTIONS(3057), + [anon_sym_atomic] = ACTIONS(3057), + [sym___double_quote] = ACTIONS(3055), + [sym___single_quote] = ACTIONS(3055), + [sym___c_double_quote] = ACTIONS(3055), + [sym___c_single_quote] = ACTIONS(3055), + [sym___r_double_quote] = ACTIONS(3055), + [sym___r_single_quote] = ACTIONS(3055), }, - [1372] = { - [sym_identifier] = ACTIONS(2939), + [1404] = { + [sym_identifier] = ACTIONS(3061), [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_RBRACE] = 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_COLON] = ACTIONS(2937), - [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), - [sym_pseudo_compile_time_identifier] = 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(3061), + [anon_sym_as] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_COMMA] = ACTIONS(3059), + [anon_sym_RBRACE] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_fn] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_RBRACK] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3061), + [anon_sym_mut] = ACTIONS(3061), + [anon_sym_COLON] = ACTIONS(3059), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_QMARK] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_go] = ACTIONS(3061), + [anon_sym_spawn] = ACTIONS(3061), + [anon_sym_json_DOTdecode] = ACTIONS(3059), + [anon_sym_LBRACK2] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_CARET] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_LT_DASH] = ACTIONS(3059), + [anon_sym_LT_LT] = ACTIONS(3059), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3059), + [anon_sym_AMP_CARET] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_or] = ACTIONS(3061), + [sym_none] = ACTIONS(3061), + [sym_true] = ACTIONS(3061), + [sym_false] = ACTIONS(3061), + [sym_nil] = ACTIONS(3061), + [anon_sym_QMARK_DOT] = ACTIONS(3059), + [anon_sym_POUND_LBRACK] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_DOLLARif] = ACTIONS(3061), + [anon_sym_is] = ACTIONS(3061), + [anon_sym_BANGis] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(3061), + [anon_sym_BANGin] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3061), + [anon_sym_select] = ACTIONS(3061), + [anon_sym_lock] = ACTIONS(3061), + [anon_sym_rlock] = ACTIONS(3061), + [anon_sym_unsafe] = ACTIONS(3061), + [anon_sym_sql] = ACTIONS(3061), + [sym_int_literal] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3059), + [sym_rune_literal] = ACTIONS(3059), + [sym_pseudo_compile_time_identifier] = ACTIONS(3061), + [anon_sym_shared] = ACTIONS(3061), + [anon_sym_map_LBRACK] = ACTIONS(3059), + [anon_sym_chan] = ACTIONS(3061), + [anon_sym_thread] = ACTIONS(3061), + [anon_sym_atomic] = ACTIONS(3061), + [sym___double_quote] = ACTIONS(3059), + [sym___single_quote] = ACTIONS(3059), + [sym___c_double_quote] = ACTIONS(3059), + [sym___c_single_quote] = ACTIONS(3059), + [sym___r_double_quote] = ACTIONS(3059), + [sym___r_single_quote] = ACTIONS(3059), }, - [1373] = { - [sym_identifier] = ACTIONS(3133), + [1405] = { + [sym_identifier] = ACTIONS(2985), [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_RBRACE] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3131), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3131), - [anon_sym_AMP_CARET] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [sym_pseudo_compile_time_identifier] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_as] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_COMMA] = ACTIONS(2983), + [anon_sym_RBRACE] = ACTIONS(2983), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_RBRACK] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_COLON] = ACTIONS(2983), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2983), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2983), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_AMP_CARET] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_or] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_QMARK_DOT] = ACTIONS(2983), + [anon_sym_POUND_LBRACK] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_is] = ACTIONS(2985), + [anon_sym_BANGis] = ACTIONS(2983), + [anon_sym_in] = ACTIONS(2985), + [anon_sym_BANGin] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2983), + [sym_rune_literal] = ACTIONS(2983), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2983), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2983), + [sym___single_quote] = ACTIONS(2983), + [sym___c_double_quote] = ACTIONS(2983), + [sym___c_single_quote] = ACTIONS(2983), + [sym___r_double_quote] = ACTIONS(2983), + [sym___r_single_quote] = ACTIONS(2983), }, - [1374] = { - [sym_identifier] = ACTIONS(3251), + [1406] = { + [sym_identifier] = ACTIONS(3083), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_as] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_COMMA] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_PERCENT] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_GT] = ACTIONS(3251), - [anon_sym_EQ_EQ] = ACTIONS(3249), - [anon_sym_BANG_EQ] = ACTIONS(3249), - [anon_sym_LT_EQ] = ACTIONS(3249), - [anon_sym_GT_EQ] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_RBRACK] = ACTIONS(3249), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_COLON] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3249), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_CARET] = ACTIONS(3249), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3249), - [anon_sym_LT_LT] = ACTIONS(3249), - [anon_sym_GT_GT] = ACTIONS(3251), - [anon_sym_GT_GT_GT] = ACTIONS(3249), - [anon_sym_AMP_CARET] = ACTIONS(3249), - [anon_sym_AMP_AMP] = ACTIONS(3249), - [anon_sym_PIPE_PIPE] = ACTIONS(3249), - [anon_sym_or] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_QMARK_DOT] = ACTIONS(3249), - [anon_sym_POUND_LBRACK] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_is] = ACTIONS(3251), - [anon_sym_BANGis] = ACTIONS(3249), - [anon_sym_in] = ACTIONS(3251), - [anon_sym_BANGin] = ACTIONS(3249), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3249), - [sym_rune_literal] = ACTIONS(3249), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3249), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3249), - [sym___single_quote] = ACTIONS(3249), - [sym___c_double_quote] = ACTIONS(3249), - [sym___c_single_quote] = ACTIONS(3249), - [sym___r_double_quote] = ACTIONS(3249), - [sym___r_single_quote] = ACTIONS(3249), + [anon_sym_DOT] = ACTIONS(3083), + [anon_sym_as] = ACTIONS(3083), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_COMMA] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_PIPE] = ACTIONS(3083), + [anon_sym_fn] = ACTIONS(3083), + [anon_sym_PLUS] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(3083), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_SLASH] = ACTIONS(3083), + [anon_sym_PERCENT] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3081), + [anon_sym_BANG_EQ] = ACTIONS(3081), + [anon_sym_LT_EQ] = ACTIONS(3081), + [anon_sym_GT_EQ] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_RBRACK] = ACTIONS(3081), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_mut] = ACTIONS(3083), + [anon_sym_COLON] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3081), + [anon_sym_DASH_DASH] = ACTIONS(3081), + [anon_sym_QMARK] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3083), + [anon_sym_go] = ACTIONS(3083), + [anon_sym_spawn] = ACTIONS(3083), + [anon_sym_json_DOTdecode] = ACTIONS(3081), + [anon_sym_LBRACK2] = ACTIONS(3083), + [anon_sym_TILDE] = ACTIONS(3081), + [anon_sym_CARET] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3083), + [anon_sym_LT_DASH] = ACTIONS(3081), + [anon_sym_LT_LT] = ACTIONS(3081), + [anon_sym_GT_GT] = ACTIONS(3083), + [anon_sym_GT_GT_GT] = ACTIONS(3081), + [anon_sym_AMP_CARET] = ACTIONS(3081), + [anon_sym_AMP_AMP] = ACTIONS(3081), + [anon_sym_PIPE_PIPE] = ACTIONS(3081), + [anon_sym_or] = ACTIONS(3083), + [sym_none] = ACTIONS(3083), + [sym_true] = ACTIONS(3083), + [sym_false] = ACTIONS(3083), + [sym_nil] = ACTIONS(3083), + [anon_sym_QMARK_DOT] = ACTIONS(3081), + [anon_sym_POUND_LBRACK] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_DOLLARif] = ACTIONS(3083), + [anon_sym_is] = ACTIONS(3083), + [anon_sym_BANGis] = ACTIONS(3081), + [anon_sym_in] = ACTIONS(3083), + [anon_sym_BANGin] = ACTIONS(3081), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_select] = ACTIONS(3083), + [anon_sym_lock] = ACTIONS(3083), + [anon_sym_rlock] = ACTIONS(3083), + [anon_sym_unsafe] = ACTIONS(3083), + [anon_sym_sql] = ACTIONS(3083), + [sym_int_literal] = ACTIONS(3083), + [sym_float_literal] = ACTIONS(3081), + [sym_rune_literal] = ACTIONS(3081), + [sym_pseudo_compile_time_identifier] = ACTIONS(3083), + [anon_sym_shared] = ACTIONS(3083), + [anon_sym_map_LBRACK] = ACTIONS(3081), + [anon_sym_chan] = ACTIONS(3083), + [anon_sym_thread] = ACTIONS(3083), + [anon_sym_atomic] = ACTIONS(3083), + [sym___double_quote] = ACTIONS(3081), + [sym___single_quote] = ACTIONS(3081), + [sym___c_double_quote] = ACTIONS(3081), + [sym___c_single_quote] = ACTIONS(3081), + [sym___r_double_quote] = ACTIONS(3081), + [sym___r_single_quote] = ACTIONS(3081), }, - [1375] = { - [sym_identifier] = ACTIONS(3219), + [1407] = { + [sym_identifier] = ACTIONS(3013), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_as] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_COMMA] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_PERCENT] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_GT] = ACTIONS(3219), - [anon_sym_EQ_EQ] = ACTIONS(3217), - [anon_sym_BANG_EQ] = ACTIONS(3217), - [anon_sym_LT_EQ] = ACTIONS(3217), - [anon_sym_GT_EQ] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_RBRACK] = ACTIONS(3217), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_COLON] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3217), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_CARET] = ACTIONS(3217), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3217), - [anon_sym_LT_LT] = ACTIONS(3217), - [anon_sym_GT_GT] = ACTIONS(3219), - [anon_sym_GT_GT_GT] = ACTIONS(3217), - [anon_sym_AMP_CARET] = ACTIONS(3217), - [anon_sym_AMP_AMP] = ACTIONS(3217), - [anon_sym_PIPE_PIPE] = ACTIONS(3217), - [anon_sym_or] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_QMARK_DOT] = ACTIONS(3217), - [anon_sym_POUND_LBRACK] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_is] = ACTIONS(3219), - [anon_sym_BANGis] = ACTIONS(3217), - [anon_sym_in] = ACTIONS(3219), - [anon_sym_BANGin] = ACTIONS(3217), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3217), - [sym_rune_literal] = ACTIONS(3217), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3217), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3217), - [sym___single_quote] = ACTIONS(3217), - [sym___c_double_quote] = ACTIONS(3217), - [sym___c_single_quote] = ACTIONS(3217), - [sym___r_double_quote] = ACTIONS(3217), - [sym___r_single_quote] = ACTIONS(3217), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_as] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_COMMA] = ACTIONS(3011), + [anon_sym_RBRACE] = ACTIONS(3011), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_RBRACK] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_COLON] = ACTIONS(3011), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3011), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3011), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_or] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_QMARK_DOT] = ACTIONS(3011), + [anon_sym_POUND_LBRACK] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_is] = ACTIONS(3013), + [anon_sym_BANGis] = ACTIONS(3011), + [anon_sym_in] = ACTIONS(3013), + [anon_sym_BANGin] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3011), + [sym_rune_literal] = ACTIONS(3011), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3011), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3011), + [sym___single_quote] = ACTIONS(3011), + [sym___c_double_quote] = ACTIONS(3011), + [sym___c_single_quote] = ACTIONS(3011), + [sym___r_double_quote] = ACTIONS(3011), + [sym___r_single_quote] = ACTIONS(3011), }, - [1376] = { - [sym_identifier] = ACTIONS(3215), + [1408] = { + [sym_identifier] = ACTIONS(3087), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_as] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3213), - [anon_sym_COMMA] = ACTIONS(3213), - [anon_sym_RBRACE] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(3213), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3213), - [anon_sym_SLASH] = ACTIONS(3215), - [anon_sym_PERCENT] = ACTIONS(3213), - [anon_sym_LT] = ACTIONS(3215), - [anon_sym_GT] = ACTIONS(3215), - [anon_sym_EQ_EQ] = ACTIONS(3213), - [anon_sym_BANG_EQ] = ACTIONS(3213), - [anon_sym_LT_EQ] = ACTIONS(3213), - [anon_sym_GT_EQ] = ACTIONS(3213), - [anon_sym_LBRACK] = ACTIONS(3213), - [anon_sym_RBRACK] = ACTIONS(3213), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_COLON] = ACTIONS(3213), - [anon_sym_PLUS_PLUS] = ACTIONS(3213), - [anon_sym_DASH_DASH] = ACTIONS(3213), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3213), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3213), - [anon_sym_CARET] = ACTIONS(3213), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3213), - [anon_sym_LT_LT] = ACTIONS(3213), - [anon_sym_GT_GT] = ACTIONS(3215), - [anon_sym_GT_GT_GT] = ACTIONS(3213), - [anon_sym_AMP_CARET] = ACTIONS(3213), - [anon_sym_AMP_AMP] = ACTIONS(3213), - [anon_sym_PIPE_PIPE] = ACTIONS(3213), - [anon_sym_or] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_QMARK_DOT] = ACTIONS(3213), - [anon_sym_POUND_LBRACK] = ACTIONS(3213), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_is] = ACTIONS(3215), - [anon_sym_BANGis] = ACTIONS(3213), - [anon_sym_in] = ACTIONS(3215), - [anon_sym_BANGin] = ACTIONS(3213), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3213), - [sym_rune_literal] = ACTIONS(3213), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3213), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3213), - [sym___single_quote] = ACTIONS(3213), - [sym___c_double_quote] = ACTIONS(3213), - [sym___c_single_quote] = ACTIONS(3213), - [sym___r_double_quote] = ACTIONS(3213), - [sym___r_single_quote] = ACTIONS(3213), + [anon_sym_DOT] = ACTIONS(3087), + [anon_sym_as] = ACTIONS(3087), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_COMMA] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3087), + [anon_sym_fn] = ACTIONS(3087), + [anon_sym_PLUS] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3087), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_SLASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3087), + [anon_sym_GT] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3085), + [anon_sym_BANG_EQ] = ACTIONS(3085), + [anon_sym_LT_EQ] = ACTIONS(3085), + [anon_sym_GT_EQ] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_RBRACK] = ACTIONS(3085), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_mut] = ACTIONS(3087), + [anon_sym_COLON] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3085), + [anon_sym_DASH_DASH] = ACTIONS(3085), + [anon_sym_QMARK] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3087), + [anon_sym_go] = ACTIONS(3087), + [anon_sym_spawn] = ACTIONS(3087), + [anon_sym_json_DOTdecode] = ACTIONS(3085), + [anon_sym_LBRACK2] = ACTIONS(3087), + [anon_sym_TILDE] = ACTIONS(3085), + [anon_sym_CARET] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3087), + [anon_sym_LT_DASH] = ACTIONS(3085), + [anon_sym_LT_LT] = ACTIONS(3085), + [anon_sym_GT_GT] = ACTIONS(3087), + [anon_sym_GT_GT_GT] = ACTIONS(3085), + [anon_sym_AMP_CARET] = ACTIONS(3085), + [anon_sym_AMP_AMP] = ACTIONS(3085), + [anon_sym_PIPE_PIPE] = ACTIONS(3085), + [anon_sym_or] = ACTIONS(3087), + [sym_none] = ACTIONS(3087), + [sym_true] = ACTIONS(3087), + [sym_false] = ACTIONS(3087), + [sym_nil] = ACTIONS(3087), + [anon_sym_QMARK_DOT] = ACTIONS(3085), + [anon_sym_POUND_LBRACK] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_DOLLARif] = ACTIONS(3087), + [anon_sym_is] = ACTIONS(3087), + [anon_sym_BANGis] = ACTIONS(3085), + [anon_sym_in] = ACTIONS(3087), + [anon_sym_BANGin] = ACTIONS(3085), + [anon_sym_match] = ACTIONS(3087), + [anon_sym_select] = ACTIONS(3087), + [anon_sym_lock] = ACTIONS(3087), + [anon_sym_rlock] = ACTIONS(3087), + [anon_sym_unsafe] = ACTIONS(3087), + [anon_sym_sql] = ACTIONS(3087), + [sym_int_literal] = ACTIONS(3087), + [sym_float_literal] = ACTIONS(3085), + [sym_rune_literal] = ACTIONS(3085), + [sym_pseudo_compile_time_identifier] = ACTIONS(3087), + [anon_sym_shared] = ACTIONS(3087), + [anon_sym_map_LBRACK] = ACTIONS(3085), + [anon_sym_chan] = ACTIONS(3087), + [anon_sym_thread] = ACTIONS(3087), + [anon_sym_atomic] = ACTIONS(3087), + [sym___double_quote] = ACTIONS(3085), + [sym___single_quote] = ACTIONS(3085), + [sym___c_double_quote] = ACTIONS(3085), + [sym___c_single_quote] = ACTIONS(3085), + [sym___r_double_quote] = ACTIONS(3085), + [sym___r_single_quote] = ACTIONS(3085), }, - [1377] = { - [sym_identifier] = ACTIONS(3437), + [1409] = { + [sym_identifier] = ACTIONS(3416), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3941), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_EQ] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_RBRACK] = ACTIONS(3941), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_COLON] = ACTIONS(3941), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3435), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3435), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_CARET] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3435), - [anon_sym_POUND_LBRACK] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3435), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3435), - [sym_rune_literal] = ACTIONS(3435), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3435), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3435), - [sym___single_quote] = ACTIONS(3435), - [sym___c_double_quote] = ACTIONS(3435), - [sym___c_single_quote] = ACTIONS(3435), - [sym___r_double_quote] = ACTIONS(3435), - [sym___r_single_quote] = ACTIONS(3435), + [anon_sym_DOT] = ACTIONS(3416), + [anon_sym_as] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3414), + [anon_sym_COMMA] = ACTIONS(3414), + [anon_sym_RBRACE] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3414), + [anon_sym_PIPE] = ACTIONS(3416), + [anon_sym_fn] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3414), + [anon_sym_SLASH] = ACTIONS(3416), + [anon_sym_PERCENT] = ACTIONS(3414), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_GT] = ACTIONS(3416), + [anon_sym_EQ_EQ] = ACTIONS(3414), + [anon_sym_BANG_EQ] = ACTIONS(3414), + [anon_sym_LT_EQ] = ACTIONS(3414), + [anon_sym_GT_EQ] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_RBRACK] = ACTIONS(3414), + [anon_sym_struct] = ACTIONS(3416), + [anon_sym_mut] = ACTIONS(3416), + [anon_sym_COLON] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3414), + [anon_sym_DASH_DASH] = ACTIONS(3414), + [anon_sym_QMARK] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_go] = ACTIONS(3416), + [anon_sym_spawn] = ACTIONS(3416), + [anon_sym_json_DOTdecode] = ACTIONS(3414), + [anon_sym_LBRACK2] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3414), + [anon_sym_CARET] = ACTIONS(3414), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(3414), + [anon_sym_LT_LT] = ACTIONS(3414), + [anon_sym_GT_GT] = ACTIONS(3416), + [anon_sym_GT_GT_GT] = ACTIONS(3414), + [anon_sym_AMP_CARET] = ACTIONS(3414), + [anon_sym_AMP_AMP] = ACTIONS(3414), + [anon_sym_PIPE_PIPE] = ACTIONS(3414), + [anon_sym_or] = ACTIONS(3416), + [sym_none] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_nil] = ACTIONS(3416), + [anon_sym_QMARK_DOT] = ACTIONS(3414), + [anon_sym_POUND_LBRACK] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_DOLLARif] = ACTIONS(3416), + [anon_sym_is] = ACTIONS(3416), + [anon_sym_BANGis] = ACTIONS(3414), + [anon_sym_in] = ACTIONS(3416), + [anon_sym_BANGin] = ACTIONS(3414), + [anon_sym_match] = ACTIONS(3416), + [anon_sym_select] = ACTIONS(3416), + [anon_sym_lock] = ACTIONS(3416), + [anon_sym_rlock] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_sql] = ACTIONS(3416), + [sym_int_literal] = ACTIONS(3416), + [sym_float_literal] = ACTIONS(3414), + [sym_rune_literal] = ACTIONS(3414), + [sym_pseudo_compile_time_identifier] = ACTIONS(3416), + [anon_sym_shared] = ACTIONS(3416), + [anon_sym_map_LBRACK] = ACTIONS(3414), + [anon_sym_chan] = ACTIONS(3416), + [anon_sym_thread] = ACTIONS(3416), + [anon_sym_atomic] = ACTIONS(3416), + [sym___double_quote] = ACTIONS(3414), + [sym___single_quote] = ACTIONS(3414), + [sym___c_double_quote] = ACTIONS(3414), + [sym___c_single_quote] = ACTIONS(3414), + [sym___r_double_quote] = ACTIONS(3414), + [sym___r_single_quote] = ACTIONS(3414), }, - [1378] = { - [sym_identifier] = ACTIONS(2943), + [1410] = { + [sym_identifier] = ACTIONS(3091), [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_RBRACE] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_LT_EQ] = ACTIONS(2941), - [anon_sym_GT_EQ] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_COLON] = ACTIONS(2941), - [anon_sym_PLUS_PLUS] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2943), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2941), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2941), - [anon_sym_CARET] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_LT_LT] = ACTIONS(2941), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2941), - [anon_sym_AMP_CARET] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2941), - [anon_sym_POUND_LBRACK] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2941), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2941), - [sym_rune_literal] = ACTIONS(2941), - [sym_pseudo_compile_time_identifier] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2941), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2941), - [sym___single_quote] = ACTIONS(2941), - [sym___c_double_quote] = ACTIONS(2941), - [sym___c_single_quote] = ACTIONS(2941), - [sym___r_double_quote] = ACTIONS(2941), - [sym___r_single_quote] = ACTIONS(2941), + [anon_sym_DOT] = ACTIONS(3091), + [anon_sym_as] = ACTIONS(3091), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_COMMA] = ACTIONS(3089), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3091), + [anon_sym_fn] = ACTIONS(3091), + [anon_sym_PLUS] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3091), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_SLASH] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3089), + [anon_sym_BANG_EQ] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3089), + [anon_sym_GT_EQ] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_RBRACK] = ACTIONS(3089), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_mut] = ACTIONS(3091), + [anon_sym_COLON] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3089), + [anon_sym_DASH_DASH] = ACTIONS(3089), + [anon_sym_QMARK] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3091), + [anon_sym_go] = ACTIONS(3091), + [anon_sym_spawn] = ACTIONS(3091), + [anon_sym_json_DOTdecode] = ACTIONS(3089), + [anon_sym_LBRACK2] = ACTIONS(3091), + [anon_sym_TILDE] = ACTIONS(3089), + [anon_sym_CARET] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3091), + [anon_sym_LT_DASH] = ACTIONS(3089), + [anon_sym_LT_LT] = ACTIONS(3089), + [anon_sym_GT_GT] = ACTIONS(3091), + [anon_sym_GT_GT_GT] = ACTIONS(3089), + [anon_sym_AMP_CARET] = ACTIONS(3089), + [anon_sym_AMP_AMP] = ACTIONS(3089), + [anon_sym_PIPE_PIPE] = ACTIONS(3089), + [anon_sym_or] = ACTIONS(3091), + [sym_none] = ACTIONS(3091), + [sym_true] = ACTIONS(3091), + [sym_false] = ACTIONS(3091), + [sym_nil] = ACTIONS(3091), + [anon_sym_QMARK_DOT] = ACTIONS(3089), + [anon_sym_POUND_LBRACK] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_DOLLARif] = ACTIONS(3091), + [anon_sym_is] = ACTIONS(3091), + [anon_sym_BANGis] = ACTIONS(3089), + [anon_sym_in] = ACTIONS(3091), + [anon_sym_BANGin] = ACTIONS(3089), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_select] = ACTIONS(3091), + [anon_sym_lock] = ACTIONS(3091), + [anon_sym_rlock] = ACTIONS(3091), + [anon_sym_unsafe] = ACTIONS(3091), + [anon_sym_sql] = ACTIONS(3091), + [sym_int_literal] = ACTIONS(3091), + [sym_float_literal] = ACTIONS(3089), + [sym_rune_literal] = ACTIONS(3089), + [sym_pseudo_compile_time_identifier] = ACTIONS(3091), + [anon_sym_shared] = ACTIONS(3091), + [anon_sym_map_LBRACK] = ACTIONS(3089), + [anon_sym_chan] = ACTIONS(3091), + [anon_sym_thread] = ACTIONS(3091), + [anon_sym_atomic] = ACTIONS(3091), + [sym___double_quote] = ACTIONS(3089), + [sym___single_quote] = ACTIONS(3089), + [sym___c_double_quote] = ACTIONS(3089), + [sym___c_single_quote] = ACTIONS(3089), + [sym___r_double_quote] = ACTIONS(3089), + [sym___r_single_quote] = ACTIONS(3089), }, - [1379] = { - [sym_identifier] = ACTIONS(2947), + [1411] = { + [sym_identifier] = ACTIONS(3095), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2947), - [anon_sym_as] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_fn] = ACTIONS(2947), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_STAR] = ACTIONS(2945), - [anon_sym_SLASH] = ACTIONS(2947), - [anon_sym_PERCENT] = ACTIONS(2945), - [anon_sym_LT] = ACTIONS(2947), - [anon_sym_GT] = ACTIONS(2947), - [anon_sym_EQ_EQ] = ACTIONS(2945), - [anon_sym_BANG_EQ] = ACTIONS(2945), - [anon_sym_LT_EQ] = ACTIONS(2945), - [anon_sym_GT_EQ] = ACTIONS(2945), - [anon_sym_LBRACK] = ACTIONS(2945), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_struct] = ACTIONS(2947), - [anon_sym_mut] = ACTIONS(2947), - [anon_sym_COLON] = ACTIONS(2945), - [anon_sym_PLUS_PLUS] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2945), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_BANG] = ACTIONS(2947), - [anon_sym_go] = ACTIONS(2947), - [anon_sym_spawn] = ACTIONS(2947), - [anon_sym_json_DOTdecode] = ACTIONS(2945), - [anon_sym_LBRACK2] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2945), - [anon_sym_CARET] = ACTIONS(2945), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_LT_DASH] = ACTIONS(2945), - [anon_sym_LT_LT] = ACTIONS(2945), - [anon_sym_GT_GT] = ACTIONS(2947), - [anon_sym_GT_GT_GT] = ACTIONS(2945), - [anon_sym_AMP_CARET] = ACTIONS(2945), - [anon_sym_AMP_AMP] = ACTIONS(2945), - [anon_sym_PIPE_PIPE] = ACTIONS(2945), - [anon_sym_or] = ACTIONS(2947), - [sym_none] = ACTIONS(2947), - [sym_true] = ACTIONS(2947), - [sym_false] = ACTIONS(2947), - [sym_nil] = ACTIONS(2947), - [anon_sym_QMARK_DOT] = ACTIONS(2945), - [anon_sym_POUND_LBRACK] = ACTIONS(2945), - [anon_sym_if] = ACTIONS(2947), - [anon_sym_DOLLARif] = ACTIONS(2947), - [anon_sym_is] = ACTIONS(2947), - [anon_sym_BANGis] = ACTIONS(2945), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_BANGin] = ACTIONS(2945), - [anon_sym_match] = ACTIONS(2947), - [anon_sym_select] = ACTIONS(2947), - [anon_sym_lock] = ACTIONS(2947), - [anon_sym_rlock] = ACTIONS(2947), - [anon_sym_unsafe] = ACTIONS(2947), - [anon_sym_sql] = ACTIONS(2947), - [sym_int_literal] = ACTIONS(2947), - [sym_float_literal] = ACTIONS(2945), - [sym_rune_literal] = ACTIONS(2945), - [sym_pseudo_compile_time_identifier] = ACTIONS(2947), - [anon_sym_shared] = ACTIONS(2947), - [anon_sym_map_LBRACK] = ACTIONS(2945), - [anon_sym_chan] = ACTIONS(2947), - [anon_sym_thread] = ACTIONS(2947), - [anon_sym_atomic] = ACTIONS(2947), - [sym___double_quote] = ACTIONS(2945), - [sym___single_quote] = ACTIONS(2945), - [sym___c_double_quote] = ACTIONS(2945), - [sym___c_single_quote] = ACTIONS(2945), - [sym___r_double_quote] = ACTIONS(2945), - [sym___r_single_quote] = ACTIONS(2945), + [anon_sym_DOT] = ACTIONS(3095), + [anon_sym_as] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_COMMA] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3095), + [anon_sym_fn] = ACTIONS(3095), + [anon_sym_PLUS] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_SLASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3093), + [anon_sym_BANG_EQ] = ACTIONS(3093), + [anon_sym_LT_EQ] = ACTIONS(3093), + [anon_sym_GT_EQ] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_RBRACK] = ACTIONS(3093), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_mut] = ACTIONS(3095), + [anon_sym_COLON] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3093), + [anon_sym_DASH_DASH] = ACTIONS(3093), + [anon_sym_QMARK] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3095), + [anon_sym_go] = ACTIONS(3095), + [anon_sym_spawn] = ACTIONS(3095), + [anon_sym_json_DOTdecode] = ACTIONS(3093), + [anon_sym_LBRACK2] = ACTIONS(3095), + [anon_sym_TILDE] = ACTIONS(3093), + [anon_sym_CARET] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3095), + [anon_sym_LT_DASH] = ACTIONS(3093), + [anon_sym_LT_LT] = ACTIONS(3093), + [anon_sym_GT_GT] = ACTIONS(3095), + [anon_sym_GT_GT_GT] = ACTIONS(3093), + [anon_sym_AMP_CARET] = ACTIONS(3093), + [anon_sym_AMP_AMP] = ACTIONS(3093), + [anon_sym_PIPE_PIPE] = ACTIONS(3093), + [anon_sym_or] = ACTIONS(3095), + [sym_none] = ACTIONS(3095), + [sym_true] = ACTIONS(3095), + [sym_false] = ACTIONS(3095), + [sym_nil] = ACTIONS(3095), + [anon_sym_QMARK_DOT] = ACTIONS(3093), + [anon_sym_POUND_LBRACK] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_DOLLARif] = ACTIONS(3095), + [anon_sym_is] = ACTIONS(3095), + [anon_sym_BANGis] = ACTIONS(3093), + [anon_sym_in] = ACTIONS(3095), + [anon_sym_BANGin] = ACTIONS(3093), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_select] = ACTIONS(3095), + [anon_sym_lock] = ACTIONS(3095), + [anon_sym_rlock] = ACTIONS(3095), + [anon_sym_unsafe] = ACTIONS(3095), + [anon_sym_sql] = ACTIONS(3095), + [sym_int_literal] = ACTIONS(3095), + [sym_float_literal] = ACTIONS(3093), + [sym_rune_literal] = ACTIONS(3093), + [sym_pseudo_compile_time_identifier] = ACTIONS(3095), + [anon_sym_shared] = ACTIONS(3095), + [anon_sym_map_LBRACK] = ACTIONS(3093), + [anon_sym_chan] = ACTIONS(3095), + [anon_sym_thread] = ACTIONS(3095), + [anon_sym_atomic] = ACTIONS(3095), + [sym___double_quote] = ACTIONS(3093), + [sym___single_quote] = ACTIONS(3093), + [sym___c_double_quote] = ACTIONS(3093), + [sym___c_single_quote] = ACTIONS(3093), + [sym___r_double_quote] = ACTIONS(3093), + [sym___r_single_quote] = ACTIONS(3093), }, - [1380] = { - [sym_identifier] = ACTIONS(2951), + [1412] = { + [sym_identifier] = ACTIONS(3291), [sym_comment] = ACTIONS(3), - [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(2949), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2949), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2949), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2949), - [anon_sym_BANG_EQ] = ACTIONS(2949), - [anon_sym_LT_EQ] = ACTIONS(2949), - [anon_sym_GT_EQ] = ACTIONS(2949), - [anon_sym_LBRACK] = ACTIONS(2949), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_mut] = ACTIONS(2951), - [anon_sym_COLON] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2949), - [anon_sym_DASH_DASH] = ACTIONS(2949), - [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(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2949), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2949), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2949), - [anon_sym_AMP_CARET] = ACTIONS(2949), - [anon_sym_AMP_AMP] = ACTIONS(2949), - [anon_sym_PIPE_PIPE] = ACTIONS(2949), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_nil] = ACTIONS(2951), - [anon_sym_QMARK_DOT] = ACTIONS(2949), - [anon_sym_POUND_LBRACK] = ACTIONS(2949), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2949), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2949), - [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(2949), - [sym_rune_literal] = ACTIONS(2949), - [sym_pseudo_compile_time_identifier] = ACTIONS(2951), - [anon_sym_shared] = ACTIONS(2951), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2951), - [anon_sym_thread] = ACTIONS(2951), - [anon_sym_atomic] = ACTIONS(2951), - [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), + [anon_sym_DOT] = ACTIONS(3291), + [anon_sym_as] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_COMMA] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3291), + [anon_sym_fn] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_GT] = ACTIONS(3291), + [anon_sym_EQ_EQ] = ACTIONS(3289), + [anon_sym_BANG_EQ] = ACTIONS(3289), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_GT_EQ] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_RBRACK] = ACTIONS(3289), + [anon_sym_struct] = ACTIONS(3291), + [anon_sym_mut] = ACTIONS(3291), + [anon_sym_COLON] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_QMARK] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_go] = ACTIONS(3291), + [anon_sym_spawn] = ACTIONS(3291), + [anon_sym_json_DOTdecode] = ACTIONS(3289), + [anon_sym_LBRACK2] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_LT_DASH] = ACTIONS(3289), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym_GT_GT_GT] = ACTIONS(3289), + [anon_sym_AMP_CARET] = ACTIONS(3289), + [anon_sym_AMP_AMP] = ACTIONS(3289), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_or] = ACTIONS(3291), + [sym_none] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_nil] = ACTIONS(3291), + [anon_sym_QMARK_DOT] = ACTIONS(3289), + [anon_sym_POUND_LBRACK] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_DOLLARif] = ACTIONS(3291), + [anon_sym_is] = ACTIONS(3291), + [anon_sym_BANGis] = ACTIONS(3289), + [anon_sym_in] = ACTIONS(3291), + [anon_sym_BANGin] = ACTIONS(3289), + [anon_sym_match] = ACTIONS(3291), + [anon_sym_select] = ACTIONS(3291), + [anon_sym_lock] = ACTIONS(3291), + [anon_sym_rlock] = ACTIONS(3291), + [anon_sym_unsafe] = ACTIONS(3291), + [anon_sym_sql] = ACTIONS(3291), + [sym_int_literal] = ACTIONS(3291), + [sym_float_literal] = ACTIONS(3289), + [sym_rune_literal] = ACTIONS(3289), + [sym_pseudo_compile_time_identifier] = ACTIONS(3291), + [anon_sym_shared] = ACTIONS(3291), + [anon_sym_map_LBRACK] = ACTIONS(3289), + [anon_sym_chan] = ACTIONS(3291), + [anon_sym_thread] = ACTIONS(3291), + [anon_sym_atomic] = ACTIONS(3291), + [sym___double_quote] = ACTIONS(3289), + [sym___single_quote] = ACTIONS(3289), + [sym___c_double_quote] = ACTIONS(3289), + [sym___c_single_quote] = ACTIONS(3289), + [sym___r_double_quote] = ACTIONS(3289), + [sym___r_single_quote] = ACTIONS(3289), }, - [1381] = { - [sym_identifier] = ACTIONS(3235), + [1413] = { + [sym_identifier] = ACTIONS(3103), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_as] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_PERCENT] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_GT] = ACTIONS(3235), - [anon_sym_EQ_EQ] = ACTIONS(3233), - [anon_sym_BANG_EQ] = ACTIONS(3233), - [anon_sym_LT_EQ] = ACTIONS(3233), - [anon_sym_GT_EQ] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_RBRACK] = ACTIONS(3233), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_COLON] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3233), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_CARET] = ACTIONS(3233), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3233), - [anon_sym_LT_LT] = ACTIONS(3233), - [anon_sym_GT_GT] = ACTIONS(3235), - [anon_sym_GT_GT_GT] = ACTIONS(3233), - [anon_sym_AMP_CARET] = ACTIONS(3233), - [anon_sym_AMP_AMP] = ACTIONS(3233), - [anon_sym_PIPE_PIPE] = ACTIONS(3233), - [anon_sym_or] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_QMARK_DOT] = ACTIONS(3233), - [anon_sym_POUND_LBRACK] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_is] = ACTIONS(3235), - [anon_sym_BANGis] = ACTIONS(3233), - [anon_sym_in] = ACTIONS(3235), - [anon_sym_BANGin] = ACTIONS(3233), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3233), - [sym_rune_literal] = ACTIONS(3233), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3233), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3233), - [sym___single_quote] = ACTIONS(3233), - [sym___c_double_quote] = ACTIONS(3233), - [sym___c_single_quote] = ACTIONS(3233), - [sym___r_double_quote] = ACTIONS(3233), - [sym___r_single_quote] = ACTIONS(3233), + [anon_sym_DOT] = ACTIONS(3103), + [anon_sym_as] = ACTIONS(3103), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_PIPE] = ACTIONS(3103), + [anon_sym_fn] = ACTIONS(3103), + [anon_sym_PLUS] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3103), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_SLASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3103), + [anon_sym_GT] = ACTIONS(3103), + [anon_sym_EQ_EQ] = ACTIONS(3101), + [anon_sym_BANG_EQ] = ACTIONS(3101), + [anon_sym_LT_EQ] = ACTIONS(3101), + [anon_sym_GT_EQ] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_RBRACK] = ACTIONS(3101), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_mut] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3101), + [anon_sym_DASH_DASH] = ACTIONS(3101), + [anon_sym_QMARK] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3103), + [anon_sym_go] = ACTIONS(3103), + [anon_sym_spawn] = ACTIONS(3103), + [anon_sym_json_DOTdecode] = ACTIONS(3101), + [anon_sym_LBRACK2] = ACTIONS(3103), + [anon_sym_TILDE] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3103), + [anon_sym_LT_DASH] = ACTIONS(3101), + [anon_sym_LT_LT] = ACTIONS(3101), + [anon_sym_GT_GT] = ACTIONS(3103), + [anon_sym_GT_GT_GT] = ACTIONS(3101), + [anon_sym_AMP_CARET] = ACTIONS(3101), + [anon_sym_AMP_AMP] = ACTIONS(3101), + [anon_sym_PIPE_PIPE] = ACTIONS(3101), + [anon_sym_or] = ACTIONS(3103), + [sym_none] = ACTIONS(3103), + [sym_true] = ACTIONS(3103), + [sym_false] = ACTIONS(3103), + [sym_nil] = ACTIONS(3103), + [anon_sym_QMARK_DOT] = ACTIONS(3101), + [anon_sym_POUND_LBRACK] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_DOLLARif] = ACTIONS(3103), + [anon_sym_is] = ACTIONS(3103), + [anon_sym_BANGis] = ACTIONS(3101), + [anon_sym_in] = ACTIONS(3103), + [anon_sym_BANGin] = ACTIONS(3101), + [anon_sym_match] = ACTIONS(3103), + [anon_sym_select] = ACTIONS(3103), + [anon_sym_lock] = ACTIONS(3103), + [anon_sym_rlock] = ACTIONS(3103), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_sql] = ACTIONS(3103), + [sym_int_literal] = ACTIONS(3103), + [sym_float_literal] = ACTIONS(3101), + [sym_rune_literal] = ACTIONS(3101), + [sym_pseudo_compile_time_identifier] = ACTIONS(3103), + [anon_sym_shared] = ACTIONS(3103), + [anon_sym_map_LBRACK] = ACTIONS(3101), + [anon_sym_chan] = ACTIONS(3103), + [anon_sym_thread] = ACTIONS(3103), + [anon_sym_atomic] = ACTIONS(3103), + [sym___double_quote] = ACTIONS(3101), + [sym___single_quote] = ACTIONS(3101), + [sym___c_double_quote] = ACTIONS(3101), + [sym___c_single_quote] = ACTIONS(3101), + [sym___r_double_quote] = ACTIONS(3101), + [sym___r_single_quote] = ACTIONS(3101), }, - [1382] = { + [1414] = { [sym_identifier] = ACTIONS(3129), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(3129), @@ -173543,567 +176222,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3127), [sym___r_single_quote] = ACTIONS(3127), }, - [1383] = { - [sym_identifier] = ACTIONS(2955), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2955), - [anon_sym_as] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_fn] = ACTIONS(2955), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_STAR] = ACTIONS(2953), - [anon_sym_SLASH] = ACTIONS(2955), - [anon_sym_PERCENT] = ACTIONS(2953), - [anon_sym_LT] = ACTIONS(2955), - [anon_sym_GT] = ACTIONS(2955), - [anon_sym_EQ_EQ] = ACTIONS(2953), - [anon_sym_BANG_EQ] = ACTIONS(2953), - [anon_sym_LT_EQ] = ACTIONS(2953), - [anon_sym_GT_EQ] = ACTIONS(2953), - [anon_sym_LBRACK] = ACTIONS(2953), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_struct] = ACTIONS(2955), - [anon_sym_mut] = ACTIONS(2955), - [anon_sym_COLON] = ACTIONS(2953), - [anon_sym_PLUS_PLUS] = ACTIONS(2953), - [anon_sym_DASH_DASH] = ACTIONS(2953), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_BANG] = ACTIONS(2955), - [anon_sym_go] = ACTIONS(2955), - [anon_sym_spawn] = ACTIONS(2955), - [anon_sym_json_DOTdecode] = ACTIONS(2953), - [anon_sym_LBRACK2] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2953), - [anon_sym_CARET] = ACTIONS(2953), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_LT_DASH] = ACTIONS(2953), - [anon_sym_LT_LT] = ACTIONS(2953), - [anon_sym_GT_GT] = ACTIONS(2955), - [anon_sym_GT_GT_GT] = ACTIONS(2953), - [anon_sym_AMP_CARET] = ACTIONS(2953), - [anon_sym_AMP_AMP] = ACTIONS(2953), - [anon_sym_PIPE_PIPE] = ACTIONS(2953), - [anon_sym_or] = ACTIONS(2955), - [sym_none] = ACTIONS(2955), - [sym_true] = ACTIONS(2955), - [sym_false] = ACTIONS(2955), - [sym_nil] = ACTIONS(2955), - [anon_sym_QMARK_DOT] = ACTIONS(2953), - [anon_sym_POUND_LBRACK] = ACTIONS(2953), - [anon_sym_if] = ACTIONS(2955), - [anon_sym_DOLLARif] = ACTIONS(2955), - [anon_sym_is] = ACTIONS(2955), - [anon_sym_BANGis] = ACTIONS(2953), - [anon_sym_in] = ACTIONS(2955), - [anon_sym_BANGin] = ACTIONS(2953), - [anon_sym_match] = ACTIONS(2955), - [anon_sym_select] = ACTIONS(2955), - [anon_sym_lock] = ACTIONS(2955), - [anon_sym_rlock] = ACTIONS(2955), - [anon_sym_unsafe] = ACTIONS(2955), - [anon_sym_sql] = ACTIONS(2955), - [sym_int_literal] = ACTIONS(2955), - [sym_float_literal] = ACTIONS(2953), - [sym_rune_literal] = ACTIONS(2953), - [sym_pseudo_compile_time_identifier] = ACTIONS(2955), - [anon_sym_shared] = ACTIONS(2955), - [anon_sym_map_LBRACK] = ACTIONS(2953), - [anon_sym_chan] = ACTIONS(2955), - [anon_sym_thread] = ACTIONS(2955), - [anon_sym_atomic] = ACTIONS(2955), - [sym___double_quote] = ACTIONS(2953), - [sym___single_quote] = ACTIONS(2953), - [sym___c_double_quote] = ACTIONS(2953), - [sym___c_single_quote] = ACTIONS(2953), - [sym___r_double_quote] = ACTIONS(2953), - [sym___r_single_quote] = ACTIONS(2953), - }, - [1384] = { - [sym_identifier] = ACTIONS(3211), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_as] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_COMMA] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3211), - [anon_sym_PERCENT] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3211), - [anon_sym_GT] = ACTIONS(3211), - [anon_sym_EQ_EQ] = ACTIONS(3209), - [anon_sym_BANG_EQ] = ACTIONS(3209), - [anon_sym_LT_EQ] = ACTIONS(3209), - [anon_sym_GT_EQ] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_RBRACK] = ACTIONS(3209), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_COLON] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3209), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_CARET] = ACTIONS(3209), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3209), - [anon_sym_LT_LT] = ACTIONS(3209), - [anon_sym_GT_GT] = ACTIONS(3211), - [anon_sym_GT_GT_GT] = ACTIONS(3209), - [anon_sym_AMP_CARET] = ACTIONS(3209), - [anon_sym_AMP_AMP] = ACTIONS(3209), - [anon_sym_PIPE_PIPE] = ACTIONS(3209), - [anon_sym_or] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_QMARK_DOT] = ACTIONS(3209), - [anon_sym_POUND_LBRACK] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_is] = ACTIONS(3211), - [anon_sym_BANGis] = ACTIONS(3209), - [anon_sym_in] = ACTIONS(3211), - [anon_sym_BANGin] = ACTIONS(3209), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3209), - [sym_rune_literal] = ACTIONS(3209), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3209), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3209), - [sym___single_quote] = ACTIONS(3209), - [sym___c_double_quote] = ACTIONS(3209), - [sym___c_single_quote] = ACTIONS(3209), - [sym___r_double_quote] = ACTIONS(3209), - [sym___r_single_quote] = ACTIONS(3209), - }, - [1385] = { - [sym_identifier] = ACTIONS(3087), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_as] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3087), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3087), - [anon_sym_GT] = ACTIONS(3087), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_RBRACK] = ACTIONS(3085), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_COLON] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3087), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_is] = ACTIONS(3087), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3087), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), - }, - [1386] = { - [sym_identifier] = ACTIONS(2977), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_as] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_COMMA] = ACTIONS(2975), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2975), - [anon_sym_PIPE] = ACTIONS(2977), - [anon_sym_fn] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2977), - [anon_sym_DASH] = ACTIONS(2977), - [anon_sym_STAR] = ACTIONS(2975), - [anon_sym_SLASH] = ACTIONS(2977), - [anon_sym_PERCENT] = ACTIONS(2975), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2975), - [anon_sym_BANG_EQ] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(2975), - [anon_sym_GT_EQ] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_RBRACK] = ACTIONS(2975), - [anon_sym_struct] = ACTIONS(2977), - [anon_sym_mut] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2975), - [anon_sym_PLUS_PLUS] = ACTIONS(2975), - [anon_sym_DASH_DASH] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2977), - [anon_sym_BANG] = ACTIONS(2977), - [anon_sym_go] = ACTIONS(2977), - [anon_sym_spawn] = ACTIONS(2977), - [anon_sym_json_DOTdecode] = ACTIONS(2975), - [anon_sym_LBRACK2] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_CARET] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2977), - [anon_sym_LT_DASH] = ACTIONS(2975), - [anon_sym_LT_LT] = ACTIONS(2975), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_GT_GT_GT] = ACTIONS(2975), - [anon_sym_AMP_CARET] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_PIPE_PIPE] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2977), - [sym_none] = ACTIONS(2977), - [sym_true] = ACTIONS(2977), - [sym_false] = ACTIONS(2977), - [sym_nil] = ACTIONS(2977), - [anon_sym_QMARK_DOT] = ACTIONS(2975), - [anon_sym_POUND_LBRACK] = ACTIONS(2975), - [anon_sym_if] = ACTIONS(2977), - [anon_sym_DOLLARif] = ACTIONS(2977), - [anon_sym_is] = ACTIONS(2977), - [anon_sym_BANGis] = ACTIONS(2975), - [anon_sym_in] = ACTIONS(2977), - [anon_sym_BANGin] = ACTIONS(2975), - [anon_sym_match] = ACTIONS(2977), - [anon_sym_select] = ACTIONS(2977), - [anon_sym_lock] = ACTIONS(2977), - [anon_sym_rlock] = ACTIONS(2977), - [anon_sym_unsafe] = ACTIONS(2977), - [anon_sym_sql] = ACTIONS(2977), - [sym_int_literal] = ACTIONS(2977), - [sym_float_literal] = ACTIONS(2975), - [sym_rune_literal] = ACTIONS(2975), - [sym_pseudo_compile_time_identifier] = ACTIONS(2977), - [anon_sym_shared] = ACTIONS(2977), - [anon_sym_map_LBRACK] = ACTIONS(2975), - [anon_sym_chan] = ACTIONS(2977), - [anon_sym_thread] = ACTIONS(2977), - [anon_sym_atomic] = ACTIONS(2977), - [sym___double_quote] = ACTIONS(2975), - [sym___single_quote] = ACTIONS(2975), - [sym___c_double_quote] = ACTIONS(2975), - [sym___c_single_quote] = ACTIONS(2975), - [sym___r_double_quote] = ACTIONS(2975), - [sym___r_single_quote] = ACTIONS(2975), - }, - [1387] = { - [sym_identifier] = ACTIONS(3347), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3345), - [anon_sym_BANG_EQ] = ACTIONS(3345), - [anon_sym_LT_EQ] = ACTIONS(3345), - [anon_sym_GT_EQ] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_COLON] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3345), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_CARET] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3345), - [anon_sym_LT_LT] = ACTIONS(3345), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3345), - [anon_sym_AMP_CARET] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3345), - [anon_sym_POUND_LBRACK] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3345), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3345), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3345), - [sym_rune_literal] = ACTIONS(3345), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3345), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3345), - [sym___single_quote] = ACTIONS(3345), - [sym___c_double_quote] = ACTIONS(3345), - [sym___c_single_quote] = ACTIONS(3345), - [sym___r_double_quote] = ACTIONS(3345), - [sym___r_single_quote] = ACTIONS(3345), - }, - [1388] = { - [sym_identifier] = ACTIONS(3421), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3421), - [anon_sym_as] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_fn] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_STAR] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_PERCENT] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_GT] = ACTIONS(3421), - [anon_sym_EQ_EQ] = ACTIONS(3419), - [anon_sym_BANG_EQ] = ACTIONS(3419), - [anon_sym_LT_EQ] = ACTIONS(3419), - [anon_sym_GT_EQ] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_struct] = ACTIONS(3421), - [anon_sym_mut] = ACTIONS(3421), - [anon_sym_COLON] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_go] = ACTIONS(3421), - [anon_sym_spawn] = ACTIONS(3421), - [anon_sym_json_DOTdecode] = ACTIONS(3419), - [anon_sym_LBRACK2] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_CARET] = ACTIONS(3419), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_LT_DASH] = ACTIONS(3419), - [anon_sym_LT_LT] = ACTIONS(3419), - [anon_sym_GT_GT] = ACTIONS(3421), - [anon_sym_GT_GT_GT] = ACTIONS(3419), - [anon_sym_AMP_CARET] = ACTIONS(3419), - [anon_sym_AMP_AMP] = ACTIONS(3419), - [anon_sym_PIPE_PIPE] = ACTIONS(3419), - [anon_sym_or] = ACTIONS(3421), - [sym_none] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_nil] = ACTIONS(3421), - [anon_sym_QMARK_DOT] = ACTIONS(3419), - [anon_sym_POUND_LBRACK] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_DOLLARif] = ACTIONS(3421), - [anon_sym_is] = ACTIONS(3421), - [anon_sym_BANGis] = ACTIONS(3419), - [anon_sym_in] = ACTIONS(3421), - [anon_sym_BANGin] = ACTIONS(3419), - [anon_sym_match] = ACTIONS(3421), - [anon_sym_select] = ACTIONS(3421), - [anon_sym_lock] = ACTIONS(3421), - [anon_sym_rlock] = ACTIONS(3421), - [anon_sym_unsafe] = ACTIONS(3421), - [anon_sym_sql] = ACTIONS(3421), - [sym_int_literal] = ACTIONS(3421), - [sym_float_literal] = ACTIONS(3419), - [sym_rune_literal] = ACTIONS(3419), - [sym_pseudo_compile_time_identifier] = ACTIONS(3421), - [anon_sym_shared] = ACTIONS(3421), - [anon_sym_map_LBRACK] = ACTIONS(3419), - [anon_sym_chan] = ACTIONS(3421), - [anon_sym_thread] = ACTIONS(3421), - [anon_sym_atomic] = ACTIONS(3421), - [sym___double_quote] = ACTIONS(3419), - [sym___single_quote] = ACTIONS(3419), - [sym___c_double_quote] = ACTIONS(3419), - [sym___c_single_quote] = ACTIONS(3419), - [sym___r_double_quote] = ACTIONS(3419), - [sym___r_single_quote] = ACTIONS(3419), - }, - [1389] = { - [sym_identifier] = ACTIONS(3417), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3417), - [anon_sym_as] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_fn] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_STAR] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_PERCENT] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_GT] = ACTIONS(3417), - [anon_sym_EQ_EQ] = ACTIONS(3415), - [anon_sym_BANG_EQ] = ACTIONS(3415), - [anon_sym_LT_EQ] = ACTIONS(3415), - [anon_sym_GT_EQ] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_struct] = ACTIONS(3417), - [anon_sym_mut] = ACTIONS(3417), - [anon_sym_COLON] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_go] = ACTIONS(3417), - [anon_sym_spawn] = ACTIONS(3417), - [anon_sym_json_DOTdecode] = ACTIONS(3415), - [anon_sym_LBRACK2] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_CARET] = ACTIONS(3415), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_LT_DASH] = ACTIONS(3415), - [anon_sym_LT_LT] = ACTIONS(3415), - [anon_sym_GT_GT] = ACTIONS(3417), - [anon_sym_GT_GT_GT] = ACTIONS(3415), - [anon_sym_AMP_CARET] = ACTIONS(3415), - [anon_sym_AMP_AMP] = ACTIONS(3415), - [anon_sym_PIPE_PIPE] = ACTIONS(3415), - [anon_sym_or] = ACTIONS(3417), - [sym_none] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_nil] = ACTIONS(3417), - [anon_sym_QMARK_DOT] = ACTIONS(3415), - [anon_sym_POUND_LBRACK] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_DOLLARif] = ACTIONS(3417), - [anon_sym_is] = ACTIONS(3417), - [anon_sym_BANGis] = ACTIONS(3415), - [anon_sym_in] = ACTIONS(3417), - [anon_sym_BANGin] = ACTIONS(3415), - [anon_sym_match] = ACTIONS(3417), - [anon_sym_select] = ACTIONS(3417), - [anon_sym_lock] = ACTIONS(3417), - [anon_sym_rlock] = ACTIONS(3417), - [anon_sym_unsafe] = ACTIONS(3417), - [anon_sym_sql] = ACTIONS(3417), - [sym_int_literal] = ACTIONS(3417), - [sym_float_literal] = ACTIONS(3415), - [sym_rune_literal] = ACTIONS(3415), - [sym_pseudo_compile_time_identifier] = ACTIONS(3417), - [anon_sym_shared] = ACTIONS(3417), - [anon_sym_map_LBRACK] = ACTIONS(3415), - [anon_sym_chan] = ACTIONS(3417), - [anon_sym_thread] = ACTIONS(3417), - [anon_sym_atomic] = ACTIONS(3417), - [sym___double_quote] = ACTIONS(3415), - [sym___single_quote] = ACTIONS(3415), - [sym___c_double_quote] = ACTIONS(3415), - [sym___c_single_quote] = ACTIONS(3415), - [sym___r_double_quote] = ACTIONS(3415), - [sym___r_single_quote] = ACTIONS(3415), - }, - [1390] = { + [1415] = { [sym_identifier] = ACTIONS(3141), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(3141), @@ -174183,7 +176302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3139), [sym___r_single_quote] = ACTIONS(3139), }, - [1391] = { + [1416] = { [sym_identifier] = ACTIONS(3145), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(3145), @@ -174263,647 +176382,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3143), [sym___r_single_quote] = ACTIONS(3143), }, - [1392] = { - [sym_identifier] = ACTIONS(3149), - [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_RBRACE] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_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_COLON] = ACTIONS(3147), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [sym_pseudo_compile_time_identifier] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), - }, - [1393] = { - [sym_identifier] = ACTIONS(3153), - [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_RBRACE] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_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_COLON] = ACTIONS(3151), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [sym_pseudo_compile_time_identifier] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), - }, - [1394] = { - [sym_identifier] = ACTIONS(3409), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3409), - [anon_sym_as] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_fn] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_STAR] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_PERCENT] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_GT] = ACTIONS(3409), - [anon_sym_EQ_EQ] = ACTIONS(3407), - [anon_sym_BANG_EQ] = ACTIONS(3407), - [anon_sym_LT_EQ] = ACTIONS(3407), - [anon_sym_GT_EQ] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_struct] = ACTIONS(3409), - [anon_sym_mut] = ACTIONS(3409), - [anon_sym_COLON] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_go] = ACTIONS(3409), - [anon_sym_spawn] = ACTIONS(3409), - [anon_sym_json_DOTdecode] = ACTIONS(3407), - [anon_sym_LBRACK2] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_CARET] = ACTIONS(3407), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_LT_DASH] = ACTIONS(3407), - [anon_sym_LT_LT] = ACTIONS(3407), - [anon_sym_GT_GT] = ACTIONS(3409), - [anon_sym_GT_GT_GT] = ACTIONS(3407), - [anon_sym_AMP_CARET] = ACTIONS(3407), - [anon_sym_AMP_AMP] = ACTIONS(3407), - [anon_sym_PIPE_PIPE] = ACTIONS(3407), - [anon_sym_or] = ACTIONS(3409), - [sym_none] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_nil] = ACTIONS(3409), - [anon_sym_QMARK_DOT] = ACTIONS(3407), - [anon_sym_POUND_LBRACK] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_DOLLARif] = ACTIONS(3409), - [anon_sym_is] = ACTIONS(3409), - [anon_sym_BANGis] = ACTIONS(3407), - [anon_sym_in] = ACTIONS(3409), - [anon_sym_BANGin] = ACTIONS(3407), - [anon_sym_match] = ACTIONS(3409), - [anon_sym_select] = ACTIONS(3409), - [anon_sym_lock] = ACTIONS(3409), - [anon_sym_rlock] = ACTIONS(3409), - [anon_sym_unsafe] = ACTIONS(3409), - [anon_sym_sql] = ACTIONS(3409), - [sym_int_literal] = ACTIONS(3409), - [sym_float_literal] = ACTIONS(3407), - [sym_rune_literal] = ACTIONS(3407), - [sym_pseudo_compile_time_identifier] = ACTIONS(3409), - [anon_sym_shared] = ACTIONS(3409), - [anon_sym_map_LBRACK] = ACTIONS(3407), - [anon_sym_chan] = ACTIONS(3409), - [anon_sym_thread] = ACTIONS(3409), - [anon_sym_atomic] = ACTIONS(3409), - [sym___double_quote] = ACTIONS(3407), - [sym___single_quote] = ACTIONS(3407), - [sym___c_double_quote] = ACTIONS(3407), - [sym___c_single_quote] = ACTIONS(3407), - [sym___r_double_quote] = ACTIONS(3407), - [sym___r_single_quote] = ACTIONS(3407), - }, - [1395] = { - [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_RBRACE] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_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_COLON] = ACTIONS(3155), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [sym_pseudo_compile_time_identifier] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), - }, - [1396] = { - [sym_identifier] = ACTIONS(3405), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3405), - [anon_sym_as] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_fn] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_STAR] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_PERCENT] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_GT] = ACTIONS(3405), - [anon_sym_EQ_EQ] = ACTIONS(3403), - [anon_sym_BANG_EQ] = ACTIONS(3403), - [anon_sym_LT_EQ] = ACTIONS(3403), - [anon_sym_GT_EQ] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_RBRACK] = ACTIONS(3403), - [anon_sym_struct] = ACTIONS(3405), - [anon_sym_mut] = ACTIONS(3405), - [anon_sym_COLON] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_go] = ACTIONS(3405), - [anon_sym_spawn] = ACTIONS(3405), - [anon_sym_json_DOTdecode] = ACTIONS(3403), - [anon_sym_LBRACK2] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_CARET] = ACTIONS(3403), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_LT_DASH] = ACTIONS(3403), - [anon_sym_LT_LT] = ACTIONS(3403), - [anon_sym_GT_GT] = ACTIONS(3405), - [anon_sym_GT_GT_GT] = ACTIONS(3403), - [anon_sym_AMP_CARET] = ACTIONS(3403), - [anon_sym_AMP_AMP] = ACTIONS(3403), - [anon_sym_PIPE_PIPE] = ACTIONS(3403), - [anon_sym_or] = ACTIONS(3405), - [sym_none] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_nil] = ACTIONS(3405), - [anon_sym_QMARK_DOT] = ACTIONS(3403), - [anon_sym_POUND_LBRACK] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_DOLLARif] = ACTIONS(3405), - [anon_sym_is] = ACTIONS(3405), - [anon_sym_BANGis] = ACTIONS(3403), - [anon_sym_in] = ACTIONS(3405), - [anon_sym_BANGin] = ACTIONS(3403), - [anon_sym_match] = ACTIONS(3405), - [anon_sym_select] = ACTIONS(3405), - [anon_sym_lock] = ACTIONS(3405), - [anon_sym_rlock] = ACTIONS(3405), - [anon_sym_unsafe] = ACTIONS(3405), - [anon_sym_sql] = ACTIONS(3405), - [sym_int_literal] = ACTIONS(3405), - [sym_float_literal] = ACTIONS(3403), - [sym_rune_literal] = ACTIONS(3403), - [sym_pseudo_compile_time_identifier] = ACTIONS(3405), - [anon_sym_shared] = ACTIONS(3405), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3405), - [anon_sym_atomic] = ACTIONS(3405), - [sym___double_quote] = ACTIONS(3403), - [sym___single_quote] = ACTIONS(3403), - [sym___c_double_quote] = ACTIONS(3403), - [sym___c_single_quote] = ACTIONS(3403), - [sym___r_double_quote] = ACTIONS(3403), - [sym___r_single_quote] = ACTIONS(3403), - }, - [1397] = { - [sym_identifier] = ACTIONS(3165), - [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_RBRACE] = 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_COLON] = ACTIONS(3163), - [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), - [sym_pseudo_compile_time_identifier] = 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), - }, - [1398] = { - [sym_identifier] = ACTIONS(3375), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3375), - [anon_sym_as] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_PIPE] = ACTIONS(3375), - [anon_sym_fn] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_STAR] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_PERCENT] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_GT] = ACTIONS(3375), - [anon_sym_EQ_EQ] = ACTIONS(3373), - [anon_sym_BANG_EQ] = ACTIONS(3373), - [anon_sym_LT_EQ] = ACTIONS(3373), - [anon_sym_GT_EQ] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3373), - [anon_sym_struct] = ACTIONS(3375), - [anon_sym_mut] = ACTIONS(3375), - [anon_sym_COLON] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_go] = ACTIONS(3375), - [anon_sym_spawn] = ACTIONS(3375), - [anon_sym_json_DOTdecode] = ACTIONS(3373), - [anon_sym_LBRACK2] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_CARET] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3375), - [anon_sym_LT_DASH] = ACTIONS(3373), - [anon_sym_LT_LT] = ACTIONS(3373), - [anon_sym_GT_GT] = ACTIONS(3375), - [anon_sym_GT_GT_GT] = ACTIONS(3373), - [anon_sym_AMP_CARET] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3375), - [sym_none] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_nil] = ACTIONS(3375), - [anon_sym_QMARK_DOT] = ACTIONS(3373), - [anon_sym_POUND_LBRACK] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_DOLLARif] = ACTIONS(3375), - [anon_sym_is] = ACTIONS(3375), - [anon_sym_BANGis] = ACTIONS(3373), - [anon_sym_in] = ACTIONS(3375), - [anon_sym_BANGin] = ACTIONS(3373), - [anon_sym_match] = ACTIONS(3375), - [anon_sym_select] = ACTIONS(3375), - [anon_sym_lock] = ACTIONS(3375), - [anon_sym_rlock] = ACTIONS(3375), - [anon_sym_unsafe] = ACTIONS(3375), - [anon_sym_sql] = ACTIONS(3375), - [sym_int_literal] = ACTIONS(3375), - [sym_float_literal] = ACTIONS(3373), - [sym_rune_literal] = ACTIONS(3373), - [sym_pseudo_compile_time_identifier] = ACTIONS(3375), - [anon_sym_shared] = ACTIONS(3375), - [anon_sym_map_LBRACK] = ACTIONS(3373), - [anon_sym_chan] = ACTIONS(3375), - [anon_sym_thread] = ACTIONS(3375), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(3373), - [sym___single_quote] = ACTIONS(3373), - [sym___c_double_quote] = ACTIONS(3373), - [sym___c_single_quote] = ACTIONS(3373), - [sym___r_double_quote] = ACTIONS(3373), - [sym___r_single_quote] = ACTIONS(3373), - }, - [1399] = { - [sym_identifier] = ACTIONS(3169), + [1417] = { + [sym_identifier] = ACTIONS(3412), [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_RBRACE] = 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_COLON] = ACTIONS(3167), - [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), - [sym_pseudo_compile_time_identifier] = 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(3412), + [anon_sym_as] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3410), + [anon_sym_COMMA] = ACTIONS(3410), + [anon_sym_RBRACE] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3410), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3410), + [anon_sym_SLASH] = ACTIONS(3412), + [anon_sym_PERCENT] = ACTIONS(3410), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_GT] = ACTIONS(3412), + [anon_sym_EQ_EQ] = ACTIONS(3410), + [anon_sym_BANG_EQ] = ACTIONS(3410), + [anon_sym_LT_EQ] = ACTIONS(3410), + [anon_sym_GT_EQ] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_RBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_COLON] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3410), + [anon_sym_DASH_DASH] = ACTIONS(3410), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3410), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3410), + [anon_sym_CARET] = ACTIONS(3410), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3410), + [anon_sym_LT_LT] = ACTIONS(3410), + [anon_sym_GT_GT] = ACTIONS(3412), + [anon_sym_GT_GT_GT] = ACTIONS(3410), + [anon_sym_AMP_CARET] = ACTIONS(3410), + [anon_sym_AMP_AMP] = ACTIONS(3410), + [anon_sym_PIPE_PIPE] = ACTIONS(3410), + [anon_sym_or] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_QMARK_DOT] = ACTIONS(3410), + [anon_sym_POUND_LBRACK] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_is] = ACTIONS(3412), + [anon_sym_BANGis] = ACTIONS(3410), + [anon_sym_in] = ACTIONS(3412), + [anon_sym_BANGin] = ACTIONS(3410), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3410), + [sym_rune_literal] = ACTIONS(3410), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3410), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3410), + [sym___single_quote] = ACTIONS(3410), + [sym___c_double_quote] = ACTIONS(3410), + [sym___c_single_quote] = ACTIONS(3410), + [sym___r_double_quote] = ACTIONS(3410), + [sym___r_single_quote] = ACTIONS(3410), }, - [1400] = { + [1418] = { [sym_identifier] = ACTIONS(3173), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(3173), @@ -174983,1701 +176542,735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(3171), [sym___r_single_quote] = ACTIONS(3171), }, - [1401] = { - [sym_identifier] = ACTIONS(3371), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_as] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_PIPE] = ACTIONS(3371), - [anon_sym_fn] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_STAR] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_PERCENT] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_GT] = ACTIONS(3371), - [anon_sym_EQ_EQ] = ACTIONS(3369), - [anon_sym_BANG_EQ] = ACTIONS(3369), - [anon_sym_LT_EQ] = ACTIONS(3369), - [anon_sym_GT_EQ] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_RBRACK] = ACTIONS(3369), - [anon_sym_struct] = ACTIONS(3371), - [anon_sym_mut] = ACTIONS(3371), - [anon_sym_COLON] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_go] = ACTIONS(3371), - [anon_sym_spawn] = ACTIONS(3371), - [anon_sym_json_DOTdecode] = ACTIONS(3369), - [anon_sym_LBRACK2] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_CARET] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3371), - [anon_sym_LT_DASH] = ACTIONS(3369), - [anon_sym_LT_LT] = ACTIONS(3369), - [anon_sym_GT_GT] = ACTIONS(3371), - [anon_sym_GT_GT_GT] = ACTIONS(3369), - [anon_sym_AMP_CARET] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3371), - [sym_none] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_nil] = ACTIONS(3371), - [anon_sym_QMARK_DOT] = ACTIONS(3369), - [anon_sym_POUND_LBRACK] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_DOLLARif] = ACTIONS(3371), - [anon_sym_is] = ACTIONS(3371), - [anon_sym_BANGis] = ACTIONS(3369), - [anon_sym_in] = ACTIONS(3371), - [anon_sym_BANGin] = ACTIONS(3369), - [anon_sym_match] = ACTIONS(3371), - [anon_sym_select] = ACTIONS(3371), - [anon_sym_lock] = ACTIONS(3371), - [anon_sym_rlock] = ACTIONS(3371), - [anon_sym_unsafe] = ACTIONS(3371), - [anon_sym_sql] = ACTIONS(3371), - [sym_int_literal] = ACTIONS(3371), - [sym_float_literal] = ACTIONS(3369), - [sym_rune_literal] = ACTIONS(3369), - [sym_pseudo_compile_time_identifier] = ACTIONS(3371), - [anon_sym_shared] = ACTIONS(3371), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3371), - [anon_sym_atomic] = ACTIONS(3371), - [sym___double_quote] = ACTIONS(3369), - [sym___single_quote] = ACTIONS(3369), - [sym___c_double_quote] = ACTIONS(3369), - [sym___c_single_quote] = ACTIONS(3369), - [sym___r_double_quote] = ACTIONS(3369), - [sym___r_single_quote] = ACTIONS(3369), - }, - [1402] = { - [sym_identifier] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_COLON] = ACTIONS(3175), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [sym_pseudo_compile_time_identifier] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), - }, - [1403] = { - [sym_identifier] = ACTIONS(3183), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_as] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3183), - [anon_sym_fn] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3183), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_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_COLON] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3183), - [anon_sym_BANG] = ACTIONS(3183), - [anon_sym_go] = ACTIONS(3183), - [anon_sym_spawn] = ACTIONS(3183), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3183), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3183), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3183), - [sym_none] = ACTIONS(3183), - [sym_true] = ACTIONS(3183), - [sym_false] = ACTIONS(3183), - [sym_nil] = ACTIONS(3183), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3183), - [anon_sym_DOLLARif] = ACTIONS(3183), - [anon_sym_is] = ACTIONS(3183), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3183), - [anon_sym_select] = ACTIONS(3183), - [anon_sym_lock] = ACTIONS(3183), - [anon_sym_rlock] = ACTIONS(3183), - [anon_sym_unsafe] = ACTIONS(3183), - [anon_sym_sql] = ACTIONS(3183), - [sym_int_literal] = ACTIONS(3183), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [sym_pseudo_compile_time_identifier] = ACTIONS(3183), - [anon_sym_shared] = ACTIONS(3183), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3183), - [anon_sym_thread] = ACTIONS(3183), - [anon_sym_atomic] = ACTIONS(3183), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), - }, - [1404] = { - [sym_identifier] = ACTIONS(3191), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_as] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3191), - [anon_sym_fn] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3191), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_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_COLON] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3191), - [anon_sym_BANG] = ACTIONS(3191), - [anon_sym_go] = ACTIONS(3191), - [anon_sym_spawn] = ACTIONS(3191), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3191), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3191), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3191), - [sym_none] = ACTIONS(3191), - [sym_true] = ACTIONS(3191), - [sym_false] = ACTIONS(3191), - [sym_nil] = ACTIONS(3191), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3191), - [anon_sym_DOLLARif] = ACTIONS(3191), - [anon_sym_is] = ACTIONS(3191), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3191), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3191), - [anon_sym_select] = ACTIONS(3191), - [anon_sym_lock] = ACTIONS(3191), - [anon_sym_rlock] = ACTIONS(3191), - [anon_sym_unsafe] = ACTIONS(3191), - [anon_sym_sql] = ACTIONS(3191), - [sym_int_literal] = ACTIONS(3191), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [sym_pseudo_compile_time_identifier] = ACTIONS(3191), - [anon_sym_shared] = ACTIONS(3191), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3191), - [anon_sym_thread] = ACTIONS(3191), - [anon_sym_atomic] = ACTIONS(3191), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), - }, - [1405] = { - [sym_identifier] = ACTIONS(3195), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_as] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3195), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3195), - [anon_sym_GT] = ACTIONS(3195), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_RBRACK] = ACTIONS(3193), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_COLON] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3195), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_is] = ACTIONS(3195), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3195), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), - }, - [1406] = { - [sym_identifier] = ACTIONS(3355), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_as] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_PIPE] = ACTIONS(3355), - [anon_sym_fn] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_STAR] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_PERCENT] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_GT] = ACTIONS(3355), - [anon_sym_EQ_EQ] = ACTIONS(3353), - [anon_sym_BANG_EQ] = ACTIONS(3353), - [anon_sym_LT_EQ] = ACTIONS(3353), - [anon_sym_GT_EQ] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_RBRACK] = ACTIONS(3353), - [anon_sym_struct] = ACTIONS(3355), - [anon_sym_mut] = ACTIONS(3355), - [anon_sym_COLON] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_go] = ACTIONS(3355), - [anon_sym_spawn] = ACTIONS(3355), - [anon_sym_json_DOTdecode] = ACTIONS(3353), - [anon_sym_LBRACK2] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_CARET] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3355), - [anon_sym_LT_DASH] = ACTIONS(3353), - [anon_sym_LT_LT] = ACTIONS(3353), - [anon_sym_GT_GT] = ACTIONS(3355), - [anon_sym_GT_GT_GT] = ACTIONS(3353), - [anon_sym_AMP_CARET] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3355), - [sym_none] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_nil] = ACTIONS(3355), - [anon_sym_QMARK_DOT] = ACTIONS(3353), - [anon_sym_POUND_LBRACK] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_DOLLARif] = ACTIONS(3355), - [anon_sym_is] = ACTIONS(3355), - [anon_sym_BANGis] = ACTIONS(3353), - [anon_sym_in] = ACTIONS(3355), - [anon_sym_BANGin] = ACTIONS(3353), - [anon_sym_match] = ACTIONS(3355), - [anon_sym_select] = ACTIONS(3355), - [anon_sym_lock] = ACTIONS(3355), - [anon_sym_rlock] = ACTIONS(3355), - [anon_sym_unsafe] = ACTIONS(3355), - [anon_sym_sql] = ACTIONS(3355), - [sym_int_literal] = ACTIONS(3355), - [sym_float_literal] = ACTIONS(3353), - [sym_rune_literal] = ACTIONS(3353), - [sym_pseudo_compile_time_identifier] = ACTIONS(3355), - [anon_sym_shared] = ACTIONS(3355), - [anon_sym_map_LBRACK] = ACTIONS(3353), - [anon_sym_chan] = ACTIONS(3355), - [anon_sym_thread] = ACTIONS(3355), - [anon_sym_atomic] = ACTIONS(3355), - [sym___double_quote] = ACTIONS(3353), - [sym___single_quote] = ACTIONS(3353), - [sym___c_double_quote] = ACTIONS(3353), - [sym___c_single_quote] = ACTIONS(3353), - [sym___r_double_quote] = ACTIONS(3353), - [sym___r_single_quote] = ACTIONS(3353), - }, - [1407] = { - [sym_identifier] = ACTIONS(3223), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3223), - [anon_sym_as] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_COMMA] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_PIPE] = ACTIONS(3223), - [anon_sym_fn] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_STAR] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_PERCENT] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_GT] = ACTIONS(3223), - [anon_sym_EQ_EQ] = ACTIONS(3221), - [anon_sym_BANG_EQ] = ACTIONS(3221), - [anon_sym_LT_EQ] = ACTIONS(3221), - [anon_sym_GT_EQ] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_RBRACK] = ACTIONS(3221), - [anon_sym_struct] = ACTIONS(3223), - [anon_sym_mut] = ACTIONS(3223), - [anon_sym_COLON] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [anon_sym_QMARK] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_go] = ACTIONS(3223), - [anon_sym_spawn] = ACTIONS(3223), - [anon_sym_json_DOTdecode] = ACTIONS(3221), - [anon_sym_LBRACK2] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_CARET] = ACTIONS(3221), - [anon_sym_AMP] = ACTIONS(3223), - [anon_sym_LT_DASH] = ACTIONS(3221), - [anon_sym_LT_LT] = ACTIONS(3221), - [anon_sym_GT_GT] = ACTIONS(3223), - [anon_sym_GT_GT_GT] = ACTIONS(3221), - [anon_sym_AMP_CARET] = ACTIONS(3221), - [anon_sym_AMP_AMP] = ACTIONS(3221), - [anon_sym_PIPE_PIPE] = ACTIONS(3221), - [anon_sym_or] = ACTIONS(3223), - [sym_none] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_nil] = ACTIONS(3223), - [anon_sym_QMARK_DOT] = ACTIONS(3221), - [anon_sym_POUND_LBRACK] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_DOLLARif] = ACTIONS(3223), - [anon_sym_is] = ACTIONS(3223), - [anon_sym_BANGis] = ACTIONS(3221), - [anon_sym_in] = ACTIONS(3223), - [anon_sym_BANGin] = ACTIONS(3221), - [anon_sym_match] = ACTIONS(3223), - [anon_sym_select] = ACTIONS(3223), - [anon_sym_lock] = ACTIONS(3223), - [anon_sym_rlock] = ACTIONS(3223), - [anon_sym_unsafe] = ACTIONS(3223), - [anon_sym_sql] = ACTIONS(3223), - [sym_int_literal] = ACTIONS(3223), - [sym_float_literal] = ACTIONS(3221), - [sym_rune_literal] = ACTIONS(3221), - [sym_pseudo_compile_time_identifier] = ACTIONS(3223), - [anon_sym_shared] = ACTIONS(3223), - [anon_sym_map_LBRACK] = ACTIONS(3221), - [anon_sym_chan] = ACTIONS(3223), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3223), - [sym___double_quote] = ACTIONS(3221), - [sym___single_quote] = ACTIONS(3221), - [sym___c_double_quote] = ACTIONS(3221), - [sym___c_single_quote] = ACTIONS(3221), - [sym___r_double_quote] = ACTIONS(3221), - [sym___r_single_quote] = ACTIONS(3221), - }, - [1408] = { - [sym_identifier] = ACTIONS(3227), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3227), - [anon_sym_as] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_COMMA] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_PIPE] = ACTIONS(3227), - [anon_sym_fn] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_STAR] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_PERCENT] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_GT] = ACTIONS(3227), - [anon_sym_EQ_EQ] = ACTIONS(3225), - [anon_sym_BANG_EQ] = ACTIONS(3225), - [anon_sym_LT_EQ] = ACTIONS(3225), - [anon_sym_GT_EQ] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_RBRACK] = ACTIONS(3225), - [anon_sym_struct] = ACTIONS(3227), - [anon_sym_mut] = ACTIONS(3227), - [anon_sym_COLON] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [anon_sym_QMARK] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_go] = ACTIONS(3227), - [anon_sym_spawn] = ACTIONS(3227), - [anon_sym_json_DOTdecode] = ACTIONS(3225), - [anon_sym_LBRACK2] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_CARET] = ACTIONS(3225), - [anon_sym_AMP] = ACTIONS(3227), - [anon_sym_LT_DASH] = ACTIONS(3225), - [anon_sym_LT_LT] = ACTIONS(3225), - [anon_sym_GT_GT] = ACTIONS(3227), - [anon_sym_GT_GT_GT] = ACTIONS(3225), - [anon_sym_AMP_CARET] = ACTIONS(3225), - [anon_sym_AMP_AMP] = ACTIONS(3225), - [anon_sym_PIPE_PIPE] = ACTIONS(3225), - [anon_sym_or] = ACTIONS(3227), - [sym_none] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_nil] = ACTIONS(3227), - [anon_sym_QMARK_DOT] = ACTIONS(3225), - [anon_sym_POUND_LBRACK] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_DOLLARif] = ACTIONS(3227), - [anon_sym_is] = ACTIONS(3227), - [anon_sym_BANGis] = ACTIONS(3225), - [anon_sym_in] = ACTIONS(3227), - [anon_sym_BANGin] = ACTIONS(3225), - [anon_sym_match] = ACTIONS(3227), - [anon_sym_select] = ACTIONS(3227), - [anon_sym_lock] = ACTIONS(3227), - [anon_sym_rlock] = ACTIONS(3227), - [anon_sym_unsafe] = ACTIONS(3227), - [anon_sym_sql] = ACTIONS(3227), - [sym_int_literal] = ACTIONS(3227), - [sym_float_literal] = ACTIONS(3225), - [sym_rune_literal] = ACTIONS(3225), - [sym_pseudo_compile_time_identifier] = ACTIONS(3227), - [anon_sym_shared] = ACTIONS(3227), - [anon_sym_map_LBRACK] = ACTIONS(3225), - [anon_sym_chan] = ACTIONS(3227), - [anon_sym_thread] = ACTIONS(3227), - [anon_sym_atomic] = ACTIONS(3227), - [sym___double_quote] = ACTIONS(3225), - [sym___single_quote] = ACTIONS(3225), - [sym___c_double_quote] = ACTIONS(3225), - [sym___c_single_quote] = ACTIONS(3225), - [sym___r_double_quote] = ACTIONS(3225), - [sym___r_single_quote] = ACTIONS(3225), - }, - [1409] = { - [sym_identifier] = ACTIONS(3343), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_as] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3341), - [anon_sym_RBRACE] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3341), - [anon_sym_PIPE] = ACTIONS(3343), - [anon_sym_fn] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_STAR] = ACTIONS(3341), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_PERCENT] = ACTIONS(3341), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_GT] = ACTIONS(3343), - [anon_sym_EQ_EQ] = ACTIONS(3341), - [anon_sym_BANG_EQ] = ACTIONS(3341), - [anon_sym_LT_EQ] = ACTIONS(3341), - [anon_sym_GT_EQ] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3341), - [anon_sym_struct] = ACTIONS(3343), - [anon_sym_mut] = ACTIONS(3343), - [anon_sym_COLON] = ACTIONS(3341), - [anon_sym_PLUS_PLUS] = ACTIONS(3341), - [anon_sym_DASH_DASH] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_go] = ACTIONS(3343), - [anon_sym_spawn] = ACTIONS(3343), - [anon_sym_json_DOTdecode] = ACTIONS(3341), - [anon_sym_LBRACK2] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_CARET] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3343), - [anon_sym_LT_DASH] = ACTIONS(3341), - [anon_sym_LT_LT] = ACTIONS(3341), - [anon_sym_GT_GT] = ACTIONS(3343), - [anon_sym_GT_GT_GT] = ACTIONS(3341), - [anon_sym_AMP_CARET] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3343), - [sym_none] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_nil] = ACTIONS(3343), - [anon_sym_QMARK_DOT] = ACTIONS(3341), - [anon_sym_POUND_LBRACK] = ACTIONS(3341), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_DOLLARif] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(3343), - [anon_sym_BANGis] = ACTIONS(3341), - [anon_sym_in] = ACTIONS(3343), - [anon_sym_BANGin] = ACTIONS(3341), - [anon_sym_match] = ACTIONS(3343), - [anon_sym_select] = ACTIONS(3343), - [anon_sym_lock] = ACTIONS(3343), - [anon_sym_rlock] = ACTIONS(3343), - [anon_sym_unsafe] = ACTIONS(3343), - [anon_sym_sql] = ACTIONS(3343), - [sym_int_literal] = ACTIONS(3343), - [sym_float_literal] = ACTIONS(3341), - [sym_rune_literal] = ACTIONS(3341), - [sym_pseudo_compile_time_identifier] = ACTIONS(3343), - [anon_sym_shared] = ACTIONS(3343), - [anon_sym_map_LBRACK] = ACTIONS(3341), - [anon_sym_chan] = ACTIONS(3343), - [anon_sym_thread] = ACTIONS(3343), - [anon_sym_atomic] = ACTIONS(3343), - [sym___double_quote] = ACTIONS(3341), - [sym___single_quote] = ACTIONS(3341), - [sym___c_double_quote] = ACTIONS(3341), - [sym___c_single_quote] = ACTIONS(3341), - [sym___r_double_quote] = ACTIONS(3341), - [sym___r_single_quote] = ACTIONS(3341), - }, - [1410] = { - [sym_identifier] = ACTIONS(3231), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3231), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_COMMA] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_PIPE] = ACTIONS(3231), - [anon_sym_fn] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_STAR] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_PERCENT] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_GT] = ACTIONS(3231), - [anon_sym_EQ_EQ] = ACTIONS(3229), - [anon_sym_BANG_EQ] = ACTIONS(3229), - [anon_sym_LT_EQ] = ACTIONS(3229), - [anon_sym_GT_EQ] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_RBRACK] = ACTIONS(3229), - [anon_sym_struct] = ACTIONS(3231), - [anon_sym_mut] = ACTIONS(3231), - [anon_sym_COLON] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [anon_sym_QMARK] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_go] = ACTIONS(3231), - [anon_sym_spawn] = ACTIONS(3231), - [anon_sym_json_DOTdecode] = ACTIONS(3229), - [anon_sym_LBRACK2] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_CARET] = ACTIONS(3229), - [anon_sym_AMP] = ACTIONS(3231), - [anon_sym_LT_DASH] = ACTIONS(3229), - [anon_sym_LT_LT] = ACTIONS(3229), - [anon_sym_GT_GT] = ACTIONS(3231), - [anon_sym_GT_GT_GT] = ACTIONS(3229), - [anon_sym_AMP_CARET] = ACTIONS(3229), - [anon_sym_AMP_AMP] = ACTIONS(3229), - [anon_sym_PIPE_PIPE] = ACTIONS(3229), - [anon_sym_or] = ACTIONS(3231), - [sym_none] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_nil] = ACTIONS(3231), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_DOLLARif] = ACTIONS(3231), - [anon_sym_is] = ACTIONS(3231), - [anon_sym_BANGis] = ACTIONS(3229), - [anon_sym_in] = ACTIONS(3231), - [anon_sym_BANGin] = ACTIONS(3229), - [anon_sym_match] = ACTIONS(3231), - [anon_sym_select] = ACTIONS(3231), - [anon_sym_lock] = ACTIONS(3231), - [anon_sym_rlock] = ACTIONS(3231), - [anon_sym_unsafe] = ACTIONS(3231), - [anon_sym_sql] = ACTIONS(3231), - [sym_int_literal] = ACTIONS(3231), - [sym_float_literal] = ACTIONS(3229), - [sym_rune_literal] = ACTIONS(3229), - [sym_pseudo_compile_time_identifier] = ACTIONS(3231), - [anon_sym_shared] = ACTIONS(3231), - [anon_sym_map_LBRACK] = ACTIONS(3229), - [anon_sym_chan] = ACTIONS(3231), - [anon_sym_thread] = ACTIONS(3231), - [anon_sym_atomic] = ACTIONS(3231), - [sym___double_quote] = ACTIONS(3229), - [sym___single_quote] = ACTIONS(3229), - [sym___c_double_quote] = ACTIONS(3229), - [sym___c_single_quote] = ACTIONS(3229), - [sym___r_double_quote] = ACTIONS(3229), - [sym___r_single_quote] = ACTIONS(3229), - }, - [1411] = { - [sym_identifier] = ACTIONS(3339), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_as] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_PIPE] = ACTIONS(3339), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_PERCENT] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_GT] = ACTIONS(3339), - [anon_sym_EQ_EQ] = ACTIONS(3337), - [anon_sym_BANG_EQ] = ACTIONS(3337), - [anon_sym_LT_EQ] = ACTIONS(3337), - [anon_sym_GT_EQ] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3337), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_COLON] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3337), - [anon_sym_LBRACK2] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_CARET] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3337), - [anon_sym_LT_LT] = ACTIONS(3337), - [anon_sym_GT_GT] = ACTIONS(3339), - [anon_sym_GT_GT_GT] = ACTIONS(3337), - [anon_sym_AMP_CARET] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3339), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3337), - [anon_sym_POUND_LBRACK] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3339), - [anon_sym_BANGis] = ACTIONS(3337), - [anon_sym_in] = ACTIONS(3339), - [anon_sym_BANGin] = ACTIONS(3337), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3337), - [sym_rune_literal] = ACTIONS(3337), - [sym_pseudo_compile_time_identifier] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3337), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3337), - [sym___single_quote] = ACTIONS(3337), - [sym___c_double_quote] = ACTIONS(3337), - [sym___c_single_quote] = ACTIONS(3337), - [sym___r_double_quote] = ACTIONS(3337), - [sym___r_single_quote] = ACTIONS(3337), - }, - [1412] = { - [sym_identifier] = ACTIONS(3335), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_as] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_PIPE] = ACTIONS(3335), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3335), - [anon_sym_DASH] = ACTIONS(3335), - [anon_sym_STAR] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3335), - [anon_sym_PERCENT] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3335), - [anon_sym_GT] = ACTIONS(3335), - [anon_sym_EQ_EQ] = ACTIONS(3333), - [anon_sym_BANG_EQ] = ACTIONS(3333), - [anon_sym_LT_EQ] = ACTIONS(3333), - [anon_sym_GT_EQ] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3333), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_COLON] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3335), - [anon_sym_BANG] = ACTIONS(3335), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3333), - [anon_sym_LBRACK2] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_CARET] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3335), - [anon_sym_LT_DASH] = ACTIONS(3333), - [anon_sym_LT_LT] = ACTIONS(3333), - [anon_sym_GT_GT] = ACTIONS(3335), - [anon_sym_GT_GT_GT] = ACTIONS(3333), - [anon_sym_AMP_CARET] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3335), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3333), - [anon_sym_POUND_LBRACK] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3335), - [anon_sym_BANGis] = ACTIONS(3333), - [anon_sym_in] = ACTIONS(3335), - [anon_sym_BANGin] = ACTIONS(3333), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3333), - [sym_rune_literal] = ACTIONS(3333), - [sym_pseudo_compile_time_identifier] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3333), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3333), - [sym___single_quote] = ACTIONS(3333), - [sym___c_double_quote] = ACTIONS(3333), - [sym___c_single_quote] = ACTIONS(3333), - [sym___r_double_quote] = ACTIONS(3333), - [sym___r_single_quote] = ACTIONS(3333), - }, - [1413] = { - [sym_identifier] = ACTIONS(3255), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3255), - [anon_sym_as] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_COMMA] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_PIPE] = ACTIONS(3255), - [anon_sym_fn] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_STAR] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_PERCENT] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_GT] = ACTIONS(3255), - [anon_sym_EQ_EQ] = ACTIONS(3253), - [anon_sym_BANG_EQ] = ACTIONS(3253), - [anon_sym_LT_EQ] = ACTIONS(3253), - [anon_sym_GT_EQ] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_RBRACK] = ACTIONS(3253), - [anon_sym_struct] = ACTIONS(3255), - [anon_sym_mut] = ACTIONS(3255), - [anon_sym_COLON] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [anon_sym_QMARK] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_go] = ACTIONS(3255), - [anon_sym_spawn] = ACTIONS(3255), - [anon_sym_json_DOTdecode] = ACTIONS(3253), - [anon_sym_LBRACK2] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_CARET] = ACTIONS(3253), - [anon_sym_AMP] = ACTIONS(3255), - [anon_sym_LT_DASH] = ACTIONS(3253), - [anon_sym_LT_LT] = ACTIONS(3253), - [anon_sym_GT_GT] = ACTIONS(3255), - [anon_sym_GT_GT_GT] = ACTIONS(3253), - [anon_sym_AMP_CARET] = ACTIONS(3253), - [anon_sym_AMP_AMP] = ACTIONS(3253), - [anon_sym_PIPE_PIPE] = ACTIONS(3253), - [anon_sym_or] = ACTIONS(3255), - [sym_none] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_nil] = ACTIONS(3255), - [anon_sym_QMARK_DOT] = ACTIONS(3253), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_DOLLARif] = ACTIONS(3255), - [anon_sym_is] = ACTIONS(3255), - [anon_sym_BANGis] = ACTIONS(3253), - [anon_sym_in] = ACTIONS(3255), - [anon_sym_BANGin] = ACTIONS(3253), - [anon_sym_match] = ACTIONS(3255), - [anon_sym_select] = ACTIONS(3255), - [anon_sym_lock] = ACTIONS(3255), - [anon_sym_rlock] = ACTIONS(3255), - [anon_sym_unsafe] = ACTIONS(3255), - [anon_sym_sql] = ACTIONS(3255), - [sym_int_literal] = ACTIONS(3255), - [sym_float_literal] = ACTIONS(3253), - [sym_rune_literal] = ACTIONS(3253), - [sym_pseudo_compile_time_identifier] = ACTIONS(3255), - [anon_sym_shared] = ACTIONS(3255), - [anon_sym_map_LBRACK] = ACTIONS(3253), - [anon_sym_chan] = ACTIONS(3255), - [anon_sym_thread] = ACTIONS(3255), - [anon_sym_atomic] = ACTIONS(3255), - [sym___double_quote] = ACTIONS(3253), - [sym___single_quote] = ACTIONS(3253), - [sym___c_double_quote] = ACTIONS(3253), - [sym___c_single_quote] = ACTIONS(3253), - [sym___r_double_quote] = ACTIONS(3253), - [sym___r_single_quote] = ACTIONS(3253), - }, - [1414] = { - [sym_identifier] = ACTIONS(3259), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3259), - [anon_sym_as] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_COMMA] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_PIPE] = ACTIONS(3259), - [anon_sym_fn] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_STAR] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_PERCENT] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_GT] = ACTIONS(3259), - [anon_sym_EQ_EQ] = ACTIONS(3257), - [anon_sym_BANG_EQ] = ACTIONS(3257), - [anon_sym_LT_EQ] = ACTIONS(3257), - [anon_sym_GT_EQ] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_RBRACK] = ACTIONS(3257), - [anon_sym_struct] = ACTIONS(3259), - [anon_sym_mut] = ACTIONS(3259), - [anon_sym_COLON] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [anon_sym_QMARK] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_go] = ACTIONS(3259), - [anon_sym_spawn] = ACTIONS(3259), - [anon_sym_json_DOTdecode] = ACTIONS(3257), - [anon_sym_LBRACK2] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_CARET] = ACTIONS(3257), - [anon_sym_AMP] = ACTIONS(3259), - [anon_sym_LT_DASH] = ACTIONS(3257), - [anon_sym_LT_LT] = ACTIONS(3257), - [anon_sym_GT_GT] = ACTIONS(3259), - [anon_sym_GT_GT_GT] = ACTIONS(3257), - [anon_sym_AMP_CARET] = ACTIONS(3257), - [anon_sym_AMP_AMP] = ACTIONS(3257), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_nil] = ACTIONS(3259), - [anon_sym_QMARK_DOT] = ACTIONS(3257), - [anon_sym_POUND_LBRACK] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_DOLLARif] = ACTIONS(3259), - [anon_sym_is] = ACTIONS(3259), - [anon_sym_BANGis] = ACTIONS(3257), - [anon_sym_in] = ACTIONS(3259), - [anon_sym_BANGin] = ACTIONS(3257), - [anon_sym_match] = ACTIONS(3259), - [anon_sym_select] = ACTIONS(3259), - [anon_sym_lock] = ACTIONS(3259), - [anon_sym_rlock] = ACTIONS(3259), - [anon_sym_unsafe] = ACTIONS(3259), - [anon_sym_sql] = ACTIONS(3259), - [sym_int_literal] = ACTIONS(3259), - [sym_float_literal] = ACTIONS(3257), - [sym_rune_literal] = ACTIONS(3257), - [sym_pseudo_compile_time_identifier] = ACTIONS(3259), - [anon_sym_shared] = ACTIONS(3259), - [anon_sym_map_LBRACK] = ACTIONS(3257), - [anon_sym_chan] = ACTIONS(3259), - [anon_sym_thread] = ACTIONS(3259), - [anon_sym_atomic] = ACTIONS(3259), - [sym___double_quote] = ACTIONS(3257), - [sym___single_quote] = ACTIONS(3257), - [sym___c_double_quote] = ACTIONS(3257), - [sym___c_single_quote] = ACTIONS(3257), - [sym___r_double_quote] = ACTIONS(3257), - [sym___r_single_quote] = ACTIONS(3257), - }, - [1415] = { - [sym_identifier] = ACTIONS(3315), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_as] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_COMMA] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_PERCENT] = ACTIONS(3313), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_GT] = ACTIONS(3315), - [anon_sym_EQ_EQ] = ACTIONS(3313), - [anon_sym_BANG_EQ] = ACTIONS(3313), - [anon_sym_LT_EQ] = ACTIONS(3313), - [anon_sym_GT_EQ] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_RBRACK] = ACTIONS(3313), - [anon_sym_struct] = ACTIONS(3315), - [anon_sym_mut] = ACTIONS(3315), - [anon_sym_COLON] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_go] = ACTIONS(3315), - [anon_sym_spawn] = ACTIONS(3315), - [anon_sym_json_DOTdecode] = ACTIONS(3313), - [anon_sym_LBRACK2] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3315), - [anon_sym_LT_DASH] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3313), - [anon_sym_GT_GT] = ACTIONS(3315), - [anon_sym_GT_GT_GT] = ACTIONS(3313), - [anon_sym_AMP_CARET] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3315), - [sym_none] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_nil] = ACTIONS(3315), - [anon_sym_QMARK_DOT] = ACTIONS(3313), - [anon_sym_POUND_LBRACK] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_DOLLARif] = ACTIONS(3315), - [anon_sym_is] = ACTIONS(3315), - [anon_sym_BANGis] = ACTIONS(3313), - [anon_sym_in] = ACTIONS(3315), - [anon_sym_BANGin] = ACTIONS(3313), - [anon_sym_match] = ACTIONS(3315), - [anon_sym_select] = ACTIONS(3315), - [anon_sym_lock] = ACTIONS(3315), - [anon_sym_rlock] = ACTIONS(3315), - [anon_sym_unsafe] = ACTIONS(3315), - [anon_sym_sql] = ACTIONS(3315), - [sym_int_literal] = ACTIONS(3315), - [sym_float_literal] = ACTIONS(3313), - [sym_rune_literal] = ACTIONS(3313), - [sym_pseudo_compile_time_identifier] = ACTIONS(3315), - [anon_sym_shared] = ACTIONS(3315), - [anon_sym_map_LBRACK] = ACTIONS(3313), - [anon_sym_chan] = ACTIONS(3315), - [anon_sym_thread] = ACTIONS(3315), - [anon_sym_atomic] = ACTIONS(3315), - [sym___double_quote] = ACTIONS(3313), - [sym___single_quote] = ACTIONS(3313), - [sym___c_double_quote] = ACTIONS(3313), - [sym___c_single_quote] = ACTIONS(3313), - [sym___r_double_quote] = ACTIONS(3313), - [sym___r_single_quote] = ACTIONS(3313), - }, - [1416] = { - [sym_identifier] = ACTIONS(3943), + [1419] = { + [sym_identifier] = ACTIONS(3249), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3945), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_as] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3947), - [anon_sym_COMMA] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym_PIPE] = ACTIONS(3943), - [anon_sym_fn] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3947), - [anon_sym_SLASH] = ACTIONS(3943), - [anon_sym_PERCENT] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3943), - [anon_sym_GT] = ACTIONS(3943), - [anon_sym_EQ_EQ] = ACTIONS(3947), - [anon_sym_BANG_EQ] = ACTIONS(3947), - [anon_sym_LT_EQ] = ACTIONS(3947), - [anon_sym_GT_EQ] = ACTIONS(3947), - [anon_sym_LBRACK] = ACTIONS(3947), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_struct] = ACTIONS(3943), - [anon_sym_mut] = ACTIONS(3943), - [anon_sym_PLUS_PLUS] = ACTIONS(3947), - [anon_sym_DASH_DASH] = ACTIONS(3947), - [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(3947), - [anon_sym_LBRACK2] = ACTIONS(3943), - [anon_sym_TILDE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_DASH] = ACTIONS(3947), - [anon_sym_LT_LT] = ACTIONS(3947), - [anon_sym_GT_GT] = ACTIONS(3943), - [anon_sym_GT_GT_GT] = ACTIONS(3947), - [anon_sym_AMP_CARET] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [anon_sym_or] = ACTIONS(3943), - [sym_none] = ACTIONS(3943), - [sym_true] = ACTIONS(3943), - [sym_false] = ACTIONS(3943), - [sym_nil] = ACTIONS(3943), - [anon_sym_QMARK_DOT] = ACTIONS(3947), - [anon_sym_POUND_LBRACK] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_DOLLARif] = ACTIONS(3943), - [anon_sym_is] = ACTIONS(3943), - [anon_sym_BANGis] = ACTIONS(3947), - [anon_sym_in] = ACTIONS(3943), - [anon_sym_BANGin] = ACTIONS(3947), - [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(3947), - [sym_rune_literal] = ACTIONS(3947), - [sym_pseudo_compile_time_identifier] = ACTIONS(3943), - [anon_sym_shared] = ACTIONS(3943), - [anon_sym_map_LBRACK] = ACTIONS(3947), - [anon_sym_chan] = ACTIONS(3943), - [anon_sym_thread] = ACTIONS(3943), - [anon_sym_atomic] = ACTIONS(3943), - [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), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_DOT] = ACTIONS(3249), + [anon_sym_as] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_COMMA] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_fn] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_PERCENT] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_GT] = ACTIONS(3249), + [anon_sym_EQ_EQ] = ACTIONS(3247), + [anon_sym_BANG_EQ] = ACTIONS(3247), + [anon_sym_LT_EQ] = ACTIONS(3247), + [anon_sym_GT_EQ] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_RBRACK] = ACTIONS(3955), + [anon_sym_struct] = ACTIONS(3249), + [anon_sym_mut] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_go] = ACTIONS(3249), + [anon_sym_spawn] = ACTIONS(3249), + [anon_sym_json_DOTdecode] = ACTIONS(3247), + [anon_sym_LBRACK2] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_CARET] = ACTIONS(3247), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_LT_DASH] = ACTIONS(3247), + [anon_sym_LT_LT] = ACTIONS(3247), + [anon_sym_GT_GT] = ACTIONS(3249), + [anon_sym_GT_GT_GT] = ACTIONS(3247), + [anon_sym_AMP_CARET] = ACTIONS(3247), + [anon_sym_AMP_AMP] = ACTIONS(3247), + [anon_sym_PIPE_PIPE] = ACTIONS(3247), + [anon_sym_or] = ACTIONS(3249), + [sym_none] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_nil] = ACTIONS(3249), + [anon_sym_QMARK_DOT] = ACTIONS(3247), + [anon_sym_POUND_LBRACK] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_DOLLARif] = ACTIONS(3249), + [anon_sym_is] = ACTIONS(3249), + [anon_sym_BANGis] = ACTIONS(3247), + [anon_sym_in] = ACTIONS(3249), + [anon_sym_BANGin] = ACTIONS(3247), + [anon_sym_match] = ACTIONS(3249), + [anon_sym_select] = ACTIONS(3249), + [anon_sym_lock] = ACTIONS(3249), + [anon_sym_rlock] = ACTIONS(3249), + [anon_sym_unsafe] = ACTIONS(3249), + [anon_sym_sql] = ACTIONS(3249), + [sym_int_literal] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3247), + [sym_rune_literal] = ACTIONS(3247), + [sym_pseudo_compile_time_identifier] = ACTIONS(3249), + [anon_sym_shared] = ACTIONS(3249), + [anon_sym_map_LBRACK] = ACTIONS(3247), + [anon_sym_chan] = ACTIONS(3249), + [anon_sym_thread] = ACTIONS(3249), + [anon_sym_atomic] = ACTIONS(3249), + [sym___double_quote] = ACTIONS(3247), + [sym___single_quote] = ACTIONS(3247), + [sym___c_double_quote] = ACTIONS(3247), + [sym___c_single_quote] = ACTIONS(3247), + [sym___r_double_quote] = ACTIONS(3247), + [sym___r_single_quote] = ACTIONS(3247), }, - [1417] = { - [sym_identifier] = ACTIONS(2757), + [1420] = { + [sym_identifier] = ACTIONS(3958), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2755), - [anon_sym_BANG_EQ] = ACTIONS(2755), - [anon_sym_LT_EQ] = ACTIONS(2755), - [anon_sym_GT_EQ] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_COLON] = ACTIONS(2755), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2755), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_CARET] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2755), - [anon_sym_LT_LT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2755), - [anon_sym_AMP_CARET] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_PIPE_PIPE] = ACTIONS(2755), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2755), - [anon_sym_POUND_LBRACK] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2755), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2755), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2755), - [sym_rune_literal] = ACTIONS(2755), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2755), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2755), - [sym___single_quote] = ACTIONS(2755), - [sym___c_double_quote] = ACTIONS(2755), - [sym___c_single_quote] = ACTIONS(2755), - [sym___r_double_quote] = ACTIONS(2755), - [sym___r_single_quote] = ACTIONS(2755), + [anon_sym_SEMI] = ACTIONS(3960), + [anon_sym_DOT] = ACTIONS(3958), + [anon_sym_as] = ACTIONS(3958), + [anon_sym_LBRACE] = ACTIONS(3962), + [anon_sym_COMMA] = ACTIONS(3962), + [anon_sym_LPAREN] = ACTIONS(3962), + [anon_sym_PIPE] = ACTIONS(3958), + [anon_sym_fn] = ACTIONS(3958), + [anon_sym_PLUS] = ACTIONS(3958), + [anon_sym_DASH] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(3962), + [anon_sym_SLASH] = ACTIONS(3958), + [anon_sym_PERCENT] = ACTIONS(3962), + [anon_sym_LT] = ACTIONS(3958), + [anon_sym_GT] = ACTIONS(3958), + [anon_sym_EQ_EQ] = ACTIONS(3962), + [anon_sym_BANG_EQ] = ACTIONS(3962), + [anon_sym_LT_EQ] = ACTIONS(3962), + [anon_sym_GT_EQ] = ACTIONS(3962), + [anon_sym_LBRACK] = ACTIONS(3962), + [anon_sym_RBRACK] = ACTIONS(3960), + [anon_sym_struct] = ACTIONS(3958), + [anon_sym_mut] = ACTIONS(3958), + [anon_sym_PLUS_PLUS] = ACTIONS(3962), + [anon_sym_DASH_DASH] = ACTIONS(3962), + [anon_sym_QMARK] = ACTIONS(3958), + [anon_sym_BANG] = ACTIONS(3958), + [anon_sym_go] = ACTIONS(3958), + [anon_sym_spawn] = ACTIONS(3958), + [anon_sym_json_DOTdecode] = ACTIONS(3962), + [anon_sym_LBRACK2] = ACTIONS(3958), + [anon_sym_TILDE] = ACTIONS(3962), + [anon_sym_CARET] = ACTIONS(3962), + [anon_sym_AMP] = ACTIONS(3958), + [anon_sym_LT_DASH] = ACTIONS(3962), + [anon_sym_LT_LT] = ACTIONS(3962), + [anon_sym_GT_GT] = ACTIONS(3958), + [anon_sym_GT_GT_GT] = ACTIONS(3962), + [anon_sym_AMP_CARET] = ACTIONS(3962), + [anon_sym_AMP_AMP] = ACTIONS(3962), + [anon_sym_PIPE_PIPE] = ACTIONS(3962), + [anon_sym_or] = ACTIONS(3958), + [sym_none] = ACTIONS(3958), + [sym_true] = ACTIONS(3958), + [sym_false] = ACTIONS(3958), + [sym_nil] = ACTIONS(3958), + [anon_sym_QMARK_DOT] = ACTIONS(3962), + [anon_sym_POUND_LBRACK] = ACTIONS(3962), + [anon_sym_if] = ACTIONS(3958), + [anon_sym_DOLLARif] = ACTIONS(3958), + [anon_sym_is] = ACTIONS(3958), + [anon_sym_BANGis] = ACTIONS(3962), + [anon_sym_in] = ACTIONS(3958), + [anon_sym_BANGin] = ACTIONS(3962), + [anon_sym_match] = ACTIONS(3958), + [anon_sym_select] = ACTIONS(3958), + [anon_sym_lock] = ACTIONS(3958), + [anon_sym_rlock] = ACTIONS(3958), + [anon_sym_unsafe] = ACTIONS(3958), + [anon_sym_sql] = ACTIONS(3958), + [sym_int_literal] = ACTIONS(3958), + [sym_float_literal] = ACTIONS(3962), + [sym_rune_literal] = ACTIONS(3962), + [sym_pseudo_compile_time_identifier] = ACTIONS(3958), + [anon_sym_shared] = ACTIONS(3958), + [anon_sym_map_LBRACK] = ACTIONS(3962), + [anon_sym_chan] = ACTIONS(3958), + [anon_sym_thread] = ACTIONS(3958), + [anon_sym_atomic] = ACTIONS(3958), + [sym___double_quote] = ACTIONS(3962), + [sym___single_quote] = ACTIONS(3962), + [sym___c_double_quote] = ACTIONS(3962), + [sym___c_single_quote] = ACTIONS(3962), + [sym___r_double_quote] = ACTIONS(3962), + [sym___r_single_quote] = ACTIONS(3962), }, - [1418] = { - [sym_identifier] = ACTIONS(3059), + [1421] = { + [sym_identifier] = ACTIONS(2649), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3059), - [anon_sym_as] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(2869), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_fn] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3059), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_mut] = ACTIONS(3059), - [anon_sym_COLON] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_go] = ACTIONS(3059), - [anon_sym_spawn] = ACTIONS(3059), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_nil] = ACTIONS(3059), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_DOLLARif] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3059), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3059), - [anon_sym_select] = ACTIONS(3059), - [anon_sym_lock] = ACTIONS(3059), - [anon_sym_rlock] = ACTIONS(3059), - [anon_sym_unsafe] = ACTIONS(3059), - [anon_sym_sql] = ACTIONS(3059), - [sym_int_literal] = ACTIONS(3059), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [sym_pseudo_compile_time_identifier] = ACTIONS(3059), - [anon_sym_shared] = ACTIONS(3059), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3059), - [anon_sym_thread] = ACTIONS(3059), - [anon_sym_atomic] = ACTIONS(3059), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2647), + [sym___single_quote] = ACTIONS(2647), + [sym___c_double_quote] = ACTIONS(2647), + [sym___c_single_quote] = ACTIONS(2647), + [sym___r_double_quote] = ACTIONS(2647), + [sym___r_single_quote] = ACTIONS(2647), }, - [1419] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(601), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), + [1422] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(615), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym___global] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_DOT_DOT_DOT] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(601), - [anon_sym_mut] = ACTIONS(601), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym___global] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_DOT_DOT_DOT] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_pub] = ACTIONS(615), + [anon_sym_mut] = ACTIONS(615), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_AT_LBRACK] = ACTIONS(601), + [anon_sym_AT_LBRACK] = ACTIONS(615), }, - [1420] = { - [sym_identifier] = ACTIONS(3299), + [1423] = { + [sym_identifier] = ACTIONS(3201), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3297), - [anon_sym_DOT] = ACTIONS(3299), - [anon_sym_as] = ACTIONS(3299), - [anon_sym_LBRACE] = ACTIONS(3297), - [anon_sym_COMMA] = ACTIONS(3297), - [anon_sym_LPAREN] = ACTIONS(3297), - [anon_sym_PIPE] = ACTIONS(3299), - [anon_sym_fn] = ACTIONS(3299), - [anon_sym_PLUS] = ACTIONS(3299), - [anon_sym_DASH] = ACTIONS(3299), - [anon_sym_STAR] = ACTIONS(3297), - [anon_sym_SLASH] = ACTIONS(3299), - [anon_sym_PERCENT] = ACTIONS(3297), - [anon_sym_LT] = ACTIONS(3299), - [anon_sym_GT] = ACTIONS(3299), - [anon_sym_EQ_EQ] = ACTIONS(3297), - [anon_sym_BANG_EQ] = ACTIONS(3297), - [anon_sym_LT_EQ] = ACTIONS(3297), - [anon_sym_GT_EQ] = ACTIONS(3297), - [anon_sym_LBRACK] = ACTIONS(3297), - [anon_sym_RBRACK] = ACTIONS(3949), - [anon_sym_struct] = ACTIONS(3299), - [anon_sym_mut] = ACTIONS(3299), - [anon_sym_PLUS_PLUS] = ACTIONS(3297), - [anon_sym_DASH_DASH] = ACTIONS(3297), - [anon_sym_QMARK] = ACTIONS(3299), - [anon_sym_BANG] = ACTIONS(3299), - [anon_sym_go] = ACTIONS(3299), - [anon_sym_spawn] = ACTIONS(3299), - [anon_sym_json_DOTdecode] = ACTIONS(3297), - [anon_sym_LBRACK2] = ACTIONS(3299), - [anon_sym_TILDE] = ACTIONS(3297), - [anon_sym_CARET] = ACTIONS(3297), - [anon_sym_AMP] = ACTIONS(3299), - [anon_sym_LT_DASH] = ACTIONS(3297), - [anon_sym_LT_LT] = ACTIONS(3297), - [anon_sym_GT_GT] = ACTIONS(3299), - [anon_sym_GT_GT_GT] = ACTIONS(3297), - [anon_sym_AMP_CARET] = ACTIONS(3297), - [anon_sym_AMP_AMP] = ACTIONS(3297), - [anon_sym_PIPE_PIPE] = ACTIONS(3297), - [anon_sym_or] = ACTIONS(3299), - [sym_none] = ACTIONS(3299), - [sym_true] = ACTIONS(3299), - [sym_false] = ACTIONS(3299), - [sym_nil] = ACTIONS(3299), - [anon_sym_QMARK_DOT] = ACTIONS(3297), - [anon_sym_POUND_LBRACK] = ACTIONS(3297), - [anon_sym_if] = ACTIONS(3299), - [anon_sym_DOLLARif] = ACTIONS(3299), - [anon_sym_is] = ACTIONS(3299), - [anon_sym_BANGis] = ACTIONS(3297), - [anon_sym_in] = ACTIONS(3299), - [anon_sym_BANGin] = ACTIONS(3297), - [anon_sym_match] = ACTIONS(3299), - [anon_sym_select] = ACTIONS(3299), - [anon_sym_lock] = ACTIONS(3299), - [anon_sym_rlock] = ACTIONS(3299), - [anon_sym_unsafe] = ACTIONS(3299), - [anon_sym_sql] = ACTIONS(3299), - [sym_int_literal] = ACTIONS(3299), - [sym_float_literal] = ACTIONS(3297), - [sym_rune_literal] = ACTIONS(3297), - [sym_pseudo_compile_time_identifier] = ACTIONS(3299), - [anon_sym_shared] = ACTIONS(3299), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3299), - [anon_sym_atomic] = ACTIONS(3299), - [sym___double_quote] = ACTIONS(3297), - [sym___single_quote] = ACTIONS(3297), - [sym___c_double_quote] = ACTIONS(3297), - [sym___c_single_quote] = ACTIONS(3297), - [sym___r_double_quote] = ACTIONS(3297), - [sym___r_single_quote] = ACTIONS(3297), + [anon_sym_DOT] = ACTIONS(3201), + [anon_sym_as] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3199), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3199), + [anon_sym_BANG_EQ] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_mut] = ACTIONS(3201), + [anon_sym_COLON] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_QMARK] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_go] = ACTIONS(3201), + [anon_sym_spawn] = ACTIONS(3201), + [anon_sym_json_DOTdecode] = ACTIONS(3199), + [anon_sym_LBRACK2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_LT_DASH] = ACTIONS(3199), + [anon_sym_LT_LT] = ACTIONS(3199), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_GT_GT_GT] = ACTIONS(3199), + [anon_sym_AMP_CARET] = ACTIONS(3199), + [anon_sym_AMP_AMP] = ACTIONS(3199), + [anon_sym_PIPE_PIPE] = ACTIONS(3199), + [anon_sym_or] = ACTIONS(3201), + [sym_none] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_nil] = ACTIONS(3201), + [anon_sym_QMARK_DOT] = ACTIONS(3199), + [anon_sym_POUND_LBRACK] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_DOLLARif] = ACTIONS(3201), + [anon_sym_is] = ACTIONS(3201), + [anon_sym_BANGis] = ACTIONS(3199), + [anon_sym_in] = ACTIONS(3201), + [anon_sym_BANGin] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_lock] = ACTIONS(3201), + [anon_sym_rlock] = ACTIONS(3201), + [anon_sym_unsafe] = ACTIONS(3201), + [anon_sym_sql] = ACTIONS(3201), + [sym_int_literal] = ACTIONS(3201), + [sym_float_literal] = ACTIONS(3199), + [sym_rune_literal] = ACTIONS(3199), + [sym_pseudo_compile_time_identifier] = ACTIONS(3201), + [anon_sym_shared] = ACTIONS(3201), + [anon_sym_map_LBRACK] = ACTIONS(3199), + [anon_sym_chan] = ACTIONS(3201), + [anon_sym_thread] = ACTIONS(3201), + [anon_sym_atomic] = ACTIONS(3201), + [sym___double_quote] = ACTIONS(3199), + [sym___single_quote] = ACTIONS(3199), + [sym___c_double_quote] = ACTIONS(3199), + [sym___c_single_quote] = ACTIONS(3199), + [sym___r_double_quote] = ACTIONS(3199), + [sym___r_single_quote] = ACTIONS(3199), }, - [1421] = { - [sym_reference_expression] = STATE(4503), - [sym_type_reference_expression] = STATE(2167), - [sym_plain_type] = STATE(2219), - [sym__plain_type_without_special] = STATE(2195), - [sym_anon_struct_type] = STATE(2196), - [sym_multi_return_type] = STATE(2195), - [sym_result_type] = STATE(2195), - [sym_option_type] = STATE(2195), - [sym_qualified_type] = STATE(2167), - [sym_fixed_array_type] = STATE(2196), - [sym_array_type] = STATE(2196), - [sym_pointer_type] = STATE(2196), - [sym_wrong_pointer_type] = STATE(2196), - [sym_map_type] = STATE(2196), - [sym_channel_type] = STATE(2196), - [sym_shared_type] = STATE(2196), - [sym_thread_type] = STATE(2196), - [sym_atomic_type] = STATE(2196), - [sym_generic_type] = STATE(2196), - [sym_function_type] = STATE(2196), - [sym_identifier] = ACTIONS(3952), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), + [1424] = { + [sym_identifier] = ACTIONS(3311), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(3311), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_RBRACK] = ACTIONS(3964), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3309), + [sym___single_quote] = ACTIONS(3309), + [sym___c_double_quote] = ACTIONS(3309), + [sym___c_single_quote] = ACTIONS(3309), + [sym___r_double_quote] = ACTIONS(3309), + [sym___r_single_quote] = ACTIONS(3309), + }, + [1425] = { + [sym_reference_expression] = STATE(4525), + [sym_type_reference_expression] = STATE(2176), + [sym_plain_type] = STATE(2234), + [sym__plain_type_without_special] = STATE(2254), + [sym_anon_struct_type] = STATE(2184), + [sym_multi_return_type] = STATE(2254), + [sym_result_type] = STATE(2254), + [sym_option_type] = STATE(2254), + [sym_qualified_type] = STATE(2176), + [sym_fixed_array_type] = STATE(2184), + [sym_array_type] = STATE(2184), + [sym_pointer_type] = STATE(2184), + [sym_wrong_pointer_type] = STATE(2184), + [sym_map_type] = STATE(2184), + [sym_channel_type] = STATE(2184), + [sym_shared_type] = STATE(2184), + [sym_thread_type] = STATE(2184), + [sym_atomic_type] = STATE(2184), + [sym_generic_type] = STATE(2184), + [sym_function_type] = STATE(2184), + [sym_identifier] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(3954), - [anon_sym___global] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3956), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3958), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_DOT_DOT_DOT] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(3960), - [anon_sym_pub] = ACTIONS(597), - [anon_sym_mut] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_LBRACK2] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(3968), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(3970), - [anon_sym_map_LBRACK] = ACTIONS(3972), - [anon_sym_chan] = ACTIONS(3974), - [anon_sym_thread] = ACTIONS(3976), - [anon_sym_atomic] = ACTIONS(3978), - [anon_sym_AT_LBRACK] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym___global] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3971), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(3973), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_DOT_DOT_DOT] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(3975), + [anon_sym_pub] = ACTIONS(585), + [anon_sym_mut] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_LBRACK2] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(3985), + [anon_sym_map_LBRACK] = ACTIONS(3987), + [anon_sym_chan] = ACTIONS(3989), + [anon_sym_thread] = ACTIONS(3991), + [anon_sym_atomic] = ACTIONS(3993), + [anon_sym_AT_LBRACK] = ACTIONS(585), }, - [1422] = { - [sym_reference_expression] = STATE(4503), - [sym_type_reference_expression] = STATE(2167), - [sym_plain_type] = STATE(2208), - [sym__plain_type_without_special] = STATE(2195), - [sym_anon_struct_type] = STATE(2196), - [sym_multi_return_type] = STATE(2195), - [sym_result_type] = STATE(2195), - [sym_option_type] = STATE(2195), - [sym_qualified_type] = STATE(2167), - [sym_fixed_array_type] = STATE(2196), - [sym_array_type] = STATE(2196), - [sym_pointer_type] = STATE(2196), - [sym_wrong_pointer_type] = STATE(2196), - [sym_map_type] = STATE(2196), - [sym_channel_type] = STATE(2196), - [sym_shared_type] = STATE(2196), - [sym_thread_type] = STATE(2196), - [sym_atomic_type] = STATE(2196), - [sym_generic_type] = STATE(2196), - [sym_function_type] = STATE(2196), - [sym_identifier] = ACTIONS(3952), + [1426] = { + [sym_reference_expression] = STATE(4525), + [sym_type_reference_expression] = STATE(2176), + [sym_plain_type] = STATE(2230), + [sym__plain_type_without_special] = STATE(2254), + [sym_anon_struct_type] = STATE(2184), + [sym_multi_return_type] = STATE(2254), + [sym_result_type] = STATE(2254), + [sym_option_type] = STATE(2254), + [sym_qualified_type] = STATE(2176), + [sym_fixed_array_type] = STATE(2184), + [sym_array_type] = STATE(2184), + [sym_pointer_type] = STATE(2184), + [sym_wrong_pointer_type] = STATE(2184), + [sym_map_type] = STATE(2184), + [sym_channel_type] = STATE(2184), + [sym_shared_type] = STATE(2184), + [sym_thread_type] = STATE(2184), + [sym_atomic_type] = STATE(2184), + [sym_generic_type] = STATE(2184), + [sym_function_type] = STATE(2184), + [sym_identifier] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym___global] = ACTIONS(619), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3971), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(3973), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_DOT_DOT_DOT] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(3975), + [anon_sym_pub] = ACTIONS(619), + [anon_sym_mut] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_LBRACK2] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(3985), + [anon_sym_map_LBRACK] = ACTIONS(3987), + [anon_sym_chan] = ACTIONS(3989), + [anon_sym_thread] = ACTIONS(3991), + [anon_sym_atomic] = ACTIONS(3993), + [anon_sym_AT_LBRACK] = ACTIONS(619), + }, + [1427] = { + [sym_reference_expression] = STATE(4525), + [sym_type_reference_expression] = STATE(2176), + [sym_plain_type] = STATE(2194), + [sym__plain_type_without_special] = STATE(2254), + [sym_anon_struct_type] = STATE(2184), + [sym_multi_return_type] = STATE(2254), + [sym_result_type] = STATE(2254), + [sym_option_type] = STATE(2254), + [sym_qualified_type] = STATE(2176), + [sym_fixed_array_type] = STATE(2184), + [sym_array_type] = STATE(2184), + [sym_pointer_type] = STATE(2184), + [sym_wrong_pointer_type] = STATE(2184), + [sym_map_type] = STATE(2184), + [sym_channel_type] = STATE(2184), + [sym_shared_type] = STATE(2184), + [sym_thread_type] = STATE(2184), + [sym_atomic_type] = STATE(2184), + [sym_generic_type] = STATE(2184), + [sym_function_type] = STATE(2184), + [sym_identifier] = ACTIONS(3967), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(3969), + [anon_sym___global] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3971), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(3973), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(3975), + [anon_sym_pub] = ACTIONS(623), + [anon_sym_mut] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(3977), + [anon_sym_BANG] = ACTIONS(3979), + [anon_sym_LBRACK2] = ACTIONS(3981), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(3983), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(3985), + [anon_sym_map_LBRACK] = ACTIONS(3987), + [anon_sym_chan] = ACTIONS(3989), + [anon_sym_thread] = ACTIONS(3991), + [anon_sym_atomic] = ACTIONS(3993), + [anon_sym_AT_LBRACK] = ACTIONS(623), + }, + [1428] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [anon_sym_LF] = ACTIONS(563), [anon_sym_CR] = ACTIONS(563), [anon_sym_CR_LF] = ACTIONS(563), @@ -176687,13 +177280,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym___global] = ACTIONS(563), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3956), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3958), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(563), @@ -176704,16 +177297,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_DOT_DOT_DOT] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(3960), + [anon_sym_struct] = ACTIONS(571), [anon_sym_pub] = ACTIONS(563), [anon_sym_mut] = ACTIONS(563), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(3962), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_LBRACK2] = ACTIONS(3966), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(3995), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(3968), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), [anon_sym_GT_GT_GT] = ACTIONS(563), @@ -176727,2640 +177320,2260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(563), [anon_sym_in] = ACTIONS(563), [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(3970), - [anon_sym_map_LBRACK] = ACTIONS(3972), - [anon_sym_chan] = ACTIONS(3974), - [anon_sym_thread] = ACTIONS(3976), - [anon_sym_atomic] = ACTIONS(3978), - [anon_sym_AT_LBRACK] = ACTIONS(563), - }, - [1423] = { - [sym_identifier] = ACTIONS(3059), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3059), - [anon_sym_as] = ACTIONS(3059), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3059), - [anon_sym_fn] = ACTIONS(3059), - [anon_sym_PLUS] = ACTIONS(3059), - [anon_sym_DASH] = ACTIONS(3059), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3059), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3059), - [anon_sym_GT] = ACTIONS(3059), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3057), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_struct] = ACTIONS(3059), - [anon_sym_mut] = ACTIONS(3059), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3059), - [anon_sym_BANG] = ACTIONS(3059), - [anon_sym_go] = ACTIONS(3059), - [anon_sym_spawn] = ACTIONS(3059), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3059), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3059), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3059), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3059), - [sym_none] = ACTIONS(3059), - [sym_true] = ACTIONS(3059), - [sym_false] = ACTIONS(3059), - [sym_nil] = ACTIONS(3059), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3059), - [anon_sym_DOLLARif] = ACTIONS(3059), - [anon_sym_is] = ACTIONS(3059), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3059), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3059), - [anon_sym_select] = ACTIONS(3059), - [anon_sym_lock] = ACTIONS(3059), - [anon_sym_rlock] = ACTIONS(3059), - [anon_sym_unsafe] = ACTIONS(3059), - [anon_sym_sql] = ACTIONS(3059), - [sym_int_literal] = ACTIONS(3059), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [sym_pseudo_compile_time_identifier] = ACTIONS(3059), - [anon_sym_shared] = ACTIONS(3059), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3059), - [anon_sym_thread] = ACTIONS(3059), - [anon_sym_atomic] = ACTIONS(3059), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), - }, - [1424] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym___global] = ACTIONS(607), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_DOT_DOT_DOT] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(607), - [anon_sym_mut] = ACTIONS(607), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(3980), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_AT_LBRACK] = ACTIONS(607), + [anon_sym_AT_LBRACK] = ACTIONS(563), }, - [1425] = { - [sym_identifier] = ACTIONS(3437), + [1429] = { + [sym_identifier] = ACTIONS(3311), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3437), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_EQ] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_RBRACK] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3435), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3435), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_CARET] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3435), - [anon_sym_POUND_LBRACK] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3435), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3435), - [sym_rune_literal] = ACTIONS(3435), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3435), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3435), - [sym___single_quote] = ACTIONS(3435), - [sym___c_double_quote] = ACTIONS(3435), - [sym___c_single_quote] = ACTIONS(3435), - [sym___r_double_quote] = ACTIONS(3435), - [sym___r_single_quote] = ACTIONS(3435), - }, - [1426] = { - [sym_reference_expression] = STATE(4503), - [sym_type_reference_expression] = STATE(2167), - [sym_plain_type] = STATE(2223), - [sym__plain_type_without_special] = STATE(2195), - [sym_anon_struct_type] = STATE(2196), - [sym_multi_return_type] = STATE(2195), - [sym_result_type] = STATE(2195), - [sym_option_type] = STATE(2195), - [sym_qualified_type] = STATE(2167), - [sym_fixed_array_type] = STATE(2196), - [sym_array_type] = STATE(2196), - [sym_pointer_type] = STATE(2196), - [sym_wrong_pointer_type] = STATE(2196), - [sym_map_type] = STATE(2196), - [sym_channel_type] = STATE(2196), - [sym_shared_type] = STATE(2196), - [sym_thread_type] = STATE(2196), - [sym_atomic_type] = STATE(2196), - [sym_generic_type] = STATE(2196), - [sym_function_type] = STATE(2196), - [sym_identifier] = ACTIONS(3952), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(495), - [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(3954), - [anon_sym___global] = ACTIONS(593), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3956), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3958), - [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(591), - [anon_sym_struct] = ACTIONS(3960), - [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(3962), - [anon_sym_BANG] = ACTIONS(3964), - [anon_sym_LBRACK2] = ACTIONS(3966), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(3968), - [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(3970), - [anon_sym_map_LBRACK] = ACTIONS(3972), - [anon_sym_chan] = ACTIONS(3974), - [anon_sym_thread] = ACTIONS(3976), - [anon_sym_atomic] = ACTIONS(3978), - [anon_sym_AT_LBRACK] = ACTIONS(593), + [anon_sym_DOT] = ACTIONS(3313), + [anon_sym_as] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_COMMA] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_RBRACK] = ACTIONS(3964), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_mut] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_QMARK] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_go] = ACTIONS(3311), + [anon_sym_spawn] = ACTIONS(3311), + [anon_sym_json_DOTdecode] = ACTIONS(3309), + [anon_sym_LBRACK2] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_LT_DASH] = ACTIONS(3309), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_or] = ACTIONS(3311), + [sym_none] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_nil] = ACTIONS(3311), + [anon_sym_QMARK_DOT] = ACTIONS(3309), + [anon_sym_POUND_LBRACK] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_DOLLARif] = ACTIONS(3311), + [anon_sym_is] = ACTIONS(3311), + [anon_sym_BANGis] = ACTIONS(3309), + [anon_sym_in] = ACTIONS(3311), + [anon_sym_BANGin] = ACTIONS(3309), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_select] = ACTIONS(3311), + [anon_sym_lock] = ACTIONS(3311), + [anon_sym_rlock] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_sql] = ACTIONS(3311), + [sym_int_literal] = ACTIONS(3311), + [sym_float_literal] = ACTIONS(3309), + [sym_rune_literal] = ACTIONS(3309), + [sym_pseudo_compile_time_identifier] = ACTIONS(3311), + [anon_sym_shared] = ACTIONS(3311), + [anon_sym_map_LBRACK] = ACTIONS(3309), + [anon_sym_chan] = ACTIONS(3311), + [anon_sym_thread] = ACTIONS(3311), + [anon_sym_atomic] = ACTIONS(3311), + [sym___double_quote] = ACTIONS(3309), + [sym___single_quote] = ACTIONS(3309), + [sym___c_double_quote] = ACTIONS(3309), + [sym___c_single_quote] = ACTIONS(3309), + [sym___r_double_quote] = ACTIONS(3309), + [sym___r_single_quote] = ACTIONS(3309), }, - [1427] = { - [sym_identifier] = ACTIONS(2757), + [1430] = { + [sym_identifier] = ACTIONS(2649), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_as] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_COMMA] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_PIPE] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2755), - [anon_sym_SLASH] = ACTIONS(2757), - [anon_sym_PERCENT] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2757), - [anon_sym_GT] = ACTIONS(2757), - [anon_sym_EQ_EQ] = ACTIONS(2755), - [anon_sym_BANG_EQ] = ACTIONS(2755), - [anon_sym_LT_EQ] = ACTIONS(2755), - [anon_sym_GT_EQ] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_RBRACK] = ACTIONS(2755), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_PLUS_PLUS] = ACTIONS(2755), - [anon_sym_DASH_DASH] = ACTIONS(2755), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2755), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2755), - [anon_sym_CARET] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2755), - [anon_sym_LT_LT] = ACTIONS(2755), - [anon_sym_GT_GT] = ACTIONS(2757), - [anon_sym_GT_GT_GT] = ACTIONS(2755), - [anon_sym_AMP_CARET] = ACTIONS(2755), - [anon_sym_AMP_AMP] = ACTIONS(2755), - [anon_sym_PIPE_PIPE] = ACTIONS(2755), - [anon_sym_or] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_QMARK_DOT] = ACTIONS(2755), - [anon_sym_POUND_LBRACK] = ACTIONS(2755), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_is] = ACTIONS(2757), - [anon_sym_BANGis] = ACTIONS(2755), - [anon_sym_in] = ACTIONS(2757), - [anon_sym_BANGin] = ACTIONS(2755), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2755), - [sym_rune_literal] = ACTIONS(2755), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2755), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2755), - [sym___single_quote] = ACTIONS(2755), - [sym___c_double_quote] = ACTIONS(2755), - [sym___c_single_quote] = ACTIONS(2755), - [sym___r_double_quote] = ACTIONS(2755), - [sym___r_single_quote] = ACTIONS(2755), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_as] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2647), + [anon_sym_COMMA] = ACTIONS(2647), + [anon_sym_LPAREN] = ACTIONS(2647), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2647), + [anon_sym_SLASH] = ACTIONS(2649), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_GT] = ACTIONS(2649), + [anon_sym_EQ_EQ] = ACTIONS(2647), + [anon_sym_BANG_EQ] = ACTIONS(2647), + [anon_sym_LT_EQ] = ACTIONS(2647), + [anon_sym_GT_EQ] = ACTIONS(2647), + [anon_sym_LBRACK] = ACTIONS(2647), + [anon_sym_RBRACK] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_PLUS_PLUS] = ACTIONS(2647), + [anon_sym_DASH_DASH] = ACTIONS(2647), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2647), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2647), + [anon_sym_CARET] = ACTIONS(2647), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2647), + [anon_sym_LT_LT] = ACTIONS(2647), + [anon_sym_GT_GT] = ACTIONS(2649), + [anon_sym_GT_GT_GT] = ACTIONS(2647), + [anon_sym_AMP_CARET] = ACTIONS(2647), + [anon_sym_AMP_AMP] = ACTIONS(2647), + [anon_sym_PIPE_PIPE] = ACTIONS(2647), + [anon_sym_or] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_QMARK_DOT] = ACTIONS(2647), + [anon_sym_POUND_LBRACK] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_is] = ACTIONS(2649), + [anon_sym_BANGis] = ACTIONS(2647), + [anon_sym_in] = ACTIONS(2649), + [anon_sym_BANGin] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2647), + [sym_rune_literal] = ACTIONS(2647), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2647), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2647), + [sym___single_quote] = ACTIONS(2647), + [sym___c_double_quote] = ACTIONS(2647), + [sym___c_single_quote] = ACTIONS(2647), + [sym___r_double_quote] = ACTIONS(2647), + [sym___r_single_quote] = ACTIONS(2647), }, - [1428] = { - [sym_identifier] = ACTIONS(3437), + [1431] = { + [sym_identifier] = ACTIONS(3201), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_as] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_fn] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_STAR] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_PERCENT] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_GT] = ACTIONS(3437), - [anon_sym_EQ_EQ] = ACTIONS(3435), - [anon_sym_BANG_EQ] = ACTIONS(3435), - [anon_sym_LT_EQ] = ACTIONS(3435), - [anon_sym_GT_EQ] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_RBRACK] = ACTIONS(3982), - [anon_sym_struct] = ACTIONS(3437), - [anon_sym_mut] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_go] = ACTIONS(3437), - [anon_sym_spawn] = ACTIONS(3437), - [anon_sym_json_DOTdecode] = ACTIONS(3435), - [anon_sym_LBRACK2] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_CARET] = ACTIONS(3435), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_LT_DASH] = ACTIONS(3435), - [anon_sym_LT_LT] = ACTIONS(3435), - [anon_sym_GT_GT] = ACTIONS(3437), - [anon_sym_GT_GT_GT] = ACTIONS(3435), - [anon_sym_AMP_CARET] = ACTIONS(3435), - [anon_sym_AMP_AMP] = ACTIONS(3435), - [anon_sym_PIPE_PIPE] = ACTIONS(3435), - [anon_sym_or] = ACTIONS(3437), - [sym_none] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_nil] = ACTIONS(3437), - [anon_sym_QMARK_DOT] = ACTIONS(3435), - [anon_sym_POUND_LBRACK] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_DOLLARif] = ACTIONS(3437), - [anon_sym_is] = ACTIONS(3437), - [anon_sym_BANGis] = ACTIONS(3435), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_BANGin] = ACTIONS(3435), - [anon_sym_match] = ACTIONS(3437), - [anon_sym_select] = ACTIONS(3437), - [anon_sym_lock] = ACTIONS(3437), - [anon_sym_rlock] = ACTIONS(3437), - [anon_sym_unsafe] = ACTIONS(3437), - [anon_sym_sql] = ACTIONS(3437), - [sym_int_literal] = ACTIONS(3437), - [sym_float_literal] = ACTIONS(3435), - [sym_rune_literal] = ACTIONS(3435), - [sym_pseudo_compile_time_identifier] = ACTIONS(3437), - [anon_sym_shared] = ACTIONS(3437), - [anon_sym_map_LBRACK] = ACTIONS(3435), - [anon_sym_chan] = ACTIONS(3437), - [anon_sym_thread] = ACTIONS(3437), - [anon_sym_atomic] = ACTIONS(3437), - [sym___double_quote] = ACTIONS(3435), - [sym___single_quote] = ACTIONS(3435), - [sym___c_double_quote] = ACTIONS(3435), - [sym___c_single_quote] = ACTIONS(3435), - [sym___r_double_quote] = ACTIONS(3435), - [sym___r_single_quote] = ACTIONS(3435), + [anon_sym_DOT] = ACTIONS(3201), + [anon_sym_as] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3199), + [anon_sym_COMMA] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3201), + [anon_sym_fn] = ACTIONS(3201), + [anon_sym_PLUS] = ACTIONS(3201), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3199), + [anon_sym_SLASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3199), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3199), + [anon_sym_BANG_EQ] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3199), + [anon_sym_RBRACK] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3201), + [anon_sym_mut] = ACTIONS(3201), + [anon_sym_PLUS_PLUS] = ACTIONS(3199), + [anon_sym_DASH_DASH] = ACTIONS(3199), + [anon_sym_QMARK] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_go] = ACTIONS(3201), + [anon_sym_spawn] = ACTIONS(3201), + [anon_sym_json_DOTdecode] = ACTIONS(3199), + [anon_sym_LBRACK2] = ACTIONS(3201), + [anon_sym_TILDE] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3199), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_LT_DASH] = ACTIONS(3199), + [anon_sym_LT_LT] = ACTIONS(3199), + [anon_sym_GT_GT] = ACTIONS(3201), + [anon_sym_GT_GT_GT] = ACTIONS(3199), + [anon_sym_AMP_CARET] = ACTIONS(3199), + [anon_sym_AMP_AMP] = ACTIONS(3199), + [anon_sym_PIPE_PIPE] = ACTIONS(3199), + [anon_sym_or] = ACTIONS(3201), + [sym_none] = ACTIONS(3201), + [sym_true] = ACTIONS(3201), + [sym_false] = ACTIONS(3201), + [sym_nil] = ACTIONS(3201), + [anon_sym_QMARK_DOT] = ACTIONS(3199), + [anon_sym_POUND_LBRACK] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3201), + [anon_sym_DOLLARif] = ACTIONS(3201), + [anon_sym_is] = ACTIONS(3201), + [anon_sym_BANGis] = ACTIONS(3199), + [anon_sym_in] = ACTIONS(3201), + [anon_sym_BANGin] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3201), + [anon_sym_select] = ACTIONS(3201), + [anon_sym_lock] = ACTIONS(3201), + [anon_sym_rlock] = ACTIONS(3201), + [anon_sym_unsafe] = ACTIONS(3201), + [anon_sym_sql] = ACTIONS(3201), + [sym_int_literal] = ACTIONS(3201), + [sym_float_literal] = ACTIONS(3199), + [sym_rune_literal] = ACTIONS(3199), + [sym_pseudo_compile_time_identifier] = ACTIONS(3201), + [anon_sym_shared] = ACTIONS(3201), + [anon_sym_map_LBRACK] = ACTIONS(3199), + [anon_sym_chan] = ACTIONS(3201), + [anon_sym_thread] = ACTIONS(3201), + [anon_sym_atomic] = ACTIONS(3201), + [sym___double_quote] = ACTIONS(3199), + [sym___single_quote] = ACTIONS(3199), + [sym___c_double_quote] = ACTIONS(3199), + [sym___c_single_quote] = ACTIONS(3199), + [sym___r_double_quote] = ACTIONS(3199), + [sym___r_single_quote] = ACTIONS(3199), }, - [1429] = { - [sym_reference_expression] = STATE(4551), + [1432] = { + [sym_reference_expression] = STATE(4626), [sym_type_reference_expression] = STATE(2323), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), [sym_qualified_type] = STATE(2323), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(3985), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3997), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(3987), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(3989), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [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(615), - [anon_sym_COLON] = ACTIONS(593), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3993), - [anon_sym_LBRACK2] = ACTIONS(3995), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(3997), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(593), - [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(593), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(3999), - [anon_sym_map_LBRACK] = ACTIONS(4001), - [anon_sym_chan] = ACTIONS(4003), - [anon_sym_thread] = ACTIONS(4005), - [anon_sym_atomic] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(591), + [anon_sym_SEMI] = ACTIONS(581), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_RBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(585), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4005), + [anon_sym_LBRACK2] = ACTIONS(4007), + [anon_sym_CARET] = ACTIONS(581), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(581), + [anon_sym_AMP_CARET] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), + [anon_sym_COLON_EQ] = ACTIONS(581), + [anon_sym_shared] = ACTIONS(4011), + [anon_sym_map_LBRACK] = ACTIONS(4013), + [anon_sym_chan] = ACTIONS(4015), + [anon_sym_thread] = ACTIONS(4017), + [anon_sym_atomic] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(581), }, - [1430] = { - [sym_reference_expression] = STATE(4551), + [1433] = { + [sym_reference_expression] = STATE(4626), [sym_type_reference_expression] = STATE(2323), - [sym_plain_type] = STATE(2368), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), + [sym_plain_type] = STATE(2345), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), [sym_qualified_type] = STATE(2323), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(3985), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3997), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(3987), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(3989), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_RBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(597), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3993), - [anon_sym_LBRACK2] = ACTIONS(3995), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(3997), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(3999), - [anon_sym_map_LBRACK] = ACTIONS(4001), - [anon_sym_chan] = ACTIONS(4003), - [anon_sym_thread] = ACTIONS(4005), - [anon_sym_atomic] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(595), - }, - [1431] = { - [sym_type_parameters] = STATE(1502), - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym___global] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_LBRACK] = ACTIONS(4009), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_pub] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [anon_sym_assert] = ACTIONS(2761), - [anon_sym_defer] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_DOLLARfor] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_POUND] = ACTIONS(2761), - [anon_sym_asm] = ACTIONS(2761), - [anon_sym_AT_LBRACK] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), + [anon_sym_SEMI] = ACTIONS(617), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(617), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_RBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(619), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4005), + [anon_sym_LBRACK2] = ACTIONS(4007), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_COLON_EQ] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(4011), + [anon_sym_map_LBRACK] = ACTIONS(4013), + [anon_sym_chan] = ACTIONS(4015), + [anon_sym_thread] = ACTIONS(4017), + [anon_sym_atomic] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(617), }, - [1432] = { - [sym_reference_expression] = STATE(4551), + [1434] = { + [sym_reference_expression] = STATE(4626), [sym_type_reference_expression] = STATE(2323), - [sym_plain_type] = STATE(2454), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), + [sym_plain_type] = STATE(2408), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), [sym_qualified_type] = STATE(2323), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(3985), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(3997), [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(559), - [anon_sym_DOT] = ACTIONS(563), - [anon_sym_as] = ACTIONS(563), - [anon_sym_LBRACE] = ACTIONS(559), - [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_RPAREN] = ACTIONS(559), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(3987), - [anon_sym_PLUS] = ACTIONS(563), - [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(3989), - [anon_sym_SLASH] = ACTIONS(563), - [anon_sym_PERCENT] = ACTIONS(559), - [anon_sym_LT] = ACTIONS(563), - [anon_sym_GT] = ACTIONS(563), - [anon_sym_EQ_EQ] = ACTIONS(559), - [anon_sym_BANG_EQ] = ACTIONS(559), - [anon_sym_LT_EQ] = ACTIONS(559), - [anon_sym_GT_EQ] = ACTIONS(559), - [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_RBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(563), - [anon_sym_PLUS_PLUS] = ACTIONS(559), - [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3993), - [anon_sym_LBRACK2] = ACTIONS(3995), - [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(3997), - [anon_sym_LT_LT] = ACTIONS(559), - [anon_sym_GT_GT] = ACTIONS(563), - [anon_sym_GT_GT_GT] = ACTIONS(559), - [anon_sym_AMP_CARET] = ACTIONS(559), - [anon_sym_AMP_AMP] = ACTIONS(559), - [anon_sym_PIPE_PIPE] = ACTIONS(559), - [anon_sym_or] = ACTIONS(563), - [anon_sym_QMARK_DOT] = ACTIONS(559), - [anon_sym_POUND_LBRACK] = ACTIONS(559), - [anon_sym_is] = ACTIONS(563), - [anon_sym_BANGis] = ACTIONS(559), - [anon_sym_in] = ACTIONS(563), - [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_COLON_EQ] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(3999), - [anon_sym_map_LBRACK] = ACTIONS(4001), - [anon_sym_chan] = ACTIONS(4003), - [anon_sym_thread] = ACTIONS(4005), - [anon_sym_atomic] = ACTIONS(4007), - [anon_sym_DOT_DOT] = ACTIONS(559), - }, - [1433] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(601), - [anon_sym_CR] = ACTIONS(601), - [anon_sym_CR_LF] = ACTIONS(601), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(601), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(593), - [anon_sym_COMMA] = ACTIONS(601), - [anon_sym_RBRACE] = ACTIONS(601), - [anon_sym_LPAREN] = ACTIONS(601), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(601), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(601), - [anon_sym_BANG_EQ] = ACTIONS(601), - [anon_sym_LT_EQ] = ACTIONS(601), - [anon_sym_GT_EQ] = ACTIONS(601), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(601), - [anon_sym_DASH_DASH] = ACTIONS(601), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(601), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(601), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(601), - [anon_sym_AMP_CARET] = ACTIONS(601), - [anon_sym_AMP_AMP] = ACTIONS(601), - [anon_sym_PIPE_PIPE] = ACTIONS(601), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(601), - [anon_sym_POUND_LBRACK] = ACTIONS(601), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(601), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(601), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - }, - [1434] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(4011), - [sym_identifier] = ACTIONS(4013), - [anon_sym_LF] = ACTIONS(4013), - [anon_sym_CR] = ACTIONS(4013), - [anon_sym_CR_LF] = ACTIONS(4013), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4013), - [anon_sym_LBRACE] = ACTIONS(4013), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_const] = ACTIONS(4013), - [anon_sym_LPAREN] = ACTIONS(4013), - [anon_sym___global] = ACTIONS(4013), - [anon_sym_type] = ACTIONS(4013), - [anon_sym_fn] = ACTIONS(4013), - [anon_sym_PLUS] = ACTIONS(4013), - [anon_sym_DASH] = ACTIONS(4013), - [anon_sym_STAR] = ACTIONS(4013), - [anon_sym_struct] = ACTIONS(4013), - [anon_sym_union] = ACTIONS(4013), - [anon_sym_pub] = ACTIONS(4013), - [anon_sym_mut] = ACTIONS(4013), - [anon_sym_enum] = ACTIONS(4013), - [anon_sym_interface] = ACTIONS(4013), - [anon_sym_QMARK] = ACTIONS(4013), - [anon_sym_BANG] = ACTIONS(4013), - [anon_sym_go] = ACTIONS(4013), - [anon_sym_spawn] = ACTIONS(4013), - [anon_sym_json_DOTdecode] = ACTIONS(4013), - [anon_sym_LBRACK2] = ACTIONS(4013), - [anon_sym_TILDE] = ACTIONS(4013), - [anon_sym_CARET] = ACTIONS(4013), - [anon_sym_AMP] = ACTIONS(4013), - [anon_sym_LT_DASH] = ACTIONS(4013), - [sym_none] = ACTIONS(4013), - [sym_true] = ACTIONS(4013), - [sym_false] = ACTIONS(4013), - [sym_nil] = ACTIONS(4013), - [anon_sym_if] = ACTIONS(4013), - [anon_sym_DOLLARif] = ACTIONS(4013), - [anon_sym_match] = ACTIONS(4013), - [anon_sym_select] = ACTIONS(4013), - [anon_sym_lock] = ACTIONS(4013), - [anon_sym_rlock] = ACTIONS(4013), - [anon_sym_unsafe] = ACTIONS(4013), - [anon_sym_sql] = ACTIONS(4013), - [sym_int_literal] = ACTIONS(4013), - [sym_float_literal] = ACTIONS(4013), - [sym_rune_literal] = ACTIONS(4013), - [sym_pseudo_compile_time_identifier] = ACTIONS(4013), - [anon_sym_shared] = ACTIONS(4013), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(621), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(3999), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4001), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_RBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(4003), + [anon_sym_BANG] = ACTIONS(4005), + [anon_sym_LBRACK2] = ACTIONS(4007), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(4009), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_COLON_EQ] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(4011), [anon_sym_map_LBRACK] = ACTIONS(4013), - [anon_sym_chan] = ACTIONS(4013), - [anon_sym_thread] = ACTIONS(4013), - [anon_sym_atomic] = ACTIONS(4013), - [anon_sym_assert] = ACTIONS(4013), - [anon_sym_defer] = ACTIONS(4013), - [anon_sym_goto] = ACTIONS(4013), - [anon_sym_break] = ACTIONS(4013), - [anon_sym_continue] = ACTIONS(4013), - [anon_sym_return] = ACTIONS(4013), - [anon_sym_DOLLARfor] = ACTIONS(4013), - [anon_sym_for] = ACTIONS(4013), - [anon_sym_POUND] = ACTIONS(4013), - [anon_sym_asm] = ACTIONS(4013), - [anon_sym_AT_LBRACK] = ACTIONS(4013), - [sym___double_quote] = ACTIONS(4013), - [sym___single_quote] = ACTIONS(4013), - [sym___c_double_quote] = ACTIONS(4013), - [sym___c_single_quote] = ACTIONS(4013), - [sym___r_double_quote] = ACTIONS(4013), - [sym___r_single_quote] = ACTIONS(4013), + [anon_sym_chan] = ACTIONS(4015), + [anon_sym_thread] = ACTIONS(4017), + [anon_sym_atomic] = ACTIONS(4019), + [anon_sym_DOT_DOT] = ACTIONS(621), }, [1435] = { - [aux_sym__type_union_list_repeat1] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(4015), - [sym_identifier] = ACTIONS(4017), - [anon_sym_LF] = ACTIONS(4019), - [anon_sym_CR] = ACTIONS(4019), - [anon_sym_CR_LF] = ACTIONS(4019), + [sym_type_parameters] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_const] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym___global] = ACTIONS(4017), - [anon_sym_type] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4022), - [anon_sym_fn] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_struct] = ACTIONS(4017), - [anon_sym_union] = ACTIONS(4017), - [anon_sym_pub] = ACTIONS(4017), - [anon_sym_mut] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_go] = ACTIONS(4017), - [anon_sym_spawn] = ACTIONS(4017), - [anon_sym_json_DOTdecode] = ACTIONS(4017), - [anon_sym_LBRACK2] = ACTIONS(4017), - [anon_sym_TILDE] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_DASH] = ACTIONS(4017), - [sym_none] = ACTIONS(4017), - [sym_true] = ACTIONS(4017), - [sym_false] = ACTIONS(4017), - [sym_nil] = ACTIONS(4017), - [anon_sym_if] = ACTIONS(4017), - [anon_sym_DOLLARif] = ACTIONS(4017), - [anon_sym_match] = ACTIONS(4017), - [anon_sym_select] = ACTIONS(4017), - [anon_sym_lock] = ACTIONS(4017), - [anon_sym_rlock] = ACTIONS(4017), - [anon_sym_unsafe] = ACTIONS(4017), - [anon_sym_sql] = ACTIONS(4017), - [sym_int_literal] = ACTIONS(4017), - [sym_float_literal] = ACTIONS(4017), - [sym_rune_literal] = ACTIONS(4017), - [sym_pseudo_compile_time_identifier] = ACTIONS(4017), - [anon_sym_shared] = ACTIONS(4017), - [anon_sym_map_LBRACK] = ACTIONS(4017), - [anon_sym_chan] = ACTIONS(4017), - [anon_sym_thread] = ACTIONS(4017), - [anon_sym_atomic] = ACTIONS(4017), - [anon_sym_assert] = ACTIONS(4017), - [anon_sym_defer] = ACTIONS(4017), - [anon_sym_goto] = ACTIONS(4017), - [anon_sym_break] = ACTIONS(4017), - [anon_sym_continue] = ACTIONS(4017), - [anon_sym_return] = ACTIONS(4017), - [anon_sym_DOLLARfor] = ACTIONS(4017), - [anon_sym_for] = ACTIONS(4017), - [anon_sym_POUND] = ACTIONS(4017), - [anon_sym_asm] = ACTIONS(4017), - [anon_sym_AT_LBRACK] = ACTIONS(4017), - [sym___double_quote] = ACTIONS(4017), - [sym___single_quote] = ACTIONS(4017), - [sym___c_double_quote] = ACTIONS(4017), - [sym___c_single_quote] = ACTIONS(4017), - [sym___r_double_quote] = ACTIONS(4017), - [sym___r_single_quote] = ACTIONS(4017), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_LBRACK] = ACTIONS(4021), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), }, [1436] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(1717), - [anon_sym_LF] = ACTIONS(1717), - [anon_sym_CR] = ACTIONS(1717), - [anon_sym_CR_LF] = ACTIONS(1717), + [aux_sym_strictly_expression_list_repeat1] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(1719), + [anon_sym_LF] = ACTIONS(1719), + [anon_sym_CR] = ACTIONS(1719), + [anon_sym_CR_LF] = ACTIONS(1719), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1717), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym___global] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_STAR] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_interface] = ACTIONS(1717), - [anon_sym_QMARK] = ACTIONS(1717), - [anon_sym_BANG] = ACTIONS(1717), - [anon_sym_go] = ACTIONS(1717), - [anon_sym_spawn] = ACTIONS(1717), - [anon_sym_json_DOTdecode] = ACTIONS(1717), - [anon_sym_LBRACK2] = ACTIONS(1717), - [anon_sym_TILDE] = ACTIONS(1717), - [anon_sym_CARET] = ACTIONS(1717), - [anon_sym_AMP] = ACTIONS(1717), - [anon_sym_LT_DASH] = ACTIONS(1717), - [sym_none] = ACTIONS(1717), - [sym_true] = ACTIONS(1717), - [sym_false] = ACTIONS(1717), - [sym_nil] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_DOLLARif] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_select] = ACTIONS(1717), - [anon_sym_lock] = ACTIONS(1717), - [anon_sym_rlock] = ACTIONS(1717), - [anon_sym_unsafe] = ACTIONS(1717), - [anon_sym_sql] = ACTIONS(1717), - [sym_int_literal] = ACTIONS(1717), - [sym_float_literal] = ACTIONS(1717), - [sym_rune_literal] = ACTIONS(1717), - [sym_pseudo_compile_time_identifier] = ACTIONS(1717), - [anon_sym_shared] = ACTIONS(1717), - [anon_sym_map_LBRACK] = ACTIONS(1717), - [anon_sym_chan] = ACTIONS(1717), - [anon_sym_thread] = ACTIONS(1717), - [anon_sym_atomic] = ACTIONS(1717), - [anon_sym_assert] = ACTIONS(1717), - [anon_sym_defer] = ACTIONS(1717), - [anon_sym_goto] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_DOLLARfor] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(1717), - [anon_sym_asm] = ACTIONS(1717), - [anon_sym_AT_LBRACK] = ACTIONS(1717), - [sym___double_quote] = ACTIONS(1717), - [sym___single_quote] = ACTIONS(1717), - [sym___c_double_quote] = ACTIONS(1717), - [sym___c_single_quote] = ACTIONS(1717), - [sym___r_double_quote] = ACTIONS(1717), - [sym___r_single_quote] = ACTIONS(1717), + [anon_sym_DOT] = ACTIONS(1719), + [anon_sym_LBRACE] = ACTIONS(1719), + [anon_sym_COMMA] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(1719), + [anon_sym_LPAREN] = ACTIONS(1719), + [anon_sym___global] = ACTIONS(1719), + [anon_sym_type] = ACTIONS(1719), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_PLUS] = ACTIONS(1719), + [anon_sym_DASH] = ACTIONS(1719), + [anon_sym_STAR] = ACTIONS(1719), + [anon_sym_struct] = ACTIONS(1719), + [anon_sym_union] = ACTIONS(1719), + [anon_sym_pub] = ACTIONS(1719), + [anon_sym_mut] = ACTIONS(1719), + [anon_sym_enum] = ACTIONS(1719), + [anon_sym_interface] = ACTIONS(1719), + [anon_sym_QMARK] = ACTIONS(1719), + [anon_sym_BANG] = ACTIONS(1719), + [anon_sym_go] = ACTIONS(1719), + [anon_sym_spawn] = ACTIONS(1719), + [anon_sym_json_DOTdecode] = ACTIONS(1719), + [anon_sym_LBRACK2] = ACTIONS(1719), + [anon_sym_TILDE] = ACTIONS(1719), + [anon_sym_CARET] = ACTIONS(1719), + [anon_sym_AMP] = ACTIONS(1719), + [anon_sym_LT_DASH] = ACTIONS(1719), + [sym_none] = ACTIONS(1719), + [sym_true] = ACTIONS(1719), + [sym_false] = ACTIONS(1719), + [sym_nil] = ACTIONS(1719), + [anon_sym_if] = ACTIONS(1719), + [anon_sym_DOLLARif] = ACTIONS(1719), + [anon_sym_match] = ACTIONS(1719), + [anon_sym_select] = ACTIONS(1719), + [anon_sym_lock] = ACTIONS(1719), + [anon_sym_rlock] = ACTIONS(1719), + [anon_sym_unsafe] = ACTIONS(1719), + [anon_sym_sql] = ACTIONS(1719), + [sym_int_literal] = ACTIONS(1719), + [sym_float_literal] = ACTIONS(1719), + [sym_rune_literal] = ACTIONS(1719), + [sym_pseudo_compile_time_identifier] = ACTIONS(1719), + [anon_sym_shared] = ACTIONS(1719), + [anon_sym_map_LBRACK] = ACTIONS(1719), + [anon_sym_chan] = ACTIONS(1719), + [anon_sym_thread] = ACTIONS(1719), + [anon_sym_atomic] = ACTIONS(1719), + [anon_sym_assert] = ACTIONS(1719), + [anon_sym_defer] = ACTIONS(1719), + [anon_sym_goto] = ACTIONS(1719), + [anon_sym_break] = ACTIONS(1719), + [anon_sym_continue] = ACTIONS(1719), + [anon_sym_return] = ACTIONS(1719), + [anon_sym_DOLLARfor] = ACTIONS(1719), + [anon_sym_for] = ACTIONS(1719), + [anon_sym_POUND] = ACTIONS(1719), + [anon_sym_asm] = ACTIONS(1719), + [anon_sym_AT_LBRACK] = ACTIONS(1719), + [sym___double_quote] = ACTIONS(1719), + [sym___single_quote] = ACTIONS(1719), + [sym___c_double_quote] = ACTIONS(1719), + [sym___c_single_quote] = ACTIONS(1719), + [sym___r_double_quote] = ACTIONS(1719), + [sym___r_single_quote] = ACTIONS(1719), }, [1437] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1437), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), + [aux_sym__type_union_list_repeat1] = STATE(1443), + [ts_builtin_sym_end] = ACTIONS(4023), + [sym_identifier] = ACTIONS(4025), + [anon_sym_LF] = ACTIONS(4027), + [anon_sym_CR] = ACTIONS(4027), + [anon_sym_CR_LF] = ACTIONS(4027), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(4025), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym___global] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_pub] = ACTIONS(1759), - [anon_sym_mut] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_go] = ACTIONS(1759), - [anon_sym_spawn] = ACTIONS(1759), - [anon_sym_json_DOTdecode] = ACTIONS(1759), - [anon_sym_LBRACK2] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_LT_DASH] = ACTIONS(1759), - [sym_none] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_nil] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_DOLLARif] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_select] = ACTIONS(1759), - [anon_sym_lock] = ACTIONS(1759), - [anon_sym_rlock] = ACTIONS(1759), - [anon_sym_unsafe] = ACTIONS(1759), - [anon_sym_sql] = ACTIONS(1759), - [sym_int_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), - [sym_rune_literal] = ACTIONS(1759), - [sym_pseudo_compile_time_identifier] = ACTIONS(1759), - [anon_sym_shared] = ACTIONS(1759), - [anon_sym_map_LBRACK] = ACTIONS(1759), - [anon_sym_chan] = ACTIONS(1759), - [anon_sym_thread] = ACTIONS(1759), - [anon_sym_atomic] = ACTIONS(1759), - [anon_sym_assert] = ACTIONS(1759), - [anon_sym_defer] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_DOLLARfor] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_asm] = ACTIONS(1759), - [anon_sym_AT_LBRACK] = ACTIONS(1759), - [sym___double_quote] = ACTIONS(1759), - [sym___single_quote] = ACTIONS(1759), - [sym___c_double_quote] = ACTIONS(1759), - [sym___c_single_quote] = ACTIONS(1759), - [sym___r_double_quote] = ACTIONS(1759), - [sym___r_single_quote] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(4025), + [anon_sym_LBRACE] = ACTIONS(4025), + [anon_sym_const] = ACTIONS(4025), + [anon_sym_LPAREN] = ACTIONS(4025), + [anon_sym___global] = ACTIONS(4025), + [anon_sym_type] = ACTIONS(4025), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_fn] = ACTIONS(4025), + [anon_sym_PLUS] = ACTIONS(4025), + [anon_sym_DASH] = ACTIONS(4025), + [anon_sym_STAR] = ACTIONS(4025), + [anon_sym_struct] = ACTIONS(4025), + [anon_sym_union] = ACTIONS(4025), + [anon_sym_pub] = ACTIONS(4025), + [anon_sym_mut] = ACTIONS(4025), + [anon_sym_enum] = ACTIONS(4025), + [anon_sym_interface] = ACTIONS(4025), + [anon_sym_QMARK] = ACTIONS(4025), + [anon_sym_BANG] = ACTIONS(4025), + [anon_sym_go] = ACTIONS(4025), + [anon_sym_spawn] = ACTIONS(4025), + [anon_sym_json_DOTdecode] = ACTIONS(4025), + [anon_sym_LBRACK2] = ACTIONS(4025), + [anon_sym_TILDE] = ACTIONS(4025), + [anon_sym_CARET] = ACTIONS(4025), + [anon_sym_AMP] = ACTIONS(4025), + [anon_sym_LT_DASH] = ACTIONS(4025), + [sym_none] = ACTIONS(4025), + [sym_true] = ACTIONS(4025), + [sym_false] = ACTIONS(4025), + [sym_nil] = ACTIONS(4025), + [anon_sym_if] = ACTIONS(4025), + [anon_sym_DOLLARif] = ACTIONS(4025), + [anon_sym_match] = ACTIONS(4025), + [anon_sym_select] = ACTIONS(4025), + [anon_sym_lock] = ACTIONS(4025), + [anon_sym_rlock] = ACTIONS(4025), + [anon_sym_unsafe] = ACTIONS(4025), + [anon_sym_sql] = ACTIONS(4025), + [sym_int_literal] = ACTIONS(4025), + [sym_float_literal] = ACTIONS(4025), + [sym_rune_literal] = ACTIONS(4025), + [sym_pseudo_compile_time_identifier] = ACTIONS(4025), + [anon_sym_shared] = ACTIONS(4025), + [anon_sym_map_LBRACK] = ACTIONS(4025), + [anon_sym_chan] = ACTIONS(4025), + [anon_sym_thread] = ACTIONS(4025), + [anon_sym_atomic] = ACTIONS(4025), + [anon_sym_assert] = ACTIONS(4025), + [anon_sym_defer] = ACTIONS(4025), + [anon_sym_goto] = ACTIONS(4025), + [anon_sym_break] = ACTIONS(4025), + [anon_sym_continue] = ACTIONS(4025), + [anon_sym_return] = ACTIONS(4025), + [anon_sym_DOLLARfor] = ACTIONS(4025), + [anon_sym_for] = ACTIONS(4025), + [anon_sym_POUND] = ACTIONS(4025), + [anon_sym_asm] = ACTIONS(4025), + [anon_sym_AT_LBRACK] = ACTIONS(4025), + [sym___double_quote] = ACTIONS(4025), + [sym___single_quote] = ACTIONS(4025), + [sym___c_double_quote] = ACTIONS(4025), + [sym___c_single_quote] = ACTIONS(4025), + [sym___r_double_quote] = ACTIONS(4025), + [sym___r_single_quote] = ACTIONS(4025), }, [1438] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), + [aux_sym_strictly_expression_list_repeat1] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(1761), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_CR] = ACTIONS(1761), + [anon_sym_CR_LF] = ACTIONS(1761), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_COMMA] = ACTIONS(4032), + [anon_sym_const] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym___global] = ACTIONS(1761), + [anon_sym_type] = ACTIONS(1761), + [anon_sym_fn] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_pub] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1761), + [anon_sym_QMARK] = ACTIONS(1761), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_go] = ACTIONS(1761), + [anon_sym_spawn] = ACTIONS(1761), + [anon_sym_json_DOTdecode] = ACTIONS(1761), + [anon_sym_LBRACK2] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_LT_DASH] = ACTIONS(1761), + [sym_none] = ACTIONS(1761), + [sym_true] = ACTIONS(1761), + [sym_false] = ACTIONS(1761), + [sym_nil] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_DOLLARif] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_select] = ACTIONS(1761), + [anon_sym_lock] = ACTIONS(1761), + [anon_sym_rlock] = ACTIONS(1761), + [anon_sym_unsafe] = ACTIONS(1761), + [anon_sym_sql] = ACTIONS(1761), + [sym_int_literal] = ACTIONS(1761), + [sym_float_literal] = ACTIONS(1761), + [sym_rune_literal] = ACTIONS(1761), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), + [anon_sym_shared] = ACTIONS(1761), + [anon_sym_map_LBRACK] = ACTIONS(1761), + [anon_sym_chan] = ACTIONS(1761), + [anon_sym_thread] = ACTIONS(1761), + [anon_sym_atomic] = ACTIONS(1761), + [anon_sym_assert] = ACTIONS(1761), + [anon_sym_defer] = ACTIONS(1761), + [anon_sym_goto] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_DOLLARfor] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1761), + [anon_sym_asm] = ACTIONS(1761), + [anon_sym_AT_LBRACK] = ACTIONS(1761), + [sym___double_quote] = ACTIONS(1761), + [sym___single_quote] = ACTIONS(1761), + [sym___c_double_quote] = ACTIONS(1761), + [sym___c_single_quote] = ACTIONS(1761), + [sym___r_double_quote] = ACTIONS(1761), + [sym___r_single_quote] = ACTIONS(1761), }, [1439] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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_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_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [sym_pseudo_compile_time_identifier] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym___global] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_union] = ACTIONS(3412), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_defer] = ACTIONS(3412), + [anon_sym_goto] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_DOLLARfor] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_POUND] = ACTIONS(3412), + [anon_sym_asm] = ACTIONS(3412), + [anon_sym_AT_LBRACK] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), }, [1440] = { - [aux_sym__type_union_list_repeat1] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(4028), - [sym_identifier] = ACTIONS(4030), - [anon_sym_LF] = ACTIONS(4032), - [anon_sym_CR] = ACTIONS(4032), - [anon_sym_CR_LF] = ACTIONS(4032), + [aux_sym__type_union_list_repeat1] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(4035), + [sym_identifier] = ACTIONS(4037), + [anon_sym_LF] = ACTIONS(4039), + [anon_sym_CR] = ACTIONS(4039), + [anon_sym_CR_LF] = ACTIONS(4039), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4030), - [anon_sym_LBRACE] = ACTIONS(4030), - [anon_sym_const] = ACTIONS(4030), - [anon_sym_LPAREN] = ACTIONS(4030), - [anon_sym___global] = ACTIONS(4030), - [anon_sym_type] = ACTIONS(4030), - [anon_sym_PIPE] = ACTIONS(4035), - [anon_sym_fn] = ACTIONS(4030), - [anon_sym_PLUS] = ACTIONS(4030), - [anon_sym_DASH] = ACTIONS(4030), - [anon_sym_STAR] = ACTIONS(4030), - [anon_sym_struct] = ACTIONS(4030), - [anon_sym_union] = ACTIONS(4030), - [anon_sym_pub] = ACTIONS(4030), - [anon_sym_mut] = ACTIONS(4030), - [anon_sym_enum] = ACTIONS(4030), - [anon_sym_interface] = ACTIONS(4030), - [anon_sym_QMARK] = ACTIONS(4030), - [anon_sym_BANG] = ACTIONS(4030), - [anon_sym_go] = ACTIONS(4030), - [anon_sym_spawn] = ACTIONS(4030), - [anon_sym_json_DOTdecode] = ACTIONS(4030), - [anon_sym_LBRACK2] = ACTIONS(4030), - [anon_sym_TILDE] = ACTIONS(4030), - [anon_sym_CARET] = ACTIONS(4030), - [anon_sym_AMP] = ACTIONS(4030), - [anon_sym_LT_DASH] = ACTIONS(4030), - [sym_none] = ACTIONS(4030), - [sym_true] = ACTIONS(4030), - [sym_false] = ACTIONS(4030), - [sym_nil] = ACTIONS(4030), - [anon_sym_if] = ACTIONS(4030), - [anon_sym_DOLLARif] = ACTIONS(4030), - [anon_sym_match] = ACTIONS(4030), - [anon_sym_select] = ACTIONS(4030), - [anon_sym_lock] = ACTIONS(4030), - [anon_sym_rlock] = ACTIONS(4030), - [anon_sym_unsafe] = ACTIONS(4030), - [anon_sym_sql] = ACTIONS(4030), - [sym_int_literal] = ACTIONS(4030), - [sym_float_literal] = ACTIONS(4030), - [sym_rune_literal] = ACTIONS(4030), - [sym_pseudo_compile_time_identifier] = ACTIONS(4030), - [anon_sym_shared] = ACTIONS(4030), - [anon_sym_map_LBRACK] = ACTIONS(4030), - [anon_sym_chan] = ACTIONS(4030), - [anon_sym_thread] = ACTIONS(4030), - [anon_sym_atomic] = ACTIONS(4030), - [anon_sym_assert] = ACTIONS(4030), - [anon_sym_defer] = ACTIONS(4030), - [anon_sym_goto] = ACTIONS(4030), - [anon_sym_break] = ACTIONS(4030), - [anon_sym_continue] = ACTIONS(4030), - [anon_sym_return] = ACTIONS(4030), - [anon_sym_DOLLARfor] = ACTIONS(4030), - [anon_sym_for] = ACTIONS(4030), - [anon_sym_POUND] = ACTIONS(4030), - [anon_sym_asm] = ACTIONS(4030), - [anon_sym_AT_LBRACK] = ACTIONS(4030), - [sym___double_quote] = ACTIONS(4030), - [sym___single_quote] = ACTIONS(4030), - [sym___c_double_quote] = ACTIONS(4030), - [sym___c_single_quote] = ACTIONS(4030), - [sym___r_double_quote] = ACTIONS(4030), - [sym___r_single_quote] = ACTIONS(4030), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_const] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym___global] = ACTIONS(4037), + [anon_sym_type] = ACTIONS(4037), + [anon_sym_PIPE] = ACTIONS(4042), + [anon_sym_fn] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_struct] = ACTIONS(4037), + [anon_sym_union] = ACTIONS(4037), + [anon_sym_pub] = ACTIONS(4037), + [anon_sym_mut] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4037), + [anon_sym_go] = ACTIONS(4037), + [anon_sym_spawn] = ACTIONS(4037), + [anon_sym_json_DOTdecode] = ACTIONS(4037), + [anon_sym_LBRACK2] = ACTIONS(4037), + [anon_sym_TILDE] = ACTIONS(4037), + [anon_sym_CARET] = ACTIONS(4037), + [anon_sym_AMP] = ACTIONS(4037), + [anon_sym_LT_DASH] = ACTIONS(4037), + [sym_none] = ACTIONS(4037), + [sym_true] = ACTIONS(4037), + [sym_false] = ACTIONS(4037), + [sym_nil] = ACTIONS(4037), + [anon_sym_if] = ACTIONS(4037), + [anon_sym_DOLLARif] = ACTIONS(4037), + [anon_sym_match] = ACTIONS(4037), + [anon_sym_select] = ACTIONS(4037), + [anon_sym_lock] = ACTIONS(4037), + [anon_sym_rlock] = ACTIONS(4037), + [anon_sym_unsafe] = ACTIONS(4037), + [anon_sym_sql] = ACTIONS(4037), + [sym_int_literal] = ACTIONS(4037), + [sym_float_literal] = ACTIONS(4037), + [sym_rune_literal] = ACTIONS(4037), + [sym_pseudo_compile_time_identifier] = ACTIONS(4037), + [anon_sym_shared] = ACTIONS(4037), + [anon_sym_map_LBRACK] = ACTIONS(4037), + [anon_sym_chan] = ACTIONS(4037), + [anon_sym_thread] = ACTIONS(4037), + [anon_sym_atomic] = ACTIONS(4037), + [anon_sym_assert] = ACTIONS(4037), + [anon_sym_defer] = ACTIONS(4037), + [anon_sym_goto] = ACTIONS(4037), + [anon_sym_break] = ACTIONS(4037), + [anon_sym_continue] = ACTIONS(4037), + [anon_sym_return] = ACTIONS(4037), + [anon_sym_DOLLARfor] = ACTIONS(4037), + [anon_sym_for] = ACTIONS(4037), + [anon_sym_POUND] = ACTIONS(4037), + [anon_sym_asm] = ACTIONS(4037), + [anon_sym_AT_LBRACK] = ACTIONS(4037), + [sym___double_quote] = ACTIONS(4037), + [sym___single_quote] = ACTIONS(4037), + [sym___c_double_quote] = ACTIONS(4037), + [sym___c_single_quote] = ACTIONS(4037), + [sym___r_double_quote] = ACTIONS(4037), + [sym___r_single_quote] = ACTIONS(4037), }, [1441] = { - [ts_builtin_sym_end] = ACTIONS(2907), - [sym_identifier] = ACTIONS(2909), - [anon_sym_LF] = ACTIONS(2909), - [anon_sym_CR] = ACTIONS(2909), - [anon_sym_CR_LF] = ACTIONS(2909), + [aux_sym_strictly_expression_list_repeat1] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(4045), + [sym_identifier] = ACTIONS(4047), + [anon_sym_LF] = ACTIONS(4047), + [anon_sym_CR] = ACTIONS(4047), + [anon_sym_CR_LF] = ACTIONS(4047), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2671), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_const] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym___global] = ACTIONS(2909), - [anon_sym_type] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2909), - [anon_sym_fn] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2909), - [anon_sym_DASH] = ACTIONS(2909), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_struct] = ACTIONS(2909), - [anon_sym_union] = ACTIONS(2909), - [anon_sym_pub] = ACTIONS(2909), - [anon_sym_mut] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2909), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2909), - [anon_sym_BANG] = ACTIONS(2909), - [anon_sym_go] = ACTIONS(2909), - [anon_sym_spawn] = ACTIONS(2909), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2909), - [anon_sym_LT_DASH] = ACTIONS(2909), - [sym_none] = ACTIONS(2909), - [sym_true] = ACTIONS(2909), - [sym_false] = ACTIONS(2909), - [sym_nil] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2909), - [anon_sym_DOLLARif] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2909), - [anon_sym_select] = ACTIONS(2909), - [anon_sym_lock] = ACTIONS(2909), - [anon_sym_rlock] = ACTIONS(2909), - [anon_sym_unsafe] = ACTIONS(2909), - [anon_sym_sql] = ACTIONS(2909), - [sym_int_literal] = ACTIONS(2909), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [sym_pseudo_compile_time_identifier] = ACTIONS(2909), - [anon_sym_shared] = ACTIONS(2909), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2909), - [anon_sym_thread] = ACTIONS(2909), - [anon_sym_atomic] = ACTIONS(2909), - [anon_sym_assert] = ACTIONS(2909), - [anon_sym_defer] = ACTIONS(2909), - [anon_sym_goto] = ACTIONS(2909), - [anon_sym_break] = ACTIONS(2909), - [anon_sym_continue] = ACTIONS(2909), - [anon_sym_return] = ACTIONS(2909), - [anon_sym_DOLLARfor] = ACTIONS(2909), - [anon_sym_for] = ACTIONS(2909), - [anon_sym_POUND] = ACTIONS(2909), - [anon_sym_asm] = ACTIONS(2909), - [anon_sym_AT_LBRACK] = ACTIONS(2909), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), + [anon_sym_DOT] = ACTIONS(4047), + [anon_sym_LBRACE] = ACTIONS(4047), + [anon_sym_COMMA] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(4047), + [anon_sym_LPAREN] = ACTIONS(4047), + [anon_sym___global] = ACTIONS(4047), + [anon_sym_type] = ACTIONS(4047), + [anon_sym_fn] = ACTIONS(4047), + [anon_sym_PLUS] = ACTIONS(4047), + [anon_sym_DASH] = ACTIONS(4047), + [anon_sym_STAR] = ACTIONS(4047), + [anon_sym_struct] = ACTIONS(4047), + [anon_sym_union] = ACTIONS(4047), + [anon_sym_pub] = ACTIONS(4047), + [anon_sym_mut] = ACTIONS(4047), + [anon_sym_enum] = ACTIONS(4047), + [anon_sym_interface] = ACTIONS(4047), + [anon_sym_QMARK] = ACTIONS(4047), + [anon_sym_BANG] = ACTIONS(4047), + [anon_sym_go] = ACTIONS(4047), + [anon_sym_spawn] = ACTIONS(4047), + [anon_sym_json_DOTdecode] = ACTIONS(4047), + [anon_sym_LBRACK2] = ACTIONS(4047), + [anon_sym_TILDE] = ACTIONS(4047), + [anon_sym_CARET] = ACTIONS(4047), + [anon_sym_AMP] = ACTIONS(4047), + [anon_sym_LT_DASH] = ACTIONS(4047), + [sym_none] = ACTIONS(4047), + [sym_true] = ACTIONS(4047), + [sym_false] = ACTIONS(4047), + [sym_nil] = ACTIONS(4047), + [anon_sym_if] = ACTIONS(4047), + [anon_sym_DOLLARif] = ACTIONS(4047), + [anon_sym_match] = ACTIONS(4047), + [anon_sym_select] = ACTIONS(4047), + [anon_sym_lock] = ACTIONS(4047), + [anon_sym_rlock] = ACTIONS(4047), + [anon_sym_unsafe] = ACTIONS(4047), + [anon_sym_sql] = ACTIONS(4047), + [sym_int_literal] = ACTIONS(4047), + [sym_float_literal] = ACTIONS(4047), + [sym_rune_literal] = ACTIONS(4047), + [sym_pseudo_compile_time_identifier] = ACTIONS(4047), + [anon_sym_shared] = ACTIONS(4047), + [anon_sym_map_LBRACK] = ACTIONS(4047), + [anon_sym_chan] = ACTIONS(4047), + [anon_sym_thread] = ACTIONS(4047), + [anon_sym_atomic] = ACTIONS(4047), + [anon_sym_assert] = ACTIONS(4047), + [anon_sym_defer] = ACTIONS(4047), + [anon_sym_goto] = ACTIONS(4047), + [anon_sym_break] = ACTIONS(4047), + [anon_sym_continue] = ACTIONS(4047), + [anon_sym_return] = ACTIONS(4047), + [anon_sym_DOLLARfor] = ACTIONS(4047), + [anon_sym_for] = ACTIONS(4047), + [anon_sym_POUND] = ACTIONS(4047), + [anon_sym_asm] = ACTIONS(4047), + [anon_sym_AT_LBRACK] = ACTIONS(4047), + [sym___double_quote] = ACTIONS(4047), + [sym___single_quote] = ACTIONS(4047), + [sym___c_double_quote] = ACTIONS(4047), + [sym___c_single_quote] = ACTIONS(4047), + [sym___r_double_quote] = ACTIONS(4047), + [sym___r_single_quote] = ACTIONS(4047), }, [1442] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_RBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(599), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [anon_sym_LF] = ACTIONS(615), + [anon_sym_CR] = ACTIONS(615), + [anon_sym_CR_LF] = ACTIONS(615), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(615), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(615), + [anon_sym_RBRACE] = ACTIONS(615), + [anon_sym_LPAREN] = ACTIONS(615), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(615), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(615), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(615), + [anon_sym_BANG_EQ] = ACTIONS(615), + [anon_sym_LT_EQ] = ACTIONS(615), + [anon_sym_GT_EQ] = ACTIONS(615), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(615), + [anon_sym_DASH_DASH] = ACTIONS(615), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(615), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(615), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(615), + [anon_sym_AMP_CARET] = ACTIONS(615), + [anon_sym_AMP_AMP] = ACTIONS(615), + [anon_sym_PIPE_PIPE] = ACTIONS(615), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(615), + [anon_sym_POUND_LBRACK] = ACTIONS(615), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(615), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(615), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(599), }, [1443] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1437), - [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), + [aux_sym__type_union_list_repeat1] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(4049), + [sym_identifier] = ACTIONS(4051), + [anon_sym_LF] = ACTIONS(4053), + [anon_sym_CR] = ACTIONS(4053), + [anon_sym_CR_LF] = ACTIONS(4053), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4039), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_COMMA] = ACTIONS(3510), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_DOT] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(4051), + [anon_sym_const] = ACTIONS(4051), + [anon_sym_LPAREN] = ACTIONS(4051), + [anon_sym___global] = ACTIONS(4051), + [anon_sym_type] = ACTIONS(4051), + [anon_sym_PIPE] = ACTIONS(4030), + [anon_sym_fn] = ACTIONS(4051), + [anon_sym_PLUS] = ACTIONS(4051), + [anon_sym_DASH] = ACTIONS(4051), + [anon_sym_STAR] = ACTIONS(4051), + [anon_sym_struct] = ACTIONS(4051), + [anon_sym_union] = ACTIONS(4051), + [anon_sym_pub] = ACTIONS(4051), + [anon_sym_mut] = ACTIONS(4051), + [anon_sym_enum] = ACTIONS(4051), + [anon_sym_interface] = ACTIONS(4051), + [anon_sym_QMARK] = ACTIONS(4051), + [anon_sym_BANG] = ACTIONS(4051), + [anon_sym_go] = ACTIONS(4051), + [anon_sym_spawn] = ACTIONS(4051), + [anon_sym_json_DOTdecode] = ACTIONS(4051), + [anon_sym_LBRACK2] = ACTIONS(4051), + [anon_sym_TILDE] = ACTIONS(4051), + [anon_sym_CARET] = ACTIONS(4051), + [anon_sym_AMP] = ACTIONS(4051), + [anon_sym_LT_DASH] = ACTIONS(4051), + [sym_none] = ACTIONS(4051), + [sym_true] = ACTIONS(4051), + [sym_false] = ACTIONS(4051), + [sym_nil] = ACTIONS(4051), + [anon_sym_if] = ACTIONS(4051), + [anon_sym_DOLLARif] = ACTIONS(4051), + [anon_sym_match] = ACTIONS(4051), + [anon_sym_select] = ACTIONS(4051), + [anon_sym_lock] = ACTIONS(4051), + [anon_sym_rlock] = ACTIONS(4051), + [anon_sym_unsafe] = ACTIONS(4051), + [anon_sym_sql] = ACTIONS(4051), + [sym_int_literal] = ACTIONS(4051), + [sym_float_literal] = ACTIONS(4051), + [sym_rune_literal] = ACTIONS(4051), + [sym_pseudo_compile_time_identifier] = ACTIONS(4051), + [anon_sym_shared] = ACTIONS(4051), + [anon_sym_map_LBRACK] = ACTIONS(4051), + [anon_sym_chan] = ACTIONS(4051), + [anon_sym_thread] = ACTIONS(4051), + [anon_sym_atomic] = ACTIONS(4051), + [anon_sym_assert] = ACTIONS(4051), + [anon_sym_defer] = ACTIONS(4051), + [anon_sym_goto] = ACTIONS(4051), + [anon_sym_break] = ACTIONS(4051), + [anon_sym_continue] = ACTIONS(4051), + [anon_sym_return] = ACTIONS(4051), + [anon_sym_DOLLARfor] = ACTIONS(4051), + [anon_sym_for] = ACTIONS(4051), + [anon_sym_POUND] = ACTIONS(4051), + [anon_sym_asm] = ACTIONS(4051), + [anon_sym_AT_LBRACK] = ACTIONS(4051), + [sym___double_quote] = ACTIONS(4051), + [sym___single_quote] = ACTIONS(4051), + [sym___c_double_quote] = ACTIONS(4051), + [sym___c_single_quote] = ACTIONS(4051), + [sym___r_double_quote] = ACTIONS(4051), + [sym___r_single_quote] = ACTIONS(4051), }, [1444] = { - [aux_sym__type_union_list_repeat1] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(4041), - [sym_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4045), - [anon_sym_CR] = ACTIONS(4045), - [anon_sym_CR_LF] = ACTIONS(4045), + [aux_sym_strictly_expression_list_repeat1] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(4056), + [sym_identifier] = ACTIONS(4058), + [anon_sym_LF] = ACTIONS(4058), + [anon_sym_CR] = ACTIONS(4058), + [anon_sym_CR_LF] = ACTIONS(4058), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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_PIPE] = ACTIONS(4035), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [anon_sym_DOT] = ACTIONS(4058), + [anon_sym_LBRACE] = ACTIONS(4058), + [anon_sym_COMMA] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(4058), + [anon_sym_LPAREN] = ACTIONS(4058), + [anon_sym___global] = ACTIONS(4058), + [anon_sym_type] = ACTIONS(4058), + [anon_sym_fn] = ACTIONS(4058), + [anon_sym_PLUS] = ACTIONS(4058), + [anon_sym_DASH] = ACTIONS(4058), + [anon_sym_STAR] = ACTIONS(4058), + [anon_sym_struct] = ACTIONS(4058), + [anon_sym_union] = ACTIONS(4058), + [anon_sym_pub] = ACTIONS(4058), + [anon_sym_mut] = ACTIONS(4058), + [anon_sym_enum] = ACTIONS(4058), + [anon_sym_interface] = ACTIONS(4058), + [anon_sym_QMARK] = ACTIONS(4058), + [anon_sym_BANG] = ACTIONS(4058), + [anon_sym_go] = ACTIONS(4058), + [anon_sym_spawn] = ACTIONS(4058), + [anon_sym_json_DOTdecode] = ACTIONS(4058), + [anon_sym_LBRACK2] = ACTIONS(4058), + [anon_sym_TILDE] = ACTIONS(4058), + [anon_sym_CARET] = ACTIONS(4058), + [anon_sym_AMP] = ACTIONS(4058), + [anon_sym_LT_DASH] = ACTIONS(4058), + [sym_none] = ACTIONS(4058), + [sym_true] = ACTIONS(4058), + [sym_false] = ACTIONS(4058), + [sym_nil] = ACTIONS(4058), + [anon_sym_if] = ACTIONS(4058), + [anon_sym_DOLLARif] = ACTIONS(4058), + [anon_sym_match] = ACTIONS(4058), + [anon_sym_select] = ACTIONS(4058), + [anon_sym_lock] = ACTIONS(4058), + [anon_sym_rlock] = ACTIONS(4058), + [anon_sym_unsafe] = ACTIONS(4058), + [anon_sym_sql] = ACTIONS(4058), + [sym_int_literal] = ACTIONS(4058), + [sym_float_literal] = ACTIONS(4058), + [sym_rune_literal] = ACTIONS(4058), + [sym_pseudo_compile_time_identifier] = ACTIONS(4058), + [anon_sym_shared] = ACTIONS(4058), + [anon_sym_map_LBRACK] = ACTIONS(4058), + [anon_sym_chan] = ACTIONS(4058), + [anon_sym_thread] = ACTIONS(4058), + [anon_sym_atomic] = ACTIONS(4058), + [anon_sym_assert] = ACTIONS(4058), + [anon_sym_defer] = ACTIONS(4058), + [anon_sym_goto] = ACTIONS(4058), + [anon_sym_break] = ACTIONS(4058), + [anon_sym_continue] = ACTIONS(4058), + [anon_sym_return] = ACTIONS(4058), + [anon_sym_DOLLARfor] = ACTIONS(4058), + [anon_sym_for] = ACTIONS(4058), + [anon_sym_POUND] = ACTIONS(4058), + [anon_sym_asm] = ACTIONS(4058), + [anon_sym_AT_LBRACK] = ACTIONS(4058), + [sym___double_quote] = ACTIONS(4058), + [sym___single_quote] = ACTIONS(4058), + [sym___c_double_quote] = ACTIONS(4058), + [sym___c_single_quote] = ACTIONS(4058), + [sym___r_double_quote] = ACTIONS(4058), + [sym___r_single_quote] = ACTIONS(4058), }, [1445] = { - [ts_builtin_sym_end] = ACTIONS(3209), - [sym_identifier] = ACTIONS(3211), - [anon_sym_LF] = ACTIONS(3211), - [anon_sym_CR] = ACTIONS(3211), - [anon_sym_CR_LF] = ACTIONS(3211), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3416), + [anon_sym_LF] = ACTIONS(3416), + [anon_sym_CR] = ACTIONS(3416), + [anon_sym_CR_LF] = ACTIONS(3416), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3211), - [anon_sym_LBRACE] = ACTIONS(3211), - [anon_sym_const] = ACTIONS(3211), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym___global] = ACTIONS(3211), - [anon_sym_type] = ACTIONS(3211), - [anon_sym_PIPE] = ACTIONS(3211), - [anon_sym_fn] = ACTIONS(3211), - [anon_sym_PLUS] = ACTIONS(3211), - [anon_sym_DASH] = ACTIONS(3211), - [anon_sym_STAR] = ACTIONS(3211), - [anon_sym_struct] = ACTIONS(3211), - [anon_sym_union] = ACTIONS(3211), - [anon_sym_pub] = ACTIONS(3211), - [anon_sym_mut] = ACTIONS(3211), - [anon_sym_enum] = ACTIONS(3211), - [anon_sym_interface] = ACTIONS(3211), - [anon_sym_QMARK] = ACTIONS(3211), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(3211), - [anon_sym_spawn] = ACTIONS(3211), - [anon_sym_json_DOTdecode] = ACTIONS(3211), - [anon_sym_LBRACK2] = ACTIONS(3211), - [anon_sym_TILDE] = ACTIONS(3211), - [anon_sym_CARET] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(3211), - [anon_sym_LT_DASH] = ACTIONS(3211), - [sym_none] = ACTIONS(3211), - [sym_true] = ACTIONS(3211), - [sym_false] = ACTIONS(3211), - [sym_nil] = ACTIONS(3211), - [anon_sym_if] = ACTIONS(3211), - [anon_sym_DOLLARif] = ACTIONS(3211), - [anon_sym_match] = ACTIONS(3211), - [anon_sym_select] = ACTIONS(3211), - [anon_sym_lock] = ACTIONS(3211), - [anon_sym_rlock] = ACTIONS(3211), - [anon_sym_unsafe] = ACTIONS(3211), - [anon_sym_sql] = ACTIONS(3211), - [sym_int_literal] = ACTIONS(3211), - [sym_float_literal] = ACTIONS(3211), - [sym_rune_literal] = ACTIONS(3211), - [sym_pseudo_compile_time_identifier] = ACTIONS(3211), - [anon_sym_shared] = ACTIONS(3211), - [anon_sym_map_LBRACK] = ACTIONS(3211), - [anon_sym_chan] = ACTIONS(3211), - [anon_sym_thread] = ACTIONS(3211), - [anon_sym_atomic] = ACTIONS(3211), - [anon_sym_assert] = ACTIONS(3211), - [anon_sym_defer] = ACTIONS(3211), - [anon_sym_goto] = ACTIONS(3211), - [anon_sym_break] = ACTIONS(3211), - [anon_sym_continue] = ACTIONS(3211), - [anon_sym_return] = ACTIONS(3211), - [anon_sym_DOLLARfor] = ACTIONS(3211), - [anon_sym_for] = ACTIONS(3211), - [anon_sym_POUND] = ACTIONS(3211), - [anon_sym_asm] = ACTIONS(3211), - [anon_sym_AT_LBRACK] = ACTIONS(3211), - [sym___double_quote] = ACTIONS(3211), - [sym___single_quote] = ACTIONS(3211), - [sym___c_double_quote] = ACTIONS(3211), - [sym___c_single_quote] = ACTIONS(3211), - [sym___r_double_quote] = ACTIONS(3211), - [sym___r_single_quote] = ACTIONS(3211), + [anon_sym_DOT] = ACTIONS(3416), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_const] = ACTIONS(3416), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym___global] = ACTIONS(3416), + [anon_sym_type] = ACTIONS(3416), + [anon_sym_PIPE] = ACTIONS(3416), + [anon_sym_fn] = ACTIONS(3416), + [anon_sym_PLUS] = ACTIONS(3416), + [anon_sym_DASH] = ACTIONS(3416), + [anon_sym_STAR] = ACTIONS(3416), + [anon_sym_LBRACK] = ACTIONS(3414), + [anon_sym_struct] = ACTIONS(3416), + [anon_sym_union] = ACTIONS(3416), + [anon_sym_pub] = ACTIONS(3416), + [anon_sym_mut] = ACTIONS(3416), + [anon_sym_enum] = ACTIONS(3416), + [anon_sym_interface] = ACTIONS(3416), + [anon_sym_QMARK] = ACTIONS(3416), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_go] = ACTIONS(3416), + [anon_sym_spawn] = ACTIONS(3416), + [anon_sym_json_DOTdecode] = ACTIONS(3416), + [anon_sym_LBRACK2] = ACTIONS(3416), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_CARET] = ACTIONS(3416), + [anon_sym_AMP] = ACTIONS(3416), + [anon_sym_LT_DASH] = ACTIONS(3416), + [sym_none] = ACTIONS(3416), + [sym_true] = ACTIONS(3416), + [sym_false] = ACTIONS(3416), + [sym_nil] = ACTIONS(3416), + [anon_sym_if] = ACTIONS(3416), + [anon_sym_DOLLARif] = ACTIONS(3416), + [anon_sym_match] = ACTIONS(3416), + [anon_sym_select] = ACTIONS(3416), + [anon_sym_lock] = ACTIONS(3416), + [anon_sym_rlock] = ACTIONS(3416), + [anon_sym_unsafe] = ACTIONS(3416), + [anon_sym_sql] = ACTIONS(3416), + [sym_int_literal] = ACTIONS(3416), + [sym_float_literal] = ACTIONS(3416), + [sym_rune_literal] = ACTIONS(3416), + [sym_pseudo_compile_time_identifier] = ACTIONS(3416), + [anon_sym_shared] = ACTIONS(3416), + [anon_sym_map_LBRACK] = ACTIONS(3416), + [anon_sym_chan] = ACTIONS(3416), + [anon_sym_thread] = ACTIONS(3416), + [anon_sym_atomic] = ACTIONS(3416), + [anon_sym_assert] = ACTIONS(3416), + [anon_sym_defer] = ACTIONS(3416), + [anon_sym_goto] = ACTIONS(3416), + [anon_sym_break] = ACTIONS(3416), + [anon_sym_continue] = ACTIONS(3416), + [anon_sym_return] = ACTIONS(3416), + [anon_sym_DOLLARfor] = ACTIONS(3416), + [anon_sym_for] = ACTIONS(3416), + [anon_sym_POUND] = ACTIONS(3416), + [anon_sym_asm] = ACTIONS(3416), + [anon_sym_AT_LBRACK] = ACTIONS(3416), + [sym___double_quote] = ACTIONS(3416), + [sym___single_quote] = ACTIONS(3416), + [sym___c_double_quote] = ACTIONS(3416), + [sym___c_single_quote] = ACTIONS(3416), + [sym___r_double_quote] = ACTIONS(3416), + [sym___r_single_quote] = ACTIONS(3416), }, [1446] = { - [sym_block] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(4048), - [sym_identifier] = ACTIONS(4050), - [anon_sym_LF] = ACTIONS(4050), - [anon_sym_CR] = ACTIONS(4050), - [anon_sym_CR_LF] = ACTIONS(4050), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3412), + [anon_sym_LF] = ACTIONS(3412), + [anon_sym_CR] = ACTIONS(3412), + [anon_sym_CR_LF] = ACTIONS(3412), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4050), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(4050), - [anon_sym___global] = ACTIONS(4050), - [anon_sym_type] = ACTIONS(4050), - [anon_sym_fn] = ACTIONS(4050), - [anon_sym_PLUS] = ACTIONS(4050), - [anon_sym_DASH] = ACTIONS(4050), - [anon_sym_STAR] = ACTIONS(4050), - [anon_sym_struct] = ACTIONS(4050), - [anon_sym_union] = ACTIONS(4050), - [anon_sym_pub] = ACTIONS(4050), - [anon_sym_mut] = ACTIONS(4050), - [anon_sym_enum] = ACTIONS(4050), - [anon_sym_interface] = ACTIONS(4050), - [anon_sym_QMARK] = ACTIONS(4050), - [anon_sym_BANG] = ACTIONS(4050), - [anon_sym_go] = ACTIONS(4050), - [anon_sym_spawn] = ACTIONS(4050), - [anon_sym_json_DOTdecode] = ACTIONS(4050), - [anon_sym_LBRACK2] = ACTIONS(4050), - [anon_sym_TILDE] = ACTIONS(4050), - [anon_sym_CARET] = ACTIONS(4050), - [anon_sym_AMP] = ACTIONS(4050), - [anon_sym_LT_DASH] = ACTIONS(4050), - [sym_none] = ACTIONS(4050), - [sym_true] = ACTIONS(4050), - [sym_false] = ACTIONS(4050), - [sym_nil] = ACTIONS(4050), - [anon_sym_if] = ACTIONS(4050), - [anon_sym_DOLLARif] = ACTIONS(4050), - [anon_sym_match] = ACTIONS(4050), - [anon_sym_select] = ACTIONS(4050), - [anon_sym_lock] = ACTIONS(4050), - [anon_sym_rlock] = ACTIONS(4050), - [anon_sym_unsafe] = ACTIONS(4050), - [anon_sym_sql] = ACTIONS(4050), - [sym_int_literal] = ACTIONS(4050), - [sym_float_literal] = ACTIONS(4050), - [sym_rune_literal] = ACTIONS(4050), - [sym_pseudo_compile_time_identifier] = ACTIONS(4050), - [anon_sym_shared] = ACTIONS(4050), - [anon_sym_map_LBRACK] = ACTIONS(4050), - [anon_sym_chan] = ACTIONS(4050), - [anon_sym_thread] = ACTIONS(4050), - [anon_sym_atomic] = ACTIONS(4050), - [anon_sym_assert] = ACTIONS(4050), - [anon_sym_defer] = ACTIONS(4050), - [anon_sym_goto] = ACTIONS(4050), - [anon_sym_break] = ACTIONS(4050), - [anon_sym_continue] = ACTIONS(4050), - [anon_sym_return] = ACTIONS(4050), - [anon_sym_DOLLARfor] = ACTIONS(4050), - [anon_sym_for] = ACTIONS(4050), - [anon_sym_POUND] = ACTIONS(4050), - [anon_sym_asm] = ACTIONS(4050), - [anon_sym_AT_LBRACK] = ACTIONS(4050), - [sym___double_quote] = ACTIONS(4050), - [sym___single_quote] = ACTIONS(4050), - [sym___c_double_quote] = ACTIONS(4050), - [sym___c_single_quote] = ACTIONS(4050), - [sym___r_double_quote] = ACTIONS(4050), - [sym___r_single_quote] = ACTIONS(4050), + [anon_sym_DOT] = ACTIONS(3412), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_const] = ACTIONS(3412), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym___global] = ACTIONS(3412), + [anon_sym_type] = ACTIONS(3412), + [anon_sym_PIPE] = ACTIONS(3412), + [anon_sym_fn] = ACTIONS(3412), + [anon_sym_PLUS] = ACTIONS(3412), + [anon_sym_DASH] = ACTIONS(3412), + [anon_sym_STAR] = ACTIONS(3412), + [anon_sym_LBRACK] = ACTIONS(3410), + [anon_sym_struct] = ACTIONS(3412), + [anon_sym_union] = ACTIONS(3412), + [anon_sym_pub] = ACTIONS(3412), + [anon_sym_mut] = ACTIONS(3412), + [anon_sym_enum] = ACTIONS(3412), + [anon_sym_interface] = ACTIONS(3412), + [anon_sym_QMARK] = ACTIONS(3412), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_go] = ACTIONS(3412), + [anon_sym_spawn] = ACTIONS(3412), + [anon_sym_json_DOTdecode] = ACTIONS(3412), + [anon_sym_LBRACK2] = ACTIONS(3412), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_CARET] = ACTIONS(3412), + [anon_sym_AMP] = ACTIONS(3412), + [anon_sym_LT_DASH] = ACTIONS(3412), + [sym_none] = ACTIONS(3412), + [sym_true] = ACTIONS(3412), + [sym_false] = ACTIONS(3412), + [sym_nil] = ACTIONS(3412), + [anon_sym_if] = ACTIONS(3412), + [anon_sym_DOLLARif] = ACTIONS(3412), + [anon_sym_match] = ACTIONS(3412), + [anon_sym_select] = ACTIONS(3412), + [anon_sym_lock] = ACTIONS(3412), + [anon_sym_rlock] = ACTIONS(3412), + [anon_sym_unsafe] = ACTIONS(3412), + [anon_sym_sql] = ACTIONS(3412), + [sym_int_literal] = ACTIONS(3412), + [sym_float_literal] = ACTIONS(3412), + [sym_rune_literal] = ACTIONS(3412), + [sym_pseudo_compile_time_identifier] = ACTIONS(3412), + [anon_sym_shared] = ACTIONS(3412), + [anon_sym_map_LBRACK] = ACTIONS(3412), + [anon_sym_chan] = ACTIONS(3412), + [anon_sym_thread] = ACTIONS(3412), + [anon_sym_atomic] = ACTIONS(3412), + [anon_sym_assert] = ACTIONS(3412), + [anon_sym_defer] = ACTIONS(3412), + [anon_sym_goto] = ACTIONS(3412), + [anon_sym_break] = ACTIONS(3412), + [anon_sym_continue] = ACTIONS(3412), + [anon_sym_return] = ACTIONS(3412), + [anon_sym_DOLLARfor] = ACTIONS(3412), + [anon_sym_for] = ACTIONS(3412), + [anon_sym_POUND] = ACTIONS(3412), + [anon_sym_asm] = ACTIONS(3412), + [anon_sym_AT_LBRACK] = ACTIONS(3412), + [sym___double_quote] = ACTIONS(3412), + [sym___single_quote] = ACTIONS(3412), + [sym___c_double_quote] = ACTIONS(3412), + [sym___c_single_quote] = ACTIONS(3412), + [sym___r_double_quote] = ACTIONS(3412), + [sym___r_single_quote] = ACTIONS(3412), }, [1447] = { - [sym_block] = STATE(1594), - [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(495), - [anon_sym_DOT] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(4052), - [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), - [sym_pseudo_compile_time_identifier] = 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), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_RPAREN] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_RBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(613), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(613), }, [1448] = { - [sym_block] = STATE(1593), - [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), + [ts_builtin_sym_end] = ACTIONS(3191), + [sym_identifier] = ACTIONS(3193), + [anon_sym_LF] = ACTIONS(3193), + [anon_sym_CR] = ACTIONS(3193), + [anon_sym_CR_LF] = ACTIONS(3193), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4060), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4060), - [anon_sym_LPAREN] = ACTIONS(4060), - [anon_sym___global] = ACTIONS(4060), - [anon_sym_type] = ACTIONS(4060), - [anon_sym_fn] = ACTIONS(4060), - [anon_sym_PLUS] = ACTIONS(4060), - [anon_sym_DASH] = ACTIONS(4060), - [anon_sym_STAR] = ACTIONS(4060), - [anon_sym_struct] = ACTIONS(4060), - [anon_sym_union] = ACTIONS(4060), - [anon_sym_pub] = ACTIONS(4060), - [anon_sym_mut] = ACTIONS(4060), - [anon_sym_enum] = ACTIONS(4060), - [anon_sym_interface] = ACTIONS(4060), - [anon_sym_QMARK] = ACTIONS(4060), - [anon_sym_BANG] = ACTIONS(4060), - [anon_sym_go] = ACTIONS(4060), - [anon_sym_spawn] = ACTIONS(4060), - [anon_sym_json_DOTdecode] = ACTIONS(4060), - [anon_sym_LBRACK2] = ACTIONS(4060), - [anon_sym_TILDE] = ACTIONS(4060), - [anon_sym_CARET] = ACTIONS(4060), - [anon_sym_AMP] = ACTIONS(4060), - [anon_sym_LT_DASH] = ACTIONS(4060), - [sym_none] = ACTIONS(4060), - [sym_true] = ACTIONS(4060), - [sym_false] = ACTIONS(4060), - [sym_nil] = ACTIONS(4060), - [anon_sym_if] = ACTIONS(4060), - [anon_sym_DOLLARif] = ACTIONS(4060), - [anon_sym_match] = ACTIONS(4060), - [anon_sym_select] = ACTIONS(4060), - [anon_sym_lock] = ACTIONS(4060), - [anon_sym_rlock] = ACTIONS(4060), - [anon_sym_unsafe] = ACTIONS(4060), - [anon_sym_sql] = ACTIONS(4060), - [sym_int_literal] = ACTIONS(4060), - [sym_float_literal] = ACTIONS(4060), - [sym_rune_literal] = ACTIONS(4060), - [sym_pseudo_compile_time_identifier] = ACTIONS(4060), - [anon_sym_shared] = ACTIONS(4060), - [anon_sym_map_LBRACK] = ACTIONS(4060), - [anon_sym_chan] = ACTIONS(4060), - [anon_sym_thread] = ACTIONS(4060), - [anon_sym_atomic] = ACTIONS(4060), - [anon_sym_assert] = ACTIONS(4060), - [anon_sym_defer] = ACTIONS(4060), - [anon_sym_goto] = ACTIONS(4060), - [anon_sym_break] = ACTIONS(4060), - [anon_sym_continue] = ACTIONS(4060), - [anon_sym_return] = ACTIONS(4060), - [anon_sym_DOLLARfor] = ACTIONS(4060), - [anon_sym_for] = ACTIONS(4060), - [anon_sym_POUND] = ACTIONS(4060), - [anon_sym_asm] = ACTIONS(4060), - [anon_sym_AT_LBRACK] = ACTIONS(4060), - [sym___double_quote] = ACTIONS(4060), - [sym___single_quote] = ACTIONS(4060), - [sym___c_double_quote] = ACTIONS(4060), - [sym___c_single_quote] = ACTIONS(4060), - [sym___r_double_quote] = ACTIONS(4060), - [sym___r_single_quote] = ACTIONS(4060), + [anon_sym_DOT] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_const] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym___global] = ACTIONS(3193), + [anon_sym_type] = ACTIONS(3193), + [anon_sym_PIPE] = ACTIONS(3193), + [anon_sym_fn] = ACTIONS(3193), + [anon_sym_PLUS] = ACTIONS(3193), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_struct] = ACTIONS(3193), + [anon_sym_union] = ACTIONS(3193), + [anon_sym_pub] = ACTIONS(3193), + [anon_sym_mut] = ACTIONS(3193), + [anon_sym_enum] = ACTIONS(3193), + [anon_sym_interface] = ACTIONS(3193), + [anon_sym_QMARK] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_go] = ACTIONS(3193), + [anon_sym_spawn] = ACTIONS(3193), + [anon_sym_json_DOTdecode] = ACTIONS(3193), + [anon_sym_LBRACK2] = ACTIONS(3193), + [anon_sym_TILDE] = ACTIONS(3193), + [anon_sym_CARET] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_LT_DASH] = ACTIONS(3193), + [sym_none] = ACTIONS(3193), + [sym_true] = ACTIONS(3193), + [sym_false] = ACTIONS(3193), + [sym_nil] = ACTIONS(3193), + [anon_sym_if] = ACTIONS(3193), + [anon_sym_DOLLARif] = ACTIONS(3193), + [anon_sym_match] = ACTIONS(3193), + [anon_sym_select] = ACTIONS(3193), + [anon_sym_lock] = ACTIONS(3193), + [anon_sym_rlock] = ACTIONS(3193), + [anon_sym_unsafe] = ACTIONS(3193), + [anon_sym_sql] = ACTIONS(3193), + [sym_int_literal] = ACTIONS(3193), + [sym_float_literal] = ACTIONS(3193), + [sym_rune_literal] = ACTIONS(3193), + [sym_pseudo_compile_time_identifier] = ACTIONS(3193), + [anon_sym_shared] = ACTIONS(3193), + [anon_sym_map_LBRACK] = ACTIONS(3193), + [anon_sym_chan] = ACTIONS(3193), + [anon_sym_thread] = ACTIONS(3193), + [anon_sym_atomic] = ACTIONS(3193), + [anon_sym_assert] = ACTIONS(3193), + [anon_sym_defer] = ACTIONS(3193), + [anon_sym_goto] = ACTIONS(3193), + [anon_sym_break] = ACTIONS(3193), + [anon_sym_continue] = ACTIONS(3193), + [anon_sym_return] = ACTIONS(3193), + [anon_sym_DOLLARfor] = ACTIONS(3193), + [anon_sym_for] = ACTIONS(3193), + [anon_sym_POUND] = ACTIONS(3193), + [anon_sym_asm] = ACTIONS(3193), + [anon_sym_AT_LBRACK] = ACTIONS(3193), + [sym___double_quote] = ACTIONS(3193), + [sym___single_quote] = ACTIONS(3193), + [sym___c_double_quote] = ACTIONS(3193), + [sym___c_single_quote] = ACTIONS(3193), + [sym___r_double_quote] = ACTIONS(3193), + [sym___r_single_quote] = ACTIONS(3193), }, [1449] = { - [ts_builtin_sym_end] = ACTIONS(3377), - [sym_identifier] = ACTIONS(3379), - [anon_sym_LF] = ACTIONS(3379), - [anon_sym_CR] = ACTIONS(3379), - [anon_sym_CR_LF] = ACTIONS(3379), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_LF] = ACTIONS(2715), + [anon_sym_CR] = ACTIONS(2715), + [anon_sym_CR_LF] = ACTIONS(2715), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym___global] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3379), - [anon_sym_fn] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_struct] = ACTIONS(3379), - [anon_sym_union] = ACTIONS(3379), - [anon_sym_pub] = ACTIONS(3379), - [anon_sym_mut] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_QMARK] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_go] = ACTIONS(3379), - [anon_sym_spawn] = ACTIONS(3379), - [anon_sym_json_DOTdecode] = ACTIONS(3379), - [anon_sym_LBRACK2] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_CARET] = ACTIONS(3379), - [anon_sym_AMP] = ACTIONS(3379), - [anon_sym_LT_DASH] = ACTIONS(3379), - [sym_none] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_nil] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_DOLLARif] = ACTIONS(3379), - [anon_sym_match] = ACTIONS(3379), - [anon_sym_select] = ACTIONS(3379), - [anon_sym_lock] = ACTIONS(3379), - [anon_sym_rlock] = ACTIONS(3379), - [anon_sym_unsafe] = ACTIONS(3379), - [anon_sym_sql] = ACTIONS(3379), - [sym_int_literal] = ACTIONS(3379), - [sym_float_literal] = ACTIONS(3379), - [sym_rune_literal] = ACTIONS(3379), - [sym_pseudo_compile_time_identifier] = ACTIONS(3379), - [anon_sym_shared] = ACTIONS(3379), - [anon_sym_map_LBRACK] = ACTIONS(3379), - [anon_sym_chan] = ACTIONS(3379), - [anon_sym_thread] = ACTIONS(3379), - [anon_sym_atomic] = ACTIONS(3379), - [anon_sym_assert] = ACTIONS(3379), - [anon_sym_defer] = ACTIONS(3379), - [anon_sym_goto] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_DOLLARfor] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_POUND] = ACTIONS(3379), - [anon_sym_asm] = ACTIONS(3379), - [anon_sym_AT_LBRACK] = ACTIONS(3379), - [sym___double_quote] = ACTIONS(3379), - [sym___single_quote] = ACTIONS(3379), - [sym___c_double_quote] = ACTIONS(3379), - [sym___c_single_quote] = ACTIONS(3379), - [sym___r_double_quote] = ACTIONS(3379), - [sym___r_single_quote] = ACTIONS(3379), + [anon_sym_DOT] = ACTIONS(2715), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym___global] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_PIPE] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_PLUS] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2715), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_mut] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_interface] = ACTIONS(2715), + [anon_sym_QMARK] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2715), + [anon_sym_go] = ACTIONS(2715), + [anon_sym_spawn] = ACTIONS(2715), + [anon_sym_json_DOTdecode] = ACTIONS(2715), + [anon_sym_LBRACK2] = ACTIONS(2715), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2715), + [anon_sym_LT_DASH] = ACTIONS(2715), + [sym_none] = ACTIONS(2715), + [sym_true] = ACTIONS(2715), + [sym_false] = ACTIONS(2715), + [sym_nil] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_DOLLARif] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_select] = ACTIONS(2715), + [anon_sym_lock] = ACTIONS(2715), + [anon_sym_rlock] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_sql] = ACTIONS(2715), + [sym_int_literal] = ACTIONS(2715), + [sym_float_literal] = ACTIONS(2715), + [sym_rune_literal] = ACTIONS(2715), + [sym_pseudo_compile_time_identifier] = ACTIONS(2715), + [anon_sym_shared] = ACTIONS(2715), + [anon_sym_map_LBRACK] = ACTIONS(2715), + [anon_sym_chan] = ACTIONS(2715), + [anon_sym_thread] = ACTIONS(2715), + [anon_sym_atomic] = ACTIONS(2715), + [anon_sym_assert] = ACTIONS(2715), + [anon_sym_defer] = ACTIONS(2715), + [anon_sym_goto] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_DOLLARfor] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_asm] = ACTIONS(2715), + [anon_sym_AT_LBRACK] = ACTIONS(2715), + [sym___double_quote] = ACTIONS(2715), + [sym___single_quote] = ACTIONS(2715), + [sym___c_double_quote] = ACTIONS(2715), + [sym___c_single_quote] = ACTIONS(2715), + [sym___r_double_quote] = ACTIONS(2715), + [sym___r_single_quote] = ACTIONS(2715), }, [1450] = { - [sym_block] = STATE(1518), - [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), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(1761), + [anon_sym_LF] = ACTIONS(1761), + [anon_sym_CR] = ACTIONS(1761), + [anon_sym_CR_LF] = ACTIONS(1761), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4064), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4064), - [anon_sym_LPAREN] = ACTIONS(4064), - [anon_sym___global] = ACTIONS(4064), - [anon_sym_type] = ACTIONS(4064), - [anon_sym_fn] = ACTIONS(4064), - [anon_sym_PLUS] = ACTIONS(4064), - [anon_sym_DASH] = ACTIONS(4064), - [anon_sym_STAR] = ACTIONS(4064), - [anon_sym_struct] = ACTIONS(4064), - [anon_sym_union] = ACTIONS(4064), - [anon_sym_pub] = ACTIONS(4064), - [anon_sym_mut] = ACTIONS(4064), - [anon_sym_enum] = ACTIONS(4064), - [anon_sym_interface] = ACTIONS(4064), - [anon_sym_QMARK] = ACTIONS(4064), - [anon_sym_BANG] = ACTIONS(4064), - [anon_sym_go] = ACTIONS(4064), - [anon_sym_spawn] = ACTIONS(4064), - [anon_sym_json_DOTdecode] = ACTIONS(4064), - [anon_sym_LBRACK2] = ACTIONS(4064), - [anon_sym_TILDE] = ACTIONS(4064), - [anon_sym_CARET] = ACTIONS(4064), - [anon_sym_AMP] = ACTIONS(4064), - [anon_sym_LT_DASH] = ACTIONS(4064), - [sym_none] = ACTIONS(4064), - [sym_true] = ACTIONS(4064), - [sym_false] = ACTIONS(4064), - [sym_nil] = ACTIONS(4064), - [anon_sym_if] = ACTIONS(4064), - [anon_sym_DOLLARif] = ACTIONS(4064), - [anon_sym_match] = ACTIONS(4064), - [anon_sym_select] = ACTIONS(4064), - [anon_sym_lock] = ACTIONS(4064), - [anon_sym_rlock] = ACTIONS(4064), - [anon_sym_unsafe] = ACTIONS(4064), - [anon_sym_sql] = ACTIONS(4064), - [sym_int_literal] = ACTIONS(4064), - [sym_float_literal] = ACTIONS(4064), - [sym_rune_literal] = ACTIONS(4064), - [sym_pseudo_compile_time_identifier] = ACTIONS(4064), - [anon_sym_shared] = ACTIONS(4064), - [anon_sym_map_LBRACK] = ACTIONS(4064), - [anon_sym_chan] = ACTIONS(4064), - [anon_sym_thread] = ACTIONS(4064), - [anon_sym_atomic] = ACTIONS(4064), - [anon_sym_assert] = ACTIONS(4064), - [anon_sym_defer] = ACTIONS(4064), - [anon_sym_goto] = ACTIONS(4064), - [anon_sym_break] = ACTIONS(4064), - [anon_sym_continue] = ACTIONS(4064), - [anon_sym_return] = ACTIONS(4064), - [anon_sym_DOLLARfor] = ACTIONS(4064), - [anon_sym_for] = ACTIONS(4064), - [anon_sym_POUND] = ACTIONS(4064), - [anon_sym_asm] = ACTIONS(4064), - [anon_sym_AT_LBRACK] = ACTIONS(4064), - [sym___double_quote] = ACTIONS(4064), - [sym___single_quote] = ACTIONS(4064), - [sym___c_double_quote] = ACTIONS(4064), - [sym___c_single_quote] = ACTIONS(4064), - [sym___r_double_quote] = ACTIONS(4064), - [sym___r_single_quote] = ACTIONS(4064), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1761), + [anon_sym_COMMA] = ACTIONS(1761), + [anon_sym_const] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1761), + [anon_sym___global] = ACTIONS(1761), + [anon_sym_type] = ACTIONS(1761), + [anon_sym_fn] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1761), + [anon_sym_struct] = ACTIONS(1761), + [anon_sym_union] = ACTIONS(1761), + [anon_sym_pub] = ACTIONS(1761), + [anon_sym_mut] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1761), + [anon_sym_QMARK] = ACTIONS(1761), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_go] = ACTIONS(1761), + [anon_sym_spawn] = ACTIONS(1761), + [anon_sym_json_DOTdecode] = ACTIONS(1761), + [anon_sym_LBRACK2] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1761), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_LT_DASH] = ACTIONS(1761), + [sym_none] = ACTIONS(1761), + [sym_true] = ACTIONS(1761), + [sym_false] = ACTIONS(1761), + [sym_nil] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_DOLLARif] = ACTIONS(1761), + [anon_sym_match] = ACTIONS(1761), + [anon_sym_select] = ACTIONS(1761), + [anon_sym_lock] = ACTIONS(1761), + [anon_sym_rlock] = ACTIONS(1761), + [anon_sym_unsafe] = ACTIONS(1761), + [anon_sym_sql] = ACTIONS(1761), + [sym_int_literal] = ACTIONS(1761), + [sym_float_literal] = ACTIONS(1761), + [sym_rune_literal] = ACTIONS(1761), + [sym_pseudo_compile_time_identifier] = ACTIONS(1761), + [anon_sym_shared] = ACTIONS(1761), + [anon_sym_map_LBRACK] = ACTIONS(1761), + [anon_sym_chan] = ACTIONS(1761), + [anon_sym_thread] = ACTIONS(1761), + [anon_sym_atomic] = ACTIONS(1761), + [anon_sym_assert] = ACTIONS(1761), + [anon_sym_defer] = ACTIONS(1761), + [anon_sym_goto] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_DOLLARfor] = ACTIONS(1761), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1761), + [anon_sym_asm] = ACTIONS(1761), + [anon_sym_AT_LBRACK] = ACTIONS(1761), + [sym___double_quote] = ACTIONS(1761), + [sym___single_quote] = ACTIONS(1761), + [sym___c_double_quote] = ACTIONS(1761), + [sym___c_single_quote] = ACTIONS(1761), + [sym___r_double_quote] = ACTIONS(1761), + [sym___r_single_quote] = ACTIONS(1761), }, [1451] = { - [ts_builtin_sym_end] = ACTIONS(3213), - [sym_identifier] = ACTIONS(3215), - [anon_sym_LF] = ACTIONS(3215), - [anon_sym_CR] = ACTIONS(3215), - [anon_sym_CR_LF] = ACTIONS(3215), + [sym_block] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(4060), + [sym_identifier] = ACTIONS(4062), + [anon_sym_LF] = ACTIONS(4062), + [anon_sym_CR] = ACTIONS(4062), + [anon_sym_CR_LF] = ACTIONS(4062), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3215), - [anon_sym_LBRACE] = ACTIONS(3215), - [anon_sym_const] = ACTIONS(3215), - [anon_sym_LPAREN] = ACTIONS(3215), - [anon_sym___global] = ACTIONS(3215), - [anon_sym_type] = ACTIONS(3215), - [anon_sym_PIPE] = ACTIONS(3215), - [anon_sym_fn] = ACTIONS(3215), - [anon_sym_PLUS] = ACTIONS(3215), - [anon_sym_DASH] = ACTIONS(3215), - [anon_sym_STAR] = ACTIONS(3215), - [anon_sym_struct] = ACTIONS(3215), - [anon_sym_union] = ACTIONS(3215), - [anon_sym_pub] = ACTIONS(3215), - [anon_sym_mut] = ACTIONS(3215), - [anon_sym_enum] = ACTIONS(3215), - [anon_sym_interface] = ACTIONS(3215), - [anon_sym_QMARK] = ACTIONS(3215), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_go] = ACTIONS(3215), - [anon_sym_spawn] = ACTIONS(3215), - [anon_sym_json_DOTdecode] = ACTIONS(3215), - [anon_sym_LBRACK2] = ACTIONS(3215), - [anon_sym_TILDE] = ACTIONS(3215), - [anon_sym_CARET] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(3215), - [sym_none] = ACTIONS(3215), - [sym_true] = ACTIONS(3215), - [sym_false] = ACTIONS(3215), - [sym_nil] = ACTIONS(3215), - [anon_sym_if] = ACTIONS(3215), - [anon_sym_DOLLARif] = ACTIONS(3215), - [anon_sym_match] = ACTIONS(3215), - [anon_sym_select] = ACTIONS(3215), - [anon_sym_lock] = ACTIONS(3215), - [anon_sym_rlock] = ACTIONS(3215), - [anon_sym_unsafe] = ACTIONS(3215), - [anon_sym_sql] = ACTIONS(3215), - [sym_int_literal] = ACTIONS(3215), - [sym_float_literal] = ACTIONS(3215), - [sym_rune_literal] = ACTIONS(3215), - [sym_pseudo_compile_time_identifier] = ACTIONS(3215), - [anon_sym_shared] = ACTIONS(3215), - [anon_sym_map_LBRACK] = ACTIONS(3215), - [anon_sym_chan] = ACTIONS(3215), - [anon_sym_thread] = ACTIONS(3215), - [anon_sym_atomic] = ACTIONS(3215), - [anon_sym_assert] = ACTIONS(3215), - [anon_sym_defer] = ACTIONS(3215), - [anon_sym_goto] = ACTIONS(3215), - [anon_sym_break] = ACTIONS(3215), - [anon_sym_continue] = ACTIONS(3215), - [anon_sym_return] = ACTIONS(3215), - [anon_sym_DOLLARfor] = ACTIONS(3215), - [anon_sym_for] = ACTIONS(3215), - [anon_sym_POUND] = ACTIONS(3215), - [anon_sym_asm] = ACTIONS(3215), - [anon_sym_AT_LBRACK] = ACTIONS(3215), - [sym___double_quote] = ACTIONS(3215), - [sym___single_quote] = ACTIONS(3215), - [sym___c_double_quote] = ACTIONS(3215), - [sym___c_single_quote] = ACTIONS(3215), - [sym___r_double_quote] = ACTIONS(3215), - [sym___r_single_quote] = ACTIONS(3215), + [anon_sym_DOT] = ACTIONS(4062), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_const] = ACTIONS(4062), + [anon_sym_LPAREN] = ACTIONS(4062), + [anon_sym___global] = ACTIONS(4062), + [anon_sym_type] = ACTIONS(4062), + [anon_sym_fn] = ACTIONS(4062), + [anon_sym_PLUS] = ACTIONS(4062), + [anon_sym_DASH] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(4062), + [anon_sym_struct] = ACTIONS(4062), + [anon_sym_union] = ACTIONS(4062), + [anon_sym_pub] = ACTIONS(4062), + [anon_sym_mut] = ACTIONS(4062), + [anon_sym_enum] = ACTIONS(4062), + [anon_sym_interface] = ACTIONS(4062), + [anon_sym_QMARK] = ACTIONS(4062), + [anon_sym_BANG] = ACTIONS(4062), + [anon_sym_go] = ACTIONS(4062), + [anon_sym_spawn] = ACTIONS(4062), + [anon_sym_json_DOTdecode] = ACTIONS(4062), + [anon_sym_LBRACK2] = ACTIONS(4062), + [anon_sym_TILDE] = ACTIONS(4062), + [anon_sym_CARET] = ACTIONS(4062), + [anon_sym_AMP] = ACTIONS(4062), + [anon_sym_LT_DASH] = ACTIONS(4062), + [sym_none] = ACTIONS(4062), + [sym_true] = ACTIONS(4062), + [sym_false] = ACTIONS(4062), + [sym_nil] = ACTIONS(4062), + [anon_sym_if] = ACTIONS(4062), + [anon_sym_DOLLARif] = ACTIONS(4062), + [anon_sym_match] = ACTIONS(4062), + [anon_sym_select] = ACTIONS(4062), + [anon_sym_lock] = ACTIONS(4062), + [anon_sym_rlock] = ACTIONS(4062), + [anon_sym_unsafe] = ACTIONS(4062), + [anon_sym_sql] = ACTIONS(4062), + [sym_int_literal] = ACTIONS(4062), + [sym_float_literal] = ACTIONS(4062), + [sym_rune_literal] = ACTIONS(4062), + [sym_pseudo_compile_time_identifier] = ACTIONS(4062), + [anon_sym_shared] = ACTIONS(4062), + [anon_sym_map_LBRACK] = ACTIONS(4062), + [anon_sym_chan] = ACTIONS(4062), + [anon_sym_thread] = ACTIONS(4062), + [anon_sym_atomic] = ACTIONS(4062), + [anon_sym_assert] = ACTIONS(4062), + [anon_sym_defer] = ACTIONS(4062), + [anon_sym_goto] = ACTIONS(4062), + [anon_sym_break] = ACTIONS(4062), + [anon_sym_continue] = ACTIONS(4062), + [anon_sym_return] = ACTIONS(4062), + [anon_sym_DOLLARfor] = ACTIONS(4062), + [anon_sym_for] = ACTIONS(4062), + [anon_sym_POUND] = ACTIONS(4062), + [anon_sym_asm] = ACTIONS(4062), + [anon_sym_AT_LBRACK] = ACTIONS(4062), + [sym___double_quote] = ACTIONS(4062), + [sym___single_quote] = ACTIONS(4062), + [sym___c_double_quote] = ACTIONS(4062), + [sym___c_single_quote] = ACTIONS(4062), + [sym___r_double_quote] = ACTIONS(4062), + [sym___r_single_quote] = ACTIONS(4062), }, [1452] = { - [sym_label_reference] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(4066), - [sym_identifier] = ACTIONS(4068), - [anon_sym_LF] = ACTIONS(4070), - [anon_sym_CR] = ACTIONS(4070), - [anon_sym_CR_LF] = ACTIONS(4070), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2981), + [anon_sym_LF] = ACTIONS(2981), + [anon_sym_CR] = ACTIONS(2981), + [anon_sym_CR_LF] = ACTIONS(2981), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4070), - [anon_sym_LBRACE] = ACTIONS(4070), - [anon_sym_const] = ACTIONS(4070), - [anon_sym_LPAREN] = ACTIONS(4070), - [anon_sym___global] = ACTIONS(4070), - [anon_sym_type] = ACTIONS(4070), - [anon_sym_fn] = ACTIONS(4070), - [anon_sym_PLUS] = ACTIONS(4070), - [anon_sym_DASH] = ACTIONS(4070), - [anon_sym_STAR] = ACTIONS(4070), - [anon_sym_struct] = ACTIONS(4070), - [anon_sym_union] = ACTIONS(4070), - [anon_sym_pub] = ACTIONS(4070), - [anon_sym_mut] = ACTIONS(4070), - [anon_sym_enum] = ACTIONS(4070), - [anon_sym_interface] = ACTIONS(4070), - [anon_sym_QMARK] = ACTIONS(4070), - [anon_sym_BANG] = ACTIONS(4070), - [anon_sym_go] = ACTIONS(4070), - [anon_sym_spawn] = ACTIONS(4070), - [anon_sym_json_DOTdecode] = ACTIONS(4070), - [anon_sym_LBRACK2] = ACTIONS(4070), - [anon_sym_TILDE] = ACTIONS(4070), - [anon_sym_CARET] = ACTIONS(4070), - [anon_sym_AMP] = ACTIONS(4070), - [anon_sym_LT_DASH] = ACTIONS(4070), - [sym_none] = ACTIONS(4070), - [sym_true] = ACTIONS(4070), - [sym_false] = ACTIONS(4070), - [sym_nil] = ACTIONS(4070), - [anon_sym_if] = ACTIONS(4070), - [anon_sym_DOLLARif] = ACTIONS(4070), - [anon_sym_match] = ACTIONS(4070), - [anon_sym_select] = ACTIONS(4070), - [anon_sym_lock] = ACTIONS(4070), - [anon_sym_rlock] = ACTIONS(4070), - [anon_sym_unsafe] = ACTIONS(4070), - [anon_sym_sql] = ACTIONS(4070), - [sym_int_literal] = ACTIONS(4070), - [sym_float_literal] = ACTIONS(4070), - [sym_rune_literal] = ACTIONS(4070), - [sym_pseudo_compile_time_identifier] = ACTIONS(4070), - [anon_sym_shared] = ACTIONS(4070), - [anon_sym_map_LBRACK] = ACTIONS(4070), - [anon_sym_chan] = ACTIONS(4070), - [anon_sym_thread] = ACTIONS(4070), - [anon_sym_atomic] = ACTIONS(4070), - [anon_sym_assert] = ACTIONS(4070), - [anon_sym_defer] = ACTIONS(4070), - [anon_sym_goto] = ACTIONS(4070), - [anon_sym_break] = ACTIONS(4070), - [anon_sym_continue] = ACTIONS(4070), - [anon_sym_return] = ACTIONS(4070), - [anon_sym_DOLLARfor] = ACTIONS(4070), - [anon_sym_for] = ACTIONS(4070), - [anon_sym_POUND] = ACTIONS(4070), - [anon_sym_asm] = ACTIONS(4070), - [anon_sym_AT_LBRACK] = ACTIONS(4070), - [sym___double_quote] = ACTIONS(4070), - [sym___single_quote] = ACTIONS(4070), - [sym___c_double_quote] = ACTIONS(4070), - [sym___c_single_quote] = ACTIONS(4070), - [sym___r_double_quote] = ACTIONS(4070), - [sym___r_single_quote] = ACTIONS(4070), + [anon_sym_DOT] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_const] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym___global] = ACTIONS(2981), + [anon_sym_type] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_fn] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_struct] = ACTIONS(2981), + [anon_sym_union] = ACTIONS(2981), + [anon_sym_pub] = ACTIONS(2981), + [anon_sym_mut] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_interface] = ACTIONS(2981), + [anon_sym_QMARK] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_go] = ACTIONS(2981), + [anon_sym_spawn] = ACTIONS(2981), + [anon_sym_json_DOTdecode] = ACTIONS(2981), + [anon_sym_LBRACK2] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_LT_DASH] = ACTIONS(2981), + [sym_none] = ACTIONS(2981), + [sym_true] = ACTIONS(2981), + [sym_false] = ACTIONS(2981), + [sym_nil] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_DOLLARif] = ACTIONS(2981), + [anon_sym_match] = ACTIONS(2981), + [anon_sym_select] = ACTIONS(2981), + [anon_sym_lock] = ACTIONS(2981), + [anon_sym_rlock] = ACTIONS(2981), + [anon_sym_unsafe] = ACTIONS(2981), + [anon_sym_sql] = ACTIONS(2981), + [sym_int_literal] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), + [sym_rune_literal] = ACTIONS(2981), + [sym_pseudo_compile_time_identifier] = ACTIONS(2981), + [anon_sym_shared] = ACTIONS(2981), + [anon_sym_map_LBRACK] = ACTIONS(2981), + [anon_sym_chan] = ACTIONS(2981), + [anon_sym_thread] = ACTIONS(2981), + [anon_sym_atomic] = ACTIONS(2981), + [anon_sym_assert] = ACTIONS(2981), + [anon_sym_defer] = ACTIONS(2981), + [anon_sym_goto] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_DOLLARfor] = ACTIONS(2981), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_asm] = ACTIONS(2981), + [anon_sym_AT_LBRACK] = ACTIONS(2981), + [sym___double_quote] = ACTIONS(2981), + [sym___single_quote] = ACTIONS(2981), + [sym___c_double_quote] = ACTIONS(2981), + [sym___c_single_quote] = ACTIONS(2981), + [sym___r_double_quote] = ACTIONS(2981), + [sym___r_single_quote] = ACTIONS(2981), }, [1453] = { - [sym_label_reference] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(4072), + [sym_block] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(4066), [sym_identifier] = ACTIONS(4068), - [anon_sym_LF] = ACTIONS(4074), - [anon_sym_CR] = ACTIONS(4074), - [anon_sym_CR_LF] = ACTIONS(4074), + [anon_sym_LF] = ACTIONS(4068), + [anon_sym_CR] = ACTIONS(4068), + [anon_sym_CR_LF] = ACTIONS(4068), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4074), - [anon_sym_LBRACE] = ACTIONS(4074), - [anon_sym_const] = ACTIONS(4074), - [anon_sym_LPAREN] = ACTIONS(4074), - [anon_sym___global] = ACTIONS(4074), - [anon_sym_type] = ACTIONS(4074), - [anon_sym_fn] = ACTIONS(4074), - [anon_sym_PLUS] = ACTIONS(4074), - [anon_sym_DASH] = ACTIONS(4074), - [anon_sym_STAR] = ACTIONS(4074), - [anon_sym_struct] = ACTIONS(4074), - [anon_sym_union] = ACTIONS(4074), - [anon_sym_pub] = ACTIONS(4074), - [anon_sym_mut] = ACTIONS(4074), - [anon_sym_enum] = ACTIONS(4074), - [anon_sym_interface] = ACTIONS(4074), - [anon_sym_QMARK] = ACTIONS(4074), - [anon_sym_BANG] = ACTIONS(4074), - [anon_sym_go] = ACTIONS(4074), - [anon_sym_spawn] = ACTIONS(4074), - [anon_sym_json_DOTdecode] = ACTIONS(4074), - [anon_sym_LBRACK2] = ACTIONS(4074), - [anon_sym_TILDE] = ACTIONS(4074), - [anon_sym_CARET] = ACTIONS(4074), - [anon_sym_AMP] = ACTIONS(4074), - [anon_sym_LT_DASH] = ACTIONS(4074), - [sym_none] = ACTIONS(4074), - [sym_true] = ACTIONS(4074), - [sym_false] = ACTIONS(4074), - [sym_nil] = ACTIONS(4074), - [anon_sym_if] = ACTIONS(4074), - [anon_sym_DOLLARif] = ACTIONS(4074), - [anon_sym_match] = ACTIONS(4074), - [anon_sym_select] = ACTIONS(4074), - [anon_sym_lock] = ACTIONS(4074), - [anon_sym_rlock] = ACTIONS(4074), - [anon_sym_unsafe] = ACTIONS(4074), - [anon_sym_sql] = ACTIONS(4074), - [sym_int_literal] = ACTIONS(4074), - [sym_float_literal] = ACTIONS(4074), - [sym_rune_literal] = ACTIONS(4074), - [sym_pseudo_compile_time_identifier] = ACTIONS(4074), - [anon_sym_shared] = ACTIONS(4074), - [anon_sym_map_LBRACK] = ACTIONS(4074), - [anon_sym_chan] = ACTIONS(4074), - [anon_sym_thread] = ACTIONS(4074), - [anon_sym_atomic] = ACTIONS(4074), - [anon_sym_assert] = ACTIONS(4074), - [anon_sym_defer] = ACTIONS(4074), - [anon_sym_goto] = ACTIONS(4074), - [anon_sym_break] = ACTIONS(4074), - [anon_sym_continue] = ACTIONS(4074), - [anon_sym_return] = ACTIONS(4074), - [anon_sym_DOLLARfor] = ACTIONS(4074), - [anon_sym_for] = ACTIONS(4074), - [anon_sym_POUND] = ACTIONS(4074), - [anon_sym_asm] = ACTIONS(4074), - [anon_sym_AT_LBRACK] = ACTIONS(4074), - [sym___double_quote] = ACTIONS(4074), - [sym___single_quote] = ACTIONS(4074), - [sym___c_double_quote] = ACTIONS(4074), - [sym___c_single_quote] = ACTIONS(4074), - [sym___r_double_quote] = ACTIONS(4074), - [sym___r_single_quote] = ACTIONS(4074), + [anon_sym_DOT] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4064), + [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), + [sym_pseudo_compile_time_identifier] = 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), }, [1454] = { - [sym_block] = STATE(1592), - [ts_builtin_sym_end] = ACTIONS(4076), - [sym_identifier] = ACTIONS(4078), - [anon_sym_LF] = ACTIONS(4078), - [anon_sym_CR] = ACTIONS(4078), - [anon_sym_CR_LF] = ACTIONS(4078), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2985), + [anon_sym_LF] = ACTIONS(2985), + [anon_sym_CR] = ACTIONS(2985), + [anon_sym_CR_LF] = ACTIONS(2985), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4078), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4078), - [anon_sym_LPAREN] = ACTIONS(4078), - [anon_sym___global] = ACTIONS(4078), - [anon_sym_type] = ACTIONS(4078), - [anon_sym_fn] = ACTIONS(4078), - [anon_sym_PLUS] = ACTIONS(4078), - [anon_sym_DASH] = ACTIONS(4078), - [anon_sym_STAR] = ACTIONS(4078), - [anon_sym_struct] = ACTIONS(4078), - [anon_sym_union] = ACTIONS(4078), - [anon_sym_pub] = ACTIONS(4078), - [anon_sym_mut] = ACTIONS(4078), - [anon_sym_enum] = ACTIONS(4078), - [anon_sym_interface] = ACTIONS(4078), - [anon_sym_QMARK] = ACTIONS(4078), - [anon_sym_BANG] = ACTIONS(4078), - [anon_sym_go] = ACTIONS(4078), - [anon_sym_spawn] = ACTIONS(4078), - [anon_sym_json_DOTdecode] = ACTIONS(4078), - [anon_sym_LBRACK2] = ACTIONS(4078), - [anon_sym_TILDE] = ACTIONS(4078), - [anon_sym_CARET] = ACTIONS(4078), - [anon_sym_AMP] = ACTIONS(4078), - [anon_sym_LT_DASH] = ACTIONS(4078), - [sym_none] = ACTIONS(4078), - [sym_true] = ACTIONS(4078), - [sym_false] = ACTIONS(4078), - [sym_nil] = ACTIONS(4078), - [anon_sym_if] = ACTIONS(4078), - [anon_sym_DOLLARif] = ACTIONS(4078), - [anon_sym_match] = ACTIONS(4078), - [anon_sym_select] = ACTIONS(4078), - [anon_sym_lock] = ACTIONS(4078), - [anon_sym_rlock] = ACTIONS(4078), - [anon_sym_unsafe] = ACTIONS(4078), - [anon_sym_sql] = ACTIONS(4078), - [sym_int_literal] = ACTIONS(4078), - [sym_float_literal] = ACTIONS(4078), - [sym_rune_literal] = ACTIONS(4078), - [sym_pseudo_compile_time_identifier] = ACTIONS(4078), - [anon_sym_shared] = ACTIONS(4078), - [anon_sym_map_LBRACK] = ACTIONS(4078), - [anon_sym_chan] = ACTIONS(4078), - [anon_sym_thread] = ACTIONS(4078), - [anon_sym_atomic] = ACTIONS(4078), - [anon_sym_assert] = ACTIONS(4078), - [anon_sym_defer] = ACTIONS(4078), - [anon_sym_goto] = ACTIONS(4078), - [anon_sym_break] = ACTIONS(4078), - [anon_sym_continue] = ACTIONS(4078), - [anon_sym_return] = ACTIONS(4078), - [anon_sym_DOLLARfor] = ACTIONS(4078), - [anon_sym_for] = ACTIONS(4078), - [anon_sym_POUND] = ACTIONS(4078), - [anon_sym_asm] = ACTIONS(4078), - [anon_sym_AT_LBRACK] = ACTIONS(4078), - [sym___double_quote] = ACTIONS(4078), - [sym___single_quote] = ACTIONS(4078), - [sym___c_double_quote] = ACTIONS(4078), - [sym___c_single_quote] = ACTIONS(4078), - [sym___r_double_quote] = ACTIONS(4078), - [sym___r_single_quote] = ACTIONS(4078), + [anon_sym_DOT] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_const] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym___global] = ACTIONS(2985), + [anon_sym_type] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_fn] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_struct] = ACTIONS(2985), + [anon_sym_union] = ACTIONS(2985), + [anon_sym_pub] = ACTIONS(2985), + [anon_sym_mut] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_QMARK] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_go] = ACTIONS(2985), + [anon_sym_spawn] = ACTIONS(2985), + [anon_sym_json_DOTdecode] = ACTIONS(2985), + [anon_sym_LBRACK2] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_LT_DASH] = ACTIONS(2985), + [sym_none] = ACTIONS(2985), + [sym_true] = ACTIONS(2985), + [sym_false] = ACTIONS(2985), + [sym_nil] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_DOLLARif] = ACTIONS(2985), + [anon_sym_match] = ACTIONS(2985), + [anon_sym_select] = ACTIONS(2985), + [anon_sym_lock] = ACTIONS(2985), + [anon_sym_rlock] = ACTIONS(2985), + [anon_sym_unsafe] = ACTIONS(2985), + [anon_sym_sql] = ACTIONS(2985), + [sym_int_literal] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), + [sym_rune_literal] = ACTIONS(2985), + [sym_pseudo_compile_time_identifier] = ACTIONS(2985), + [anon_sym_shared] = ACTIONS(2985), + [anon_sym_map_LBRACK] = ACTIONS(2985), + [anon_sym_chan] = ACTIONS(2985), + [anon_sym_thread] = ACTIONS(2985), + [anon_sym_atomic] = ACTIONS(2985), + [anon_sym_assert] = ACTIONS(2985), + [anon_sym_defer] = ACTIONS(2985), + [anon_sym_goto] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_DOLLARfor] = ACTIONS(2985), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_asm] = ACTIONS(2985), + [anon_sym_AT_LBRACK] = ACTIONS(2985), + [sym___double_quote] = ACTIONS(2985), + [sym___single_quote] = ACTIONS(2985), + [sym___c_double_quote] = ACTIONS(2985), + [sym___c_single_quote] = ACTIONS(2985), + [sym___r_double_quote] = ACTIONS(2985), + [sym___r_single_quote] = ACTIONS(2985), }, [1455] = { - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(1759), - [anon_sym_LF] = ACTIONS(1759), - [anon_sym_CR] = ACTIONS(1759), - [anon_sym_CR_LF] = ACTIONS(1759), + [ts_builtin_sym_end] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3424), + [anon_sym_LF] = ACTIONS(3424), + [anon_sym_CR] = ACTIONS(3424), + [anon_sym_CR_LF] = ACTIONS(3424), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_COMMA] = ACTIONS(1759), - [anon_sym_const] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym___global] = ACTIONS(1759), - [anon_sym_type] = ACTIONS(1759), - [anon_sym_fn] = ACTIONS(1759), - [anon_sym_PLUS] = ACTIONS(1759), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_struct] = ACTIONS(1759), - [anon_sym_union] = ACTIONS(1759), - [anon_sym_pub] = ACTIONS(1759), - [anon_sym_mut] = ACTIONS(1759), - [anon_sym_enum] = ACTIONS(1759), - [anon_sym_interface] = ACTIONS(1759), - [anon_sym_QMARK] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_go] = ACTIONS(1759), - [anon_sym_spawn] = ACTIONS(1759), - [anon_sym_json_DOTdecode] = ACTIONS(1759), - [anon_sym_LBRACK2] = ACTIONS(1759), - [anon_sym_TILDE] = ACTIONS(1759), - [anon_sym_CARET] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_LT_DASH] = ACTIONS(1759), - [sym_none] = ACTIONS(1759), - [sym_true] = ACTIONS(1759), - [sym_false] = ACTIONS(1759), - [sym_nil] = ACTIONS(1759), - [anon_sym_if] = ACTIONS(1759), - [anon_sym_DOLLARif] = ACTIONS(1759), - [anon_sym_match] = ACTIONS(1759), - [anon_sym_select] = ACTIONS(1759), - [anon_sym_lock] = ACTIONS(1759), - [anon_sym_rlock] = ACTIONS(1759), - [anon_sym_unsafe] = ACTIONS(1759), - [anon_sym_sql] = ACTIONS(1759), - [sym_int_literal] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), - [sym_rune_literal] = ACTIONS(1759), - [sym_pseudo_compile_time_identifier] = ACTIONS(1759), - [anon_sym_shared] = ACTIONS(1759), - [anon_sym_map_LBRACK] = ACTIONS(1759), - [anon_sym_chan] = ACTIONS(1759), - [anon_sym_thread] = ACTIONS(1759), - [anon_sym_atomic] = ACTIONS(1759), - [anon_sym_assert] = ACTIONS(1759), - [anon_sym_defer] = ACTIONS(1759), - [anon_sym_goto] = ACTIONS(1759), - [anon_sym_break] = ACTIONS(1759), - [anon_sym_continue] = ACTIONS(1759), - [anon_sym_return] = ACTIONS(1759), - [anon_sym_DOLLARfor] = ACTIONS(1759), - [anon_sym_for] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_asm] = ACTIONS(1759), - [anon_sym_AT_LBRACK] = ACTIONS(1759), - [sym___double_quote] = ACTIONS(1759), - [sym___single_quote] = ACTIONS(1759), - [sym___c_double_quote] = ACTIONS(1759), - [sym___c_single_quote] = ACTIONS(1759), - [sym___r_double_quote] = ACTIONS(1759), - [sym___r_single_quote] = ACTIONS(1759), + [anon_sym_DOT] = ACTIONS(3424), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_const] = ACTIONS(3424), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym___global] = ACTIONS(3424), + [anon_sym_type] = ACTIONS(3424), + [anon_sym_PIPE] = ACTIONS(3424), + [anon_sym_fn] = ACTIONS(3424), + [anon_sym_PLUS] = ACTIONS(3424), + [anon_sym_DASH] = ACTIONS(3424), + [anon_sym_STAR] = ACTIONS(3424), + [anon_sym_struct] = ACTIONS(3424), + [anon_sym_union] = ACTIONS(3424), + [anon_sym_pub] = ACTIONS(3424), + [anon_sym_mut] = ACTIONS(3424), + [anon_sym_enum] = ACTIONS(3424), + [anon_sym_interface] = ACTIONS(3424), + [anon_sym_QMARK] = ACTIONS(3424), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_go] = ACTIONS(3424), + [anon_sym_spawn] = ACTIONS(3424), + [anon_sym_json_DOTdecode] = ACTIONS(3424), + [anon_sym_LBRACK2] = ACTIONS(3424), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_CARET] = ACTIONS(3424), + [anon_sym_AMP] = ACTIONS(3424), + [anon_sym_LT_DASH] = ACTIONS(3424), + [sym_none] = ACTIONS(3424), + [sym_true] = ACTIONS(3424), + [sym_false] = ACTIONS(3424), + [sym_nil] = ACTIONS(3424), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_DOLLARif] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3424), + [anon_sym_select] = ACTIONS(3424), + [anon_sym_lock] = ACTIONS(3424), + [anon_sym_rlock] = ACTIONS(3424), + [anon_sym_unsafe] = ACTIONS(3424), + [anon_sym_sql] = ACTIONS(3424), + [sym_int_literal] = ACTIONS(3424), + [sym_float_literal] = ACTIONS(3424), + [sym_rune_literal] = ACTIONS(3424), + [sym_pseudo_compile_time_identifier] = ACTIONS(3424), + [anon_sym_shared] = ACTIONS(3424), + [anon_sym_map_LBRACK] = ACTIONS(3424), + [anon_sym_chan] = ACTIONS(3424), + [anon_sym_thread] = ACTIONS(3424), + [anon_sym_atomic] = ACTIONS(3424), + [anon_sym_assert] = ACTIONS(3424), + [anon_sym_defer] = ACTIONS(3424), + [anon_sym_goto] = ACTIONS(3424), + [anon_sym_break] = ACTIONS(3424), + [anon_sym_continue] = ACTIONS(3424), + [anon_sym_return] = ACTIONS(3424), + [anon_sym_DOLLARfor] = ACTIONS(3424), + [anon_sym_for] = ACTIONS(3424), + [anon_sym_POUND] = ACTIONS(3424), + [anon_sym_asm] = ACTIONS(3424), + [anon_sym_AT_LBRACK] = ACTIONS(3424), + [sym___double_quote] = ACTIONS(3424), + [sym___single_quote] = ACTIONS(3424), + [sym___c_double_quote] = ACTIONS(3424), + [sym___c_single_quote] = ACTIONS(3424), + [sym___r_double_quote] = ACTIONS(3424), + [sym___r_single_quote] = ACTIONS(3424), }, [1456] = { - [ts_builtin_sym_end] = ACTIONS(3217), - [sym_identifier] = ACTIONS(3219), - [anon_sym_LF] = ACTIONS(3219), - [anon_sym_CR] = ACTIONS(3219), - [anon_sym_CR_LF] = ACTIONS(3219), + [ts_builtin_sym_end] = ACTIONS(2913), + [sym_identifier] = ACTIONS(2915), + [anon_sym_LF] = ACTIONS(2915), + [anon_sym_CR] = ACTIONS(2915), + [anon_sym_CR_LF] = ACTIONS(2915), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym___global] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_PIPE] = ACTIONS(3219), - [anon_sym_fn] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_STAR] = ACTIONS(3219), - [anon_sym_struct] = ACTIONS(3219), - [anon_sym_union] = ACTIONS(3219), - [anon_sym_pub] = ACTIONS(3219), - [anon_sym_mut] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_QMARK] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_go] = ACTIONS(3219), - [anon_sym_spawn] = ACTIONS(3219), - [anon_sym_json_DOTdecode] = ACTIONS(3219), - [anon_sym_LBRACK2] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_CARET] = ACTIONS(3219), - [anon_sym_AMP] = ACTIONS(3219), - [anon_sym_LT_DASH] = ACTIONS(3219), - [sym_none] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_nil] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_DOLLARif] = ACTIONS(3219), - [anon_sym_match] = ACTIONS(3219), - [anon_sym_select] = ACTIONS(3219), - [anon_sym_lock] = ACTIONS(3219), - [anon_sym_rlock] = ACTIONS(3219), - [anon_sym_unsafe] = ACTIONS(3219), - [anon_sym_sql] = ACTIONS(3219), - [sym_int_literal] = ACTIONS(3219), - [sym_float_literal] = ACTIONS(3219), - [sym_rune_literal] = ACTIONS(3219), - [sym_pseudo_compile_time_identifier] = ACTIONS(3219), - [anon_sym_shared] = ACTIONS(3219), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3219), - [anon_sym_thread] = ACTIONS(3219), - [anon_sym_atomic] = ACTIONS(3219), - [anon_sym_assert] = ACTIONS(3219), - [anon_sym_defer] = ACTIONS(3219), - [anon_sym_goto] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_DOLLARfor] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(3219), - [anon_sym_asm] = ACTIONS(3219), - [anon_sym_AT_LBRACK] = ACTIONS(3219), - [sym___double_quote] = ACTIONS(3219), - [sym___single_quote] = ACTIONS(3219), - [sym___c_double_quote] = ACTIONS(3219), - [sym___c_single_quote] = ACTIONS(3219), - [sym___r_double_quote] = ACTIONS(3219), - [sym___r_single_quote] = ACTIONS(3219), + [anon_sym_DOT] = ACTIONS(2915), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_const] = ACTIONS(2915), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym___global] = ACTIONS(2915), + [anon_sym_type] = ACTIONS(2915), + [anon_sym_PIPE] = ACTIONS(2915), + [anon_sym_fn] = ACTIONS(2915), + [anon_sym_PLUS] = ACTIONS(2915), + [anon_sym_DASH] = ACTIONS(2915), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_struct] = ACTIONS(2915), + [anon_sym_union] = ACTIONS(2915), + [anon_sym_pub] = ACTIONS(2915), + [anon_sym_mut] = ACTIONS(2915), + [anon_sym_enum] = ACTIONS(2915), + [anon_sym_interface] = ACTIONS(2915), + [anon_sym_QMARK] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2915), + [anon_sym_go] = ACTIONS(2915), + [anon_sym_spawn] = ACTIONS(2915), + [anon_sym_json_DOTdecode] = ACTIONS(2915), + [anon_sym_LBRACK2] = ACTIONS(2915), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_CARET] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2915), + [anon_sym_LT_DASH] = ACTIONS(2915), + [sym_none] = ACTIONS(2915), + [sym_true] = ACTIONS(2915), + [sym_false] = ACTIONS(2915), + [sym_nil] = ACTIONS(2915), + [anon_sym_if] = ACTIONS(2915), + [anon_sym_DOLLARif] = ACTIONS(2915), + [anon_sym_match] = ACTIONS(2915), + [anon_sym_select] = ACTIONS(2915), + [anon_sym_lock] = ACTIONS(2915), + [anon_sym_rlock] = ACTIONS(2915), + [anon_sym_unsafe] = ACTIONS(2915), + [anon_sym_sql] = ACTIONS(2915), + [sym_int_literal] = ACTIONS(2915), + [sym_float_literal] = ACTIONS(2915), + [sym_rune_literal] = ACTIONS(2915), + [sym_pseudo_compile_time_identifier] = ACTIONS(2915), + [anon_sym_shared] = ACTIONS(2915), + [anon_sym_map_LBRACK] = ACTIONS(2915), + [anon_sym_chan] = ACTIONS(2915), + [anon_sym_thread] = ACTIONS(2915), + [anon_sym_atomic] = ACTIONS(2915), + [anon_sym_assert] = ACTIONS(2915), + [anon_sym_defer] = ACTIONS(2915), + [anon_sym_goto] = ACTIONS(2915), + [anon_sym_break] = ACTIONS(2915), + [anon_sym_continue] = ACTIONS(2915), + [anon_sym_return] = ACTIONS(2915), + [anon_sym_DOLLARfor] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2915), + [anon_sym_POUND] = ACTIONS(2915), + [anon_sym_asm] = ACTIONS(2915), + [anon_sym_AT_LBRACK] = ACTIONS(2915), + [sym___double_quote] = ACTIONS(2915), + [sym___single_quote] = ACTIONS(2915), + [sym___c_double_quote] = ACTIONS(2915), + [sym___c_single_quote] = ACTIONS(2915), + [sym___r_double_quote] = ACTIONS(2915), + [sym___r_single_quote] = ACTIONS(2915), }, [1457] = { - [ts_builtin_sym_end] = ACTIONS(3233), - [sym_identifier] = ACTIONS(3235), - [anon_sym_LF] = ACTIONS(3235), - [anon_sym_CR] = ACTIONS(3235), - [anon_sym_CR_LF] = ACTIONS(3235), + [sym_block] = STATE(1529), + [ts_builtin_sym_end] = ACTIONS(4070), + [sym_identifier] = ACTIONS(4072), + [anon_sym_LF] = ACTIONS(4072), + [anon_sym_CR] = ACTIONS(4072), + [anon_sym_CR_LF] = ACTIONS(4072), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_PIPE] = ACTIONS(3235), - [anon_sym_fn] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_STAR] = ACTIONS(3235), - [anon_sym_struct] = ACTIONS(3235), - [anon_sym_union] = ACTIONS(3235), - [anon_sym_pub] = ACTIONS(3235), - [anon_sym_mut] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_QMARK] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_go] = ACTIONS(3235), - [anon_sym_spawn] = ACTIONS(3235), - [anon_sym_json_DOTdecode] = ACTIONS(3235), - [anon_sym_LBRACK2] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_CARET] = ACTIONS(3235), - [anon_sym_AMP] = ACTIONS(3235), - [anon_sym_LT_DASH] = ACTIONS(3235), - [sym_none] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_nil] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_DOLLARif] = ACTIONS(3235), - [anon_sym_match] = ACTIONS(3235), - [anon_sym_select] = ACTIONS(3235), - [anon_sym_lock] = ACTIONS(3235), - [anon_sym_rlock] = ACTIONS(3235), - [anon_sym_unsafe] = ACTIONS(3235), - [anon_sym_sql] = ACTIONS(3235), - [sym_int_literal] = ACTIONS(3235), - [sym_float_literal] = ACTIONS(3235), - [sym_rune_literal] = ACTIONS(3235), - [sym_pseudo_compile_time_identifier] = ACTIONS(3235), - [anon_sym_shared] = ACTIONS(3235), - [anon_sym_map_LBRACK] = ACTIONS(3235), - [anon_sym_chan] = ACTIONS(3235), - [anon_sym_thread] = ACTIONS(3235), - [anon_sym_atomic] = ACTIONS(3235), - [anon_sym_assert] = ACTIONS(3235), - [anon_sym_defer] = ACTIONS(3235), - [anon_sym_goto] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_DOLLARfor] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_POUND] = ACTIONS(3235), - [anon_sym_asm] = ACTIONS(3235), - [anon_sym_AT_LBRACK] = ACTIONS(3235), - [sym___double_quote] = ACTIONS(3235), - [sym___single_quote] = ACTIONS(3235), - [sym___c_double_quote] = ACTIONS(3235), - [sym___c_single_quote] = ACTIONS(3235), - [sym___r_double_quote] = ACTIONS(3235), - [sym___r_single_quote] = ACTIONS(3235), + [anon_sym_DOT] = ACTIONS(4072), + [anon_sym_LBRACE] = ACTIONS(4064), + [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), + [sym_pseudo_compile_time_identifier] = 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), }, [1458] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(2485), - [sym_plain_type] = STATE(2514), - [sym__plain_type_without_special] = STATE(2546), - [sym_anon_struct_type] = STATE(2525), - [sym_multi_return_type] = STATE(2546), - [sym_result_type] = STATE(2546), - [sym_option_type] = STATE(2546), - [sym_qualified_type] = STATE(2485), - [sym_fixed_array_type] = STATE(2525), - [sym_array_type] = STATE(2525), - [sym_pointer_type] = STATE(2525), - [sym_wrong_pointer_type] = STATE(2525), - [sym_map_type] = STATE(2525), - [sym_channel_type] = STATE(2525), - [sym_shared_type] = STATE(2525), - [sym_thread_type] = STATE(2525), - [sym_atomic_type] = STATE(2525), - [sym_generic_type] = STATE(2525), - [sym_function_type] = STATE(2525), - [sym_identifier] = ACTIONS(4080), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_const] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym___global] = ACTIONS(3005), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_union] = ACTIONS(3005), + [anon_sym_pub] = ACTIONS(3005), + [anon_sym_mut] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_go] = ACTIONS(3005), + [anon_sym_spawn] = ACTIONS(3005), + [anon_sym_json_DOTdecode] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [sym_none] = ACTIONS(3005), + [sym_true] = ACTIONS(3005), + [sym_false] = ACTIONS(3005), + [sym_nil] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_DOLLARif] = ACTIONS(3005), + [anon_sym_match] = ACTIONS(3005), + [anon_sym_select] = ACTIONS(3005), + [anon_sym_lock] = ACTIONS(3005), + [anon_sym_rlock] = ACTIONS(3005), + [anon_sym_unsafe] = ACTIONS(3005), + [anon_sym_sql] = ACTIONS(3005), + [sym_int_literal] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), + [sym_rune_literal] = ACTIONS(3005), + [sym_pseudo_compile_time_identifier] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + [anon_sym_assert] = ACTIONS(3005), + [anon_sym_defer] = ACTIONS(3005), + [anon_sym_goto] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_DOLLARfor] = ACTIONS(3005), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_asm] = ACTIONS(3005), + [anon_sym_AT_LBRACK] = ACTIONS(3005), + [sym___double_quote] = ACTIONS(3005), + [sym___single_quote] = ACTIONS(3005), + [sym___c_double_quote] = ACTIONS(3005), + [sym___c_single_quote] = ACTIONS(3005), + [sym___r_double_quote] = ACTIONS(3005), + [sym___r_single_quote] = ACTIONS(3005), + }, + [1459] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [anon_sym_LF] = ACTIONS(563), [anon_sym_CR] = ACTIONS(563), [anon_sym_CR_LF] = ACTIONS(563), @@ -179370,12 +179583,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(563), [anon_sym_COMMA] = ACTIONS(563), [anon_sym_RBRACE] = ACTIONS(563), - [anon_sym_LPAREN] = ACTIONS(4082), + [anon_sym_LPAREN] = ACTIONS(565), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(4084), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(4086), + [anon_sym_STAR] = ACTIONS(569), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(563), [anon_sym_LT] = ACTIONS(563), @@ -179385,14 +179598,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ] = ACTIONS(563), [anon_sym_GT_EQ] = ACTIONS(563), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(4088), + [anon_sym_struct] = ACTIONS(571), [anon_sym_PLUS_PLUS] = ACTIONS(563), [anon_sym_DASH_DASH] = ACTIONS(563), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_LBRACK2] = ACTIONS(4094), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4074), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_CARET] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(4096), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_LT] = ACTIONS(563), [anon_sym_GT_GT] = ACTIONS(563), [anon_sym_GT_GT_GT] = ACTIONS(563), @@ -179406,14 +179619,452 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(563), [anon_sym_in] = ACTIONS(563), [anon_sym_BANGin] = ACTIONS(563), - [anon_sym_shared] = ACTIONS(4098), - [anon_sym_map_LBRACK] = ACTIONS(4100), - [anon_sym_chan] = ACTIONS(4102), - [anon_sym_thread] = ACTIONS(4104), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(545), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1460] = { + [sym_reference_expression] = STATE(4445), + [sym_type_reference_expression] = STATE(2489), + [sym_plain_type] = STATE(2511), + [sym__plain_type_without_special] = STATE(2574), + [sym_anon_struct_type] = STATE(2572), + [sym_multi_return_type] = STATE(2574), + [sym_result_type] = STATE(2574), + [sym_option_type] = STATE(2574), + [sym_qualified_type] = STATE(2489), + [sym_fixed_array_type] = STATE(2572), + [sym_array_type] = STATE(2572), + [sym_pointer_type] = STATE(2572), + [sym_wrong_pointer_type] = STATE(2572), + [sym_map_type] = STATE(2572), + [sym_channel_type] = STATE(2572), + [sym_shared_type] = STATE(2572), + [sym_thread_type] = STATE(2572), + [sym_atomic_type] = STATE(2572), + [sym_generic_type] = STATE(2572), + [sym_function_type] = STATE(2572), + [sym_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_CR] = ACTIONS(623), + [anon_sym_CR_LF] = ACTIONS(623), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_COMMA] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_LPAREN] = ACTIONS(4078), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(623), + [anon_sym_BANG_EQ] = ACTIONS(623), + [anon_sym_LT_EQ] = ACTIONS(623), + [anon_sym_GT_EQ] = ACTIONS(623), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(623), + [anon_sym_DASH_DASH] = ACTIONS(623), + [anon_sym_QMARK] = ACTIONS(4086), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_LBRACK2] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(623), + [anon_sym_AMP_CARET] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(623), + [anon_sym_POUND_LBRACK] = ACTIONS(623), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(623), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(4094), + [anon_sym_map_LBRACK] = ACTIONS(4096), + [anon_sym_chan] = ACTIONS(4098), + [anon_sym_thread] = ACTIONS(4100), + [anon_sym_atomic] = ACTIONS(4102), + }, + [1461] = { + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_const] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym___global] = ACTIONS(3009), + [anon_sym_type] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_union] = ACTIONS(3009), + [anon_sym_pub] = ACTIONS(3009), + [anon_sym_mut] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_go] = ACTIONS(3009), + [anon_sym_spawn] = ACTIONS(3009), + [anon_sym_json_DOTdecode] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [sym_none] = ACTIONS(3009), + [sym_true] = ACTIONS(3009), + [sym_false] = ACTIONS(3009), + [sym_nil] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_DOLLARif] = ACTIONS(3009), + [anon_sym_match] = ACTIONS(3009), + [anon_sym_select] = ACTIONS(3009), + [anon_sym_lock] = ACTIONS(3009), + [anon_sym_rlock] = ACTIONS(3009), + [anon_sym_unsafe] = ACTIONS(3009), + [anon_sym_sql] = ACTIONS(3009), + [sym_int_literal] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), + [sym_rune_literal] = ACTIONS(3009), + [sym_pseudo_compile_time_identifier] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + [anon_sym_assert] = ACTIONS(3009), + [anon_sym_defer] = ACTIONS(3009), + [anon_sym_goto] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_DOLLARfor] = ACTIONS(3009), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3009), + [anon_sym_asm] = ACTIONS(3009), + [anon_sym_AT_LBRACK] = ACTIONS(3009), + [sym___double_quote] = ACTIONS(3009), + [sym___single_quote] = ACTIONS(3009), + [sym___c_double_quote] = ACTIONS(3009), + [sym___c_single_quote] = ACTIONS(3009), + [sym___r_double_quote] = ACTIONS(3009), + [sym___r_single_quote] = ACTIONS(3009), + }, + [1462] = { + [sym_reference_expression] = STATE(4445), + [sym_type_reference_expression] = STATE(2489), + [sym_plain_type] = STATE(2619), + [sym__plain_type_without_special] = STATE(2574), + [sym_anon_struct_type] = STATE(2572), + [sym_multi_return_type] = STATE(2574), + [sym_result_type] = STATE(2574), + [sym_option_type] = STATE(2574), + [sym_qualified_type] = STATE(2489), + [sym_fixed_array_type] = STATE(2572), + [sym_array_type] = STATE(2572), + [sym_pointer_type] = STATE(2572), + [sym_wrong_pointer_type] = STATE(2572), + [sym_map_type] = STATE(2572), + [sym_channel_type] = STATE(2572), + [sym_shared_type] = STATE(2572), + [sym_thread_type] = STATE(2572), + [sym_atomic_type] = STATE(2572), + [sym_generic_type] = STATE(2572), + [sym_function_type] = STATE(2572), + [sym_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(619), + [anon_sym_CR] = ACTIONS(619), + [anon_sym_CR_LF] = ACTIONS(619), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(619), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_COMMA] = ACTIONS(619), + [anon_sym_RBRACE] = ACTIONS(619), + [anon_sym_LPAREN] = ACTIONS(4078), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(619), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(619), + [anon_sym_BANG_EQ] = ACTIONS(619), + [anon_sym_LT_EQ] = ACTIONS(619), + [anon_sym_GT_EQ] = ACTIONS(619), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(619), + [anon_sym_DASH_DASH] = ACTIONS(619), + [anon_sym_QMARK] = ACTIONS(4086), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_LBRACK2] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(619), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_LT_LT] = ACTIONS(619), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(619), + [anon_sym_AMP_CARET] = ACTIONS(619), + [anon_sym_AMP_AMP] = ACTIONS(619), + [anon_sym_PIPE_PIPE] = ACTIONS(619), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(619), + [anon_sym_POUND_LBRACK] = ACTIONS(619), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(619), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(619), + [anon_sym_shared] = ACTIONS(4094), + [anon_sym_map_LBRACK] = ACTIONS(4096), + [anon_sym_chan] = ACTIONS(4098), + [anon_sym_thread] = ACTIONS(4100), + [anon_sym_atomic] = ACTIONS(4102), + }, + [1463] = { + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3013), + [anon_sym_LF] = ACTIONS(3013), + [anon_sym_CR] = ACTIONS(3013), + [anon_sym_CR_LF] = ACTIONS(3013), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_const] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym___global] = ACTIONS(3013), + [anon_sym_type] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_fn] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_struct] = ACTIONS(3013), + [anon_sym_union] = ACTIONS(3013), + [anon_sym_pub] = ACTIONS(3013), + [anon_sym_mut] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_QMARK] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_go] = ACTIONS(3013), + [anon_sym_spawn] = ACTIONS(3013), + [anon_sym_json_DOTdecode] = ACTIONS(3013), + [anon_sym_LBRACK2] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_LT_DASH] = ACTIONS(3013), + [sym_none] = ACTIONS(3013), + [sym_true] = ACTIONS(3013), + [sym_false] = ACTIONS(3013), + [sym_nil] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_DOLLARif] = ACTIONS(3013), + [anon_sym_match] = ACTIONS(3013), + [anon_sym_select] = ACTIONS(3013), + [anon_sym_lock] = ACTIONS(3013), + [anon_sym_rlock] = ACTIONS(3013), + [anon_sym_unsafe] = ACTIONS(3013), + [anon_sym_sql] = ACTIONS(3013), + [sym_int_literal] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), + [sym_rune_literal] = ACTIONS(3013), + [sym_pseudo_compile_time_identifier] = ACTIONS(3013), + [anon_sym_shared] = ACTIONS(3013), + [anon_sym_map_LBRACK] = ACTIONS(3013), + [anon_sym_chan] = ACTIONS(3013), + [anon_sym_thread] = ACTIONS(3013), + [anon_sym_atomic] = ACTIONS(3013), + [anon_sym_assert] = ACTIONS(3013), + [anon_sym_defer] = ACTIONS(3013), + [anon_sym_goto] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_DOLLARfor] = ACTIONS(3013), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_asm] = ACTIONS(3013), + [anon_sym_AT_LBRACK] = ACTIONS(3013), + [sym___double_quote] = ACTIONS(3013), + [sym___single_quote] = ACTIONS(3013), + [sym___c_double_quote] = ACTIONS(3013), + [sym___c_single_quote] = ACTIONS(3013), + [sym___r_double_quote] = ACTIONS(3013), + [sym___r_single_quote] = ACTIONS(3013), + }, + [1464] = { + [sym_reference_expression] = STATE(4445), + [sym_type_reference_expression] = STATE(2489), + [sym_plain_type] = STATE(2571), + [sym__plain_type_without_special] = STATE(2574), + [sym_anon_struct_type] = STATE(2572), + [sym_multi_return_type] = STATE(2574), + [sym_result_type] = STATE(2574), + [sym_option_type] = STATE(2574), + [sym_qualified_type] = STATE(2489), + [sym_fixed_array_type] = STATE(2572), + [sym_array_type] = STATE(2572), + [sym_pointer_type] = STATE(2572), + [sym_wrong_pointer_type] = STATE(2572), + [sym_map_type] = STATE(2572), + [sym_channel_type] = STATE(2572), + [sym_shared_type] = STATE(2572), + [sym_thread_type] = STATE(2572), + [sym_atomic_type] = STATE(2572), + [sym_generic_type] = STATE(2572), + [sym_function_type] = STATE(2572), + [sym_identifier] = ACTIONS(4076), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_CR] = ACTIONS(585), + [anon_sym_CR_LF] = ACTIONS(585), + [sym_comment] = ACTIONS(495), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_COMMA] = ACTIONS(585), + [anon_sym_RBRACE] = ACTIONS(585), + [anon_sym_LPAREN] = ACTIONS(4078), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(4080), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(4082), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(585), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(585), + [anon_sym_BANG_EQ] = ACTIONS(585), + [anon_sym_LT_EQ] = ACTIONS(585), + [anon_sym_GT_EQ] = ACTIONS(585), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(4084), + [anon_sym_PLUS_PLUS] = ACTIONS(585), + [anon_sym_DASH_DASH] = ACTIONS(585), + [anon_sym_QMARK] = ACTIONS(4086), + [anon_sym_BANG] = ACTIONS(4088), + [anon_sym_LBRACK2] = ACTIONS(4090), + [anon_sym_CARET] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(4092), + [anon_sym_LT_LT] = ACTIONS(585), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(585), + [anon_sym_AMP_CARET] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(585), + [anon_sym_POUND_LBRACK] = ACTIONS(585), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(585), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(585), + [anon_sym_shared] = ACTIONS(4094), + [anon_sym_map_LBRACK] = ACTIONS(4096), + [anon_sym_chan] = ACTIONS(4098), + [anon_sym_thread] = ACTIONS(4100), + [anon_sym_atomic] = ACTIONS(4102), + }, + [1465] = { + [sym_block] = STATE(1600), + [ts_builtin_sym_end] = ACTIONS(4104), + [sym_identifier] = ACTIONS(4106), + [anon_sym_LF] = ACTIONS(4106), + [anon_sym_CR] = ACTIONS(4106), + [anon_sym_CR_LF] = ACTIONS(4106), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4106), + [anon_sym_LBRACE] = ACTIONS(4064), + [anon_sym_const] = ACTIONS(4106), + [anon_sym_LPAREN] = ACTIONS(4106), + [anon_sym___global] = ACTIONS(4106), + [anon_sym_type] = ACTIONS(4106), + [anon_sym_fn] = ACTIONS(4106), + [anon_sym_PLUS] = ACTIONS(4106), + [anon_sym_DASH] = ACTIONS(4106), + [anon_sym_STAR] = ACTIONS(4106), + [anon_sym_struct] = ACTIONS(4106), + [anon_sym_union] = ACTIONS(4106), + [anon_sym_pub] = ACTIONS(4106), + [anon_sym_mut] = ACTIONS(4106), + [anon_sym_enum] = ACTIONS(4106), + [anon_sym_interface] = ACTIONS(4106), + [anon_sym_QMARK] = ACTIONS(4106), + [anon_sym_BANG] = ACTIONS(4106), + [anon_sym_go] = ACTIONS(4106), + [anon_sym_spawn] = ACTIONS(4106), + [anon_sym_json_DOTdecode] = ACTIONS(4106), + [anon_sym_LBRACK2] = ACTIONS(4106), + [anon_sym_TILDE] = ACTIONS(4106), + [anon_sym_CARET] = ACTIONS(4106), + [anon_sym_AMP] = ACTIONS(4106), + [anon_sym_LT_DASH] = ACTIONS(4106), + [sym_none] = ACTIONS(4106), + [sym_true] = ACTIONS(4106), + [sym_false] = ACTIONS(4106), + [sym_nil] = ACTIONS(4106), + [anon_sym_if] = ACTIONS(4106), + [anon_sym_DOLLARif] = ACTIONS(4106), + [anon_sym_match] = ACTIONS(4106), + [anon_sym_select] = ACTIONS(4106), + [anon_sym_lock] = ACTIONS(4106), + [anon_sym_rlock] = ACTIONS(4106), + [anon_sym_unsafe] = ACTIONS(4106), + [anon_sym_sql] = ACTIONS(4106), + [sym_int_literal] = ACTIONS(4106), + [sym_float_literal] = ACTIONS(4106), + [sym_rune_literal] = ACTIONS(4106), + [sym_pseudo_compile_time_identifier] = ACTIONS(4106), + [anon_sym_shared] = ACTIONS(4106), + [anon_sym_map_LBRACK] = ACTIONS(4106), + [anon_sym_chan] = ACTIONS(4106), + [anon_sym_thread] = ACTIONS(4106), [anon_sym_atomic] = ACTIONS(4106), + [anon_sym_assert] = ACTIONS(4106), + [anon_sym_defer] = ACTIONS(4106), + [anon_sym_goto] = ACTIONS(4106), + [anon_sym_break] = ACTIONS(4106), + [anon_sym_continue] = ACTIONS(4106), + [anon_sym_return] = ACTIONS(4106), + [anon_sym_DOLLARfor] = ACTIONS(4106), + [anon_sym_for] = ACTIONS(4106), + [anon_sym_POUND] = ACTIONS(4106), + [anon_sym_asm] = ACTIONS(4106), + [anon_sym_AT_LBRACK] = ACTIONS(4106), + [sym___double_quote] = ACTIONS(4106), + [sym___single_quote] = ACTIONS(4106), + [sym___c_double_quote] = ACTIONS(4106), + [sym___c_single_quote] = ACTIONS(4106), + [sym___r_double_quote] = ACTIONS(4106), + [sym___r_single_quote] = ACTIONS(4106), }, - [1459] = { - [sym_block] = STATE(1590), + [1466] = { + [sym_block] = STATE(1602), [ts_builtin_sym_end] = ACTIONS(4108), [sym_identifier] = ACTIONS(4110), [anon_sym_LF] = ACTIONS(4110), @@ -179421,7 +180072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4110), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4110), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4110), [anon_sym_LPAREN] = ACTIONS(4110), [anon_sym___global] = ACTIONS(4110), @@ -179485,665 +180136,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4110), [sym___r_single_quote] = ACTIONS(4110), }, - [1460] = { - [sym_block] = STATE(1578), + [1467] = { + [sym_label_reference] = STATE(1523), [ts_builtin_sym_end] = ACTIONS(4112), [sym_identifier] = ACTIONS(4114), - [anon_sym_LF] = ACTIONS(4114), - [anon_sym_CR] = ACTIONS(4114), - [anon_sym_CR_LF] = ACTIONS(4114), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4114), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4114), - [anon_sym_LPAREN] = ACTIONS(4114), - [anon_sym___global] = ACTIONS(4114), - [anon_sym_type] = ACTIONS(4114), - [anon_sym_fn] = ACTIONS(4114), - [anon_sym_PLUS] = ACTIONS(4114), - [anon_sym_DASH] = ACTIONS(4114), - [anon_sym_STAR] = ACTIONS(4114), - [anon_sym_struct] = ACTIONS(4114), - [anon_sym_union] = ACTIONS(4114), - [anon_sym_pub] = ACTIONS(4114), - [anon_sym_mut] = ACTIONS(4114), - [anon_sym_enum] = ACTIONS(4114), - [anon_sym_interface] = ACTIONS(4114), - [anon_sym_QMARK] = ACTIONS(4114), - [anon_sym_BANG] = ACTIONS(4114), - [anon_sym_go] = ACTIONS(4114), - [anon_sym_spawn] = ACTIONS(4114), - [anon_sym_json_DOTdecode] = ACTIONS(4114), - [anon_sym_LBRACK2] = ACTIONS(4114), - [anon_sym_TILDE] = ACTIONS(4114), - [anon_sym_CARET] = ACTIONS(4114), - [anon_sym_AMP] = ACTIONS(4114), - [anon_sym_LT_DASH] = ACTIONS(4114), - [sym_none] = ACTIONS(4114), - [sym_true] = ACTIONS(4114), - [sym_false] = ACTIONS(4114), - [sym_nil] = ACTIONS(4114), - [anon_sym_if] = ACTIONS(4114), - [anon_sym_DOLLARif] = ACTIONS(4114), - [anon_sym_match] = ACTIONS(4114), - [anon_sym_select] = ACTIONS(4114), - [anon_sym_lock] = ACTIONS(4114), - [anon_sym_rlock] = ACTIONS(4114), - [anon_sym_unsafe] = ACTIONS(4114), - [anon_sym_sql] = ACTIONS(4114), - [sym_int_literal] = ACTIONS(4114), - [sym_float_literal] = ACTIONS(4114), - [sym_rune_literal] = ACTIONS(4114), - [sym_pseudo_compile_time_identifier] = ACTIONS(4114), - [anon_sym_shared] = ACTIONS(4114), - [anon_sym_map_LBRACK] = ACTIONS(4114), - [anon_sym_chan] = ACTIONS(4114), - [anon_sym_thread] = ACTIONS(4114), - [anon_sym_atomic] = ACTIONS(4114), - [anon_sym_assert] = ACTIONS(4114), - [anon_sym_defer] = ACTIONS(4114), - [anon_sym_goto] = ACTIONS(4114), - [anon_sym_break] = ACTIONS(4114), - [anon_sym_continue] = ACTIONS(4114), - [anon_sym_return] = ACTIONS(4114), - [anon_sym_DOLLARfor] = ACTIONS(4114), - [anon_sym_for] = ACTIONS(4114), - [anon_sym_POUND] = ACTIONS(4114), - [anon_sym_asm] = ACTIONS(4114), - [anon_sym_AT_LBRACK] = ACTIONS(4114), - [sym___double_quote] = ACTIONS(4114), - [sym___single_quote] = ACTIONS(4114), - [sym___c_double_quote] = ACTIONS(4114), - [sym___c_single_quote] = ACTIONS(4114), - [sym___r_double_quote] = ACTIONS(4114), - [sym___r_single_quote] = ACTIONS(4114), - }, - [1461] = { - [ts_builtin_sym_end] = ACTIONS(3237), - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym___global] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_union] = ACTIONS(3239), - [anon_sym_pub] = ACTIONS(3239), - [anon_sym_mut] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_go] = ACTIONS(3239), - [anon_sym_spawn] = ACTIONS(3239), - [anon_sym_json_DOTdecode] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [sym_none] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_nil] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_DOLLARif] = ACTIONS(3239), - [anon_sym_match] = ACTIONS(3239), - [anon_sym_select] = ACTIONS(3239), - [anon_sym_lock] = ACTIONS(3239), - [anon_sym_rlock] = ACTIONS(3239), - [anon_sym_unsafe] = ACTIONS(3239), - [anon_sym_sql] = ACTIONS(3239), - [sym_int_literal] = ACTIONS(3239), - [sym_float_literal] = ACTIONS(3239), - [sym_rune_literal] = ACTIONS(3239), - [sym_pseudo_compile_time_identifier] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - [anon_sym_assert] = ACTIONS(3239), - [anon_sym_defer] = ACTIONS(3239), - [anon_sym_goto] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_DOLLARfor] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_POUND] = ACTIONS(3239), - [anon_sym_asm] = ACTIONS(3239), - [anon_sym_AT_LBRACK] = ACTIONS(3239), - [sym___double_quote] = ACTIONS(3239), - [sym___single_quote] = ACTIONS(3239), - [sym___c_double_quote] = ACTIONS(3239), - [sym___c_single_quote] = ACTIONS(3239), - [sym___r_double_quote] = ACTIONS(3239), - [sym___r_single_quote] = ACTIONS(3239), - }, - [1462] = { - [ts_builtin_sym_end] = ACTIONS(3245), - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym___global] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_union] = ACTIONS(3247), - [anon_sym_pub] = ACTIONS(3247), - [anon_sym_mut] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_go] = ACTIONS(3247), - [anon_sym_spawn] = ACTIONS(3247), - [anon_sym_json_DOTdecode] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [sym_none] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_nil] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_DOLLARif] = ACTIONS(3247), - [anon_sym_match] = ACTIONS(3247), - [anon_sym_select] = ACTIONS(3247), - [anon_sym_lock] = ACTIONS(3247), - [anon_sym_rlock] = ACTIONS(3247), - [anon_sym_unsafe] = ACTIONS(3247), - [anon_sym_sql] = ACTIONS(3247), - [sym_int_literal] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), - [sym_rune_literal] = ACTIONS(3247), - [sym_pseudo_compile_time_identifier] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - [anon_sym_assert] = ACTIONS(3247), - [anon_sym_defer] = ACTIONS(3247), - [anon_sym_goto] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_DOLLARfor] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_POUND] = ACTIONS(3247), - [anon_sym_asm] = ACTIONS(3247), - [anon_sym_AT_LBRACK] = ACTIONS(3247), - [sym___double_quote] = ACTIONS(3247), - [sym___single_quote] = ACTIONS(3247), - [sym___c_double_quote] = ACTIONS(3247), - [sym___c_single_quote] = ACTIONS(3247), - [sym___r_double_quote] = ACTIONS(3247), - [sym___r_single_quote] = ACTIONS(3247), - }, - [1463] = { - [ts_builtin_sym_end] = ACTIONS(3085), - [sym_identifier] = ACTIONS(3087), - [anon_sym_LF] = ACTIONS(3087), - [anon_sym_CR] = ACTIONS(3087), - [anon_sym_CR_LF] = ACTIONS(3087), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_const] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym___global] = ACTIONS(3087), - [anon_sym_type] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3087), - [anon_sym_fn] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_DASH] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3087), - [anon_sym_union] = ACTIONS(3087), - [anon_sym_pub] = ACTIONS(3087), - [anon_sym_mut] = ACTIONS(3087), - [anon_sym_enum] = ACTIONS(3087), - [anon_sym_interface] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3087), - [anon_sym_BANG] = ACTIONS(3087), - [anon_sym_go] = ACTIONS(3087), - [anon_sym_spawn] = ACTIONS(3087), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3087), - [anon_sym_LT_DASH] = ACTIONS(3087), - [sym_none] = ACTIONS(3087), - [sym_true] = ACTIONS(3087), - [sym_false] = ACTIONS(3087), - [sym_nil] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3087), - [anon_sym_DOLLARif] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3087), - [anon_sym_select] = ACTIONS(3087), - [anon_sym_lock] = ACTIONS(3087), - [anon_sym_rlock] = ACTIONS(3087), - [anon_sym_unsafe] = ACTIONS(3087), - [anon_sym_sql] = ACTIONS(3087), - [sym_int_literal] = ACTIONS(3087), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [sym_pseudo_compile_time_identifier] = ACTIONS(3087), - [anon_sym_shared] = ACTIONS(3087), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3087), - [anon_sym_thread] = ACTIONS(3087), - [anon_sym_atomic] = ACTIONS(3087), - [anon_sym_assert] = ACTIONS(3087), - [anon_sym_defer] = ACTIONS(3087), - [anon_sym_goto] = ACTIONS(3087), - [anon_sym_break] = ACTIONS(3087), - [anon_sym_continue] = ACTIONS(3087), - [anon_sym_return] = ACTIONS(3087), - [anon_sym_DOLLARfor] = ACTIONS(3087), - [anon_sym_for] = ACTIONS(3087), - [anon_sym_POUND] = ACTIONS(3087), - [anon_sym_asm] = ACTIONS(3087), - [anon_sym_AT_LBRACK] = ACTIONS(3087), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), - }, - [1464] = { - [ts_builtin_sym_end] = ACTIONS(3249), - [sym_identifier] = ACTIONS(3251), - [anon_sym_LF] = ACTIONS(3251), - [anon_sym_CR] = ACTIONS(3251), - [anon_sym_CR_LF] = ACTIONS(3251), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym___global] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_fn] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_struct] = ACTIONS(3251), - [anon_sym_union] = ACTIONS(3251), - [anon_sym_pub] = ACTIONS(3251), - [anon_sym_mut] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_QMARK] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3251), - [anon_sym_spawn] = ACTIONS(3251), - [anon_sym_json_DOTdecode] = ACTIONS(3251), - [anon_sym_LBRACK2] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_CARET] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_LT_DASH] = ACTIONS(3251), - [sym_none] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_nil] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_DOLLARif] = ACTIONS(3251), - [anon_sym_match] = ACTIONS(3251), - [anon_sym_select] = ACTIONS(3251), - [anon_sym_lock] = ACTIONS(3251), - [anon_sym_rlock] = ACTIONS(3251), - [anon_sym_unsafe] = ACTIONS(3251), - [anon_sym_sql] = ACTIONS(3251), - [sym_int_literal] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), - [sym_rune_literal] = ACTIONS(3251), - [sym_pseudo_compile_time_identifier] = ACTIONS(3251), - [anon_sym_shared] = ACTIONS(3251), - [anon_sym_map_LBRACK] = ACTIONS(3251), - [anon_sym_chan] = ACTIONS(3251), - [anon_sym_thread] = ACTIONS(3251), - [anon_sym_atomic] = ACTIONS(3251), - [anon_sym_assert] = ACTIONS(3251), - [anon_sym_defer] = ACTIONS(3251), - [anon_sym_goto] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_DOLLARfor] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_POUND] = ACTIONS(3251), - [anon_sym_asm] = ACTIONS(3251), - [anon_sym_AT_LBRACK] = ACTIONS(3251), - [sym___double_quote] = ACTIONS(3251), - [sym___single_quote] = ACTIONS(3251), - [sym___c_double_quote] = ACTIONS(3251), - [sym___c_single_quote] = ACTIONS(3251), - [sym___r_double_quote] = ACTIONS(3251), - [sym___r_single_quote] = ACTIONS(3251), - }, - [1465] = { - [sym_block] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(4116), - [sym_identifier] = ACTIONS(4118), - [anon_sym_LF] = ACTIONS(4118), - [anon_sym_CR] = ACTIONS(4118), - [anon_sym_CR_LF] = ACTIONS(4118), + [anon_sym_LF] = ACTIONS(4116), + [anon_sym_CR] = ACTIONS(4116), + [anon_sym_CR_LF] = ACTIONS(4116), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4118), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4118), - [anon_sym_LPAREN] = ACTIONS(4118), - [anon_sym___global] = ACTIONS(4118), - [anon_sym_type] = ACTIONS(4118), - [anon_sym_fn] = ACTIONS(4118), - [anon_sym_PLUS] = ACTIONS(4118), - [anon_sym_DASH] = ACTIONS(4118), - [anon_sym_STAR] = ACTIONS(4118), - [anon_sym_struct] = ACTIONS(4118), - [anon_sym_union] = ACTIONS(4118), - [anon_sym_pub] = ACTIONS(4118), - [anon_sym_mut] = ACTIONS(4118), - [anon_sym_enum] = ACTIONS(4118), - [anon_sym_interface] = ACTIONS(4118), - [anon_sym_QMARK] = ACTIONS(4118), - [anon_sym_BANG] = ACTIONS(4118), - [anon_sym_go] = ACTIONS(4118), - [anon_sym_spawn] = ACTIONS(4118), - [anon_sym_json_DOTdecode] = ACTIONS(4118), - [anon_sym_LBRACK2] = ACTIONS(4118), - [anon_sym_TILDE] = ACTIONS(4118), - [anon_sym_CARET] = ACTIONS(4118), - [anon_sym_AMP] = ACTIONS(4118), - [anon_sym_LT_DASH] = ACTIONS(4118), - [sym_none] = ACTIONS(4118), - [sym_true] = ACTIONS(4118), - [sym_false] = ACTIONS(4118), - [sym_nil] = ACTIONS(4118), - [anon_sym_if] = ACTIONS(4118), - [anon_sym_DOLLARif] = ACTIONS(4118), - [anon_sym_match] = ACTIONS(4118), - [anon_sym_select] = ACTIONS(4118), - [anon_sym_lock] = ACTIONS(4118), - [anon_sym_rlock] = ACTIONS(4118), - [anon_sym_unsafe] = ACTIONS(4118), - [anon_sym_sql] = ACTIONS(4118), - [sym_int_literal] = ACTIONS(4118), - [sym_float_literal] = ACTIONS(4118), - [sym_rune_literal] = ACTIONS(4118), - [sym_pseudo_compile_time_identifier] = ACTIONS(4118), - [anon_sym_shared] = ACTIONS(4118), - [anon_sym_map_LBRACK] = ACTIONS(4118), - [anon_sym_chan] = ACTIONS(4118), - [anon_sym_thread] = ACTIONS(4118), - [anon_sym_atomic] = ACTIONS(4118), - [anon_sym_assert] = ACTIONS(4118), - [anon_sym_defer] = ACTIONS(4118), - [anon_sym_goto] = ACTIONS(4118), - [anon_sym_break] = ACTIONS(4118), - [anon_sym_continue] = ACTIONS(4118), - [anon_sym_return] = ACTIONS(4118), - [anon_sym_DOLLARfor] = ACTIONS(4118), - [anon_sym_for] = ACTIONS(4118), - [anon_sym_POUND] = ACTIONS(4118), - [anon_sym_asm] = ACTIONS(4118), - [anon_sym_AT_LBRACK] = ACTIONS(4118), - [sym___double_quote] = ACTIONS(4118), - [sym___single_quote] = ACTIONS(4118), - [sym___c_double_quote] = ACTIONS(4118), - [sym___c_single_quote] = ACTIONS(4118), - [sym___r_double_quote] = ACTIONS(4118), - [sym___r_single_quote] = ACTIONS(4118), + [anon_sym_DOT] = ACTIONS(4116), + [anon_sym_LBRACE] = ACTIONS(4116), + [anon_sym_const] = ACTIONS(4116), + [anon_sym_LPAREN] = ACTIONS(4116), + [anon_sym___global] = ACTIONS(4116), + [anon_sym_type] = ACTIONS(4116), + [anon_sym_fn] = ACTIONS(4116), + [anon_sym_PLUS] = ACTIONS(4116), + [anon_sym_DASH] = ACTIONS(4116), + [anon_sym_STAR] = ACTIONS(4116), + [anon_sym_struct] = ACTIONS(4116), + [anon_sym_union] = ACTIONS(4116), + [anon_sym_pub] = ACTIONS(4116), + [anon_sym_mut] = ACTIONS(4116), + [anon_sym_enum] = ACTIONS(4116), + [anon_sym_interface] = ACTIONS(4116), + [anon_sym_QMARK] = ACTIONS(4116), + [anon_sym_BANG] = ACTIONS(4116), + [anon_sym_go] = ACTIONS(4116), + [anon_sym_spawn] = ACTIONS(4116), + [anon_sym_json_DOTdecode] = ACTIONS(4116), + [anon_sym_LBRACK2] = ACTIONS(4116), + [anon_sym_TILDE] = ACTIONS(4116), + [anon_sym_CARET] = ACTIONS(4116), + [anon_sym_AMP] = ACTIONS(4116), + [anon_sym_LT_DASH] = ACTIONS(4116), + [sym_none] = ACTIONS(4116), + [sym_true] = ACTIONS(4116), + [sym_false] = ACTIONS(4116), + [sym_nil] = ACTIONS(4116), + [anon_sym_if] = ACTIONS(4116), + [anon_sym_DOLLARif] = ACTIONS(4116), + [anon_sym_match] = ACTIONS(4116), + [anon_sym_select] = ACTIONS(4116), + [anon_sym_lock] = ACTIONS(4116), + [anon_sym_rlock] = ACTIONS(4116), + [anon_sym_unsafe] = ACTIONS(4116), + [anon_sym_sql] = ACTIONS(4116), + [sym_int_literal] = ACTIONS(4116), + [sym_float_literal] = ACTIONS(4116), + [sym_rune_literal] = ACTIONS(4116), + [sym_pseudo_compile_time_identifier] = ACTIONS(4116), + [anon_sym_shared] = ACTIONS(4116), + [anon_sym_map_LBRACK] = ACTIONS(4116), + [anon_sym_chan] = ACTIONS(4116), + [anon_sym_thread] = ACTIONS(4116), + [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), }, - [1466] = { - [sym_block] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(4120), - [sym_identifier] = ACTIONS(4122), - [anon_sym_LF] = ACTIONS(4122), - [anon_sym_CR] = ACTIONS(4122), - [anon_sym_CR_LF] = ACTIONS(4122), + [1468] = { + [sym_label_reference] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(4118), + [sym_identifier] = ACTIONS(4114), + [anon_sym_LF] = ACTIONS(4120), + [anon_sym_CR] = ACTIONS(4120), + [anon_sym_CR_LF] = ACTIONS(4120), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4122), - [anon_sym_LBRACE] = ACTIONS(4052), - [anon_sym_const] = ACTIONS(4122), - [anon_sym_LPAREN] = ACTIONS(4122), - [anon_sym___global] = ACTIONS(4122), - [anon_sym_type] = ACTIONS(4122), - [anon_sym_fn] = ACTIONS(4122), - [anon_sym_PLUS] = ACTIONS(4122), - [anon_sym_DASH] = ACTIONS(4122), - [anon_sym_STAR] = ACTIONS(4122), - [anon_sym_struct] = ACTIONS(4122), - [anon_sym_union] = ACTIONS(4122), - [anon_sym_pub] = ACTIONS(4122), - [anon_sym_mut] = ACTIONS(4122), - [anon_sym_enum] = ACTIONS(4122), - [anon_sym_interface] = ACTIONS(4122), - [anon_sym_QMARK] = ACTIONS(4122), - [anon_sym_BANG] = ACTIONS(4122), - [anon_sym_go] = ACTIONS(4122), - [anon_sym_spawn] = ACTIONS(4122), - [anon_sym_json_DOTdecode] = ACTIONS(4122), - [anon_sym_LBRACK2] = ACTIONS(4122), - [anon_sym_TILDE] = ACTIONS(4122), - [anon_sym_CARET] = ACTIONS(4122), - [anon_sym_AMP] = ACTIONS(4122), - [anon_sym_LT_DASH] = ACTIONS(4122), - [sym_none] = ACTIONS(4122), - [sym_true] = ACTIONS(4122), - [sym_false] = ACTIONS(4122), - [sym_nil] = ACTIONS(4122), - [anon_sym_if] = ACTIONS(4122), - [anon_sym_DOLLARif] = ACTIONS(4122), - [anon_sym_match] = ACTIONS(4122), - [anon_sym_select] = ACTIONS(4122), - [anon_sym_lock] = ACTIONS(4122), - [anon_sym_rlock] = ACTIONS(4122), - [anon_sym_unsafe] = ACTIONS(4122), - [anon_sym_sql] = ACTIONS(4122), - [sym_int_literal] = ACTIONS(4122), - [sym_float_literal] = ACTIONS(4122), - [sym_rune_literal] = ACTIONS(4122), - [sym_pseudo_compile_time_identifier] = ACTIONS(4122), - [anon_sym_shared] = ACTIONS(4122), - [anon_sym_map_LBRACK] = ACTIONS(4122), - [anon_sym_chan] = ACTIONS(4122), - [anon_sym_thread] = ACTIONS(4122), - [anon_sym_atomic] = ACTIONS(4122), - [anon_sym_assert] = ACTIONS(4122), - [anon_sym_defer] = ACTIONS(4122), - [anon_sym_goto] = ACTIONS(4122), - [anon_sym_break] = ACTIONS(4122), - [anon_sym_continue] = ACTIONS(4122), - [anon_sym_return] = ACTIONS(4122), - [anon_sym_DOLLARfor] = ACTIONS(4122), - [anon_sym_for] = ACTIONS(4122), - [anon_sym_POUND] = ACTIONS(4122), - [anon_sym_asm] = ACTIONS(4122), - [anon_sym_AT_LBRACK] = ACTIONS(4122), - [sym___double_quote] = ACTIONS(4122), - [sym___single_quote] = ACTIONS(4122), - [sym___c_double_quote] = ACTIONS(4122), - [sym___c_single_quote] = ACTIONS(4122), - [sym___r_double_quote] = ACTIONS(4122), - [sym___r_single_quote] = ACTIONS(4122), + [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), + [sym_pseudo_compile_time_identifier] = 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), }, - [1467] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [anon_sym_LF] = ACTIONS(607), - [anon_sym_CR] = ACTIONS(607), - [anon_sym_CR_LF] = ACTIONS(607), + [1469] = { + [sym_block] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(4122), + [sym_identifier] = ACTIONS(4124), + [anon_sym_LF] = ACTIONS(4124), + [anon_sym_CR] = ACTIONS(4124), + [anon_sym_CR_LF] = ACTIONS(4124), [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(607), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(607), - [anon_sym_RBRACE] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(609), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(613), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(607), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(607), - [anon_sym_BANG_EQ] = ACTIONS(607), - [anon_sym_LT_EQ] = ACTIONS(607), - [anon_sym_GT_EQ] = ACTIONS(607), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(607), - [anon_sym_DASH_DASH] = ACTIONS(607), - [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_DOT] = ACTIONS(4124), + [anon_sym_LBRACE] = ACTIONS(4064), + [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_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(607), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(607), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(607), - [anon_sym_AMP_CARET] = ACTIONS(607), - [anon_sym_AMP_AMP] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(607), - [anon_sym_POUND_LBRACK] = ACTIONS(607), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(607), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(607), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(545), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [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), + [sym_pseudo_compile_time_identifier] = 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), }, - [1468] = { - [ts_builtin_sym_end] = ACTIONS(3381), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(3383), - [anon_sym_CR] = ACTIONS(3383), - [anon_sym_CR_LF] = ACTIONS(3383), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3383), - [anon_sym_const] = ACTIONS(3383), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym___global] = ACTIONS(3383), - [anon_sym_type] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3383), - [anon_sym_fn] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3383), - [anon_sym_DASH] = ACTIONS(3383), - [anon_sym_STAR] = ACTIONS(3383), - [anon_sym_struct] = ACTIONS(3383), - [anon_sym_union] = ACTIONS(3383), - [anon_sym_pub] = ACTIONS(3383), - [anon_sym_mut] = ACTIONS(3383), - [anon_sym_enum] = ACTIONS(3383), - [anon_sym_interface] = ACTIONS(3383), - [anon_sym_QMARK] = ACTIONS(3383), - [anon_sym_BANG] = ACTIONS(3383), - [anon_sym_go] = ACTIONS(3383), - [anon_sym_spawn] = ACTIONS(3383), - [anon_sym_json_DOTdecode] = ACTIONS(3383), - [anon_sym_LBRACK2] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3383), - [anon_sym_CARET] = ACTIONS(3383), - [anon_sym_AMP] = ACTIONS(3383), - [anon_sym_LT_DASH] = ACTIONS(3383), - [sym_none] = ACTIONS(3383), - [sym_true] = ACTIONS(3383), - [sym_false] = ACTIONS(3383), - [sym_nil] = ACTIONS(3383), - [anon_sym_if] = ACTIONS(3383), - [anon_sym_DOLLARif] = ACTIONS(3383), - [anon_sym_match] = ACTIONS(3383), - [anon_sym_select] = ACTIONS(3383), - [anon_sym_lock] = ACTIONS(3383), - [anon_sym_rlock] = ACTIONS(3383), - [anon_sym_unsafe] = ACTIONS(3383), - [anon_sym_sql] = ACTIONS(3383), - [sym_int_literal] = ACTIONS(3383), - [sym_float_literal] = ACTIONS(3383), - [sym_rune_literal] = ACTIONS(3383), - [sym_pseudo_compile_time_identifier] = ACTIONS(3383), - [anon_sym_shared] = ACTIONS(3383), - [anon_sym_map_LBRACK] = ACTIONS(3383), - [anon_sym_chan] = ACTIONS(3383), - [anon_sym_thread] = ACTIONS(3383), - [anon_sym_atomic] = ACTIONS(3383), - [anon_sym_assert] = ACTIONS(3383), - [anon_sym_defer] = ACTIONS(3383), - [anon_sym_goto] = ACTIONS(3383), - [anon_sym_break] = ACTIONS(3383), - [anon_sym_continue] = ACTIONS(3383), - [anon_sym_return] = ACTIONS(3383), - [anon_sym_DOLLARfor] = ACTIONS(3383), - [anon_sym_for] = ACTIONS(3383), - [anon_sym_POUND] = ACTIONS(3383), - [anon_sym_asm] = ACTIONS(3383), - [anon_sym_AT_LBRACK] = ACTIONS(3383), - [sym___double_quote] = ACTIONS(3383), - [sym___single_quote] = ACTIONS(3383), - [sym___c_double_quote] = ACTIONS(3383), - [sym___c_single_quote] = ACTIONS(3383), - [sym___r_double_quote] = ACTIONS(3383), - [sym___r_single_quote] = ACTIONS(3383), - }, - [1469] = { - [sym_block] = STATE(1595), + [1470] = { + [sym_block] = STATE(1586), [ts_builtin_sym_end] = ACTIONS(4126), [sym_identifier] = ACTIONS(4128), [anon_sym_LF] = ACTIONS(4128), @@ -180151,7 +180364,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4128), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4128), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4128), [anon_sym_LPAREN] = ACTIONS(4128), [anon_sym___global] = ACTIONS(4128), @@ -180215,7 +180428,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4128), [sym___r_single_quote] = ACTIONS(4128), }, - [1470] = { + [1471] = { + [sym_block] = STATE(1581), [ts_builtin_sym_end] = ACTIONS(4130), [sym_identifier] = ACTIONS(4132), [anon_sym_LF] = ACTIONS(4132), @@ -180223,12 +180437,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4132), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4132), - [anon_sym_LBRACE] = ACTIONS(4132), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4132), [anon_sym_LPAREN] = ACTIONS(4132), [anon_sym___global] = ACTIONS(4132), [anon_sym_type] = ACTIONS(4132), - [anon_sym_PIPE] = ACTIONS(4132), [anon_sym_fn] = ACTIONS(4132), [anon_sym_PLUS] = ACTIONS(4132), [anon_sym_DASH] = ACTIONS(4132), @@ -180288,154 +180501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4132), [sym___r_single_quote] = ACTIONS(4132), }, - [1471] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(2485), - [sym_plain_type] = STATE(2517), - [sym__plain_type_without_special] = STATE(2546), - [sym_anon_struct_type] = STATE(2525), - [sym_multi_return_type] = STATE(2546), - [sym_result_type] = STATE(2546), - [sym_option_type] = STATE(2546), - [sym_qualified_type] = STATE(2485), - [sym_fixed_array_type] = STATE(2525), - [sym_array_type] = STATE(2525), - [sym_pointer_type] = STATE(2525), - [sym_wrong_pointer_type] = STATE(2525), - [sym_map_type] = STATE(2525), - [sym_channel_type] = STATE(2525), - [sym_shared_type] = STATE(2525), - [sym_thread_type] = STATE(2525), - [sym_atomic_type] = STATE(2525), - [sym_generic_type] = STATE(2525), - [sym_function_type] = STATE(2525), - [sym_identifier] = ACTIONS(4080), - [anon_sym_LF] = ACTIONS(597), - [anon_sym_CR] = ACTIONS(597), - [anon_sym_CR_LF] = ACTIONS(597), - [sym_comment] = ACTIONS(495), - [anon_sym_SEMI] = ACTIONS(597), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_COMMA] = ACTIONS(597), - [anon_sym_RBRACE] = ACTIONS(597), - [anon_sym_LPAREN] = ACTIONS(4082), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(4086), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(597), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(597), - [anon_sym_BANG_EQ] = ACTIONS(597), - [anon_sym_LT_EQ] = ACTIONS(597), - [anon_sym_GT_EQ] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_PLUS_PLUS] = ACTIONS(597), - [anon_sym_DASH_DASH] = ACTIONS(597), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_LBRACK2] = ACTIONS(4094), - [anon_sym_CARET] = ACTIONS(597), - [anon_sym_AMP] = ACTIONS(4096), - [anon_sym_LT_LT] = ACTIONS(597), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(597), - [anon_sym_AMP_CARET] = ACTIONS(597), - [anon_sym_AMP_AMP] = ACTIONS(597), - [anon_sym_PIPE_PIPE] = ACTIONS(597), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(597), - [anon_sym_POUND_LBRACK] = ACTIONS(597), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(597), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(597), - [anon_sym_shared] = ACTIONS(4098), - [anon_sym_map_LBRACK] = ACTIONS(4100), - [anon_sym_chan] = ACTIONS(4102), - [anon_sym_thread] = ACTIONS(4104), - [anon_sym_atomic] = ACTIONS(4106), - }, [1472] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(2485), - [sym_plain_type] = STATE(2538), - [sym__plain_type_without_special] = STATE(2546), - [sym_anon_struct_type] = STATE(2525), - [sym_multi_return_type] = STATE(2546), - [sym_result_type] = STATE(2546), - [sym_option_type] = STATE(2546), - [sym_qualified_type] = STATE(2485), - [sym_fixed_array_type] = STATE(2525), - [sym_array_type] = STATE(2525), - [sym_pointer_type] = STATE(2525), - [sym_wrong_pointer_type] = STATE(2525), - [sym_map_type] = STATE(2525), - [sym_channel_type] = STATE(2525), - [sym_shared_type] = STATE(2525), - [sym_thread_type] = STATE(2525), - [sym_atomic_type] = STATE(2525), - [sym_generic_type] = STATE(2525), - [sym_function_type] = STATE(2525), - [sym_identifier] = ACTIONS(4080), - [anon_sym_LF] = ACTIONS(593), - [anon_sym_CR] = ACTIONS(593), - [anon_sym_CR_LF] = ACTIONS(593), - [sym_comment] = ACTIONS(495), - [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(4082), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(4084), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(4086), - [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(591), - [anon_sym_struct] = ACTIONS(4088), - [anon_sym_PLUS_PLUS] = ACTIONS(593), - [anon_sym_DASH_DASH] = ACTIONS(593), - [anon_sym_QMARK] = ACTIONS(4090), - [anon_sym_BANG] = ACTIONS(4092), - [anon_sym_LBRACK2] = ACTIONS(4094), - [anon_sym_CARET] = ACTIONS(593), - [anon_sym_AMP] = ACTIONS(4096), - [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(4098), - [anon_sym_map_LBRACK] = ACTIONS(4100), - [anon_sym_chan] = ACTIONS(4102), - [anon_sym_thread] = ACTIONS(4104), - [anon_sym_atomic] = ACTIONS(4106), - }, - [1473] = { - [sym_block] = STATE(1597), + [sym_block] = STATE(1580), [ts_builtin_sym_end] = ACTIONS(4134), [sym_identifier] = ACTIONS(4136), [anon_sym_LF] = ACTIONS(4136), @@ -180443,7 +180510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4136), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4136), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4136), [anon_sym_LPAREN] = ACTIONS(4136), [anon_sym___global] = ACTIONS(4136), @@ -180507,8 +180574,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4136), [sym___r_single_quote] = ACTIONS(4136), }, + [1473] = { + [ts_builtin_sym_end] = ACTIONS(2905), + [sym_identifier] = ACTIONS(2907), + [anon_sym_LF] = ACTIONS(2907), + [anon_sym_CR] = ACTIONS(2907), + [anon_sym_CR_LF] = ACTIONS(2907), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2907), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_const] = ACTIONS(2907), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym___global] = ACTIONS(2907), + [anon_sym_type] = ACTIONS(2907), + [anon_sym_PIPE] = ACTIONS(2907), + [anon_sym_fn] = ACTIONS(2907), + [anon_sym_PLUS] = ACTIONS(2907), + [anon_sym_DASH] = ACTIONS(2907), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_struct] = ACTIONS(2907), + [anon_sym_union] = ACTIONS(2907), + [anon_sym_pub] = ACTIONS(2907), + [anon_sym_mut] = ACTIONS(2907), + [anon_sym_enum] = ACTIONS(2907), + [anon_sym_interface] = ACTIONS(2907), + [anon_sym_QMARK] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2907), + [anon_sym_go] = ACTIONS(2907), + [anon_sym_spawn] = ACTIONS(2907), + [anon_sym_json_DOTdecode] = ACTIONS(2907), + [anon_sym_LBRACK2] = ACTIONS(2907), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_CARET] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2907), + [anon_sym_LT_DASH] = ACTIONS(2907), + [sym_none] = ACTIONS(2907), + [sym_true] = ACTIONS(2907), + [sym_false] = ACTIONS(2907), + [sym_nil] = ACTIONS(2907), + [anon_sym_if] = ACTIONS(2907), + [anon_sym_DOLLARif] = ACTIONS(2907), + [anon_sym_match] = ACTIONS(2907), + [anon_sym_select] = ACTIONS(2907), + [anon_sym_lock] = ACTIONS(2907), + [anon_sym_rlock] = ACTIONS(2907), + [anon_sym_unsafe] = ACTIONS(2907), + [anon_sym_sql] = ACTIONS(2907), + [sym_int_literal] = ACTIONS(2907), + [sym_float_literal] = ACTIONS(2907), + [sym_rune_literal] = ACTIONS(2907), + [sym_pseudo_compile_time_identifier] = ACTIONS(2907), + [anon_sym_shared] = ACTIONS(2907), + [anon_sym_map_LBRACK] = ACTIONS(2907), + [anon_sym_chan] = ACTIONS(2907), + [anon_sym_thread] = ACTIONS(2907), + [anon_sym_atomic] = ACTIONS(2907), + [anon_sym_assert] = ACTIONS(2907), + [anon_sym_defer] = ACTIONS(2907), + [anon_sym_goto] = ACTIONS(2907), + [anon_sym_break] = ACTIONS(2907), + [anon_sym_continue] = ACTIONS(2907), + [anon_sym_return] = ACTIONS(2907), + [anon_sym_DOLLARfor] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2907), + [anon_sym_POUND] = ACTIONS(2907), + [anon_sym_asm] = ACTIONS(2907), + [anon_sym_AT_LBRACK] = ACTIONS(2907), + [sym___double_quote] = ACTIONS(2907), + [sym___single_quote] = ACTIONS(2907), + [sym___c_double_quote] = ACTIONS(2907), + [sym___c_single_quote] = ACTIONS(2907), + [sym___r_double_quote] = ACTIONS(2907), + [sym___r_single_quote] = ACTIONS(2907), + }, [1474] = { - [sym_block] = STATE(1579), + [sym_block] = STATE(1577), [ts_builtin_sym_end] = ACTIONS(4138), [sym_identifier] = ACTIONS(4140), [anon_sym_LF] = ACTIONS(4140), @@ -180516,7 +180656,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4140), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4140), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4140), [anon_sym_LPAREN] = ACTIONS(4140), [anon_sym___global] = ACTIONS(4140), @@ -180581,7 +180721,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(4140), }, [1475] = { - [sym_block] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(2893), + [sym_identifier] = ACTIONS(2895), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_CR] = ACTIONS(2895), + [anon_sym_CR_LF] = ACTIONS(2895), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2895), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_const] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym___global] = ACTIONS(2895), + [anon_sym_type] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_union] = ACTIONS(2895), + [anon_sym_pub] = ACTIONS(2895), + [anon_sym_mut] = ACTIONS(2895), + [anon_sym_enum] = ACTIONS(2895), + [anon_sym_interface] = ACTIONS(2895), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2895), + [anon_sym_go] = ACTIONS(2895), + [anon_sym_spawn] = ACTIONS(2895), + [anon_sym_json_DOTdecode] = ACTIONS(2895), + [anon_sym_LBRACK2] = ACTIONS(2895), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_LT_DASH] = ACTIONS(2895), + [sym_none] = ACTIONS(2895), + [sym_true] = ACTIONS(2895), + [sym_false] = ACTIONS(2895), + [sym_nil] = ACTIONS(2895), + [anon_sym_if] = ACTIONS(2895), + [anon_sym_DOLLARif] = ACTIONS(2895), + [anon_sym_match] = ACTIONS(2895), + [anon_sym_select] = ACTIONS(2895), + [anon_sym_lock] = ACTIONS(2895), + [anon_sym_rlock] = ACTIONS(2895), + [anon_sym_unsafe] = ACTIONS(2895), + [anon_sym_sql] = ACTIONS(2895), + [sym_int_literal] = ACTIONS(2895), + [sym_float_literal] = ACTIONS(2895), + [sym_rune_literal] = ACTIONS(2895), + [sym_pseudo_compile_time_identifier] = ACTIONS(2895), + [anon_sym_shared] = ACTIONS(2895), + [anon_sym_map_LBRACK] = ACTIONS(2895), + [anon_sym_chan] = ACTIONS(2895), + [anon_sym_thread] = ACTIONS(2895), + [anon_sym_atomic] = ACTIONS(2895), + [anon_sym_assert] = ACTIONS(2895), + [anon_sym_defer] = ACTIONS(2895), + [anon_sym_goto] = ACTIONS(2895), + [anon_sym_break] = ACTIONS(2895), + [anon_sym_continue] = ACTIONS(2895), + [anon_sym_return] = ACTIONS(2895), + [anon_sym_DOLLARfor] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2895), + [anon_sym_POUND] = ACTIONS(2895), + [anon_sym_asm] = ACTIONS(2895), + [anon_sym_AT_LBRACK] = ACTIONS(2895), + [sym___double_quote] = ACTIONS(2895), + [sym___single_quote] = ACTIONS(2895), + [sym___c_double_quote] = ACTIONS(2895), + [sym___c_single_quote] = ACTIONS(2895), + [sym___r_double_quote] = ACTIONS(2895), + [sym___r_single_quote] = ACTIONS(2895), + }, + [1476] = { + [sym_block] = STATE(1576), [ts_builtin_sym_end] = ACTIONS(4142), [sym_identifier] = ACTIONS(4144), [anon_sym_LF] = ACTIONS(4144), @@ -180589,7 +180802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4144), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4144), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4144), [anon_sym_LPAREN] = ACTIONS(4144), [anon_sym___global] = ACTIONS(4144), @@ -180653,227 +180866,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4144), [sym___r_single_quote] = ACTIONS(4144), }, - [1476] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), - }, [1477] = { - [ts_builtin_sym_end] = ACTIONS(3205), - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_LBRACE] = ACTIONS(3207), - [anon_sym_const] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym___global] = ACTIONS(3207), - [anon_sym_type] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_union] = ACTIONS(3207), - [anon_sym_pub] = ACTIONS(3207), - [anon_sym_mut] = ACTIONS(3207), - [anon_sym_enum] = ACTIONS(3207), - [anon_sym_interface] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_go] = ACTIONS(3207), - [anon_sym_spawn] = ACTIONS(3207), - [anon_sym_json_DOTdecode] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_TILDE] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [sym_none] = ACTIONS(3207), - [sym_true] = ACTIONS(3207), - [sym_false] = ACTIONS(3207), - [sym_nil] = ACTIONS(3207), - [anon_sym_if] = ACTIONS(3207), - [anon_sym_DOLLARif] = ACTIONS(3207), - [anon_sym_match] = ACTIONS(3207), - [anon_sym_select] = ACTIONS(3207), - [anon_sym_lock] = ACTIONS(3207), - [anon_sym_rlock] = ACTIONS(3207), - [anon_sym_unsafe] = ACTIONS(3207), - [anon_sym_sql] = ACTIONS(3207), - [sym_int_literal] = ACTIONS(3207), - [sym_float_literal] = ACTIONS(3207), - [sym_rune_literal] = ACTIONS(3207), - [sym_pseudo_compile_time_identifier] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), - [anon_sym_assert] = ACTIONS(3207), - [anon_sym_defer] = ACTIONS(3207), - [anon_sym_goto] = ACTIONS(3207), - [anon_sym_break] = ACTIONS(3207), - [anon_sym_continue] = ACTIONS(3207), - [anon_sym_return] = ACTIONS(3207), - [anon_sym_DOLLARfor] = ACTIONS(3207), - [anon_sym_for] = ACTIONS(3207), - [anon_sym_POUND] = ACTIONS(3207), - [anon_sym_asm] = ACTIONS(3207), - [anon_sym_AT_LBRACK] = ACTIONS(3207), - [sym___double_quote] = ACTIONS(3207), - [sym___single_quote] = ACTIONS(3207), - [sym___c_double_quote] = ACTIONS(3207), - [sym___c_single_quote] = ACTIONS(3207), - [sym___r_double_quote] = ACTIONS(3207), - [sym___r_single_quote] = ACTIONS(3207), - }, - [1478] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_LBRACE] = 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_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_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), - [sym_none] = ACTIONS(3199), - [sym_true] = ACTIONS(3199), - [sym_false] = ACTIONS(3199), - [sym_nil] = ACTIONS(3199), - [anon_sym_if] = ACTIONS(3199), - [anon_sym_DOLLARif] = ACTIONS(3199), - [anon_sym_match] = ACTIONS(3199), - [anon_sym_select] = ACTIONS(3199), - [anon_sym_lock] = ACTIONS(3199), - [anon_sym_rlock] = ACTIONS(3199), - [anon_sym_unsafe] = ACTIONS(3199), - [anon_sym_sql] = ACTIONS(3199), - [sym_int_literal] = ACTIONS(3199), - [sym_float_literal] = ACTIONS(3199), - [sym_rune_literal] = ACTIONS(3199), - [sym_pseudo_compile_time_identifier] = ACTIONS(3199), - [anon_sym_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - [anon_sym_assert] = ACTIONS(3199), - [anon_sym_defer] = ACTIONS(3199), - [anon_sym_goto] = ACTIONS(3199), - [anon_sym_break] = ACTIONS(3199), - [anon_sym_continue] = ACTIONS(3199), - [anon_sym_return] = ACTIONS(3199), - [anon_sym_DOLLARfor] = ACTIONS(3199), - [anon_sym_for] = ACTIONS(3199), - [anon_sym_POUND] = ACTIONS(3199), - [anon_sym_asm] = ACTIONS(3199), - [anon_sym_AT_LBRACK] = ACTIONS(3199), - [sym___double_quote] = ACTIONS(3199), - [sym___single_quote] = ACTIONS(3199), - [sym___c_double_quote] = ACTIONS(3199), - [sym___c_single_quote] = ACTIONS(3199), - [sym___r_double_quote] = ACTIONS(3199), - [sym___r_single_quote] = ACTIONS(3199), - }, - [1479] = { - [sym_block] = STATE(1563), + [sym_block] = STATE(1533), [ts_builtin_sym_end] = ACTIONS(4146), [sym_identifier] = ACTIONS(4148), [anon_sym_LF] = ACTIONS(4148), @@ -180881,7 +180875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4148), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4148), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4148), [anon_sym_LPAREN] = ACTIONS(4148), [anon_sym___global] = ACTIONS(4148), @@ -180945,8 +180939,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4148), [sym___r_single_quote] = ACTIONS(4148), }, - [1480] = { - [sym_block] = STATE(1575), + [1478] = { + [ts_builtin_sym_end] = ACTIONS(4035), + [sym_identifier] = ACTIONS(4037), + [anon_sym_LF] = ACTIONS(4037), + [anon_sym_CR] = ACTIONS(4037), + [anon_sym_CR_LF] = ACTIONS(4037), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4037), + [anon_sym_LBRACE] = ACTIONS(4037), + [anon_sym_const] = ACTIONS(4037), + [anon_sym_LPAREN] = ACTIONS(4037), + [anon_sym___global] = ACTIONS(4037), + [anon_sym_type] = ACTIONS(4037), + [anon_sym_PIPE] = ACTIONS(4037), + [anon_sym_fn] = ACTIONS(4037), + [anon_sym_PLUS] = ACTIONS(4037), + [anon_sym_DASH] = ACTIONS(4037), + [anon_sym_STAR] = ACTIONS(4037), + [anon_sym_struct] = ACTIONS(4037), + [anon_sym_union] = ACTIONS(4037), + [anon_sym_pub] = ACTIONS(4037), + [anon_sym_mut] = ACTIONS(4037), + [anon_sym_enum] = ACTIONS(4037), + [anon_sym_interface] = ACTIONS(4037), + [anon_sym_QMARK] = ACTIONS(4037), + [anon_sym_BANG] = ACTIONS(4037), + [anon_sym_go] = ACTIONS(4037), + [anon_sym_spawn] = ACTIONS(4037), + [anon_sym_json_DOTdecode] = ACTIONS(4037), + [anon_sym_LBRACK2] = ACTIONS(4037), + [anon_sym_TILDE] = ACTIONS(4037), + [anon_sym_CARET] = ACTIONS(4037), + [anon_sym_AMP] = ACTIONS(4037), + [anon_sym_LT_DASH] = ACTIONS(4037), + [sym_none] = ACTIONS(4037), + [sym_true] = ACTIONS(4037), + [sym_false] = ACTIONS(4037), + [sym_nil] = ACTIONS(4037), + [anon_sym_if] = ACTIONS(4037), + [anon_sym_DOLLARif] = ACTIONS(4037), + [anon_sym_match] = ACTIONS(4037), + [anon_sym_select] = ACTIONS(4037), + [anon_sym_lock] = ACTIONS(4037), + [anon_sym_rlock] = ACTIONS(4037), + [anon_sym_unsafe] = ACTIONS(4037), + [anon_sym_sql] = ACTIONS(4037), + [sym_int_literal] = ACTIONS(4037), + [sym_float_literal] = ACTIONS(4037), + [sym_rune_literal] = ACTIONS(4037), + [sym_pseudo_compile_time_identifier] = ACTIONS(4037), + [anon_sym_shared] = ACTIONS(4037), + [anon_sym_map_LBRACK] = ACTIONS(4037), + [anon_sym_chan] = ACTIONS(4037), + [anon_sym_thread] = ACTIONS(4037), + [anon_sym_atomic] = ACTIONS(4037), + [anon_sym_assert] = ACTIONS(4037), + [anon_sym_defer] = ACTIONS(4037), + [anon_sym_goto] = ACTIONS(4037), + [anon_sym_break] = ACTIONS(4037), + [anon_sym_continue] = ACTIONS(4037), + [anon_sym_return] = ACTIONS(4037), + [anon_sym_DOLLARfor] = ACTIONS(4037), + [anon_sym_for] = ACTIONS(4037), + [anon_sym_POUND] = ACTIONS(4037), + [anon_sym_asm] = ACTIONS(4037), + [anon_sym_AT_LBRACK] = ACTIONS(4037), + [sym___double_quote] = ACTIONS(4037), + [sym___single_quote] = ACTIONS(4037), + [sym___c_double_quote] = ACTIONS(4037), + [sym___c_single_quote] = ACTIONS(4037), + [sym___r_double_quote] = ACTIONS(4037), + [sym___r_single_quote] = ACTIONS(4037), + }, + [1479] = { + [sym_block] = STATE(1564), [ts_builtin_sym_end] = ACTIONS(4150), [sym_identifier] = ACTIONS(4152), [anon_sym_LF] = ACTIONS(4152), @@ -180954,7 +181021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4152), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4152), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4152), [anon_sym_LPAREN] = ACTIONS(4152), [anon_sym___global] = ACTIONS(4152), @@ -181018,81 +181085,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4152), [sym___r_single_quote] = ACTIONS(4152), }, - [1481] = { - [ts_builtin_sym_end] = ACTIONS(4015), - [sym_identifier] = ACTIONS(4017), - [anon_sym_LF] = ACTIONS(4017), - [anon_sym_CR] = ACTIONS(4017), - [anon_sym_CR_LF] = ACTIONS(4017), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_LBRACE] = ACTIONS(4017), - [anon_sym_const] = ACTIONS(4017), - [anon_sym_LPAREN] = ACTIONS(4017), - [anon_sym___global] = ACTIONS(4017), - [anon_sym_type] = ACTIONS(4017), - [anon_sym_PIPE] = ACTIONS(4017), - [anon_sym_fn] = ACTIONS(4017), - [anon_sym_PLUS] = ACTIONS(4017), - [anon_sym_DASH] = ACTIONS(4017), - [anon_sym_STAR] = ACTIONS(4017), - [anon_sym_struct] = ACTIONS(4017), - [anon_sym_union] = ACTIONS(4017), - [anon_sym_pub] = ACTIONS(4017), - [anon_sym_mut] = ACTIONS(4017), - [anon_sym_enum] = ACTIONS(4017), - [anon_sym_interface] = ACTIONS(4017), - [anon_sym_QMARK] = ACTIONS(4017), - [anon_sym_BANG] = ACTIONS(4017), - [anon_sym_go] = ACTIONS(4017), - [anon_sym_spawn] = ACTIONS(4017), - [anon_sym_json_DOTdecode] = ACTIONS(4017), - [anon_sym_LBRACK2] = ACTIONS(4017), - [anon_sym_TILDE] = ACTIONS(4017), - [anon_sym_CARET] = ACTIONS(4017), - [anon_sym_AMP] = ACTIONS(4017), - [anon_sym_LT_DASH] = ACTIONS(4017), - [sym_none] = ACTIONS(4017), - [sym_true] = ACTIONS(4017), - [sym_false] = ACTIONS(4017), - [sym_nil] = ACTIONS(4017), - [anon_sym_if] = ACTIONS(4017), - [anon_sym_DOLLARif] = ACTIONS(4017), - [anon_sym_match] = ACTIONS(4017), - [anon_sym_select] = ACTIONS(4017), - [anon_sym_lock] = ACTIONS(4017), - [anon_sym_rlock] = ACTIONS(4017), - [anon_sym_unsafe] = ACTIONS(4017), - [anon_sym_sql] = ACTIONS(4017), - [sym_int_literal] = ACTIONS(4017), - [sym_float_literal] = ACTIONS(4017), - [sym_rune_literal] = ACTIONS(4017), - [sym_pseudo_compile_time_identifier] = ACTIONS(4017), - [anon_sym_shared] = ACTIONS(4017), - [anon_sym_map_LBRACK] = ACTIONS(4017), - [anon_sym_chan] = ACTIONS(4017), - [anon_sym_thread] = ACTIONS(4017), - [anon_sym_atomic] = ACTIONS(4017), - [anon_sym_assert] = ACTIONS(4017), - [anon_sym_defer] = ACTIONS(4017), - [anon_sym_goto] = ACTIONS(4017), - [anon_sym_break] = ACTIONS(4017), - [anon_sym_continue] = ACTIONS(4017), - [anon_sym_return] = ACTIONS(4017), - [anon_sym_DOLLARfor] = ACTIONS(4017), - [anon_sym_for] = ACTIONS(4017), - [anon_sym_POUND] = ACTIONS(4017), - [anon_sym_asm] = ACTIONS(4017), - [anon_sym_AT_LBRACK] = ACTIONS(4017), - [sym___double_quote] = ACTIONS(4017), - [sym___single_quote] = ACTIONS(4017), - [sym___c_double_quote] = ACTIONS(4017), - [sym___c_single_quote] = ACTIONS(4017), - [sym___r_double_quote] = ACTIONS(4017), - [sym___r_single_quote] = ACTIONS(4017), - }, - [1482] = { - [sym_block] = STATE(1600), + [1480] = { + [sym_block] = STATE(1562), [ts_builtin_sym_end] = ACTIONS(4154), [sym_identifier] = ACTIONS(4156), [anon_sym_LF] = ACTIONS(4156), @@ -181100,7 +181094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4156), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4156), [anon_sym_LPAREN] = ACTIONS(4156), [anon_sym___global] = ACTIONS(4156), @@ -181164,8 +181158,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4156), [sym___r_single_quote] = ACTIONS(4156), }, - [1483] = { - [sym_block] = STATE(1601), + [1481] = { + [sym_block] = STATE(1561), [ts_builtin_sym_end] = ACTIONS(4158), [sym_identifier] = ACTIONS(4160), [anon_sym_LF] = ACTIONS(4160), @@ -181173,7 +181167,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4160), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4160), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4160), [anon_sym_LPAREN] = ACTIONS(4160), [anon_sym___global] = ACTIONS(4160), @@ -181237,8 +181231,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4160), [sym___r_single_quote] = ACTIONS(4160), }, - [1484] = { - [sym_block] = STATE(1602), + [1482] = { + [sym_block] = STATE(1560), [ts_builtin_sym_end] = ACTIONS(4162), [sym_identifier] = ACTIONS(4164), [anon_sym_LF] = ACTIONS(4164), @@ -181246,7 +181240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4164), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4164), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4164), [anon_sym_LPAREN] = ACTIONS(4164), [anon_sym___global] = ACTIONS(4164), @@ -181310,8 +181304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4164), [sym___r_single_quote] = ACTIONS(4164), }, - [1485] = { - [sym_block] = STATE(1525), + [1483] = { + [sym_block] = STATE(1559), [ts_builtin_sym_end] = ACTIONS(4166), [sym_identifier] = ACTIONS(4168), [anon_sym_LF] = ACTIONS(4168), @@ -181319,7 +181313,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4168), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4168), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4168), [anon_sym_LPAREN] = ACTIONS(4168), [anon_sym___global] = ACTIONS(4168), @@ -181383,8 +181377,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4168), [sym___r_single_quote] = ACTIONS(4168), }, - [1486] = { - [sym_block] = STATE(1564), + [1484] = { + [ts_builtin_sym_end] = ACTIONS(3338), + [sym_identifier] = ACTIONS(3340), + [anon_sym_LF] = ACTIONS(3340), + [anon_sym_CR] = ACTIONS(3340), + [anon_sym_CR_LF] = ACTIONS(3340), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym___global] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_PIPE] = ACTIONS(3340), + [anon_sym_fn] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_STAR] = ACTIONS(3340), + [anon_sym_struct] = ACTIONS(3340), + [anon_sym_union] = ACTIONS(3340), + [anon_sym_pub] = ACTIONS(3340), + [anon_sym_mut] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_QMARK] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_go] = ACTIONS(3340), + [anon_sym_spawn] = ACTIONS(3340), + [anon_sym_json_DOTdecode] = ACTIONS(3340), + [anon_sym_LBRACK2] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_CARET] = ACTIONS(3340), + [anon_sym_AMP] = ACTIONS(3340), + [anon_sym_LT_DASH] = ACTIONS(3340), + [sym_none] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_nil] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_DOLLARif] = ACTIONS(3340), + [anon_sym_match] = ACTIONS(3340), + [anon_sym_select] = ACTIONS(3340), + [anon_sym_lock] = ACTIONS(3340), + [anon_sym_rlock] = ACTIONS(3340), + [anon_sym_unsafe] = ACTIONS(3340), + [anon_sym_sql] = ACTIONS(3340), + [sym_int_literal] = ACTIONS(3340), + [sym_float_literal] = ACTIONS(3340), + [sym_rune_literal] = ACTIONS(3340), + [sym_pseudo_compile_time_identifier] = ACTIONS(3340), + [anon_sym_shared] = ACTIONS(3340), + [anon_sym_map_LBRACK] = ACTIONS(3340), + [anon_sym_chan] = ACTIONS(3340), + [anon_sym_thread] = ACTIONS(3340), + [anon_sym_atomic] = ACTIONS(3340), + [anon_sym_assert] = ACTIONS(3340), + [anon_sym_defer] = ACTIONS(3340), + [anon_sym_goto] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_DOLLARfor] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_POUND] = ACTIONS(3340), + [anon_sym_asm] = ACTIONS(3340), + [anon_sym_AT_LBRACK] = ACTIONS(3340), + [sym___double_quote] = ACTIONS(3340), + [sym___single_quote] = ACTIONS(3340), + [sym___c_double_quote] = ACTIONS(3340), + [sym___c_single_quote] = ACTIONS(3340), + [sym___r_double_quote] = ACTIONS(3340), + [sym___r_single_quote] = ACTIONS(3340), + }, + [1485] = { + [sym_block] = STATE(1558), [ts_builtin_sym_end] = ACTIONS(4170), [sym_identifier] = ACTIONS(4172), [anon_sym_LF] = ACTIONS(4172), @@ -181392,7 +181459,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4172), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4172), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4172), [anon_sym_LPAREN] = ACTIONS(4172), [anon_sym___global] = ACTIONS(4172), @@ -181456,81 +181523,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4172), [sym___r_single_quote] = ACTIONS(4172), }, - [1487] = { - [ts_builtin_sym_end] = ACTIONS(3423), - [sym_identifier] = ACTIONS(3425), - [anon_sym_LF] = ACTIONS(3425), - [anon_sym_CR] = ACTIONS(3425), - [anon_sym_CR_LF] = ACTIONS(3425), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym___global] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_fn] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_STAR] = ACTIONS(3425), - [anon_sym_struct] = ACTIONS(3425), - [anon_sym_union] = ACTIONS(3425), - [anon_sym_pub] = ACTIONS(3425), - [anon_sym_mut] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_go] = ACTIONS(3425), - [anon_sym_spawn] = ACTIONS(3425), - [anon_sym_json_DOTdecode] = ACTIONS(3425), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_LT_DASH] = ACTIONS(3425), - [sym_none] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_nil] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_DOLLARif] = ACTIONS(3425), - [anon_sym_match] = ACTIONS(3425), - [anon_sym_select] = ACTIONS(3425), - [anon_sym_lock] = ACTIONS(3425), - [anon_sym_rlock] = ACTIONS(3425), - [anon_sym_unsafe] = ACTIONS(3425), - [anon_sym_sql] = ACTIONS(3425), - [sym_int_literal] = ACTIONS(3425), - [sym_float_literal] = ACTIONS(3425), - [sym_rune_literal] = ACTIONS(3425), - [sym_pseudo_compile_time_identifier] = ACTIONS(3425), - [anon_sym_shared] = ACTIONS(3425), - [anon_sym_map_LBRACK] = ACTIONS(3425), - [anon_sym_chan] = ACTIONS(3425), - [anon_sym_thread] = ACTIONS(3425), - [anon_sym_atomic] = ACTIONS(3425), - [anon_sym_assert] = ACTIONS(3425), - [anon_sym_defer] = ACTIONS(3425), - [anon_sym_goto] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_DOLLARfor] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_asm] = ACTIONS(3425), - [anon_sym_AT_LBRACK] = ACTIONS(3425), - [sym___double_quote] = ACTIONS(3425), - [sym___single_quote] = ACTIONS(3425), - [sym___c_double_quote] = ACTIONS(3425), - [sym___c_single_quote] = ACTIONS(3425), - [sym___r_double_quote] = ACTIONS(3425), - [sym___r_single_quote] = ACTIONS(3425), - }, - [1488] = { - [sym_block] = STATE(1537), + [1486] = { + [sym_block] = STATE(1557), [ts_builtin_sym_end] = ACTIONS(4174), [sym_identifier] = ACTIONS(4176), [anon_sym_LF] = ACTIONS(4176), @@ -181538,7 +181532,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4176), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4176), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4176), [anon_sym_LPAREN] = ACTIONS(4176), [anon_sym___global] = ACTIONS(4176), @@ -181602,8 +181596,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4176), [sym___r_single_quote] = ACTIONS(4176), }, - [1489] = { - [sym_block] = STATE(1530), + [1487] = { + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3396), + [anon_sym_LF] = ACTIONS(3396), + [anon_sym_CR] = ACTIONS(3396), + [anon_sym_CR_LF] = ACTIONS(3396), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3396), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_const] = ACTIONS(3396), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym___global] = ACTIONS(3396), + [anon_sym_type] = ACTIONS(3396), + [anon_sym_PIPE] = ACTIONS(3396), + [anon_sym_fn] = ACTIONS(3396), + [anon_sym_PLUS] = ACTIONS(3396), + [anon_sym_DASH] = ACTIONS(3396), + [anon_sym_STAR] = ACTIONS(3396), + [anon_sym_struct] = ACTIONS(3396), + [anon_sym_union] = ACTIONS(3396), + [anon_sym_pub] = ACTIONS(3396), + [anon_sym_mut] = ACTIONS(3396), + [anon_sym_enum] = ACTIONS(3396), + [anon_sym_interface] = ACTIONS(3396), + [anon_sym_QMARK] = ACTIONS(3396), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_go] = ACTIONS(3396), + [anon_sym_spawn] = ACTIONS(3396), + [anon_sym_json_DOTdecode] = ACTIONS(3396), + [anon_sym_LBRACK2] = ACTIONS(3396), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_CARET] = ACTIONS(3396), + [anon_sym_AMP] = ACTIONS(3396), + [anon_sym_LT_DASH] = ACTIONS(3396), + [sym_none] = ACTIONS(3396), + [sym_true] = ACTIONS(3396), + [sym_false] = ACTIONS(3396), + [sym_nil] = ACTIONS(3396), + [anon_sym_if] = ACTIONS(3396), + [anon_sym_DOLLARif] = ACTIONS(3396), + [anon_sym_match] = ACTIONS(3396), + [anon_sym_select] = ACTIONS(3396), + [anon_sym_lock] = ACTIONS(3396), + [anon_sym_rlock] = ACTIONS(3396), + [anon_sym_unsafe] = ACTIONS(3396), + [anon_sym_sql] = ACTIONS(3396), + [sym_int_literal] = ACTIONS(3396), + [sym_float_literal] = ACTIONS(3396), + [sym_rune_literal] = ACTIONS(3396), + [sym_pseudo_compile_time_identifier] = ACTIONS(3396), + [anon_sym_shared] = ACTIONS(3396), + [anon_sym_map_LBRACK] = ACTIONS(3396), + [anon_sym_chan] = ACTIONS(3396), + [anon_sym_thread] = ACTIONS(3396), + [anon_sym_atomic] = ACTIONS(3396), + [anon_sym_assert] = ACTIONS(3396), + [anon_sym_defer] = ACTIONS(3396), + [anon_sym_goto] = ACTIONS(3396), + [anon_sym_break] = ACTIONS(3396), + [anon_sym_continue] = ACTIONS(3396), + [anon_sym_return] = ACTIONS(3396), + [anon_sym_DOLLARfor] = ACTIONS(3396), + [anon_sym_for] = ACTIONS(3396), + [anon_sym_POUND] = ACTIONS(3396), + [anon_sym_asm] = ACTIONS(3396), + [anon_sym_AT_LBRACK] = ACTIONS(3396), + [sym___double_quote] = ACTIONS(3396), + [sym___single_quote] = ACTIONS(3396), + [sym___c_double_quote] = ACTIONS(3396), + [sym___c_single_quote] = ACTIONS(3396), + [sym___r_double_quote] = ACTIONS(3396), + [sym___r_single_quote] = ACTIONS(3396), + }, + [1488] = { + [sym_block] = STATE(1551), [ts_builtin_sym_end] = ACTIONS(4178), [sym_identifier] = ACTIONS(4180), [anon_sym_LF] = ACTIONS(4180), @@ -181611,7 +181678,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4180), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4180), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4180), [anon_sym_LPAREN] = ACTIONS(4180), [anon_sym___global] = ACTIONS(4180), @@ -181675,957 +181742,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4180), [sym___r_single_quote] = ACTIONS(4180), }, - [1490] = { - [ts_builtin_sym_end] = ACTIONS(2759), - [sym_identifier] = ACTIONS(2761), - [anon_sym_LF] = ACTIONS(2761), - [anon_sym_CR] = ACTIONS(2761), - [anon_sym_CR_LF] = ACTIONS(2761), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2761), - [anon_sym_LBRACE] = ACTIONS(2761), - [anon_sym_const] = ACTIONS(2761), - [anon_sym_LPAREN] = ACTIONS(2761), - [anon_sym___global] = ACTIONS(2761), - [anon_sym_type] = ACTIONS(2761), - [anon_sym_PIPE] = ACTIONS(2761), - [anon_sym_fn] = ACTIONS(2761), - [anon_sym_PLUS] = ACTIONS(2761), - [anon_sym_DASH] = ACTIONS(2761), - [anon_sym_STAR] = ACTIONS(2761), - [anon_sym_struct] = ACTIONS(2761), - [anon_sym_union] = ACTIONS(2761), - [anon_sym_pub] = ACTIONS(2761), - [anon_sym_mut] = ACTIONS(2761), - [anon_sym_enum] = ACTIONS(2761), - [anon_sym_interface] = ACTIONS(2761), - [anon_sym_QMARK] = ACTIONS(2761), - [anon_sym_BANG] = ACTIONS(2761), - [anon_sym_go] = ACTIONS(2761), - [anon_sym_spawn] = ACTIONS(2761), - [anon_sym_json_DOTdecode] = ACTIONS(2761), - [anon_sym_LBRACK2] = ACTIONS(2761), - [anon_sym_TILDE] = ACTIONS(2761), - [anon_sym_CARET] = ACTIONS(2761), - [anon_sym_AMP] = ACTIONS(2761), - [anon_sym_LT_DASH] = ACTIONS(2761), - [sym_none] = ACTIONS(2761), - [sym_true] = ACTIONS(2761), - [sym_false] = ACTIONS(2761), - [sym_nil] = ACTIONS(2761), - [anon_sym_if] = ACTIONS(2761), - [anon_sym_DOLLARif] = ACTIONS(2761), - [anon_sym_match] = ACTIONS(2761), - [anon_sym_select] = ACTIONS(2761), - [anon_sym_lock] = ACTIONS(2761), - [anon_sym_rlock] = ACTIONS(2761), - [anon_sym_unsafe] = ACTIONS(2761), - [anon_sym_sql] = ACTIONS(2761), - [sym_int_literal] = ACTIONS(2761), - [sym_float_literal] = ACTIONS(2761), - [sym_rune_literal] = ACTIONS(2761), - [sym_pseudo_compile_time_identifier] = ACTIONS(2761), - [anon_sym_shared] = ACTIONS(2761), - [anon_sym_map_LBRACK] = ACTIONS(2761), - [anon_sym_chan] = ACTIONS(2761), - [anon_sym_thread] = ACTIONS(2761), - [anon_sym_atomic] = ACTIONS(2761), - [anon_sym_assert] = ACTIONS(2761), - [anon_sym_defer] = ACTIONS(2761), - [anon_sym_goto] = ACTIONS(2761), - [anon_sym_break] = ACTIONS(2761), - [anon_sym_continue] = ACTIONS(2761), - [anon_sym_return] = ACTIONS(2761), - [anon_sym_DOLLARfor] = ACTIONS(2761), - [anon_sym_for] = ACTIONS(2761), - [anon_sym_POUND] = ACTIONS(2761), - [anon_sym_asm] = ACTIONS(2761), - [anon_sym_AT_LBRACK] = ACTIONS(2761), - [sym___double_quote] = ACTIONS(2761), - [sym___single_quote] = ACTIONS(2761), - [sym___c_double_quote] = ACTIONS(2761), - [sym___c_single_quote] = ACTIONS(2761), - [sym___r_double_quote] = ACTIONS(2761), - [sym___r_single_quote] = ACTIONS(2761), - }, - [1491] = { - [ts_builtin_sym_end] = ACTIONS(3301), - [sym_identifier] = ACTIONS(3303), - [anon_sym_LF] = ACTIONS(3303), - [anon_sym_CR] = ACTIONS(3303), - [anon_sym_CR_LF] = ACTIONS(3303), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3303), - [anon_sym_LBRACE] = ACTIONS(3303), - [anon_sym_const] = ACTIONS(3303), - [anon_sym_LPAREN] = ACTIONS(3303), - [anon_sym___global] = ACTIONS(3303), - [anon_sym_type] = ACTIONS(3303), - [anon_sym_PIPE] = ACTIONS(3303), - [anon_sym_fn] = ACTIONS(3303), - [anon_sym_PLUS] = ACTIONS(3303), - [anon_sym_DASH] = ACTIONS(3303), - [anon_sym_STAR] = ACTIONS(3303), - [anon_sym_struct] = ACTIONS(3303), - [anon_sym_union] = ACTIONS(3303), - [anon_sym_pub] = ACTIONS(3303), - [anon_sym_mut] = ACTIONS(3303), - [anon_sym_enum] = ACTIONS(3303), - [anon_sym_interface] = ACTIONS(3303), - [anon_sym_QMARK] = ACTIONS(3303), - [anon_sym_BANG] = ACTIONS(3303), - [anon_sym_go] = ACTIONS(3303), - [anon_sym_spawn] = ACTIONS(3303), - [anon_sym_json_DOTdecode] = ACTIONS(3303), - [anon_sym_LBRACK2] = ACTIONS(3303), - [anon_sym_TILDE] = ACTIONS(3303), - [anon_sym_CARET] = ACTIONS(3303), - [anon_sym_AMP] = ACTIONS(3303), - [anon_sym_LT_DASH] = ACTIONS(3303), - [sym_none] = ACTIONS(3303), - [sym_true] = ACTIONS(3303), - [sym_false] = ACTIONS(3303), - [sym_nil] = ACTIONS(3303), - [anon_sym_if] = ACTIONS(3303), - [anon_sym_DOLLARif] = ACTIONS(3303), - [anon_sym_match] = ACTIONS(3303), - [anon_sym_select] = ACTIONS(3303), - [anon_sym_lock] = ACTIONS(3303), - [anon_sym_rlock] = ACTIONS(3303), - [anon_sym_unsafe] = ACTIONS(3303), - [anon_sym_sql] = ACTIONS(3303), - [sym_int_literal] = ACTIONS(3303), - [sym_float_literal] = ACTIONS(3303), - [sym_rune_literal] = ACTIONS(3303), - [sym_pseudo_compile_time_identifier] = ACTIONS(3303), - [anon_sym_shared] = ACTIONS(3303), - [anon_sym_map_LBRACK] = ACTIONS(3303), - [anon_sym_chan] = ACTIONS(3303), - [anon_sym_thread] = ACTIONS(3303), - [anon_sym_atomic] = ACTIONS(3303), - [anon_sym_assert] = ACTIONS(3303), - [anon_sym_defer] = ACTIONS(3303), - [anon_sym_goto] = ACTIONS(3303), - [anon_sym_break] = ACTIONS(3303), - [anon_sym_continue] = ACTIONS(3303), - [anon_sym_return] = ACTIONS(3303), - [anon_sym_DOLLARfor] = ACTIONS(3303), - [anon_sym_for] = ACTIONS(3303), - [anon_sym_POUND] = ACTIONS(3303), - [anon_sym_asm] = ACTIONS(3303), - [anon_sym_AT_LBRACK] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(3303), - [sym___single_quote] = ACTIONS(3303), - [sym___c_double_quote] = ACTIONS(3303), - [sym___c_single_quote] = ACTIONS(3303), - [sym___r_double_quote] = ACTIONS(3303), - [sym___r_single_quote] = ACTIONS(3303), - }, - [1492] = { - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(3307), - [anon_sym_LF] = ACTIONS(3307), - [anon_sym_CR] = ACTIONS(3307), - [anon_sym_CR_LF] = ACTIONS(3307), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym___global] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3307), - [anon_sym_fn] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_STAR] = ACTIONS(3307), - [anon_sym_struct] = ACTIONS(3307), - [anon_sym_union] = ACTIONS(3307), - [anon_sym_pub] = ACTIONS(3307), - [anon_sym_mut] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_QMARK] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_go] = ACTIONS(3307), - [anon_sym_spawn] = ACTIONS(3307), - [anon_sym_json_DOTdecode] = ACTIONS(3307), - [anon_sym_LBRACK2] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_CARET] = ACTIONS(3307), - [anon_sym_AMP] = ACTIONS(3307), - [anon_sym_LT_DASH] = ACTIONS(3307), - [sym_none] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_nil] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_DOLLARif] = ACTIONS(3307), - [anon_sym_match] = ACTIONS(3307), - [anon_sym_select] = ACTIONS(3307), - [anon_sym_lock] = ACTIONS(3307), - [anon_sym_rlock] = ACTIONS(3307), - [anon_sym_unsafe] = ACTIONS(3307), - [anon_sym_sql] = ACTIONS(3307), - [sym_int_literal] = ACTIONS(3307), - [sym_float_literal] = ACTIONS(3307), - [sym_rune_literal] = ACTIONS(3307), - [sym_pseudo_compile_time_identifier] = ACTIONS(3307), - [anon_sym_shared] = ACTIONS(3307), - [anon_sym_map_LBRACK] = ACTIONS(3307), - [anon_sym_chan] = ACTIONS(3307), - [anon_sym_thread] = ACTIONS(3307), - [anon_sym_atomic] = ACTIONS(3307), - [anon_sym_assert] = ACTIONS(3307), - [anon_sym_defer] = ACTIONS(3307), - [anon_sym_goto] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_DOLLARfor] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_asm] = ACTIONS(3307), - [anon_sym_AT_LBRACK] = ACTIONS(3307), - [sym___double_quote] = ACTIONS(3307), - [sym___single_quote] = ACTIONS(3307), - [sym___c_double_quote] = ACTIONS(3307), - [sym___c_single_quote] = ACTIONS(3307), - [sym___r_double_quote] = ACTIONS(3307), - [sym___r_single_quote] = ACTIONS(3307), - }, - [1493] = { - [ts_builtin_sym_end] = ACTIONS(3309), - [sym_identifier] = ACTIONS(3311), - [anon_sym_LF] = ACTIONS(3311), - [anon_sym_CR] = ACTIONS(3311), - [anon_sym_CR_LF] = ACTIONS(3311), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym___global] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3311), - [anon_sym_fn] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_STAR] = ACTIONS(3311), - [anon_sym_struct] = ACTIONS(3311), - [anon_sym_union] = ACTIONS(3311), - [anon_sym_pub] = ACTIONS(3311), - [anon_sym_mut] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_QMARK] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_go] = ACTIONS(3311), - [anon_sym_spawn] = ACTIONS(3311), - [anon_sym_json_DOTdecode] = ACTIONS(3311), - [anon_sym_LBRACK2] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_CARET] = ACTIONS(3311), - [anon_sym_AMP] = ACTIONS(3311), - [anon_sym_LT_DASH] = ACTIONS(3311), - [sym_none] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_nil] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_DOLLARif] = ACTIONS(3311), - [anon_sym_match] = ACTIONS(3311), - [anon_sym_select] = ACTIONS(3311), - [anon_sym_lock] = ACTIONS(3311), - [anon_sym_rlock] = ACTIONS(3311), - [anon_sym_unsafe] = ACTIONS(3311), - [anon_sym_sql] = ACTIONS(3311), - [sym_int_literal] = ACTIONS(3311), - [sym_float_literal] = ACTIONS(3311), - [sym_rune_literal] = ACTIONS(3311), - [sym_pseudo_compile_time_identifier] = ACTIONS(3311), - [anon_sym_shared] = ACTIONS(3311), - [anon_sym_map_LBRACK] = ACTIONS(3311), - [anon_sym_chan] = ACTIONS(3311), - [anon_sym_thread] = ACTIONS(3311), - [anon_sym_atomic] = ACTIONS(3311), - [anon_sym_assert] = ACTIONS(3311), - [anon_sym_defer] = ACTIONS(3311), - [anon_sym_goto] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_DOLLARfor] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_POUND] = ACTIONS(3311), - [anon_sym_asm] = ACTIONS(3311), - [anon_sym_AT_LBRACK] = ACTIONS(3311), - [sym___double_quote] = ACTIONS(3311), - [sym___single_quote] = ACTIONS(3311), - [sym___c_double_quote] = ACTIONS(3311), - [sym___c_single_quote] = ACTIONS(3311), - [sym___r_double_quote] = ACTIONS(3311), - [sym___r_single_quote] = ACTIONS(3311), - }, - [1494] = { - [ts_builtin_sym_end] = ACTIONS(3317), - [sym_identifier] = ACTIONS(3319), - [anon_sym_LF] = ACTIONS(3319), - [anon_sym_CR] = ACTIONS(3319), - [anon_sym_CR_LF] = ACTIONS(3319), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym___global] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3319), - [anon_sym_fn] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_STAR] = ACTIONS(3319), - [anon_sym_struct] = ACTIONS(3319), - [anon_sym_union] = ACTIONS(3319), - [anon_sym_pub] = ACTIONS(3319), - [anon_sym_mut] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_QMARK] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_go] = ACTIONS(3319), - [anon_sym_spawn] = ACTIONS(3319), - [anon_sym_json_DOTdecode] = ACTIONS(3319), - [anon_sym_LBRACK2] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_CARET] = ACTIONS(3319), - [anon_sym_AMP] = ACTIONS(3319), - [anon_sym_LT_DASH] = ACTIONS(3319), - [sym_none] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_nil] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_DOLLARif] = ACTIONS(3319), - [anon_sym_match] = ACTIONS(3319), - [anon_sym_select] = ACTIONS(3319), - [anon_sym_lock] = ACTIONS(3319), - [anon_sym_rlock] = ACTIONS(3319), - [anon_sym_unsafe] = ACTIONS(3319), - [anon_sym_sql] = ACTIONS(3319), - [sym_int_literal] = ACTIONS(3319), - [sym_float_literal] = ACTIONS(3319), - [sym_rune_literal] = ACTIONS(3319), - [sym_pseudo_compile_time_identifier] = ACTIONS(3319), - [anon_sym_shared] = ACTIONS(3319), - [anon_sym_map_LBRACK] = ACTIONS(3319), - [anon_sym_chan] = ACTIONS(3319), - [anon_sym_thread] = ACTIONS(3319), - [anon_sym_atomic] = ACTIONS(3319), - [anon_sym_assert] = ACTIONS(3319), - [anon_sym_defer] = ACTIONS(3319), - [anon_sym_goto] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_DOLLARfor] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_POUND] = ACTIONS(3319), - [anon_sym_asm] = ACTIONS(3319), - [anon_sym_AT_LBRACK] = ACTIONS(3319), - [sym___double_quote] = ACTIONS(3319), - [sym___single_quote] = ACTIONS(3319), - [sym___c_double_quote] = ACTIONS(3319), - [sym___c_single_quote] = ACTIONS(3319), - [sym___r_double_quote] = ACTIONS(3319), - [sym___r_single_quote] = ACTIONS(3319), - }, - [1495] = { - [ts_builtin_sym_end] = ACTIONS(3321), - [sym_identifier] = ACTIONS(3323), - [anon_sym_LF] = ACTIONS(3323), - [anon_sym_CR] = ACTIONS(3323), - [anon_sym_CR_LF] = ACTIONS(3323), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym___global] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3323), - [anon_sym_fn] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_STAR] = ACTIONS(3323), - [anon_sym_struct] = ACTIONS(3323), - [anon_sym_union] = ACTIONS(3323), - [anon_sym_pub] = ACTIONS(3323), - [anon_sym_mut] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_QMARK] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_go] = ACTIONS(3323), - [anon_sym_spawn] = ACTIONS(3323), - [anon_sym_json_DOTdecode] = ACTIONS(3323), - [anon_sym_LBRACK2] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_CARET] = ACTIONS(3323), - [anon_sym_AMP] = ACTIONS(3323), - [anon_sym_LT_DASH] = ACTIONS(3323), - [sym_none] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_nil] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_DOLLARif] = ACTIONS(3323), - [anon_sym_match] = ACTIONS(3323), - [anon_sym_select] = ACTIONS(3323), - [anon_sym_lock] = ACTIONS(3323), - [anon_sym_rlock] = ACTIONS(3323), - [anon_sym_unsafe] = ACTIONS(3323), - [anon_sym_sql] = ACTIONS(3323), - [sym_int_literal] = ACTIONS(3323), - [sym_float_literal] = ACTIONS(3323), - [sym_rune_literal] = ACTIONS(3323), - [sym_pseudo_compile_time_identifier] = ACTIONS(3323), - [anon_sym_shared] = ACTIONS(3323), - [anon_sym_map_LBRACK] = ACTIONS(3323), - [anon_sym_chan] = ACTIONS(3323), - [anon_sym_thread] = ACTIONS(3323), - [anon_sym_atomic] = ACTIONS(3323), - [anon_sym_assert] = ACTIONS(3323), - [anon_sym_defer] = ACTIONS(3323), - [anon_sym_goto] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_DOLLARfor] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_POUND] = ACTIONS(3323), - [anon_sym_asm] = ACTIONS(3323), - [anon_sym_AT_LBRACK] = ACTIONS(3323), - [sym___double_quote] = ACTIONS(3323), - [sym___single_quote] = ACTIONS(3323), - [sym___c_double_quote] = ACTIONS(3323), - [sym___c_single_quote] = ACTIONS(3323), - [sym___r_double_quote] = ACTIONS(3323), - [sym___r_single_quote] = ACTIONS(3323), - }, - [1496] = { - [ts_builtin_sym_end] = ACTIONS(3411), - [sym_identifier] = ACTIONS(3413), - [anon_sym_LF] = ACTIONS(3413), - [anon_sym_CR] = ACTIONS(3413), - [anon_sym_CR_LF] = ACTIONS(3413), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym___global] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_fn] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_STAR] = ACTIONS(3413), - [anon_sym_struct] = ACTIONS(3413), - [anon_sym_union] = ACTIONS(3413), - [anon_sym_pub] = ACTIONS(3413), - [anon_sym_mut] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_go] = ACTIONS(3413), - [anon_sym_spawn] = ACTIONS(3413), - [anon_sym_json_DOTdecode] = ACTIONS(3413), - [anon_sym_LBRACK2] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_CARET] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_LT_DASH] = ACTIONS(3413), - [sym_none] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_nil] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_DOLLARif] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3413), - [anon_sym_select] = ACTIONS(3413), - [anon_sym_lock] = ACTIONS(3413), - [anon_sym_rlock] = ACTIONS(3413), - [anon_sym_unsafe] = ACTIONS(3413), - [anon_sym_sql] = ACTIONS(3413), - [sym_int_literal] = ACTIONS(3413), - [sym_float_literal] = ACTIONS(3413), - [sym_rune_literal] = ACTIONS(3413), - [sym_pseudo_compile_time_identifier] = ACTIONS(3413), - [anon_sym_shared] = ACTIONS(3413), - [anon_sym_map_LBRACK] = ACTIONS(3413), - [anon_sym_chan] = ACTIONS(3413), - [anon_sym_thread] = ACTIONS(3413), - [anon_sym_atomic] = ACTIONS(3413), - [anon_sym_assert] = ACTIONS(3413), - [anon_sym_defer] = ACTIONS(3413), - [anon_sym_goto] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_DOLLARfor] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_asm] = ACTIONS(3413), - [anon_sym_AT_LBRACK] = ACTIONS(3413), - [sym___double_quote] = ACTIONS(3413), - [sym___single_quote] = ACTIONS(3413), - [sym___c_double_quote] = ACTIONS(3413), - [sym___c_single_quote] = ACTIONS(3413), - [sym___r_double_quote] = ACTIONS(3413), - [sym___r_single_quote] = ACTIONS(3413), - }, - [1497] = { - [ts_builtin_sym_end] = ACTIONS(3325), - [sym_identifier] = ACTIONS(3327), - [anon_sym_LF] = ACTIONS(3327), - [anon_sym_CR] = ACTIONS(3327), - [anon_sym_CR_LF] = ACTIONS(3327), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym___global] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3327), - [anon_sym_fn] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_STAR] = ACTIONS(3327), - [anon_sym_struct] = ACTIONS(3327), - [anon_sym_union] = ACTIONS(3327), - [anon_sym_pub] = ACTIONS(3327), - [anon_sym_mut] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_QMARK] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_go] = ACTIONS(3327), - [anon_sym_spawn] = ACTIONS(3327), - [anon_sym_json_DOTdecode] = ACTIONS(3327), - [anon_sym_LBRACK2] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_CARET] = ACTIONS(3327), - [anon_sym_AMP] = ACTIONS(3327), - [anon_sym_LT_DASH] = ACTIONS(3327), - [sym_none] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_nil] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_DOLLARif] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3327), - [anon_sym_select] = ACTIONS(3327), - [anon_sym_lock] = ACTIONS(3327), - [anon_sym_rlock] = ACTIONS(3327), - [anon_sym_unsafe] = ACTIONS(3327), - [anon_sym_sql] = ACTIONS(3327), - [sym_int_literal] = ACTIONS(3327), - [sym_float_literal] = ACTIONS(3327), - [sym_rune_literal] = ACTIONS(3327), - [sym_pseudo_compile_time_identifier] = ACTIONS(3327), - [anon_sym_shared] = ACTIONS(3327), - [anon_sym_map_LBRACK] = ACTIONS(3327), - [anon_sym_chan] = ACTIONS(3327), - [anon_sym_thread] = ACTIONS(3327), - [anon_sym_atomic] = ACTIONS(3327), - [anon_sym_assert] = ACTIONS(3327), - [anon_sym_defer] = ACTIONS(3327), - [anon_sym_goto] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_DOLLARfor] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_POUND] = ACTIONS(3327), - [anon_sym_asm] = ACTIONS(3327), - [anon_sym_AT_LBRACK] = ACTIONS(3327), - [sym___double_quote] = ACTIONS(3327), - [sym___single_quote] = ACTIONS(3327), - [sym___c_double_quote] = ACTIONS(3327), - [sym___c_single_quote] = ACTIONS(3327), - [sym___r_double_quote] = ACTIONS(3327), - [sym___r_single_quote] = ACTIONS(3327), - }, - [1498] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym___global] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3331), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_STAR] = ACTIONS(3331), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_union] = ACTIONS(3331), - [anon_sym_pub] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_QMARK] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3331), - [anon_sym_AMP] = ACTIONS(3331), - [anon_sym_LT_DASH] = ACTIONS(3331), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [sym_pseudo_compile_time_identifier] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_DOLLARfor] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_asm] = ACTIONS(3331), - [anon_sym_AT_LBRACK] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), - }, - [1499] = { - [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(495), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym___global] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_union] = ACTIONS(3347), - [anon_sym_pub] = ACTIONS(3347), - [anon_sym_mut] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(3347), - [anon_sym_spawn] = ACTIONS(3347), - [anon_sym_json_DOTdecode] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [sym_none] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_nil] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_DOLLARif] = ACTIONS(3347), - [anon_sym_match] = ACTIONS(3347), - [anon_sym_select] = ACTIONS(3347), - [anon_sym_lock] = ACTIONS(3347), - [anon_sym_rlock] = ACTIONS(3347), - [anon_sym_unsafe] = ACTIONS(3347), - [anon_sym_sql] = ACTIONS(3347), - [sym_int_literal] = ACTIONS(3347), - [sym_float_literal] = ACTIONS(3347), - [sym_rune_literal] = ACTIONS(3347), - [sym_pseudo_compile_time_identifier] = ACTIONS(3347), - [anon_sym_shared] = ACTIONS(3347), - [anon_sym_map_LBRACK] = ACTIONS(3347), - [anon_sym_chan] = ACTIONS(3347), - [anon_sym_thread] = ACTIONS(3347), - [anon_sym_atomic] = ACTIONS(3347), - [anon_sym_assert] = ACTIONS(3347), - [anon_sym_defer] = ACTIONS(3347), - [anon_sym_goto] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_DOLLARfor] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_POUND] = ACTIONS(3347), - [anon_sym_asm] = ACTIONS(3347), - [anon_sym_AT_LBRACK] = ACTIONS(3347), - [sym___double_quote] = ACTIONS(3347), - [sym___single_quote] = ACTIONS(3347), - [sym___c_double_quote] = ACTIONS(3347), - [sym___c_single_quote] = ACTIONS(3347), - [sym___r_double_quote] = ACTIONS(3347), - [sym___r_single_quote] = ACTIONS(3347), - }, - [1500] = { - [ts_builtin_sym_end] = ACTIONS(3357), - [sym_identifier] = ACTIONS(3359), - [anon_sym_LF] = ACTIONS(3359), - [anon_sym_CR] = ACTIONS(3359), - [anon_sym_CR_LF] = ACTIONS(3359), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym___global] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3359), - [anon_sym_fn] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_STAR] = ACTIONS(3359), - [anon_sym_struct] = ACTIONS(3359), - [anon_sym_union] = ACTIONS(3359), - [anon_sym_pub] = ACTIONS(3359), - [anon_sym_mut] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_go] = ACTIONS(3359), - [anon_sym_spawn] = ACTIONS(3359), - [anon_sym_json_DOTdecode] = ACTIONS(3359), - [anon_sym_LBRACK2] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_CARET] = ACTIONS(3359), - [anon_sym_AMP] = ACTIONS(3359), - [anon_sym_LT_DASH] = ACTIONS(3359), - [sym_none] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_nil] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_DOLLARif] = ACTIONS(3359), - [anon_sym_match] = ACTIONS(3359), - [anon_sym_select] = ACTIONS(3359), - [anon_sym_lock] = ACTIONS(3359), - [anon_sym_rlock] = ACTIONS(3359), - [anon_sym_unsafe] = ACTIONS(3359), - [anon_sym_sql] = ACTIONS(3359), - [sym_int_literal] = ACTIONS(3359), - [sym_float_literal] = ACTIONS(3359), - [sym_rune_literal] = ACTIONS(3359), - [sym_pseudo_compile_time_identifier] = ACTIONS(3359), - [anon_sym_shared] = ACTIONS(3359), - [anon_sym_map_LBRACK] = ACTIONS(3359), - [anon_sym_chan] = ACTIONS(3359), - [anon_sym_thread] = ACTIONS(3359), - [anon_sym_atomic] = ACTIONS(3359), - [anon_sym_assert] = ACTIONS(3359), - [anon_sym_defer] = ACTIONS(3359), - [anon_sym_goto] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_DOLLARfor] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_POUND] = ACTIONS(3359), - [anon_sym_asm] = ACTIONS(3359), - [anon_sym_AT_LBRACK] = ACTIONS(3359), - [sym___double_quote] = ACTIONS(3359), - [sym___single_quote] = ACTIONS(3359), - [sym___c_double_quote] = ACTIONS(3359), - [sym___c_single_quote] = ACTIONS(3359), - [sym___r_double_quote] = ACTIONS(3359), - [sym___r_single_quote] = ACTIONS(3359), - }, - [1501] = { - [ts_builtin_sym_end] = ACTIONS(3399), - [sym_identifier] = ACTIONS(3401), - [anon_sym_LF] = ACTIONS(3401), - [anon_sym_CR] = ACTIONS(3401), - [anon_sym_CR_LF] = ACTIONS(3401), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym___global] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_fn] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_STAR] = ACTIONS(3401), - [anon_sym_struct] = ACTIONS(3401), - [anon_sym_union] = ACTIONS(3401), - [anon_sym_pub] = ACTIONS(3401), - [anon_sym_mut] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_go] = ACTIONS(3401), - [anon_sym_spawn] = ACTIONS(3401), - [anon_sym_json_DOTdecode] = ACTIONS(3401), - [anon_sym_LBRACK2] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_CARET] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_LT_DASH] = ACTIONS(3401), - [sym_none] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_nil] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_DOLLARif] = ACTIONS(3401), - [anon_sym_match] = ACTIONS(3401), - [anon_sym_select] = ACTIONS(3401), - [anon_sym_lock] = ACTIONS(3401), - [anon_sym_rlock] = ACTIONS(3401), - [anon_sym_unsafe] = ACTIONS(3401), - [anon_sym_sql] = ACTIONS(3401), - [sym_int_literal] = ACTIONS(3401), - [sym_float_literal] = ACTIONS(3401), - [sym_rune_literal] = ACTIONS(3401), - [sym_pseudo_compile_time_identifier] = ACTIONS(3401), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3401), - [anon_sym_chan] = ACTIONS(3401), - [anon_sym_thread] = ACTIONS(3401), - [anon_sym_atomic] = ACTIONS(3401), - [anon_sym_assert] = ACTIONS(3401), - [anon_sym_defer] = ACTIONS(3401), - [anon_sym_goto] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_DOLLARfor] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_asm] = ACTIONS(3401), - [anon_sym_AT_LBRACK] = ACTIONS(3401), - [sym___double_quote] = ACTIONS(3401), - [sym___single_quote] = ACTIONS(3401), - [sym___c_double_quote] = ACTIONS(3401), - [sym___c_single_quote] = ACTIONS(3401), - [sym___r_double_quote] = ACTIONS(3401), - [sym___r_single_quote] = ACTIONS(3401), - }, - [1502] = { - [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), + [1489] = { + [ts_builtin_sym_end] = ACTIONS(2889), + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(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), - [sym_pseudo_compile_time_identifier] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym___global] = ACTIONS(2891), + [anon_sym_type] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_union] = ACTIONS(2891), + [anon_sym_pub] = ACTIONS(2891), + [anon_sym_mut] = ACTIONS(2891), + [anon_sym_enum] = ACTIONS(2891), + [anon_sym_interface] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_go] = ACTIONS(2891), + [anon_sym_spawn] = ACTIONS(2891), + [anon_sym_json_DOTdecode] = ACTIONS(2891), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2891), + [sym_none] = ACTIONS(2891), + [sym_true] = ACTIONS(2891), + [sym_false] = ACTIONS(2891), + [sym_nil] = ACTIONS(2891), + [anon_sym_if] = ACTIONS(2891), + [anon_sym_DOLLARif] = ACTIONS(2891), + [anon_sym_match] = ACTIONS(2891), + [anon_sym_select] = ACTIONS(2891), + [anon_sym_lock] = ACTIONS(2891), + [anon_sym_rlock] = ACTIONS(2891), + [anon_sym_unsafe] = ACTIONS(2891), + [anon_sym_sql] = ACTIONS(2891), + [sym_int_literal] = ACTIONS(2891), + [sym_float_literal] = ACTIONS(2891), + [sym_rune_literal] = ACTIONS(2891), + [sym_pseudo_compile_time_identifier] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + [anon_sym_assert] = ACTIONS(2891), + [anon_sym_defer] = ACTIONS(2891), + [anon_sym_goto] = ACTIONS(2891), + [anon_sym_break] = ACTIONS(2891), + [anon_sym_continue] = ACTIONS(2891), + [anon_sym_return] = ACTIONS(2891), + [anon_sym_DOLLARfor] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2891), + [anon_sym_POUND] = ACTIONS(2891), + [anon_sym_asm] = ACTIONS(2891), + [anon_sym_AT_LBRACK] = ACTIONS(2891), + [sym___double_quote] = ACTIONS(2891), + [sym___single_quote] = ACTIONS(2891), + [sym___c_double_quote] = ACTIONS(2891), + [sym___c_single_quote] = ACTIONS(2891), + [sym___r_double_quote] = ACTIONS(2891), + [sym___r_single_quote] = ACTIONS(2891), }, - [1503] = { - [sym_block] = STATE(1529), + [1490] = { + [sym_block] = STATE(1554), [ts_builtin_sym_end] = ACTIONS(4182), [sym_identifier] = ACTIONS(4184), [anon_sym_LF] = ACTIONS(4184), @@ -182633,7 +181824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4184), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4184), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4184), [anon_sym_LPAREN] = ACTIONS(4184), [anon_sym___global] = ACTIONS(4184), @@ -182697,8 +181888,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4184), [sym___r_single_quote] = ACTIONS(4184), }, - [1504] = { - [sym_block] = STATE(1522), + [1491] = { + [sym_block] = STATE(1555), [ts_builtin_sym_end] = ACTIONS(4186), [sym_identifier] = ACTIONS(4188), [anon_sym_LF] = ACTIONS(4188), @@ -182706,7 +181897,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4188), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4188), - [anon_sym_LBRACE] = ACTIONS(4052), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4188), [anon_sym_LPAREN] = ACTIONS(4188), [anon_sym___global] = ACTIONS(4188), @@ -182770,153 +181961,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4188), [sym___r_single_quote] = ACTIONS(4188), }, - [1505] = { - [ts_builtin_sym_end] = ACTIONS(3389), - [sym_identifier] = ACTIONS(3391), - [anon_sym_LF] = ACTIONS(3391), - [anon_sym_CR] = ACTIONS(3391), - [anon_sym_CR_LF] = ACTIONS(3391), + [1492] = { + [ts_builtin_sym_end] = ACTIONS(3354), + [sym_identifier] = ACTIONS(3356), + [anon_sym_LF] = ACTIONS(3356), + [anon_sym_CR] = ACTIONS(3356), + [anon_sym_CR_LF] = ACTIONS(3356), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_LBRACE] = ACTIONS(3391), - [anon_sym_const] = ACTIONS(3391), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym___global] = ACTIONS(3391), - [anon_sym_type] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3391), - [anon_sym_fn] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3391), - [anon_sym_DASH] = ACTIONS(3391), - [anon_sym_STAR] = ACTIONS(3391), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(3391), - [anon_sym_pub] = ACTIONS(3391), - [anon_sym_mut] = ACTIONS(3391), - [anon_sym_enum] = ACTIONS(3391), - [anon_sym_interface] = ACTIONS(3391), - [anon_sym_QMARK] = ACTIONS(3391), - [anon_sym_BANG] = ACTIONS(3391), - [anon_sym_go] = ACTIONS(3391), - [anon_sym_spawn] = ACTIONS(3391), - [anon_sym_json_DOTdecode] = ACTIONS(3391), - [anon_sym_LBRACK2] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3391), - [anon_sym_CARET] = ACTIONS(3391), - [anon_sym_AMP] = ACTIONS(3391), - [anon_sym_LT_DASH] = ACTIONS(3391), - [sym_none] = ACTIONS(3391), - [sym_true] = ACTIONS(3391), - [sym_false] = ACTIONS(3391), - [sym_nil] = ACTIONS(3391), - [anon_sym_if] = ACTIONS(3391), - [anon_sym_DOLLARif] = ACTIONS(3391), - [anon_sym_match] = ACTIONS(3391), - [anon_sym_select] = ACTIONS(3391), - [anon_sym_lock] = ACTIONS(3391), - [anon_sym_rlock] = ACTIONS(3391), - [anon_sym_unsafe] = ACTIONS(3391), - [anon_sym_sql] = ACTIONS(3391), - [sym_int_literal] = ACTIONS(3391), - [sym_float_literal] = ACTIONS(3391), - [sym_rune_literal] = ACTIONS(3391), - [sym_pseudo_compile_time_identifier] = ACTIONS(3391), - [anon_sym_shared] = ACTIONS(3391), - [anon_sym_map_LBRACK] = ACTIONS(3391), - [anon_sym_chan] = ACTIONS(3391), - [anon_sym_thread] = ACTIONS(3391), - [anon_sym_atomic] = ACTIONS(3391), - [anon_sym_assert] = ACTIONS(3391), - [anon_sym_defer] = ACTIONS(3391), - [anon_sym_goto] = ACTIONS(3391), - [anon_sym_break] = ACTIONS(3391), - [anon_sym_continue] = ACTIONS(3391), - [anon_sym_return] = ACTIONS(3391), - [anon_sym_DOLLARfor] = ACTIONS(3391), - [anon_sym_for] = ACTIONS(3391), - [anon_sym_POUND] = ACTIONS(3391), - [anon_sym_asm] = ACTIONS(3391), - [anon_sym_AT_LBRACK] = ACTIONS(3391), - [sym___double_quote] = ACTIONS(3391), - [sym___single_quote] = ACTIONS(3391), - [sym___c_double_quote] = ACTIONS(3391), - [sym___c_single_quote] = ACTIONS(3391), - [sym___r_double_quote] = ACTIONS(3391), - [sym___r_single_quote] = ACTIONS(3391), + [anon_sym_DOT] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym___global] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_PIPE] = ACTIONS(3356), + [anon_sym_fn] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_STAR] = ACTIONS(3356), + [anon_sym_struct] = ACTIONS(3356), + [anon_sym_union] = ACTIONS(3356), + [anon_sym_pub] = ACTIONS(3356), + [anon_sym_mut] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_QMARK] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_go] = ACTIONS(3356), + [anon_sym_spawn] = ACTIONS(3356), + [anon_sym_json_DOTdecode] = ACTIONS(3356), + [anon_sym_LBRACK2] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_CARET] = ACTIONS(3356), + [anon_sym_AMP] = ACTIONS(3356), + [anon_sym_LT_DASH] = ACTIONS(3356), + [sym_none] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_nil] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_DOLLARif] = ACTIONS(3356), + [anon_sym_match] = ACTIONS(3356), + [anon_sym_select] = ACTIONS(3356), + [anon_sym_lock] = ACTIONS(3356), + [anon_sym_rlock] = ACTIONS(3356), + [anon_sym_unsafe] = ACTIONS(3356), + [anon_sym_sql] = ACTIONS(3356), + [sym_int_literal] = ACTIONS(3356), + [sym_float_literal] = ACTIONS(3356), + [sym_rune_literal] = ACTIONS(3356), + [sym_pseudo_compile_time_identifier] = ACTIONS(3356), + [anon_sym_shared] = ACTIONS(3356), + [anon_sym_map_LBRACK] = ACTIONS(3356), + [anon_sym_chan] = ACTIONS(3356), + [anon_sym_thread] = ACTIONS(3356), + [anon_sym_atomic] = ACTIONS(3356), + [anon_sym_assert] = ACTIONS(3356), + [anon_sym_defer] = ACTIONS(3356), + [anon_sym_goto] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_DOLLARfor] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_POUND] = ACTIONS(3356), + [anon_sym_asm] = ACTIONS(3356), + [anon_sym_AT_LBRACK] = ACTIONS(3356), + [sym___double_quote] = ACTIONS(3356), + [sym___single_quote] = ACTIONS(3356), + [sym___c_double_quote] = ACTIONS(3356), + [sym___c_single_quote] = ACTIONS(3356), + [sym___r_double_quote] = ACTIONS(3356), + [sym___r_single_quote] = ACTIONS(3356), }, - [1506] = { - [ts_builtin_sym_end] = ACTIONS(3385), - [sym_identifier] = ACTIONS(3387), - [anon_sym_LF] = ACTIONS(3387), - [anon_sym_CR] = ACTIONS(3387), - [anon_sym_CR_LF] = ACTIONS(3387), + [1493] = { + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3378), + [anon_sym_LF] = ACTIONS(3378), + [anon_sym_CR] = ACTIONS(3378), + [anon_sym_CR_LF] = ACTIONS(3378), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym___global] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3387), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_STAR] = ACTIONS(3387), - [anon_sym_struct] = ACTIONS(3387), - [anon_sym_union] = ACTIONS(3387), - [anon_sym_pub] = ACTIONS(3387), - [anon_sym_mut] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_QMARK] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_go] = ACTIONS(3387), - [anon_sym_spawn] = ACTIONS(3387), - [anon_sym_json_DOTdecode] = ACTIONS(3387), - [anon_sym_LBRACK2] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_CARET] = ACTIONS(3387), - [anon_sym_AMP] = ACTIONS(3387), - [anon_sym_LT_DASH] = ACTIONS(3387), - [sym_none] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_nil] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_DOLLARif] = ACTIONS(3387), - [anon_sym_match] = ACTIONS(3387), - [anon_sym_select] = ACTIONS(3387), - [anon_sym_lock] = ACTIONS(3387), - [anon_sym_rlock] = ACTIONS(3387), - [anon_sym_unsafe] = ACTIONS(3387), - [anon_sym_sql] = ACTIONS(3387), - [sym_int_literal] = ACTIONS(3387), - [sym_float_literal] = ACTIONS(3387), - [sym_rune_literal] = ACTIONS(3387), - [sym_pseudo_compile_time_identifier] = ACTIONS(3387), - [anon_sym_shared] = ACTIONS(3387), - [anon_sym_map_LBRACK] = ACTIONS(3387), - [anon_sym_chan] = ACTIONS(3387), - [anon_sym_thread] = ACTIONS(3387), - [anon_sym_atomic] = ACTIONS(3387), - [anon_sym_assert] = ACTIONS(3387), - [anon_sym_defer] = ACTIONS(3387), - [anon_sym_goto] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_DOLLARfor] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_POUND] = ACTIONS(3387), - [anon_sym_asm] = ACTIONS(3387), - [anon_sym_AT_LBRACK] = ACTIONS(3387), - [sym___double_quote] = ACTIONS(3387), - [sym___single_quote] = ACTIONS(3387), - [sym___c_double_quote] = ACTIONS(3387), - [sym___c_single_quote] = ACTIONS(3387), - [sym___r_double_quote] = ACTIONS(3387), - [sym___r_single_quote] = ACTIONS(3387), + [anon_sym_DOT] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3378), + [anon_sym___global] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_PIPE] = ACTIONS(3378), + [anon_sym_fn] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_STAR] = ACTIONS(3378), + [anon_sym_struct] = ACTIONS(3378), + [anon_sym_union] = ACTIONS(3378), + [anon_sym_pub] = ACTIONS(3378), + [anon_sym_mut] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_QMARK] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3378), + [anon_sym_go] = ACTIONS(3378), + [anon_sym_spawn] = ACTIONS(3378), + [anon_sym_json_DOTdecode] = ACTIONS(3378), + [anon_sym_LBRACK2] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3378), + [anon_sym_CARET] = ACTIONS(3378), + [anon_sym_AMP] = ACTIONS(3378), + [anon_sym_LT_DASH] = ACTIONS(3378), + [sym_none] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_nil] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_DOLLARif] = ACTIONS(3378), + [anon_sym_match] = ACTIONS(3378), + [anon_sym_select] = ACTIONS(3378), + [anon_sym_lock] = ACTIONS(3378), + [anon_sym_rlock] = ACTIONS(3378), + [anon_sym_unsafe] = ACTIONS(3378), + [anon_sym_sql] = ACTIONS(3378), + [sym_int_literal] = ACTIONS(3378), + [sym_float_literal] = ACTIONS(3378), + [sym_rune_literal] = ACTIONS(3378), + [sym_pseudo_compile_time_identifier] = ACTIONS(3378), + [anon_sym_shared] = ACTIONS(3378), + [anon_sym_map_LBRACK] = ACTIONS(3378), + [anon_sym_chan] = ACTIONS(3378), + [anon_sym_thread] = ACTIONS(3378), + [anon_sym_atomic] = ACTIONS(3378), + [anon_sym_assert] = ACTIONS(3378), + [anon_sym_defer] = ACTIONS(3378), + [anon_sym_goto] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_DOLLARfor] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_POUND] = ACTIONS(3378), + [anon_sym_asm] = ACTIONS(3378), + [anon_sym_AT_LBRACK] = ACTIONS(3378), + [sym___double_quote] = ACTIONS(3378), + [sym___single_quote] = ACTIONS(3378), + [sym___c_double_quote] = ACTIONS(3378), + [sym___c_single_quote] = ACTIONS(3378), + [sym___r_double_quote] = ACTIONS(3378), + [sym___r_single_quote] = ACTIONS(3378), }, - [1507] = { + [1494] = { + [ts_builtin_sym_end] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3177), + [anon_sym_LF] = ACTIONS(3177), + [anon_sym_CR] = ACTIONS(3177), + [anon_sym_CR_LF] = ACTIONS(3177), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_const] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym___global] = ACTIONS(3177), + [anon_sym_type] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_fn] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_struct] = ACTIONS(3177), + [anon_sym_union] = ACTIONS(3177), + [anon_sym_pub] = ACTIONS(3177), + [anon_sym_mut] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_QMARK] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_go] = ACTIONS(3177), + [anon_sym_spawn] = ACTIONS(3177), + [anon_sym_json_DOTdecode] = ACTIONS(3177), + [anon_sym_LBRACK2] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3177), + [anon_sym_CARET] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_LT_DASH] = ACTIONS(3177), + [sym_none] = ACTIONS(3177), + [sym_true] = ACTIONS(3177), + [sym_false] = ACTIONS(3177), + [sym_nil] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_DOLLARif] = ACTIONS(3177), + [anon_sym_match] = ACTIONS(3177), + [anon_sym_select] = ACTIONS(3177), + [anon_sym_lock] = ACTIONS(3177), + [anon_sym_rlock] = ACTIONS(3177), + [anon_sym_unsafe] = ACTIONS(3177), + [anon_sym_sql] = ACTIONS(3177), + [sym_int_literal] = ACTIONS(3177), + [sym_float_literal] = ACTIONS(3177), + [sym_rune_literal] = ACTIONS(3177), + [sym_pseudo_compile_time_identifier] = ACTIONS(3177), + [anon_sym_shared] = ACTIONS(3177), + [anon_sym_map_LBRACK] = ACTIONS(3177), + [anon_sym_chan] = ACTIONS(3177), + [anon_sym_thread] = ACTIONS(3177), + [anon_sym_atomic] = ACTIONS(3177), + [anon_sym_assert] = ACTIONS(3177), + [anon_sym_defer] = ACTIONS(3177), + [anon_sym_goto] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_DOLLARfor] = ACTIONS(3177), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_POUND] = ACTIONS(3177), + [anon_sym_asm] = ACTIONS(3177), + [anon_sym_AT_LBRACK] = ACTIONS(3177), + [sym___double_quote] = ACTIONS(3177), + [sym___single_quote] = ACTIONS(3177), + [sym___c_double_quote] = ACTIONS(3177), + [sym___c_single_quote] = ACTIONS(3177), + [sym___r_double_quote] = ACTIONS(3177), + [sym___r_single_quote] = ACTIONS(3177), + }, + [1495] = { + [ts_builtin_sym_end] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3181), + [anon_sym_LF] = ACTIONS(3181), + [anon_sym_CR] = ACTIONS(3181), + [anon_sym_CR_LF] = ACTIONS(3181), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_const] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym___global] = ACTIONS(3181), + [anon_sym_type] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_struct] = ACTIONS(3181), + [anon_sym_union] = ACTIONS(3181), + [anon_sym_pub] = ACTIONS(3181), + [anon_sym_mut] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_QMARK] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_go] = ACTIONS(3181), + [anon_sym_spawn] = ACTIONS(3181), + [anon_sym_json_DOTdecode] = ACTIONS(3181), + [anon_sym_LBRACK2] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_LT_DASH] = ACTIONS(3181), + [sym_none] = ACTIONS(3181), + [sym_true] = ACTIONS(3181), + [sym_false] = ACTIONS(3181), + [sym_nil] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_DOLLARif] = ACTIONS(3181), + [anon_sym_match] = ACTIONS(3181), + [anon_sym_select] = ACTIONS(3181), + [anon_sym_lock] = ACTIONS(3181), + [anon_sym_rlock] = ACTIONS(3181), + [anon_sym_unsafe] = ACTIONS(3181), + [anon_sym_sql] = ACTIONS(3181), + [sym_int_literal] = ACTIONS(3181), + [sym_float_literal] = ACTIONS(3181), + [sym_rune_literal] = ACTIONS(3181), + [sym_pseudo_compile_time_identifier] = ACTIONS(3181), + [anon_sym_shared] = ACTIONS(3181), + [anon_sym_map_LBRACK] = ACTIONS(3181), + [anon_sym_chan] = ACTIONS(3181), + [anon_sym_thread] = ACTIONS(3181), + [anon_sym_atomic] = ACTIONS(3181), + [anon_sym_assert] = ACTIONS(3181), + [anon_sym_defer] = ACTIONS(3181), + [anon_sym_goto] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_DOLLARfor] = ACTIONS(3181), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(3181), + [anon_sym_asm] = ACTIONS(3181), + [anon_sym_AT_LBRACK] = ACTIONS(3181), + [sym___double_quote] = ACTIONS(3181), + [sym___single_quote] = ACTIONS(3181), + [sym___c_double_quote] = ACTIONS(3181), + [sym___c_single_quote] = ACTIONS(3181), + [sym___r_double_quote] = ACTIONS(3181), + [sym___r_single_quote] = ACTIONS(3181), + }, + [1496] = { + [sym_block] = STATE(1553), [ts_builtin_sym_end] = ACTIONS(4190), [sym_identifier] = ACTIONS(4192), [anon_sym_LF] = ACTIONS(4192), @@ -182924,7 +182262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4192), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4192), - [anon_sym_LBRACE] = ACTIONS(4192), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4192), [anon_sym_LPAREN] = ACTIONS(4192), [anon_sym___global] = ACTIONS(4192), @@ -182988,7 +182326,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4192), [sym___r_single_quote] = ACTIONS(4192), }, - [1508] = { + [1497] = { + [ts_builtin_sym_end] = ACTIONS(3203), + [sym_identifier] = ACTIONS(3205), + [anon_sym_LF] = ACTIONS(3205), + [anon_sym_CR] = ACTIONS(3205), + [anon_sym_CR_LF] = ACTIONS(3205), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_const] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym___global] = ACTIONS(3205), + [anon_sym_type] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_fn] = ACTIONS(3205), + [anon_sym_PLUS] = ACTIONS(3205), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_struct] = ACTIONS(3205), + [anon_sym_union] = ACTIONS(3205), + [anon_sym_pub] = ACTIONS(3205), + [anon_sym_mut] = ACTIONS(3205), + [anon_sym_enum] = ACTIONS(3205), + [anon_sym_interface] = ACTIONS(3205), + [anon_sym_QMARK] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_go] = ACTIONS(3205), + [anon_sym_spawn] = ACTIONS(3205), + [anon_sym_json_DOTdecode] = ACTIONS(3205), + [anon_sym_LBRACK2] = ACTIONS(3205), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_LT_DASH] = ACTIONS(3205), + [sym_none] = ACTIONS(3205), + [sym_true] = ACTIONS(3205), + [sym_false] = ACTIONS(3205), + [sym_nil] = ACTIONS(3205), + [anon_sym_if] = ACTIONS(3205), + [anon_sym_DOLLARif] = ACTIONS(3205), + [anon_sym_match] = ACTIONS(3205), + [anon_sym_select] = ACTIONS(3205), + [anon_sym_lock] = ACTIONS(3205), + [anon_sym_rlock] = ACTIONS(3205), + [anon_sym_unsafe] = ACTIONS(3205), + [anon_sym_sql] = ACTIONS(3205), + [sym_int_literal] = ACTIONS(3205), + [sym_float_literal] = ACTIONS(3205), + [sym_rune_literal] = ACTIONS(3205), + [sym_pseudo_compile_time_identifier] = ACTIONS(3205), + [anon_sym_shared] = ACTIONS(3205), + [anon_sym_map_LBRACK] = ACTIONS(3205), + [anon_sym_chan] = ACTIONS(3205), + [anon_sym_thread] = ACTIONS(3205), + [anon_sym_atomic] = ACTIONS(3205), + [anon_sym_assert] = ACTIONS(3205), + [anon_sym_defer] = ACTIONS(3205), + [anon_sym_goto] = ACTIONS(3205), + [anon_sym_break] = ACTIONS(3205), + [anon_sym_continue] = ACTIONS(3205), + [anon_sym_return] = ACTIONS(3205), + [anon_sym_DOLLARfor] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3205), + [anon_sym_POUND] = ACTIONS(3205), + [anon_sym_asm] = ACTIONS(3205), + [anon_sym_AT_LBRACK] = ACTIONS(3205), + [sym___double_quote] = ACTIONS(3205), + [sym___single_quote] = ACTIONS(3205), + [sym___c_double_quote] = ACTIONS(3205), + [sym___c_single_quote] = ACTIONS(3205), + [sym___r_double_quote] = ACTIONS(3205), + [sym___r_single_quote] = ACTIONS(3205), + }, + [1498] = { [ts_builtin_sym_end] = ACTIONS(4194), [sym_identifier] = ACTIONS(4196), [anon_sym_LF] = ACTIONS(4196), @@ -183001,6 +182412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(4196), [anon_sym___global] = ACTIONS(4196), [anon_sym_type] = ACTIONS(4196), + [anon_sym_PIPE] = ACTIONS(4196), [anon_sym_fn] = ACTIONS(4196), [anon_sym_PLUS] = ACTIONS(4196), [anon_sym_DASH] = ACTIONS(4196), @@ -183060,7 +182472,738 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4196), [sym___r_single_quote] = ACTIONS(4196), }, + [1499] = { + [ts_builtin_sym_end] = ACTIONS(3211), + [sym_identifier] = ACTIONS(3213), + [anon_sym_LF] = ACTIONS(3213), + [anon_sym_CR] = ACTIONS(3213), + [anon_sym_CR_LF] = ACTIONS(3213), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym___global] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_fn] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_struct] = ACTIONS(3213), + [anon_sym_union] = ACTIONS(3213), + [anon_sym_pub] = ACTIONS(3213), + [anon_sym_mut] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_QMARK] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_go] = ACTIONS(3213), + [anon_sym_spawn] = ACTIONS(3213), + [anon_sym_json_DOTdecode] = ACTIONS(3213), + [anon_sym_LBRACK2] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_LT_DASH] = ACTIONS(3213), + [sym_none] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_nil] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_DOLLARif] = ACTIONS(3213), + [anon_sym_match] = ACTIONS(3213), + [anon_sym_select] = ACTIONS(3213), + [anon_sym_lock] = ACTIONS(3213), + [anon_sym_rlock] = ACTIONS(3213), + [anon_sym_unsafe] = ACTIONS(3213), + [anon_sym_sql] = ACTIONS(3213), + [sym_int_literal] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3213), + [sym_rune_literal] = ACTIONS(3213), + [sym_pseudo_compile_time_identifier] = ACTIONS(3213), + [anon_sym_shared] = ACTIONS(3213), + [anon_sym_map_LBRACK] = ACTIONS(3213), + [anon_sym_chan] = ACTIONS(3213), + [anon_sym_thread] = ACTIONS(3213), + [anon_sym_atomic] = ACTIONS(3213), + [anon_sym_assert] = ACTIONS(3213), + [anon_sym_defer] = ACTIONS(3213), + [anon_sym_goto] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_DOLLARfor] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_POUND] = ACTIONS(3213), + [anon_sym_asm] = ACTIONS(3213), + [anon_sym_AT_LBRACK] = ACTIONS(3213), + [sym___double_quote] = ACTIONS(3213), + [sym___single_quote] = ACTIONS(3213), + [sym___c_double_quote] = ACTIONS(3213), + [sym___c_single_quote] = ACTIONS(3213), + [sym___r_double_quote] = ACTIONS(3213), + [sym___r_single_quote] = ACTIONS(3213), + }, + [1500] = { + [ts_builtin_sym_end] = ACTIONS(3243), + [sym_identifier] = ACTIONS(3245), + [anon_sym_LF] = ACTIONS(3245), + [anon_sym_CR] = ACTIONS(3245), + [anon_sym_CR_LF] = ACTIONS(3245), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym___global] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_fn] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_struct] = ACTIONS(3245), + [anon_sym_union] = ACTIONS(3245), + [anon_sym_pub] = ACTIONS(3245), + [anon_sym_mut] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_QMARK] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_go] = ACTIONS(3245), + [anon_sym_spawn] = ACTIONS(3245), + [anon_sym_json_DOTdecode] = ACTIONS(3245), + [anon_sym_LBRACK2] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_LT_DASH] = ACTIONS(3245), + [sym_none] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_nil] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_DOLLARif] = ACTIONS(3245), + [anon_sym_match] = ACTIONS(3245), + [anon_sym_select] = ACTIONS(3245), + [anon_sym_lock] = ACTIONS(3245), + [anon_sym_rlock] = ACTIONS(3245), + [anon_sym_unsafe] = ACTIONS(3245), + [anon_sym_sql] = ACTIONS(3245), + [sym_int_literal] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + [sym_rune_literal] = ACTIONS(3245), + [sym_pseudo_compile_time_identifier] = ACTIONS(3245), + [anon_sym_shared] = ACTIONS(3245), + [anon_sym_map_LBRACK] = ACTIONS(3245), + [anon_sym_chan] = ACTIONS(3245), + [anon_sym_thread] = ACTIONS(3245), + [anon_sym_atomic] = ACTIONS(3245), + [anon_sym_assert] = ACTIONS(3245), + [anon_sym_defer] = ACTIONS(3245), + [anon_sym_goto] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_DOLLARfor] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_asm] = ACTIONS(3245), + [anon_sym_AT_LBRACK] = ACTIONS(3245), + [sym___double_quote] = ACTIONS(3245), + [sym___single_quote] = ACTIONS(3245), + [sym___c_double_quote] = ACTIONS(3245), + [sym___c_single_quote] = ACTIONS(3245), + [sym___r_double_quote] = ACTIONS(3245), + [sym___r_single_quote] = ACTIONS(3245), + }, + [1501] = { + [ts_builtin_sym_end] = ACTIONS(3255), + [sym_identifier] = ACTIONS(3257), + [anon_sym_LF] = ACTIONS(3257), + [anon_sym_CR] = ACTIONS(3257), + [anon_sym_CR_LF] = ACTIONS(3257), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_const] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym___global] = ACTIONS(3257), + [anon_sym_type] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_fn] = ACTIONS(3257), + [anon_sym_PLUS] = ACTIONS(3257), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_struct] = ACTIONS(3257), + [anon_sym_union] = ACTIONS(3257), + [anon_sym_pub] = ACTIONS(3257), + [anon_sym_mut] = ACTIONS(3257), + [anon_sym_enum] = ACTIONS(3257), + [anon_sym_interface] = ACTIONS(3257), + [anon_sym_QMARK] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_go] = ACTIONS(3257), + [anon_sym_spawn] = ACTIONS(3257), + [anon_sym_json_DOTdecode] = ACTIONS(3257), + [anon_sym_LBRACK2] = ACTIONS(3257), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_LT_DASH] = ACTIONS(3257), + [sym_none] = ACTIONS(3257), + [sym_true] = ACTIONS(3257), + [sym_false] = ACTIONS(3257), + [sym_nil] = ACTIONS(3257), + [anon_sym_if] = ACTIONS(3257), + [anon_sym_DOLLARif] = ACTIONS(3257), + [anon_sym_match] = ACTIONS(3257), + [anon_sym_select] = ACTIONS(3257), + [anon_sym_lock] = ACTIONS(3257), + [anon_sym_rlock] = ACTIONS(3257), + [anon_sym_unsafe] = ACTIONS(3257), + [anon_sym_sql] = ACTIONS(3257), + [sym_int_literal] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + [sym_rune_literal] = ACTIONS(3257), + [sym_pseudo_compile_time_identifier] = ACTIONS(3257), + [anon_sym_shared] = ACTIONS(3257), + [anon_sym_map_LBRACK] = ACTIONS(3257), + [anon_sym_chan] = ACTIONS(3257), + [anon_sym_thread] = ACTIONS(3257), + [anon_sym_atomic] = ACTIONS(3257), + [anon_sym_assert] = ACTIONS(3257), + [anon_sym_defer] = ACTIONS(3257), + [anon_sym_goto] = ACTIONS(3257), + [anon_sym_break] = ACTIONS(3257), + [anon_sym_continue] = ACTIONS(3257), + [anon_sym_return] = ACTIONS(3257), + [anon_sym_DOLLARfor] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_asm] = ACTIONS(3257), + [anon_sym_AT_LBRACK] = ACTIONS(3257), + [sym___double_quote] = ACTIONS(3257), + [sym___single_quote] = ACTIONS(3257), + [sym___c_double_quote] = ACTIONS(3257), + [sym___c_single_quote] = ACTIONS(3257), + [sym___r_double_quote] = ACTIONS(3257), + [sym___r_single_quote] = ACTIONS(3257), + }, + [1502] = { + [ts_builtin_sym_end] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_const] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym___global] = ACTIONS(3261), + [anon_sym_type] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_union] = ACTIONS(3261), + [anon_sym_pub] = ACTIONS(3261), + [anon_sym_mut] = ACTIONS(3261), + [anon_sym_enum] = ACTIONS(3261), + [anon_sym_interface] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_go] = ACTIONS(3261), + [anon_sym_spawn] = ACTIONS(3261), + [anon_sym_json_DOTdecode] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [sym_none] = ACTIONS(3261), + [sym_true] = ACTIONS(3261), + [sym_false] = ACTIONS(3261), + [sym_nil] = ACTIONS(3261), + [anon_sym_if] = ACTIONS(3261), + [anon_sym_DOLLARif] = ACTIONS(3261), + [anon_sym_match] = ACTIONS(3261), + [anon_sym_select] = ACTIONS(3261), + [anon_sym_lock] = ACTIONS(3261), + [anon_sym_rlock] = ACTIONS(3261), + [anon_sym_unsafe] = ACTIONS(3261), + [anon_sym_sql] = ACTIONS(3261), + [sym_int_literal] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + [sym_rune_literal] = ACTIONS(3261), + [sym_pseudo_compile_time_identifier] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), + [anon_sym_assert] = ACTIONS(3261), + [anon_sym_defer] = ACTIONS(3261), + [anon_sym_goto] = ACTIONS(3261), + [anon_sym_break] = ACTIONS(3261), + [anon_sym_continue] = ACTIONS(3261), + [anon_sym_return] = ACTIONS(3261), + [anon_sym_DOLLARfor] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_asm] = ACTIONS(3261), + [anon_sym_AT_LBRACK] = ACTIONS(3261), + [sym___double_quote] = ACTIONS(3261), + [sym___single_quote] = ACTIONS(3261), + [sym___c_double_quote] = ACTIONS(3261), + [sym___c_single_quote] = ACTIONS(3261), + [sym___r_double_quote] = ACTIONS(3261), + [sym___r_single_quote] = ACTIONS(3261), + }, + [1503] = { + [ts_builtin_sym_end] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3275), + [anon_sym_LF] = ACTIONS(3275), + [anon_sym_CR] = ACTIONS(3275), + [anon_sym_CR_LF] = ACTIONS(3275), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym___global] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_PIPE] = ACTIONS(3275), + [anon_sym_fn] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3275), + [anon_sym_union] = ACTIONS(3275), + [anon_sym_pub] = ACTIONS(3275), + [anon_sym_mut] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_QMARK] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_go] = ACTIONS(3275), + [anon_sym_spawn] = ACTIONS(3275), + [anon_sym_json_DOTdecode] = ACTIONS(3275), + [anon_sym_LBRACK2] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3275), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym_LT_DASH] = ACTIONS(3275), + [sym_none] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_nil] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_DOLLARif] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3275), + [anon_sym_select] = ACTIONS(3275), + [anon_sym_lock] = ACTIONS(3275), + [anon_sym_rlock] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_sql] = ACTIONS(3275), + [sym_int_literal] = ACTIONS(3275), + [sym_float_literal] = ACTIONS(3275), + [sym_rune_literal] = ACTIONS(3275), + [sym_pseudo_compile_time_identifier] = ACTIONS(3275), + [anon_sym_shared] = ACTIONS(3275), + [anon_sym_map_LBRACK] = ACTIONS(3275), + [anon_sym_chan] = ACTIONS(3275), + [anon_sym_thread] = ACTIONS(3275), + [anon_sym_atomic] = ACTIONS(3275), + [anon_sym_assert] = ACTIONS(3275), + [anon_sym_defer] = ACTIONS(3275), + [anon_sym_goto] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_DOLLARfor] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_POUND] = ACTIONS(3275), + [anon_sym_asm] = ACTIONS(3275), + [anon_sym_AT_LBRACK] = ACTIONS(3275), + [sym___double_quote] = ACTIONS(3275), + [sym___single_quote] = ACTIONS(3275), + [sym___c_double_quote] = ACTIONS(3275), + [sym___c_single_quote] = ACTIONS(3275), + [sym___r_double_quote] = ACTIONS(3275), + [sym___r_single_quote] = ACTIONS(3275), + }, + [1504] = { + [ts_builtin_sym_end] = ACTIONS(3326), + [sym_identifier] = ACTIONS(3328), + [anon_sym_LF] = ACTIONS(3328), + [anon_sym_CR] = ACTIONS(3328), + [anon_sym_CR_LF] = ACTIONS(3328), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym___global] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_PIPE] = ACTIONS(3328), + [anon_sym_fn] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_STAR] = ACTIONS(3328), + [anon_sym_struct] = ACTIONS(3328), + [anon_sym_union] = ACTIONS(3328), + [anon_sym_pub] = ACTIONS(3328), + [anon_sym_mut] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_QMARK] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_go] = ACTIONS(3328), + [anon_sym_spawn] = ACTIONS(3328), + [anon_sym_json_DOTdecode] = ACTIONS(3328), + [anon_sym_LBRACK2] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_CARET] = ACTIONS(3328), + [anon_sym_AMP] = ACTIONS(3328), + [anon_sym_LT_DASH] = ACTIONS(3328), + [sym_none] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_nil] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_DOLLARif] = ACTIONS(3328), + [anon_sym_match] = ACTIONS(3328), + [anon_sym_select] = ACTIONS(3328), + [anon_sym_lock] = ACTIONS(3328), + [anon_sym_rlock] = ACTIONS(3328), + [anon_sym_unsafe] = ACTIONS(3328), + [anon_sym_sql] = ACTIONS(3328), + [sym_int_literal] = ACTIONS(3328), + [sym_float_literal] = ACTIONS(3328), + [sym_rune_literal] = ACTIONS(3328), + [sym_pseudo_compile_time_identifier] = ACTIONS(3328), + [anon_sym_shared] = ACTIONS(3328), + [anon_sym_map_LBRACK] = ACTIONS(3328), + [anon_sym_chan] = ACTIONS(3328), + [anon_sym_thread] = ACTIONS(3328), + [anon_sym_atomic] = ACTIONS(3328), + [anon_sym_assert] = ACTIONS(3328), + [anon_sym_defer] = ACTIONS(3328), + [anon_sym_goto] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_DOLLARfor] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_POUND] = ACTIONS(3328), + [anon_sym_asm] = ACTIONS(3328), + [anon_sym_AT_LBRACK] = ACTIONS(3328), + [sym___double_quote] = ACTIONS(3328), + [sym___single_quote] = ACTIONS(3328), + [sym___c_double_quote] = ACTIONS(3328), + [sym___c_single_quote] = ACTIONS(3328), + [sym___r_double_quote] = ACTIONS(3328), + [sym___r_single_quote] = ACTIONS(3328), + }, + [1505] = { + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_LF] = ACTIONS(3370), + [anon_sym_CR] = ACTIONS(3370), + [anon_sym_CR_LF] = ACTIONS(3370), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym___global] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_fn] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3370), + [anon_sym_struct] = ACTIONS(3370), + [anon_sym_union] = ACTIONS(3370), + [anon_sym_pub] = ACTIONS(3370), + [anon_sym_mut] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_QMARK] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_go] = ACTIONS(3370), + [anon_sym_spawn] = ACTIONS(3370), + [anon_sym_json_DOTdecode] = ACTIONS(3370), + [anon_sym_LBRACK2] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3370), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_LT_DASH] = ACTIONS(3370), + [sym_none] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_nil] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_DOLLARif] = ACTIONS(3370), + [anon_sym_match] = ACTIONS(3370), + [anon_sym_select] = ACTIONS(3370), + [anon_sym_lock] = ACTIONS(3370), + [anon_sym_rlock] = ACTIONS(3370), + [anon_sym_unsafe] = ACTIONS(3370), + [anon_sym_sql] = ACTIONS(3370), + [sym_int_literal] = ACTIONS(3370), + [sym_float_literal] = ACTIONS(3370), + [sym_rune_literal] = ACTIONS(3370), + [sym_pseudo_compile_time_identifier] = ACTIONS(3370), + [anon_sym_shared] = ACTIONS(3370), + [anon_sym_map_LBRACK] = ACTIONS(3370), + [anon_sym_chan] = ACTIONS(3370), + [anon_sym_thread] = ACTIONS(3370), + [anon_sym_atomic] = ACTIONS(3370), + [anon_sym_assert] = ACTIONS(3370), + [anon_sym_defer] = ACTIONS(3370), + [anon_sym_goto] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_DOLLARfor] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3370), + [anon_sym_asm] = ACTIONS(3370), + [anon_sym_AT_LBRACK] = ACTIONS(3370), + [sym___double_quote] = ACTIONS(3370), + [sym___single_quote] = ACTIONS(3370), + [sym___c_double_quote] = ACTIONS(3370), + [sym___c_single_quote] = ACTIONS(3370), + [sym___r_double_quote] = ACTIONS(3370), + [sym___r_single_quote] = ACTIONS(3370), + }, + [1506] = { + [ts_builtin_sym_end] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3332), + [anon_sym_LF] = ACTIONS(3332), + [anon_sym_CR] = ACTIONS(3332), + [anon_sym_CR_LF] = ACTIONS(3332), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym___global] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_PIPE] = ACTIONS(3332), + [anon_sym_fn] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_STAR] = ACTIONS(3332), + [anon_sym_struct] = ACTIONS(3332), + [anon_sym_union] = ACTIONS(3332), + [anon_sym_pub] = ACTIONS(3332), + [anon_sym_mut] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_QMARK] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_go] = ACTIONS(3332), + [anon_sym_spawn] = ACTIONS(3332), + [anon_sym_json_DOTdecode] = ACTIONS(3332), + [anon_sym_LBRACK2] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_CARET] = ACTIONS(3332), + [anon_sym_AMP] = ACTIONS(3332), + [anon_sym_LT_DASH] = ACTIONS(3332), + [sym_none] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_nil] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_DOLLARif] = ACTIONS(3332), + [anon_sym_match] = ACTIONS(3332), + [anon_sym_select] = ACTIONS(3332), + [anon_sym_lock] = ACTIONS(3332), + [anon_sym_rlock] = ACTIONS(3332), + [anon_sym_unsafe] = ACTIONS(3332), + [anon_sym_sql] = ACTIONS(3332), + [sym_int_literal] = ACTIONS(3332), + [sym_float_literal] = ACTIONS(3332), + [sym_rune_literal] = ACTIONS(3332), + [sym_pseudo_compile_time_identifier] = ACTIONS(3332), + [anon_sym_shared] = ACTIONS(3332), + [anon_sym_map_LBRACK] = ACTIONS(3332), + [anon_sym_chan] = ACTIONS(3332), + [anon_sym_thread] = ACTIONS(3332), + [anon_sym_atomic] = ACTIONS(3332), + [anon_sym_assert] = ACTIONS(3332), + [anon_sym_defer] = ACTIONS(3332), + [anon_sym_goto] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_DOLLARfor] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_POUND] = ACTIONS(3332), + [anon_sym_asm] = ACTIONS(3332), + [anon_sym_AT_LBRACK] = ACTIONS(3332), + [sym___double_quote] = ACTIONS(3332), + [sym___single_quote] = ACTIONS(3332), + [sym___c_double_quote] = ACTIONS(3332), + [sym___c_single_quote] = ACTIONS(3332), + [sym___r_double_quote] = ACTIONS(3332), + [sym___r_single_quote] = ACTIONS(3332), + }, + [1507] = { + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3432), + [anon_sym_LF] = ACTIONS(3432), + [anon_sym_CR] = ACTIONS(3432), + [anon_sym_CR_LF] = ACTIONS(3432), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3432), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_const] = ACTIONS(3432), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym___global] = ACTIONS(3432), + [anon_sym_type] = ACTIONS(3432), + [anon_sym_PIPE] = ACTIONS(3432), + [anon_sym_fn] = ACTIONS(3432), + [anon_sym_PLUS] = ACTIONS(3432), + [anon_sym_DASH] = ACTIONS(3432), + [anon_sym_STAR] = ACTIONS(3432), + [anon_sym_struct] = ACTIONS(3432), + [anon_sym_union] = ACTIONS(3432), + [anon_sym_pub] = ACTIONS(3432), + [anon_sym_mut] = ACTIONS(3432), + [anon_sym_enum] = ACTIONS(3432), + [anon_sym_interface] = ACTIONS(3432), + [anon_sym_QMARK] = ACTIONS(3432), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_go] = ACTIONS(3432), + [anon_sym_spawn] = ACTIONS(3432), + [anon_sym_json_DOTdecode] = ACTIONS(3432), + [anon_sym_LBRACK2] = ACTIONS(3432), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_CARET] = ACTIONS(3432), + [anon_sym_AMP] = ACTIONS(3432), + [anon_sym_LT_DASH] = ACTIONS(3432), + [sym_none] = ACTIONS(3432), + [sym_true] = ACTIONS(3432), + [sym_false] = ACTIONS(3432), + [sym_nil] = ACTIONS(3432), + [anon_sym_if] = ACTIONS(3432), + [anon_sym_DOLLARif] = ACTIONS(3432), + [anon_sym_match] = ACTIONS(3432), + [anon_sym_select] = ACTIONS(3432), + [anon_sym_lock] = ACTIONS(3432), + [anon_sym_rlock] = ACTIONS(3432), + [anon_sym_unsafe] = ACTIONS(3432), + [anon_sym_sql] = ACTIONS(3432), + [sym_int_literal] = ACTIONS(3432), + [sym_float_literal] = ACTIONS(3432), + [sym_rune_literal] = ACTIONS(3432), + [sym_pseudo_compile_time_identifier] = ACTIONS(3432), + [anon_sym_shared] = ACTIONS(3432), + [anon_sym_map_LBRACK] = ACTIONS(3432), + [anon_sym_chan] = ACTIONS(3432), + [anon_sym_thread] = ACTIONS(3432), + [anon_sym_atomic] = ACTIONS(3432), + [anon_sym_assert] = ACTIONS(3432), + [anon_sym_defer] = ACTIONS(3432), + [anon_sym_goto] = ACTIONS(3432), + [anon_sym_break] = ACTIONS(3432), + [anon_sym_continue] = ACTIONS(3432), + [anon_sym_return] = ACTIONS(3432), + [anon_sym_DOLLARfor] = ACTIONS(3432), + [anon_sym_for] = ACTIONS(3432), + [anon_sym_POUND] = ACTIONS(3432), + [anon_sym_asm] = ACTIONS(3432), + [anon_sym_AT_LBRACK] = ACTIONS(3432), + [sym___double_quote] = ACTIONS(3432), + [sym___single_quote] = ACTIONS(3432), + [sym___c_double_quote] = ACTIONS(3432), + [sym___c_single_quote] = ACTIONS(3432), + [sym___r_double_quote] = ACTIONS(3432), + [sym___r_single_quote] = ACTIONS(3432), + }, + [1508] = { + [ts_builtin_sym_end] = ACTIONS(3334), + [sym_identifier] = ACTIONS(3336), + [anon_sym_LF] = ACTIONS(3336), + [anon_sym_CR] = ACTIONS(3336), + [anon_sym_CR_LF] = ACTIONS(3336), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(3336), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_const] = ACTIONS(3336), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym___global] = ACTIONS(3336), + [anon_sym_type] = ACTIONS(3336), + [anon_sym_PIPE] = ACTIONS(3336), + [anon_sym_fn] = ACTIONS(3336), + [anon_sym_PLUS] = ACTIONS(3336), + [anon_sym_DASH] = ACTIONS(3336), + [anon_sym_STAR] = ACTIONS(3336), + [anon_sym_struct] = ACTIONS(3336), + [anon_sym_union] = ACTIONS(3336), + [anon_sym_pub] = ACTIONS(3336), + [anon_sym_mut] = ACTIONS(3336), + [anon_sym_enum] = ACTIONS(3336), + [anon_sym_interface] = ACTIONS(3336), + [anon_sym_QMARK] = ACTIONS(3336), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_go] = ACTIONS(3336), + [anon_sym_spawn] = ACTIONS(3336), + [anon_sym_json_DOTdecode] = ACTIONS(3336), + [anon_sym_LBRACK2] = ACTIONS(3336), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_CARET] = ACTIONS(3336), + [anon_sym_AMP] = ACTIONS(3336), + [anon_sym_LT_DASH] = ACTIONS(3336), + [sym_none] = ACTIONS(3336), + [sym_true] = ACTIONS(3336), + [sym_false] = ACTIONS(3336), + [sym_nil] = ACTIONS(3336), + [anon_sym_if] = ACTIONS(3336), + [anon_sym_DOLLARif] = ACTIONS(3336), + [anon_sym_match] = ACTIONS(3336), + [anon_sym_select] = ACTIONS(3336), + [anon_sym_lock] = ACTIONS(3336), + [anon_sym_rlock] = ACTIONS(3336), + [anon_sym_unsafe] = ACTIONS(3336), + [anon_sym_sql] = ACTIONS(3336), + [sym_int_literal] = ACTIONS(3336), + [sym_float_literal] = ACTIONS(3336), + [sym_rune_literal] = ACTIONS(3336), + [sym_pseudo_compile_time_identifier] = ACTIONS(3336), + [anon_sym_shared] = ACTIONS(3336), + [anon_sym_map_LBRACK] = ACTIONS(3336), + [anon_sym_chan] = ACTIONS(3336), + [anon_sym_thread] = ACTIONS(3336), + [anon_sym_atomic] = ACTIONS(3336), + [anon_sym_assert] = ACTIONS(3336), + [anon_sym_defer] = ACTIONS(3336), + [anon_sym_goto] = ACTIONS(3336), + [anon_sym_break] = ACTIONS(3336), + [anon_sym_continue] = ACTIONS(3336), + [anon_sym_return] = ACTIONS(3336), + [anon_sym_DOLLARfor] = ACTIONS(3336), + [anon_sym_for] = ACTIONS(3336), + [anon_sym_POUND] = ACTIONS(3336), + [anon_sym_asm] = ACTIONS(3336), + [anon_sym_AT_LBRACK] = ACTIONS(3336), + [sym___double_quote] = ACTIONS(3336), + [sym___single_quote] = ACTIONS(3336), + [sym___c_double_quote] = ACTIONS(3336), + [sym___c_single_quote] = ACTIONS(3336), + [sym___r_double_quote] = ACTIONS(3336), + [sym___r_single_quote] = ACTIONS(3336), + }, [1509] = { + [sym_block] = STATE(1552), [ts_builtin_sym_end] = ACTIONS(4198), [sym_identifier] = ACTIONS(4200), [anon_sym_LF] = ACTIONS(4200), @@ -183068,7 +183211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_CR_LF] = ACTIONS(4200), [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4200), - [anon_sym_LBRACE] = ACTIONS(4200), + [anon_sym_LBRACE] = ACTIONS(4064), [anon_sym_const] = ACTIONS(4200), [anon_sym_LPAREN] = ACTIONS(4200), [anon_sym___global] = ACTIONS(4200), @@ -183277,6 +183420,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(4208), }, [1512] = { + [ts_builtin_sym_end] = ACTIONS(2647), + [sym_identifier] = ACTIONS(2649), + [anon_sym_LF] = ACTIONS(2649), + [anon_sym_CR] = ACTIONS(2649), + [anon_sym_CR_LF] = ACTIONS(2649), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_const] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym___global] = ACTIONS(2649), + [anon_sym_type] = ACTIONS(2649), + [anon_sym_fn] = ACTIONS(2649), + [anon_sym_PLUS] = ACTIONS(2649), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_struct] = ACTIONS(2649), + [anon_sym_union] = ACTIONS(2649), + [anon_sym_pub] = ACTIONS(2649), + [anon_sym_mut] = ACTIONS(2649), + [anon_sym_enum] = ACTIONS(2649), + [anon_sym_interface] = ACTIONS(2649), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_go] = ACTIONS(2649), + [anon_sym_spawn] = ACTIONS(2649), + [anon_sym_json_DOTdecode] = ACTIONS(2649), + [anon_sym_LBRACK2] = ACTIONS(2649), + [anon_sym_TILDE] = ACTIONS(2649), + [anon_sym_CARET] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_LT_DASH] = ACTIONS(2649), + [sym_none] = ACTIONS(2649), + [sym_true] = ACTIONS(2649), + [sym_false] = ACTIONS(2649), + [sym_nil] = ACTIONS(2649), + [anon_sym_if] = ACTIONS(2649), + [anon_sym_DOLLARif] = ACTIONS(2649), + [anon_sym_match] = ACTIONS(2649), + [anon_sym_select] = ACTIONS(2649), + [anon_sym_lock] = ACTIONS(2649), + [anon_sym_rlock] = ACTIONS(2649), + [anon_sym_unsafe] = ACTIONS(2649), + [anon_sym_sql] = ACTIONS(2649), + [sym_int_literal] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + [sym_rune_literal] = ACTIONS(2649), + [sym_pseudo_compile_time_identifier] = ACTIONS(2649), + [anon_sym_shared] = ACTIONS(2649), + [anon_sym_map_LBRACK] = ACTIONS(2649), + [anon_sym_chan] = ACTIONS(2649), + [anon_sym_thread] = ACTIONS(2649), + [anon_sym_atomic] = ACTIONS(2649), + [anon_sym_assert] = ACTIONS(2649), + [anon_sym_defer] = ACTIONS(2649), + [anon_sym_goto] = ACTIONS(2649), + [anon_sym_break] = ACTIONS(2649), + [anon_sym_continue] = ACTIONS(2649), + [anon_sym_return] = ACTIONS(2649), + [anon_sym_DOLLARfor] = ACTIONS(2649), + [anon_sym_for] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_asm] = ACTIONS(2649), + [anon_sym_AT_LBRACK] = ACTIONS(2649), + [sym___double_quote] = ACTIONS(2649), + [sym___single_quote] = ACTIONS(2649), + [sym___c_double_quote] = ACTIONS(2649), + [sym___c_single_quote] = ACTIONS(2649), + [sym___r_double_quote] = ACTIONS(2649), + [sym___r_single_quote] = ACTIONS(2649), + }, + [1513] = { [ts_builtin_sym_end] = ACTIONS(4210), [sym_identifier] = ACTIONS(4212), [anon_sym_LF] = ACTIONS(4212), @@ -183348,365 +183563,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4212), [sym___r_single_quote] = ACTIONS(4212), }, - [1513] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_RPAREN] = ACTIONS(603), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_RBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_COLON] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4214), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(603), - [anon_sym_AMP_CARET] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(603), - }, [1514] = { - [ts_builtin_sym_end] = ACTIONS(4216), - [sym_identifier] = ACTIONS(4218), - [anon_sym_LF] = ACTIONS(4218), - [anon_sym_CR] = ACTIONS(4218), - [anon_sym_CR_LF] = ACTIONS(4218), + [ts_builtin_sym_end] = ACTIONS(4214), + [sym_identifier] = ACTIONS(4216), + [anon_sym_LF] = ACTIONS(4216), + [anon_sym_CR] = ACTIONS(4216), + [anon_sym_CR_LF] = ACTIONS(4216), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4218), - [anon_sym_LBRACE] = ACTIONS(4218), - [anon_sym_const] = ACTIONS(4218), - [anon_sym_LPAREN] = ACTIONS(4218), - [anon_sym___global] = ACTIONS(4218), - [anon_sym_type] = ACTIONS(4218), - [anon_sym_fn] = ACTIONS(4218), - [anon_sym_PLUS] = ACTIONS(4218), - [anon_sym_DASH] = ACTIONS(4218), - [anon_sym_STAR] = ACTIONS(4218), - [anon_sym_struct] = ACTIONS(4218), - [anon_sym_union] = ACTIONS(4218), - [anon_sym_pub] = ACTIONS(4218), - [anon_sym_mut] = ACTIONS(4218), - [anon_sym_enum] = ACTIONS(4218), - [anon_sym_interface] = ACTIONS(4218), - [anon_sym_QMARK] = ACTIONS(4218), - [anon_sym_BANG] = ACTIONS(4218), - [anon_sym_go] = ACTIONS(4218), - [anon_sym_spawn] = ACTIONS(4218), - [anon_sym_json_DOTdecode] = ACTIONS(4218), - [anon_sym_LBRACK2] = ACTIONS(4218), - [anon_sym_TILDE] = ACTIONS(4218), - [anon_sym_CARET] = ACTIONS(4218), - [anon_sym_AMP] = ACTIONS(4218), - [anon_sym_LT_DASH] = ACTIONS(4218), - [sym_none] = ACTIONS(4218), - [sym_true] = ACTIONS(4218), - [sym_false] = ACTIONS(4218), - [sym_nil] = ACTIONS(4218), - [anon_sym_if] = ACTIONS(4218), - [anon_sym_DOLLARif] = ACTIONS(4218), - [anon_sym_match] = ACTIONS(4218), - [anon_sym_select] = ACTIONS(4218), - [anon_sym_lock] = ACTIONS(4218), - [anon_sym_rlock] = ACTIONS(4218), - [anon_sym_unsafe] = ACTIONS(4218), - [anon_sym_sql] = ACTIONS(4218), - [sym_int_literal] = ACTIONS(4218), - [sym_float_literal] = ACTIONS(4218), - [sym_rune_literal] = ACTIONS(4218), - [sym_pseudo_compile_time_identifier] = ACTIONS(4218), - [anon_sym_shared] = ACTIONS(4218), - [anon_sym_map_LBRACK] = ACTIONS(4218), - [anon_sym_chan] = ACTIONS(4218), - [anon_sym_thread] = ACTIONS(4218), - [anon_sym_atomic] = ACTIONS(4218), - [anon_sym_assert] = ACTIONS(4218), - [anon_sym_defer] = ACTIONS(4218), - [anon_sym_goto] = ACTIONS(4218), - [anon_sym_break] = ACTIONS(4218), - [anon_sym_continue] = ACTIONS(4218), - [anon_sym_return] = ACTIONS(4218), - [anon_sym_DOLLARfor] = ACTIONS(4218), - [anon_sym_for] = ACTIONS(4218), - [anon_sym_POUND] = ACTIONS(4218), - [anon_sym_asm] = ACTIONS(4218), - [anon_sym_AT_LBRACK] = ACTIONS(4218), - [sym___double_quote] = ACTIONS(4218), - [sym___single_quote] = ACTIONS(4218), - [sym___c_double_quote] = ACTIONS(4218), - [sym___c_single_quote] = ACTIONS(4218), - [sym___r_double_quote] = ACTIONS(4218), - [sym___r_single_quote] = ACTIONS(4218), + [anon_sym_DOT] = ACTIONS(4216), + [anon_sym_LBRACE] = ACTIONS(4216), + [anon_sym_const] = ACTIONS(4216), + [anon_sym_LPAREN] = ACTIONS(4216), + [anon_sym___global] = ACTIONS(4216), + [anon_sym_type] = ACTIONS(4216), + [anon_sym_fn] = ACTIONS(4216), + [anon_sym_PLUS] = ACTIONS(4216), + [anon_sym_DASH] = ACTIONS(4216), + [anon_sym_STAR] = ACTIONS(4216), + [anon_sym_struct] = ACTIONS(4216), + [anon_sym_union] = ACTIONS(4216), + [anon_sym_pub] = ACTIONS(4216), + [anon_sym_mut] = ACTIONS(4216), + [anon_sym_enum] = ACTIONS(4216), + [anon_sym_interface] = ACTIONS(4216), + [anon_sym_QMARK] = ACTIONS(4216), + [anon_sym_BANG] = ACTIONS(4216), + [anon_sym_go] = ACTIONS(4216), + [anon_sym_spawn] = ACTIONS(4216), + [anon_sym_json_DOTdecode] = ACTIONS(4216), + [anon_sym_LBRACK2] = ACTIONS(4216), + [anon_sym_TILDE] = ACTIONS(4216), + [anon_sym_CARET] = ACTIONS(4216), + [anon_sym_AMP] = ACTIONS(4216), + [anon_sym_LT_DASH] = ACTIONS(4216), + [sym_none] = ACTIONS(4216), + [sym_true] = ACTIONS(4216), + [sym_false] = ACTIONS(4216), + [sym_nil] = ACTIONS(4216), + [anon_sym_if] = ACTIONS(4216), + [anon_sym_DOLLARif] = ACTIONS(4216), + [anon_sym_match] = ACTIONS(4216), + [anon_sym_select] = ACTIONS(4216), + [anon_sym_lock] = ACTIONS(4216), + [anon_sym_rlock] = ACTIONS(4216), + [anon_sym_unsafe] = ACTIONS(4216), + [anon_sym_sql] = ACTIONS(4216), + [sym_int_literal] = ACTIONS(4216), + [sym_float_literal] = ACTIONS(4216), + [sym_rune_literal] = ACTIONS(4216), + [sym_pseudo_compile_time_identifier] = ACTIONS(4216), + [anon_sym_shared] = ACTIONS(4216), + [anon_sym_map_LBRACK] = ACTIONS(4216), + [anon_sym_chan] = ACTIONS(4216), + [anon_sym_thread] = ACTIONS(4216), + [anon_sym_atomic] = ACTIONS(4216), + [anon_sym_assert] = ACTIONS(4216), + [anon_sym_defer] = ACTIONS(4216), + [anon_sym_goto] = ACTIONS(4216), + [anon_sym_break] = ACTIONS(4216), + [anon_sym_continue] = ACTIONS(4216), + [anon_sym_return] = ACTIONS(4216), + [anon_sym_DOLLARfor] = ACTIONS(4216), + [anon_sym_for] = ACTIONS(4216), + [anon_sym_POUND] = ACTIONS(4216), + [anon_sym_asm] = ACTIONS(4216), + [anon_sym_AT_LBRACK] = ACTIONS(4216), + [sym___double_quote] = ACTIONS(4216), + [sym___single_quote] = ACTIONS(4216), + [sym___c_double_quote] = ACTIONS(4216), + [sym___c_single_quote] = ACTIONS(4216), + [sym___r_double_quote] = ACTIONS(4216), + [sym___r_single_quote] = ACTIONS(4216), }, [1515] = { - [ts_builtin_sym_end] = ACTIONS(4220), - [sym_identifier] = ACTIONS(4222), - [anon_sym_LF] = ACTIONS(4222), - [anon_sym_CR] = ACTIONS(4222), - [anon_sym_CR_LF] = ACTIONS(4222), + [ts_builtin_sym_end] = ACTIONS(4218), + [sym_identifier] = ACTIONS(4220), + [anon_sym_LF] = ACTIONS(4220), + [anon_sym_CR] = ACTIONS(4220), + [anon_sym_CR_LF] = ACTIONS(4220), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4222), - [anon_sym_LBRACE] = ACTIONS(4222), - [anon_sym_const] = ACTIONS(4222), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym___global] = ACTIONS(4222), - [anon_sym_type] = ACTIONS(4222), - [anon_sym_fn] = ACTIONS(4222), - [anon_sym_PLUS] = ACTIONS(4222), - [anon_sym_DASH] = ACTIONS(4222), - [anon_sym_STAR] = ACTIONS(4222), - [anon_sym_struct] = ACTIONS(4222), - [anon_sym_union] = ACTIONS(4222), - [anon_sym_pub] = ACTIONS(4222), - [anon_sym_mut] = ACTIONS(4222), - [anon_sym_enum] = ACTIONS(4222), - [anon_sym_interface] = ACTIONS(4222), - [anon_sym_QMARK] = ACTIONS(4222), - [anon_sym_BANG] = ACTIONS(4222), - [anon_sym_go] = ACTIONS(4222), - [anon_sym_spawn] = ACTIONS(4222), - [anon_sym_json_DOTdecode] = ACTIONS(4222), - [anon_sym_LBRACK2] = ACTIONS(4222), - [anon_sym_TILDE] = ACTIONS(4222), - [anon_sym_CARET] = ACTIONS(4222), - [anon_sym_AMP] = ACTIONS(4222), - [anon_sym_LT_DASH] = ACTIONS(4222), - [sym_none] = ACTIONS(4222), - [sym_true] = ACTIONS(4222), - [sym_false] = ACTIONS(4222), - [sym_nil] = ACTIONS(4222), - [anon_sym_if] = ACTIONS(4222), - [anon_sym_DOLLARif] = ACTIONS(4222), - [anon_sym_match] = ACTIONS(4222), - [anon_sym_select] = ACTIONS(4222), - [anon_sym_lock] = ACTIONS(4222), - [anon_sym_rlock] = ACTIONS(4222), - [anon_sym_unsafe] = ACTIONS(4222), - [anon_sym_sql] = ACTIONS(4222), - [sym_int_literal] = ACTIONS(4222), - [sym_float_literal] = ACTIONS(4222), - [sym_rune_literal] = ACTIONS(4222), - [sym_pseudo_compile_time_identifier] = ACTIONS(4222), - [anon_sym_shared] = ACTIONS(4222), - [anon_sym_map_LBRACK] = ACTIONS(4222), - [anon_sym_chan] = ACTIONS(4222), - [anon_sym_thread] = ACTIONS(4222), - [anon_sym_atomic] = ACTIONS(4222), - [anon_sym_assert] = ACTIONS(4222), - [anon_sym_defer] = ACTIONS(4222), - [anon_sym_goto] = ACTIONS(4222), - [anon_sym_break] = ACTIONS(4222), - [anon_sym_continue] = ACTIONS(4222), - [anon_sym_return] = ACTIONS(4222), - [anon_sym_DOLLARfor] = ACTIONS(4222), - [anon_sym_for] = ACTIONS(4222), - [anon_sym_POUND] = ACTIONS(4222), - [anon_sym_asm] = ACTIONS(4222), - [anon_sym_AT_LBRACK] = ACTIONS(4222), - [sym___double_quote] = ACTIONS(4222), - [sym___single_quote] = ACTIONS(4222), - [sym___c_double_quote] = ACTIONS(4222), - [sym___c_single_quote] = ACTIONS(4222), - [sym___r_double_quote] = ACTIONS(4222), - [sym___r_single_quote] = ACTIONS(4222), + [anon_sym_DOT] = ACTIONS(4220), + [anon_sym_LBRACE] = ACTIONS(4220), + [anon_sym_const] = ACTIONS(4220), + [anon_sym_LPAREN] = ACTIONS(4220), + [anon_sym___global] = ACTIONS(4220), + [anon_sym_type] = ACTIONS(4220), + [anon_sym_fn] = ACTIONS(4220), + [anon_sym_PLUS] = ACTIONS(4220), + [anon_sym_DASH] = ACTIONS(4220), + [anon_sym_STAR] = ACTIONS(4220), + [anon_sym_struct] = ACTIONS(4220), + [anon_sym_union] = ACTIONS(4220), + [anon_sym_pub] = ACTIONS(4220), + [anon_sym_mut] = ACTIONS(4220), + [anon_sym_enum] = ACTIONS(4220), + [anon_sym_interface] = ACTIONS(4220), + [anon_sym_QMARK] = ACTIONS(4220), + [anon_sym_BANG] = ACTIONS(4220), + [anon_sym_go] = ACTIONS(4220), + [anon_sym_spawn] = ACTIONS(4220), + [anon_sym_json_DOTdecode] = ACTIONS(4220), + [anon_sym_LBRACK2] = ACTIONS(4220), + [anon_sym_TILDE] = ACTIONS(4220), + [anon_sym_CARET] = ACTIONS(4220), + [anon_sym_AMP] = ACTIONS(4220), + [anon_sym_LT_DASH] = ACTIONS(4220), + [sym_none] = ACTIONS(4220), + [sym_true] = ACTIONS(4220), + [sym_false] = ACTIONS(4220), + [sym_nil] = ACTIONS(4220), + [anon_sym_if] = ACTIONS(4220), + [anon_sym_DOLLARif] = ACTIONS(4220), + [anon_sym_match] = ACTIONS(4220), + [anon_sym_select] = ACTIONS(4220), + [anon_sym_lock] = ACTIONS(4220), + [anon_sym_rlock] = ACTIONS(4220), + [anon_sym_unsafe] = ACTIONS(4220), + [anon_sym_sql] = ACTIONS(4220), + [sym_int_literal] = ACTIONS(4220), + [sym_float_literal] = ACTIONS(4220), + [sym_rune_literal] = ACTIONS(4220), + [sym_pseudo_compile_time_identifier] = ACTIONS(4220), + [anon_sym_shared] = ACTIONS(4220), + [anon_sym_map_LBRACK] = ACTIONS(4220), + [anon_sym_chan] = ACTIONS(4220), + [anon_sym_thread] = ACTIONS(4220), + [anon_sym_atomic] = ACTIONS(4220), + [anon_sym_assert] = ACTIONS(4220), + [anon_sym_defer] = ACTIONS(4220), + [anon_sym_goto] = ACTIONS(4220), + [anon_sym_break] = ACTIONS(4220), + [anon_sym_continue] = ACTIONS(4220), + [anon_sym_return] = ACTIONS(4220), + [anon_sym_DOLLARfor] = ACTIONS(4220), + [anon_sym_for] = ACTIONS(4220), + [anon_sym_POUND] = ACTIONS(4220), + [anon_sym_asm] = ACTIONS(4220), + [anon_sym_AT_LBRACK] = ACTIONS(4220), + [sym___double_quote] = ACTIONS(4220), + [sym___single_quote] = ACTIONS(4220), + [sym___c_double_quote] = ACTIONS(4220), + [sym___c_single_quote] = ACTIONS(4220), + [sym___r_double_quote] = ACTIONS(4220), + [sym___r_single_quote] = ACTIONS(4220), }, [1516] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(599), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_DOT_DOT_DOT] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_COLON_EQ] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(623), - [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(601), + [ts_builtin_sym_end] = ACTIONS(4222), + [sym_identifier] = ACTIONS(4224), + [anon_sym_LF] = ACTIONS(4224), + [anon_sym_CR] = ACTIONS(4224), + [anon_sym_CR_LF] = ACTIONS(4224), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4224), + [anon_sym_LBRACE] = ACTIONS(4224), + [anon_sym_const] = ACTIONS(4224), + [anon_sym_LPAREN] = ACTIONS(4224), + [anon_sym___global] = ACTIONS(4224), + [anon_sym_type] = ACTIONS(4224), + [anon_sym_fn] = ACTIONS(4224), + [anon_sym_PLUS] = ACTIONS(4224), + [anon_sym_DASH] = ACTIONS(4224), + [anon_sym_STAR] = ACTIONS(4224), + [anon_sym_struct] = ACTIONS(4224), + [anon_sym_union] = ACTIONS(4224), + [anon_sym_pub] = ACTIONS(4224), + [anon_sym_mut] = ACTIONS(4224), + [anon_sym_enum] = ACTIONS(4224), + [anon_sym_interface] = ACTIONS(4224), + [anon_sym_QMARK] = ACTIONS(4224), + [anon_sym_BANG] = ACTIONS(4224), + [anon_sym_go] = ACTIONS(4224), + [anon_sym_spawn] = ACTIONS(4224), + [anon_sym_json_DOTdecode] = ACTIONS(4224), + [anon_sym_LBRACK2] = ACTIONS(4224), + [anon_sym_TILDE] = ACTIONS(4224), + [anon_sym_CARET] = ACTIONS(4224), + [anon_sym_AMP] = ACTIONS(4224), + [anon_sym_LT_DASH] = ACTIONS(4224), + [sym_none] = ACTIONS(4224), + [sym_true] = ACTIONS(4224), + [sym_false] = ACTIONS(4224), + [sym_nil] = ACTIONS(4224), + [anon_sym_if] = ACTIONS(4224), + [anon_sym_DOLLARif] = ACTIONS(4224), + [anon_sym_match] = ACTIONS(4224), + [anon_sym_select] = ACTIONS(4224), + [anon_sym_lock] = ACTIONS(4224), + [anon_sym_rlock] = ACTIONS(4224), + [anon_sym_unsafe] = ACTIONS(4224), + [anon_sym_sql] = ACTIONS(4224), + [sym_int_literal] = ACTIONS(4224), + [sym_float_literal] = ACTIONS(4224), + [sym_rune_literal] = ACTIONS(4224), + [sym_pseudo_compile_time_identifier] = ACTIONS(4224), + [anon_sym_shared] = ACTIONS(4224), + [anon_sym_map_LBRACK] = ACTIONS(4224), + [anon_sym_chan] = ACTIONS(4224), + [anon_sym_thread] = ACTIONS(4224), + [anon_sym_atomic] = ACTIONS(4224), + [anon_sym_assert] = ACTIONS(4224), + [anon_sym_defer] = ACTIONS(4224), + [anon_sym_goto] = ACTIONS(4224), + [anon_sym_break] = ACTIONS(4224), + [anon_sym_continue] = ACTIONS(4224), + [anon_sym_return] = ACTIONS(4224), + [anon_sym_DOLLARfor] = ACTIONS(4224), + [anon_sym_for] = ACTIONS(4224), + [anon_sym_POUND] = ACTIONS(4224), + [anon_sym_asm] = ACTIONS(4224), + [anon_sym_AT_LBRACK] = ACTIONS(4224), + [sym___double_quote] = ACTIONS(4224), + [sym___single_quote] = ACTIONS(4224), + [sym___c_double_quote] = ACTIONS(4224), + [sym___c_single_quote] = ACTIONS(4224), + [sym___r_double_quote] = ACTIONS(4224), + [sym___r_single_quote] = ACTIONS(4224), }, [1517] = { - [ts_builtin_sym_end] = ACTIONS(4224), - [sym_identifier] = ACTIONS(4226), + [ts_builtin_sym_end] = ACTIONS(4226), + [sym_identifier] = ACTIONS(4228), [anon_sym_LF] = ACTIONS(4228), [anon_sym_CR] = ACTIONS(4228), [anon_sym_CR_LF] = ACTIONS(4228), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4226), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_const] = ACTIONS(4226), - [anon_sym_LPAREN] = ACTIONS(4226), - [anon_sym___global] = ACTIONS(4226), - [anon_sym_type] = ACTIONS(4226), - [anon_sym_fn] = ACTIONS(4226), - [anon_sym_PLUS] = ACTIONS(4226), - [anon_sym_DASH] = ACTIONS(4226), - [anon_sym_STAR] = ACTIONS(4226), - [anon_sym_struct] = ACTIONS(4226), - [anon_sym_union] = ACTIONS(4226), - [anon_sym_pub] = ACTIONS(4226), - [anon_sym_mut] = ACTIONS(4226), - [anon_sym_enum] = ACTIONS(4226), - [anon_sym_interface] = ACTIONS(4226), - [anon_sym_QMARK] = ACTIONS(4226), - [anon_sym_BANG] = ACTIONS(4226), - [anon_sym_go] = ACTIONS(4226), - [anon_sym_spawn] = ACTIONS(4226), - [anon_sym_json_DOTdecode] = ACTIONS(4226), - [anon_sym_LBRACK2] = ACTIONS(4226), - [anon_sym_TILDE] = ACTIONS(4226), - [anon_sym_CARET] = ACTIONS(4226), - [anon_sym_AMP] = ACTIONS(4226), - [anon_sym_LT_DASH] = ACTIONS(4226), - [sym_none] = ACTIONS(4226), - [sym_true] = ACTIONS(4226), - [sym_false] = ACTIONS(4226), - [sym_nil] = ACTIONS(4226), - [anon_sym_if] = ACTIONS(4226), - [anon_sym_DOLLARif] = ACTIONS(4226), - [anon_sym_match] = ACTIONS(4226), - [anon_sym_select] = ACTIONS(4226), - [anon_sym_lock] = ACTIONS(4226), - [anon_sym_rlock] = ACTIONS(4226), - [anon_sym_unsafe] = ACTIONS(4226), - [anon_sym_sql] = ACTIONS(4226), - [sym_int_literal] = ACTIONS(4226), - [sym_float_literal] = ACTIONS(4226), - [sym_rune_literal] = ACTIONS(4226), - [sym_pseudo_compile_time_identifier] = ACTIONS(4226), - [anon_sym_shared] = ACTIONS(4226), - [anon_sym_map_LBRACK] = ACTIONS(4226), - [anon_sym_chan] = ACTIONS(4226), - [anon_sym_thread] = ACTIONS(4226), - [anon_sym_atomic] = ACTIONS(4226), - [anon_sym_assert] = ACTIONS(4226), - [anon_sym_defer] = ACTIONS(4226), - [anon_sym_goto] = ACTIONS(4226), - [anon_sym_break] = ACTIONS(4226), - [anon_sym_continue] = ACTIONS(4226), - [anon_sym_return] = ACTIONS(4226), - [anon_sym_DOLLARfor] = ACTIONS(4226), - [anon_sym_for] = ACTIONS(4226), - [anon_sym_POUND] = ACTIONS(4226), - [anon_sym_asm] = ACTIONS(4226), - [anon_sym_AT_LBRACK] = ACTIONS(4226), - [sym___double_quote] = ACTIONS(4226), - [sym___single_quote] = ACTIONS(4226), - [sym___c_double_quote] = ACTIONS(4226), - [sym___c_single_quote] = ACTIONS(4226), - [sym___r_double_quote] = ACTIONS(4226), - [sym___r_single_quote] = ACTIONS(4226), + [anon_sym_DOT] = ACTIONS(4228), + [anon_sym_LBRACE] = ACTIONS(4228), + [anon_sym_const] = ACTIONS(4228), + [anon_sym_LPAREN] = ACTIONS(4228), + [anon_sym___global] = ACTIONS(4228), + [anon_sym_type] = ACTIONS(4228), + [anon_sym_fn] = ACTIONS(4228), + [anon_sym_PLUS] = ACTIONS(4228), + [anon_sym_DASH] = ACTIONS(4228), + [anon_sym_STAR] = ACTIONS(4228), + [anon_sym_struct] = ACTIONS(4228), + [anon_sym_union] = ACTIONS(4228), + [anon_sym_pub] = ACTIONS(4228), + [anon_sym_mut] = ACTIONS(4228), + [anon_sym_enum] = ACTIONS(4228), + [anon_sym_interface] = ACTIONS(4228), + [anon_sym_QMARK] = ACTIONS(4228), + [anon_sym_BANG] = ACTIONS(4228), + [anon_sym_go] = ACTIONS(4228), + [anon_sym_spawn] = ACTIONS(4228), + [anon_sym_json_DOTdecode] = ACTIONS(4228), + [anon_sym_LBRACK2] = ACTIONS(4228), + [anon_sym_TILDE] = ACTIONS(4228), + [anon_sym_CARET] = ACTIONS(4228), + [anon_sym_AMP] = ACTIONS(4228), + [anon_sym_LT_DASH] = ACTIONS(4228), + [sym_none] = ACTIONS(4228), + [sym_true] = ACTIONS(4228), + [sym_false] = ACTIONS(4228), + [sym_nil] = ACTIONS(4228), + [anon_sym_if] = ACTIONS(4228), + [anon_sym_DOLLARif] = ACTIONS(4228), + [anon_sym_match] = ACTIONS(4228), + [anon_sym_select] = ACTIONS(4228), + [anon_sym_lock] = ACTIONS(4228), + [anon_sym_rlock] = ACTIONS(4228), + [anon_sym_unsafe] = ACTIONS(4228), + [anon_sym_sql] = ACTIONS(4228), + [sym_int_literal] = ACTIONS(4228), + [sym_float_literal] = ACTIONS(4228), + [sym_rune_literal] = ACTIONS(4228), + [sym_pseudo_compile_time_identifier] = ACTIONS(4228), + [anon_sym_shared] = ACTIONS(4228), + [anon_sym_map_LBRACK] = ACTIONS(4228), + [anon_sym_chan] = ACTIONS(4228), + [anon_sym_thread] = ACTIONS(4228), + [anon_sym_atomic] = ACTIONS(4228), + [anon_sym_assert] = ACTIONS(4228), + [anon_sym_defer] = ACTIONS(4228), + [anon_sym_goto] = ACTIONS(4228), + [anon_sym_break] = ACTIONS(4228), + [anon_sym_continue] = ACTIONS(4228), + [anon_sym_return] = ACTIONS(4228), + [anon_sym_DOLLARfor] = ACTIONS(4228), + [anon_sym_for] = ACTIONS(4228), + [anon_sym_POUND] = ACTIONS(4228), + [anon_sym_asm] = ACTIONS(4228), + [anon_sym_AT_LBRACK] = ACTIONS(4228), + [sym___double_quote] = ACTIONS(4228), + [sym___single_quote] = ACTIONS(4228), + [sym___c_double_quote] = ACTIONS(4228), + [sym___c_single_quote] = ACTIONS(4228), + [sym___r_double_quote] = ACTIONS(4228), + [sym___r_single_quote] = ACTIONS(4228), }, [1518] = { [ts_builtin_sym_end] = ACTIONS(4230), @@ -183925,78 +184068,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(4240), }, [1521] = { - [ts_builtin_sym_end] = ACTIONS(1705), - [sym_identifier] = ACTIONS(1707), - [anon_sym_LF] = ACTIONS(1707), - [anon_sym_CR] = ACTIONS(1707), - [anon_sym_CR_LF] = ACTIONS(1707), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym___global] = ACTIONS(1707), - [anon_sym_type] = ACTIONS(1707), - [anon_sym_fn] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1707), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_struct] = ACTIONS(1707), - [anon_sym_union] = ACTIONS(1707), - [anon_sym_pub] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_enum] = ACTIONS(1707), - [anon_sym_interface] = ACTIONS(1707), - [anon_sym_QMARK] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_go] = ACTIONS(1707), - [anon_sym_spawn] = ACTIONS(1707), - [anon_sym_json_DOTdecode] = ACTIONS(1707), - [anon_sym_LBRACK2] = ACTIONS(1707), - [anon_sym_TILDE] = ACTIONS(1707), - [anon_sym_CARET] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_LT_DASH] = ACTIONS(1707), - [sym_none] = ACTIONS(1707), - [sym_true] = ACTIONS(1707), - [sym_false] = ACTIONS(1707), - [sym_nil] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_DOLLARif] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_select] = ACTIONS(1707), - [anon_sym_lock] = ACTIONS(1707), - [anon_sym_rlock] = ACTIONS(1707), - [anon_sym_unsafe] = ACTIONS(1707), - [anon_sym_sql] = ACTIONS(1707), - [sym_int_literal] = ACTIONS(1707), - [sym_float_literal] = ACTIONS(1707), - [sym_rune_literal] = ACTIONS(1707), - [sym_pseudo_compile_time_identifier] = ACTIONS(1707), - [anon_sym_shared] = ACTIONS(1707), - [anon_sym_map_LBRACK] = ACTIONS(1707), - [anon_sym_chan] = ACTIONS(1707), - [anon_sym_thread] = ACTIONS(1707), - [anon_sym_atomic] = ACTIONS(1707), - [anon_sym_assert] = ACTIONS(1707), - [anon_sym_defer] = ACTIONS(1707), - [anon_sym_goto] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_DOLLARfor] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(1707), - [anon_sym_asm] = ACTIONS(1707), - [anon_sym_AT_LBRACK] = ACTIONS(1707), - [sym___double_quote] = ACTIONS(1707), - [sym___single_quote] = ACTIONS(1707), - [sym___c_double_quote] = ACTIONS(1707), - [sym___c_single_quote] = ACTIONS(1707), - [sym___r_double_quote] = ACTIONS(1707), - [sym___r_single_quote] = ACTIONS(1707), - }, - [1522] = { [ts_builtin_sym_end] = ACTIONS(4242), [sym_identifier] = ACTIONS(4244), [anon_sym_LF] = ACTIONS(4244), @@ -184068,7 +184139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4244), [sym___r_single_quote] = ACTIONS(4244), }, - [1523] = { + [1522] = { [ts_builtin_sym_end] = ACTIONS(4246), [sym_identifier] = ACTIONS(4248), [anon_sym_LF] = ACTIONS(4248), @@ -184140,7 +184211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4248), [sym___r_single_quote] = ACTIONS(4248), }, - [1524] = { + [1523] = { [ts_builtin_sym_end] = ACTIONS(4250), [sym_identifier] = ACTIONS(4252), [anon_sym_LF] = ACTIONS(4252), @@ -184212,7 +184283,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4252), [sym___r_single_quote] = ACTIONS(4252), }, - [1525] = { + [1524] = { [ts_builtin_sym_end] = ACTIONS(4254), [sym_identifier] = ACTIONS(4256), [anon_sym_LF] = ACTIONS(4256), @@ -184284,7 +184355,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4256), [sym___r_single_quote] = ACTIONS(4256), }, - [1526] = { + [1525] = { [ts_builtin_sym_end] = ACTIONS(4258), [sym_identifier] = ACTIONS(4260), [anon_sym_LF] = ACTIONS(4260), @@ -184356,6 +184427,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4260), [sym___r_single_quote] = ACTIONS(4260), }, + [1526] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(615), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(613), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_DOT_DOT_DOT] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(615), + }, [1527] = { [ts_builtin_sym_end] = ACTIONS(4262), [sym_identifier] = ACTIONS(4264), @@ -185365,182 +185508,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(4316), }, [1541] = { - [ts_builtin_sym_end] = ACTIONS(2863), - [sym_identifier] = ACTIONS(2865), - [anon_sym_LF] = ACTIONS(2865), - [anon_sym_CR] = ACTIONS(2865), - [anon_sym_CR_LF] = ACTIONS(2865), + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3145), + [anon_sym_LF] = ACTIONS(3145), + [anon_sym_CR] = ACTIONS(3145), + [anon_sym_CR_LF] = ACTIONS(3145), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_const] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2865), - [anon_sym___global] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_fn] = ACTIONS(2865), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_STAR] = ACTIONS(2865), - [anon_sym_struct] = ACTIONS(2865), - [anon_sym_union] = ACTIONS(2865), - [anon_sym_pub] = ACTIONS(2865), - [anon_sym_mut] = ACTIONS(2865), - [anon_sym_enum] = ACTIONS(2865), - [anon_sym_interface] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_BANG] = ACTIONS(2865), - [anon_sym_go] = ACTIONS(2865), - [anon_sym_spawn] = ACTIONS(2865), - [anon_sym_json_DOTdecode] = ACTIONS(2865), - [anon_sym_LBRACK2] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_CARET] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_LT_DASH] = ACTIONS(2865), - [sym_none] = ACTIONS(2865), - [sym_true] = ACTIONS(2865), - [sym_false] = ACTIONS(2865), - [sym_nil] = ACTIONS(2865), - [anon_sym_if] = ACTIONS(2865), - [anon_sym_DOLLARif] = ACTIONS(2865), - [anon_sym_match] = ACTIONS(2865), - [anon_sym_select] = ACTIONS(2865), - [anon_sym_lock] = ACTIONS(2865), - [anon_sym_rlock] = ACTIONS(2865), - [anon_sym_unsafe] = ACTIONS(2865), - [anon_sym_sql] = ACTIONS(2865), - [sym_int_literal] = ACTIONS(2865), - [sym_float_literal] = ACTIONS(2865), - [sym_rune_literal] = ACTIONS(2865), - [sym_pseudo_compile_time_identifier] = ACTIONS(2865), - [anon_sym_shared] = ACTIONS(2865), - [anon_sym_map_LBRACK] = ACTIONS(2865), - [anon_sym_chan] = ACTIONS(2865), - [anon_sym_thread] = ACTIONS(2865), - [anon_sym_atomic] = ACTIONS(2865), - [anon_sym_assert] = ACTIONS(2865), - [anon_sym_defer] = ACTIONS(2865), - [anon_sym_goto] = ACTIONS(2865), - [anon_sym_break] = ACTIONS(2865), - [anon_sym_continue] = ACTIONS(2865), - [anon_sym_return] = ACTIONS(2865), - [anon_sym_DOLLARfor] = ACTIONS(2865), - [anon_sym_for] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_asm] = ACTIONS(2865), - [anon_sym_AT_LBRACK] = ACTIONS(2865), - [sym___double_quote] = ACTIONS(2865), - [sym___single_quote] = ACTIONS(2865), - [sym___c_double_quote] = ACTIONS(2865), - [sym___c_single_quote] = ACTIONS(2865), - [sym___r_double_quote] = ACTIONS(2865), - [sym___r_single_quote] = ACTIONS(2865), + [anon_sym_DOT] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym___global] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_fn] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_struct] = ACTIONS(3145), + [anon_sym_union] = ACTIONS(3145), + [anon_sym_pub] = ACTIONS(3145), + [anon_sym_mut] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_QMARK] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_go] = ACTIONS(3145), + [anon_sym_spawn] = ACTIONS(3145), + [anon_sym_json_DOTdecode] = ACTIONS(3145), + [anon_sym_LBRACK2] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_LT_DASH] = ACTIONS(3145), + [sym_none] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_nil] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_DOLLARif] = ACTIONS(3145), + [anon_sym_match] = ACTIONS(3145), + [anon_sym_select] = ACTIONS(3145), + [anon_sym_lock] = ACTIONS(3145), + [anon_sym_rlock] = ACTIONS(3145), + [anon_sym_unsafe] = ACTIONS(3145), + [anon_sym_sql] = ACTIONS(3145), + [sym_int_literal] = ACTIONS(3145), + [sym_float_literal] = ACTIONS(3145), + [sym_rune_literal] = ACTIONS(3145), + [sym_pseudo_compile_time_identifier] = ACTIONS(3145), + [anon_sym_shared] = ACTIONS(3145), + [anon_sym_map_LBRACK] = ACTIONS(3145), + [anon_sym_chan] = ACTIONS(3145), + [anon_sym_thread] = ACTIONS(3145), + [anon_sym_atomic] = ACTIONS(3145), + [anon_sym_assert] = ACTIONS(3145), + [anon_sym_defer] = ACTIONS(3145), + [anon_sym_goto] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_DOLLARfor] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3145), + [anon_sym_asm] = ACTIONS(3145), + [anon_sym_AT_LBRACK] = ACTIONS(3145), + [sym___double_quote] = ACTIONS(3145), + [sym___single_quote] = ACTIONS(3145), + [sym___c_double_quote] = ACTIONS(3145), + [sym___c_single_quote] = ACTIONS(3145), + [sym___r_double_quote] = ACTIONS(3145), + [sym___r_single_quote] = ACTIONS(3145), }, [1542] = { - [ts_builtin_sym_end] = ACTIONS(3193), - [sym_identifier] = ACTIONS(3195), - [anon_sym_LF] = ACTIONS(3195), - [anon_sym_CR] = ACTIONS(3195), - [anon_sym_CR_LF] = ACTIONS(3195), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_const] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym___global] = ACTIONS(3195), - [anon_sym_type] = ACTIONS(3195), - [anon_sym_fn] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3195), - [anon_sym_DASH] = ACTIONS(3195), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3195), - [anon_sym_union] = ACTIONS(3195), - [anon_sym_pub] = ACTIONS(3195), - [anon_sym_mut] = ACTIONS(3195), - [anon_sym_enum] = ACTIONS(3195), - [anon_sym_interface] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3195), - [anon_sym_BANG] = ACTIONS(3195), - [anon_sym_go] = ACTIONS(3195), - [anon_sym_spawn] = ACTIONS(3195), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3195), - [anon_sym_LT_DASH] = ACTIONS(3195), - [sym_none] = ACTIONS(3195), - [sym_true] = ACTIONS(3195), - [sym_false] = ACTIONS(3195), - [sym_nil] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3195), - [anon_sym_DOLLARif] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3195), - [anon_sym_select] = ACTIONS(3195), - [anon_sym_lock] = ACTIONS(3195), - [anon_sym_rlock] = ACTIONS(3195), - [anon_sym_unsafe] = ACTIONS(3195), - [anon_sym_sql] = ACTIONS(3195), - [sym_int_literal] = ACTIONS(3195), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [sym_pseudo_compile_time_identifier] = ACTIONS(3195), - [anon_sym_shared] = ACTIONS(3195), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3195), - [anon_sym_thread] = ACTIONS(3195), - [anon_sym_atomic] = ACTIONS(3195), - [anon_sym_assert] = ACTIONS(3195), - [anon_sym_defer] = ACTIONS(3195), - [anon_sym_goto] = ACTIONS(3195), - [anon_sym_break] = ACTIONS(3195), - [anon_sym_continue] = ACTIONS(3195), - [anon_sym_return] = ACTIONS(3195), - [anon_sym_DOLLARfor] = ACTIONS(3195), - [anon_sym_for] = ACTIONS(3195), - [anon_sym_POUND] = ACTIONS(3195), - [anon_sym_asm] = ACTIONS(3195), - [anon_sym_AT_LBRACK] = ACTIONS(3195), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [1543] = { - [sym_import_declaration] = STATE(1543), - [aux_sym_import_list_repeat1] = STATE(1543), [ts_builtin_sym_end] = ACTIONS(4318), [sym_identifier] = ACTIONS(4320), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4322), + [anon_sym_LF] = ACTIONS(4320), + [anon_sym_CR] = ACTIONS(4320), + [anon_sym_CR_LF] = ACTIONS(4320), + [sym_comment] = ACTIONS(495), [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4318), + [anon_sym_LBRACE] = ACTIONS(4320), [anon_sym_const] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4318), + [anon_sym_LPAREN] = ACTIONS(4320), [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_PLUS] = ACTIONS(4320), + [anon_sym_DASH] = ACTIONS(4320), + [anon_sym_STAR] = ACTIONS(4320), [anon_sym_struct] = ACTIONS(4320), [anon_sym_union] = ACTIONS(4320), [anon_sym_pub] = ACTIONS(4320), [anon_sym_mut] = ACTIONS(4320), [anon_sym_enum] = ACTIONS(4320), [anon_sym_interface] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4318), - [anon_sym_BANG] = ACTIONS(4318), + [anon_sym_QMARK] = ACTIONS(4320), + [anon_sym_BANG] = ACTIONS(4320), [anon_sym_go] = ACTIONS(4320), [anon_sym_spawn] = ACTIONS(4320), - [anon_sym_json_DOTdecode] = ACTIONS(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), + [anon_sym_json_DOTdecode] = ACTIONS(4320), + [anon_sym_LBRACK2] = ACTIONS(4320), + [anon_sym_TILDE] = ACTIONS(4320), + [anon_sym_CARET] = ACTIONS(4320), + [anon_sym_AMP] = ACTIONS(4320), + [anon_sym_LT_DASH] = ACTIONS(4320), [sym_none] = ACTIONS(4320), [sym_true] = ACTIONS(4320), [sym_false] = ACTIONS(4320), @@ -185554,11 +185625,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [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), + [sym_float_literal] = ACTIONS(4320), + [sym_rune_literal] = ACTIONS(4320), [sym_pseudo_compile_time_identifier] = ACTIONS(4320), [anon_sym_shared] = ACTIONS(4320), - [anon_sym_map_LBRACK] = ACTIONS(4318), + [anon_sym_map_LBRACK] = ACTIONS(4320), [anon_sym_chan] = ACTIONS(4320), [anon_sym_thread] = ACTIONS(4320), [anon_sym_atomic] = ACTIONS(4320), @@ -185570,3327 +185641,3399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4320), [anon_sym_DOLLARfor] = ACTIONS(4320), [anon_sym_for] = ACTIONS(4320), - [anon_sym_POUND] = ACTIONS(4318), + [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_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), + }, + [1543] = { + [ts_builtin_sym_end] = ACTIONS(4322), + [sym_identifier] = ACTIONS(4324), + [anon_sym_LF] = ACTIONS(4324), + [anon_sym_CR] = ACTIONS(4324), + [anon_sym_CR_LF] = ACTIONS(4324), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4324), + [anon_sym_LBRACE] = ACTIONS(4324), + [anon_sym_const] = ACTIONS(4324), + [anon_sym_LPAREN] = ACTIONS(4324), + [anon_sym___global] = ACTIONS(4324), + [anon_sym_type] = ACTIONS(4324), + [anon_sym_fn] = ACTIONS(4324), + [anon_sym_PLUS] = ACTIONS(4324), + [anon_sym_DASH] = ACTIONS(4324), + [anon_sym_STAR] = ACTIONS(4324), + [anon_sym_struct] = ACTIONS(4324), + [anon_sym_union] = ACTIONS(4324), + [anon_sym_pub] = ACTIONS(4324), + [anon_sym_mut] = ACTIONS(4324), + [anon_sym_enum] = ACTIONS(4324), + [anon_sym_interface] = ACTIONS(4324), + [anon_sym_QMARK] = ACTIONS(4324), + [anon_sym_BANG] = ACTIONS(4324), + [anon_sym_go] = ACTIONS(4324), + [anon_sym_spawn] = ACTIONS(4324), + [anon_sym_json_DOTdecode] = ACTIONS(4324), + [anon_sym_LBRACK2] = ACTIONS(4324), + [anon_sym_TILDE] = ACTIONS(4324), + [anon_sym_CARET] = ACTIONS(4324), + [anon_sym_AMP] = ACTIONS(4324), + [anon_sym_LT_DASH] = ACTIONS(4324), + [sym_none] = ACTIONS(4324), + [sym_true] = ACTIONS(4324), + [sym_false] = ACTIONS(4324), + [sym_nil] = ACTIONS(4324), + [anon_sym_if] = ACTIONS(4324), + [anon_sym_DOLLARif] = ACTIONS(4324), + [anon_sym_match] = ACTIONS(4324), + [anon_sym_select] = ACTIONS(4324), + [anon_sym_lock] = ACTIONS(4324), + [anon_sym_rlock] = ACTIONS(4324), + [anon_sym_unsafe] = ACTIONS(4324), + [anon_sym_sql] = ACTIONS(4324), + [sym_int_literal] = ACTIONS(4324), + [sym_float_literal] = ACTIONS(4324), + [sym_rune_literal] = ACTIONS(4324), + [sym_pseudo_compile_time_identifier] = ACTIONS(4324), + [anon_sym_shared] = ACTIONS(4324), + [anon_sym_map_LBRACK] = ACTIONS(4324), + [anon_sym_chan] = ACTIONS(4324), + [anon_sym_thread] = ACTIONS(4324), + [anon_sym_atomic] = ACTIONS(4324), + [anon_sym_assert] = ACTIONS(4324), + [anon_sym_defer] = ACTIONS(4324), + [anon_sym_goto] = ACTIONS(4324), + [anon_sym_break] = ACTIONS(4324), + [anon_sym_continue] = ACTIONS(4324), + [anon_sym_return] = ACTIONS(4324), + [anon_sym_DOLLARfor] = ACTIONS(4324), + [anon_sym_for] = ACTIONS(4324), + [anon_sym_POUND] = ACTIONS(4324), + [anon_sym_asm] = ACTIONS(4324), + [anon_sym_AT_LBRACK] = ACTIONS(4324), + [sym___double_quote] = ACTIONS(4324), + [sym___single_quote] = ACTIONS(4324), + [sym___c_double_quote] = ACTIONS(4324), + [sym___c_single_quote] = ACTIONS(4324), + [sym___r_double_quote] = ACTIONS(4324), + [sym___r_single_quote] = ACTIONS(4324), }, [1544] = { - [ts_builtin_sym_end] = ACTIONS(2755), - [sym_identifier] = ACTIONS(2757), - [anon_sym_LF] = ACTIONS(2757), - [anon_sym_CR] = ACTIONS(2757), - [anon_sym_CR_LF] = ACTIONS(2757), + [ts_builtin_sym_end] = ACTIONS(4326), + [sym_identifier] = ACTIONS(4328), + [anon_sym_LF] = ACTIONS(4328), + [anon_sym_CR] = ACTIONS(4328), + [anon_sym_CR_LF] = ACTIONS(4328), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(2757), - [anon_sym_LBRACE] = ACTIONS(2757), - [anon_sym_const] = ACTIONS(2757), - [anon_sym_LPAREN] = ACTIONS(2757), - [anon_sym___global] = ACTIONS(2757), - [anon_sym_type] = ACTIONS(2757), - [anon_sym_fn] = ACTIONS(2757), - [anon_sym_PLUS] = ACTIONS(2757), - [anon_sym_DASH] = ACTIONS(2757), - [anon_sym_STAR] = ACTIONS(2757), - [anon_sym_struct] = ACTIONS(2757), - [anon_sym_union] = ACTIONS(2757), - [anon_sym_pub] = ACTIONS(2757), - [anon_sym_mut] = ACTIONS(2757), - [anon_sym_enum] = ACTIONS(2757), - [anon_sym_interface] = ACTIONS(2757), - [anon_sym_QMARK] = ACTIONS(2757), - [anon_sym_BANG] = ACTIONS(2757), - [anon_sym_go] = ACTIONS(2757), - [anon_sym_spawn] = ACTIONS(2757), - [anon_sym_json_DOTdecode] = ACTIONS(2757), - [anon_sym_LBRACK2] = ACTIONS(2757), - [anon_sym_TILDE] = ACTIONS(2757), - [anon_sym_CARET] = ACTIONS(2757), - [anon_sym_AMP] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2757), - [sym_none] = ACTIONS(2757), - [sym_true] = ACTIONS(2757), - [sym_false] = ACTIONS(2757), - [sym_nil] = ACTIONS(2757), - [anon_sym_if] = ACTIONS(2757), - [anon_sym_DOLLARif] = ACTIONS(2757), - [anon_sym_match] = ACTIONS(2757), - [anon_sym_select] = ACTIONS(2757), - [anon_sym_lock] = ACTIONS(2757), - [anon_sym_rlock] = ACTIONS(2757), - [anon_sym_unsafe] = ACTIONS(2757), - [anon_sym_sql] = ACTIONS(2757), - [sym_int_literal] = ACTIONS(2757), - [sym_float_literal] = ACTIONS(2757), - [sym_rune_literal] = ACTIONS(2757), - [sym_pseudo_compile_time_identifier] = ACTIONS(2757), - [anon_sym_shared] = ACTIONS(2757), - [anon_sym_map_LBRACK] = ACTIONS(2757), - [anon_sym_chan] = ACTIONS(2757), - [anon_sym_thread] = ACTIONS(2757), - [anon_sym_atomic] = ACTIONS(2757), - [anon_sym_assert] = ACTIONS(2757), - [anon_sym_defer] = ACTIONS(2757), - [anon_sym_goto] = ACTIONS(2757), - [anon_sym_break] = ACTIONS(2757), - [anon_sym_continue] = ACTIONS(2757), - [anon_sym_return] = ACTIONS(2757), - [anon_sym_DOLLARfor] = ACTIONS(2757), - [anon_sym_for] = ACTIONS(2757), - [anon_sym_POUND] = ACTIONS(2757), - [anon_sym_asm] = ACTIONS(2757), - [anon_sym_AT_LBRACK] = ACTIONS(2757), - [sym___double_quote] = ACTIONS(2757), - [sym___single_quote] = ACTIONS(2757), - [sym___c_double_quote] = ACTIONS(2757), - [sym___c_single_quote] = ACTIONS(2757), - [sym___r_double_quote] = ACTIONS(2757), - [sym___r_single_quote] = ACTIONS(2757), + [anon_sym_DOT] = ACTIONS(4328), + [anon_sym_LBRACE] = ACTIONS(4328), + [anon_sym_const] = ACTIONS(4328), + [anon_sym_LPAREN] = ACTIONS(4328), + [anon_sym___global] = ACTIONS(4328), + [anon_sym_type] = ACTIONS(4328), + [anon_sym_fn] = ACTIONS(4328), + [anon_sym_PLUS] = ACTIONS(4328), + [anon_sym_DASH] = ACTIONS(4328), + [anon_sym_STAR] = ACTIONS(4328), + [anon_sym_struct] = ACTIONS(4328), + [anon_sym_union] = ACTIONS(4328), + [anon_sym_pub] = ACTIONS(4328), + [anon_sym_mut] = ACTIONS(4328), + [anon_sym_enum] = ACTIONS(4328), + [anon_sym_interface] = ACTIONS(4328), + [anon_sym_QMARK] = ACTIONS(4328), + [anon_sym_BANG] = ACTIONS(4328), + [anon_sym_go] = ACTIONS(4328), + [anon_sym_spawn] = ACTIONS(4328), + [anon_sym_json_DOTdecode] = ACTIONS(4328), + [anon_sym_LBRACK2] = ACTIONS(4328), + [anon_sym_TILDE] = ACTIONS(4328), + [anon_sym_CARET] = ACTIONS(4328), + [anon_sym_AMP] = ACTIONS(4328), + [anon_sym_LT_DASH] = ACTIONS(4328), + [sym_none] = ACTIONS(4328), + [sym_true] = ACTIONS(4328), + [sym_false] = ACTIONS(4328), + [sym_nil] = ACTIONS(4328), + [anon_sym_if] = ACTIONS(4328), + [anon_sym_DOLLARif] = ACTIONS(4328), + [anon_sym_match] = ACTIONS(4328), + [anon_sym_select] = ACTIONS(4328), + [anon_sym_lock] = ACTIONS(4328), + [anon_sym_rlock] = ACTIONS(4328), + [anon_sym_unsafe] = ACTIONS(4328), + [anon_sym_sql] = ACTIONS(4328), + [sym_int_literal] = ACTIONS(4328), + [sym_float_literal] = ACTIONS(4328), + [sym_rune_literal] = ACTIONS(4328), + [sym_pseudo_compile_time_identifier] = ACTIONS(4328), + [anon_sym_shared] = ACTIONS(4328), + [anon_sym_map_LBRACK] = ACTIONS(4328), + [anon_sym_chan] = ACTIONS(4328), + [anon_sym_thread] = ACTIONS(4328), + [anon_sym_atomic] = ACTIONS(4328), + [anon_sym_assert] = ACTIONS(4328), + [anon_sym_defer] = ACTIONS(4328), + [anon_sym_goto] = ACTIONS(4328), + [anon_sym_break] = ACTIONS(4328), + [anon_sym_continue] = ACTIONS(4328), + [anon_sym_return] = ACTIONS(4328), + [anon_sym_DOLLARfor] = ACTIONS(4328), + [anon_sym_for] = ACTIONS(4328), + [anon_sym_POUND] = ACTIONS(4328), + [anon_sym_asm] = ACTIONS(4328), + [anon_sym_AT_LBRACK] = ACTIONS(4328), + [sym___double_quote] = ACTIONS(4328), + [sym___single_quote] = ACTIONS(4328), + [sym___c_double_quote] = ACTIONS(4328), + [sym___c_single_quote] = ACTIONS(4328), + [sym___r_double_quote] = ACTIONS(4328), + [sym___r_single_quote] = ACTIONS(4328), }, [1545] = { - [ts_builtin_sym_end] = ACTIONS(4325), - [sym_identifier] = ACTIONS(4327), - [anon_sym_LF] = ACTIONS(4327), - [anon_sym_CR] = ACTIONS(4327), - [anon_sym_CR_LF] = ACTIONS(4327), + [ts_builtin_sym_end] = ACTIONS(4330), + [sym_identifier] = ACTIONS(4332), + [anon_sym_LF] = ACTIONS(4332), + [anon_sym_CR] = ACTIONS(4332), + [anon_sym_CR_LF] = ACTIONS(4332), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4327), - [anon_sym_LBRACE] = ACTIONS(4327), - [anon_sym_const] = ACTIONS(4327), - [anon_sym_LPAREN] = ACTIONS(4327), - [anon_sym___global] = ACTIONS(4327), - [anon_sym_type] = ACTIONS(4327), - [anon_sym_fn] = ACTIONS(4327), - [anon_sym_PLUS] = ACTIONS(4327), - [anon_sym_DASH] = ACTIONS(4327), - [anon_sym_STAR] = ACTIONS(4327), - [anon_sym_struct] = ACTIONS(4327), - [anon_sym_union] = ACTIONS(4327), - [anon_sym_pub] = ACTIONS(4327), - [anon_sym_mut] = ACTIONS(4327), - [anon_sym_enum] = ACTIONS(4327), - [anon_sym_interface] = ACTIONS(4327), - [anon_sym_QMARK] = ACTIONS(4327), - [anon_sym_BANG] = ACTIONS(4327), - [anon_sym_go] = ACTIONS(4327), - [anon_sym_spawn] = ACTIONS(4327), - [anon_sym_json_DOTdecode] = ACTIONS(4327), - [anon_sym_LBRACK2] = ACTIONS(4327), - [anon_sym_TILDE] = ACTIONS(4327), - [anon_sym_CARET] = ACTIONS(4327), - [anon_sym_AMP] = ACTIONS(4327), - [anon_sym_LT_DASH] = ACTIONS(4327), - [sym_none] = ACTIONS(4327), - [sym_true] = ACTIONS(4327), - [sym_false] = ACTIONS(4327), - [sym_nil] = ACTIONS(4327), - [anon_sym_if] = ACTIONS(4327), - [anon_sym_DOLLARif] = ACTIONS(4327), - [anon_sym_match] = ACTIONS(4327), - [anon_sym_select] = ACTIONS(4327), - [anon_sym_lock] = ACTIONS(4327), - [anon_sym_rlock] = ACTIONS(4327), - [anon_sym_unsafe] = ACTIONS(4327), - [anon_sym_sql] = ACTIONS(4327), - [sym_int_literal] = ACTIONS(4327), - [sym_float_literal] = ACTIONS(4327), - [sym_rune_literal] = ACTIONS(4327), - [sym_pseudo_compile_time_identifier] = ACTIONS(4327), - [anon_sym_shared] = ACTIONS(4327), - [anon_sym_map_LBRACK] = ACTIONS(4327), - [anon_sym_chan] = ACTIONS(4327), - [anon_sym_thread] = ACTIONS(4327), - [anon_sym_atomic] = ACTIONS(4327), - [anon_sym_assert] = ACTIONS(4327), - [anon_sym_defer] = ACTIONS(4327), - [anon_sym_goto] = ACTIONS(4327), - [anon_sym_break] = ACTIONS(4327), - [anon_sym_continue] = ACTIONS(4327), - [anon_sym_return] = ACTIONS(4327), - [anon_sym_DOLLARfor] = ACTIONS(4327), - [anon_sym_for] = ACTIONS(4327), - [anon_sym_POUND] = ACTIONS(4327), - [anon_sym_asm] = ACTIONS(4327), - [anon_sym_AT_LBRACK] = ACTIONS(4327), - [sym___double_quote] = ACTIONS(4327), - [sym___single_quote] = ACTIONS(4327), - [sym___c_double_quote] = ACTIONS(4327), - [sym___c_single_quote] = ACTIONS(4327), - [sym___r_double_quote] = ACTIONS(4327), - [sym___r_single_quote] = ACTIONS(4327), + [anon_sym_DOT] = ACTIONS(4332), + [anon_sym_LBRACE] = ACTIONS(4332), + [anon_sym_const] = ACTIONS(4332), + [anon_sym_LPAREN] = ACTIONS(4332), + [anon_sym___global] = ACTIONS(4332), + [anon_sym_type] = ACTIONS(4332), + [anon_sym_fn] = ACTIONS(4332), + [anon_sym_PLUS] = ACTIONS(4332), + [anon_sym_DASH] = ACTIONS(4332), + [anon_sym_STAR] = ACTIONS(4332), + [anon_sym_struct] = ACTIONS(4332), + [anon_sym_union] = ACTIONS(4332), + [anon_sym_pub] = ACTIONS(4332), + [anon_sym_mut] = ACTIONS(4332), + [anon_sym_enum] = ACTIONS(4332), + [anon_sym_interface] = ACTIONS(4332), + [anon_sym_QMARK] = ACTIONS(4332), + [anon_sym_BANG] = ACTIONS(4332), + [anon_sym_go] = ACTIONS(4332), + [anon_sym_spawn] = ACTIONS(4332), + [anon_sym_json_DOTdecode] = ACTIONS(4332), + [anon_sym_LBRACK2] = ACTIONS(4332), + [anon_sym_TILDE] = ACTIONS(4332), + [anon_sym_CARET] = ACTIONS(4332), + [anon_sym_AMP] = ACTIONS(4332), + [anon_sym_LT_DASH] = ACTIONS(4332), + [sym_none] = ACTIONS(4332), + [sym_true] = ACTIONS(4332), + [sym_false] = ACTIONS(4332), + [sym_nil] = ACTIONS(4332), + [anon_sym_if] = ACTIONS(4332), + [anon_sym_DOLLARif] = ACTIONS(4332), + [anon_sym_match] = ACTIONS(4332), + [anon_sym_select] = ACTIONS(4332), + [anon_sym_lock] = ACTIONS(4332), + [anon_sym_rlock] = ACTIONS(4332), + [anon_sym_unsafe] = ACTIONS(4332), + [anon_sym_sql] = ACTIONS(4332), + [sym_int_literal] = ACTIONS(4332), + [sym_float_literal] = ACTIONS(4332), + [sym_rune_literal] = ACTIONS(4332), + [sym_pseudo_compile_time_identifier] = ACTIONS(4332), + [anon_sym_shared] = ACTIONS(4332), + [anon_sym_map_LBRACK] = ACTIONS(4332), + [anon_sym_chan] = ACTIONS(4332), + [anon_sym_thread] = ACTIONS(4332), + [anon_sym_atomic] = ACTIONS(4332), + [anon_sym_assert] = ACTIONS(4332), + [anon_sym_defer] = ACTIONS(4332), + [anon_sym_goto] = ACTIONS(4332), + [anon_sym_break] = ACTIONS(4332), + [anon_sym_continue] = ACTIONS(4332), + [anon_sym_return] = ACTIONS(4332), + [anon_sym_DOLLARfor] = ACTIONS(4332), + [anon_sym_for] = ACTIONS(4332), + [anon_sym_POUND] = ACTIONS(4332), + [anon_sym_asm] = ACTIONS(4332), + [anon_sym_AT_LBRACK] = ACTIONS(4332), + [sym___double_quote] = ACTIONS(4332), + [sym___single_quote] = ACTIONS(4332), + [sym___c_double_quote] = ACTIONS(4332), + [sym___c_single_quote] = ACTIONS(4332), + [sym___r_double_quote] = ACTIONS(4332), + [sym___r_single_quote] = ACTIONS(4332), }, [1546] = { - [ts_builtin_sym_end] = ACTIONS(4329), - [sym_identifier] = ACTIONS(4331), - [anon_sym_LF] = ACTIONS(4331), - [anon_sym_CR] = ACTIONS(4331), - [anon_sym_CR_LF] = ACTIONS(4331), + [ts_builtin_sym_end] = ACTIONS(4334), + [sym_identifier] = ACTIONS(4336), + [anon_sym_LF] = ACTIONS(4336), + [anon_sym_CR] = ACTIONS(4336), + [anon_sym_CR_LF] = ACTIONS(4336), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4331), - [anon_sym_LBRACE] = ACTIONS(4331), - [anon_sym_const] = ACTIONS(4331), - [anon_sym_LPAREN] = ACTIONS(4331), - [anon_sym___global] = ACTIONS(4331), - [anon_sym_type] = ACTIONS(4331), - [anon_sym_fn] = ACTIONS(4331), - [anon_sym_PLUS] = ACTIONS(4331), - [anon_sym_DASH] = ACTIONS(4331), - [anon_sym_STAR] = ACTIONS(4331), - [anon_sym_struct] = ACTIONS(4331), - [anon_sym_union] = ACTIONS(4331), - [anon_sym_pub] = ACTIONS(4331), - [anon_sym_mut] = ACTIONS(4331), - [anon_sym_enum] = ACTIONS(4331), - [anon_sym_interface] = ACTIONS(4331), - [anon_sym_QMARK] = ACTIONS(4331), - [anon_sym_BANG] = ACTIONS(4331), - [anon_sym_go] = ACTIONS(4331), - [anon_sym_spawn] = ACTIONS(4331), - [anon_sym_json_DOTdecode] = ACTIONS(4331), - [anon_sym_LBRACK2] = ACTIONS(4331), - [anon_sym_TILDE] = ACTIONS(4331), - [anon_sym_CARET] = ACTIONS(4331), - [anon_sym_AMP] = ACTIONS(4331), - [anon_sym_LT_DASH] = ACTIONS(4331), - [sym_none] = ACTIONS(4331), - [sym_true] = ACTIONS(4331), - [sym_false] = ACTIONS(4331), - [sym_nil] = ACTIONS(4331), - [anon_sym_if] = ACTIONS(4331), - [anon_sym_DOLLARif] = ACTIONS(4331), - [anon_sym_match] = ACTIONS(4331), - [anon_sym_select] = ACTIONS(4331), - [anon_sym_lock] = ACTIONS(4331), - [anon_sym_rlock] = ACTIONS(4331), - [anon_sym_unsafe] = ACTIONS(4331), - [anon_sym_sql] = ACTIONS(4331), - [sym_int_literal] = ACTIONS(4331), - [sym_float_literal] = ACTIONS(4331), - [sym_rune_literal] = ACTIONS(4331), - [sym_pseudo_compile_time_identifier] = ACTIONS(4331), - [anon_sym_shared] = ACTIONS(4331), - [anon_sym_map_LBRACK] = ACTIONS(4331), - [anon_sym_chan] = ACTIONS(4331), - [anon_sym_thread] = ACTIONS(4331), - [anon_sym_atomic] = ACTIONS(4331), - [anon_sym_assert] = ACTIONS(4331), - [anon_sym_defer] = ACTIONS(4331), - [anon_sym_goto] = ACTIONS(4331), - [anon_sym_break] = ACTIONS(4331), - [anon_sym_continue] = ACTIONS(4331), - [anon_sym_return] = ACTIONS(4331), - [anon_sym_DOLLARfor] = ACTIONS(4331), - [anon_sym_for] = ACTIONS(4331), - [anon_sym_POUND] = ACTIONS(4331), - [anon_sym_asm] = ACTIONS(4331), - [anon_sym_AT_LBRACK] = ACTIONS(4331), - [sym___double_quote] = ACTIONS(4331), - [sym___single_quote] = ACTIONS(4331), - [sym___c_double_quote] = ACTIONS(4331), - [sym___c_single_quote] = ACTIONS(4331), - [sym___r_double_quote] = ACTIONS(4331), - [sym___r_single_quote] = ACTIONS(4331), + [anon_sym_DOT] = ACTIONS(4336), + [anon_sym_LBRACE] = ACTIONS(4336), + [anon_sym_const] = ACTIONS(4336), + [anon_sym_LPAREN] = ACTIONS(4336), + [anon_sym___global] = ACTIONS(4336), + [anon_sym_type] = ACTIONS(4336), + [anon_sym_fn] = ACTIONS(4336), + [anon_sym_PLUS] = ACTIONS(4336), + [anon_sym_DASH] = ACTIONS(4336), + [anon_sym_STAR] = ACTIONS(4336), + [anon_sym_struct] = ACTIONS(4336), + [anon_sym_union] = ACTIONS(4336), + [anon_sym_pub] = ACTIONS(4336), + [anon_sym_mut] = ACTIONS(4336), + [anon_sym_enum] = ACTIONS(4336), + [anon_sym_interface] = ACTIONS(4336), + [anon_sym_QMARK] = ACTIONS(4336), + [anon_sym_BANG] = ACTIONS(4336), + [anon_sym_go] = ACTIONS(4336), + [anon_sym_spawn] = ACTIONS(4336), + [anon_sym_json_DOTdecode] = ACTIONS(4336), + [anon_sym_LBRACK2] = ACTIONS(4336), + [anon_sym_TILDE] = ACTIONS(4336), + [anon_sym_CARET] = ACTIONS(4336), + [anon_sym_AMP] = ACTIONS(4336), + [anon_sym_LT_DASH] = ACTIONS(4336), + [sym_none] = ACTIONS(4336), + [sym_true] = ACTIONS(4336), + [sym_false] = ACTIONS(4336), + [sym_nil] = ACTIONS(4336), + [anon_sym_if] = ACTIONS(4336), + [anon_sym_DOLLARif] = ACTIONS(4336), + [anon_sym_match] = ACTIONS(4336), + [anon_sym_select] = ACTIONS(4336), + [anon_sym_lock] = ACTIONS(4336), + [anon_sym_rlock] = ACTIONS(4336), + [anon_sym_unsafe] = ACTIONS(4336), + [anon_sym_sql] = ACTIONS(4336), + [sym_int_literal] = ACTIONS(4336), + [sym_float_literal] = ACTIONS(4336), + [sym_rune_literal] = ACTIONS(4336), + [sym_pseudo_compile_time_identifier] = ACTIONS(4336), + [anon_sym_shared] = ACTIONS(4336), + [anon_sym_map_LBRACK] = ACTIONS(4336), + [anon_sym_chan] = ACTIONS(4336), + [anon_sym_thread] = ACTIONS(4336), + [anon_sym_atomic] = ACTIONS(4336), + [anon_sym_assert] = ACTIONS(4336), + [anon_sym_defer] = ACTIONS(4336), + [anon_sym_goto] = ACTIONS(4336), + [anon_sym_break] = ACTIONS(4336), + [anon_sym_continue] = ACTIONS(4336), + [anon_sym_return] = ACTIONS(4336), + [anon_sym_DOLLARfor] = ACTIONS(4336), + [anon_sym_for] = ACTIONS(4336), + [anon_sym_POUND] = ACTIONS(4336), + [anon_sym_asm] = ACTIONS(4336), + [anon_sym_AT_LBRACK] = ACTIONS(4336), + [sym___double_quote] = ACTIONS(4336), + [sym___single_quote] = ACTIONS(4336), + [sym___c_double_quote] = ACTIONS(4336), + [sym___c_single_quote] = ACTIONS(4336), + [sym___r_double_quote] = ACTIONS(4336), + [sym___r_single_quote] = ACTIONS(4336), }, [1547] = { - [ts_builtin_sym_end] = ACTIONS(4333), - [sym_identifier] = ACTIONS(4335), - [anon_sym_LF] = ACTIONS(4335), - [anon_sym_CR] = ACTIONS(4335), - [anon_sym_CR_LF] = ACTIONS(4335), + [ts_builtin_sym_end] = ACTIONS(4338), + [sym_identifier] = ACTIONS(4340), + [anon_sym_LF] = ACTIONS(4340), + [anon_sym_CR] = ACTIONS(4340), + [anon_sym_CR_LF] = ACTIONS(4340), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4335), - [anon_sym_LBRACE] = ACTIONS(4335), - [anon_sym_const] = ACTIONS(4335), - [anon_sym_LPAREN] = ACTIONS(4335), - [anon_sym___global] = ACTIONS(4335), - [anon_sym_type] = ACTIONS(4335), - [anon_sym_fn] = ACTIONS(4335), - [anon_sym_PLUS] = ACTIONS(4335), - [anon_sym_DASH] = ACTIONS(4335), - [anon_sym_STAR] = ACTIONS(4335), - [anon_sym_struct] = ACTIONS(4335), - [anon_sym_union] = ACTIONS(4335), - [anon_sym_pub] = ACTIONS(4335), - [anon_sym_mut] = ACTIONS(4335), - [anon_sym_enum] = ACTIONS(4335), - [anon_sym_interface] = ACTIONS(4335), - [anon_sym_QMARK] = ACTIONS(4335), - [anon_sym_BANG] = ACTIONS(4335), - [anon_sym_go] = ACTIONS(4335), - [anon_sym_spawn] = ACTIONS(4335), - [anon_sym_json_DOTdecode] = ACTIONS(4335), - [anon_sym_LBRACK2] = ACTIONS(4335), - [anon_sym_TILDE] = ACTIONS(4335), - [anon_sym_CARET] = ACTIONS(4335), - [anon_sym_AMP] = ACTIONS(4335), - [anon_sym_LT_DASH] = ACTIONS(4335), - [sym_none] = ACTIONS(4335), - [sym_true] = ACTIONS(4335), - [sym_false] = ACTIONS(4335), - [sym_nil] = ACTIONS(4335), - [anon_sym_if] = ACTIONS(4335), - [anon_sym_DOLLARif] = ACTIONS(4335), - [anon_sym_match] = ACTIONS(4335), - [anon_sym_select] = ACTIONS(4335), - [anon_sym_lock] = ACTIONS(4335), - [anon_sym_rlock] = ACTIONS(4335), - [anon_sym_unsafe] = ACTIONS(4335), - [anon_sym_sql] = ACTIONS(4335), - [sym_int_literal] = ACTIONS(4335), - [sym_float_literal] = ACTIONS(4335), - [sym_rune_literal] = ACTIONS(4335), - [sym_pseudo_compile_time_identifier] = ACTIONS(4335), - [anon_sym_shared] = ACTIONS(4335), - [anon_sym_map_LBRACK] = ACTIONS(4335), - [anon_sym_chan] = ACTIONS(4335), - [anon_sym_thread] = ACTIONS(4335), - [anon_sym_atomic] = ACTIONS(4335), - [anon_sym_assert] = ACTIONS(4335), - [anon_sym_defer] = ACTIONS(4335), - [anon_sym_goto] = ACTIONS(4335), - [anon_sym_break] = ACTIONS(4335), - [anon_sym_continue] = ACTIONS(4335), - [anon_sym_return] = ACTIONS(4335), - [anon_sym_DOLLARfor] = ACTIONS(4335), - [anon_sym_for] = ACTIONS(4335), - [anon_sym_POUND] = ACTIONS(4335), - [anon_sym_asm] = ACTIONS(4335), - [anon_sym_AT_LBRACK] = ACTIONS(4335), - [sym___double_quote] = ACTIONS(4335), - [sym___single_quote] = ACTIONS(4335), - [sym___c_double_quote] = ACTIONS(4335), - [sym___c_single_quote] = ACTIONS(4335), - [sym___r_double_quote] = ACTIONS(4335), - [sym___r_single_quote] = ACTIONS(4335), + [anon_sym_DOT] = ACTIONS(4340), + [anon_sym_LBRACE] = ACTIONS(4340), + [anon_sym_const] = ACTIONS(4340), + [anon_sym_LPAREN] = ACTIONS(4340), + [anon_sym___global] = ACTIONS(4340), + [anon_sym_type] = ACTIONS(4340), + [anon_sym_fn] = ACTIONS(4340), + [anon_sym_PLUS] = ACTIONS(4340), + [anon_sym_DASH] = ACTIONS(4340), + [anon_sym_STAR] = ACTIONS(4340), + [anon_sym_struct] = ACTIONS(4340), + [anon_sym_union] = ACTIONS(4340), + [anon_sym_pub] = ACTIONS(4340), + [anon_sym_mut] = ACTIONS(4340), + [anon_sym_enum] = ACTIONS(4340), + [anon_sym_interface] = ACTIONS(4340), + [anon_sym_QMARK] = ACTIONS(4340), + [anon_sym_BANG] = ACTIONS(4340), + [anon_sym_go] = ACTIONS(4340), + [anon_sym_spawn] = ACTIONS(4340), + [anon_sym_json_DOTdecode] = ACTIONS(4340), + [anon_sym_LBRACK2] = ACTIONS(4340), + [anon_sym_TILDE] = ACTIONS(4340), + [anon_sym_CARET] = ACTIONS(4340), + [anon_sym_AMP] = ACTIONS(4340), + [anon_sym_LT_DASH] = ACTIONS(4340), + [sym_none] = ACTIONS(4340), + [sym_true] = ACTIONS(4340), + [sym_false] = ACTIONS(4340), + [sym_nil] = ACTIONS(4340), + [anon_sym_if] = ACTIONS(4340), + [anon_sym_DOLLARif] = ACTIONS(4340), + [anon_sym_match] = ACTIONS(4340), + [anon_sym_select] = ACTIONS(4340), + [anon_sym_lock] = ACTIONS(4340), + [anon_sym_rlock] = ACTIONS(4340), + [anon_sym_unsafe] = ACTIONS(4340), + [anon_sym_sql] = ACTIONS(4340), + [sym_int_literal] = ACTIONS(4340), + [sym_float_literal] = ACTIONS(4340), + [sym_rune_literal] = ACTIONS(4340), + [sym_pseudo_compile_time_identifier] = ACTIONS(4340), + [anon_sym_shared] = ACTIONS(4340), + [anon_sym_map_LBRACK] = ACTIONS(4340), + [anon_sym_chan] = ACTIONS(4340), + [anon_sym_thread] = ACTIONS(4340), + [anon_sym_atomic] = ACTIONS(4340), + [anon_sym_assert] = ACTIONS(4340), + [anon_sym_defer] = ACTIONS(4340), + [anon_sym_goto] = ACTIONS(4340), + [anon_sym_break] = ACTIONS(4340), + [anon_sym_continue] = ACTIONS(4340), + [anon_sym_return] = ACTIONS(4340), + [anon_sym_DOLLARfor] = ACTIONS(4340), + [anon_sym_for] = ACTIONS(4340), + [anon_sym_POUND] = ACTIONS(4340), + [anon_sym_asm] = ACTIONS(4340), + [anon_sym_AT_LBRACK] = ACTIONS(4340), + [sym___double_quote] = ACTIONS(4340), + [sym___single_quote] = ACTIONS(4340), + [sym___c_double_quote] = ACTIONS(4340), + [sym___c_single_quote] = ACTIONS(4340), + [sym___r_double_quote] = ACTIONS(4340), + [sym___r_single_quote] = ACTIONS(4340), }, [1548] = { - [ts_builtin_sym_end] = ACTIONS(4337), - [sym_identifier] = ACTIONS(4339), - [anon_sym_LF] = ACTIONS(4339), - [anon_sym_CR] = ACTIONS(4339), - [anon_sym_CR_LF] = ACTIONS(4339), + [ts_builtin_sym_end] = ACTIONS(4342), + [sym_identifier] = ACTIONS(4344), + [anon_sym_LF] = ACTIONS(4344), + [anon_sym_CR] = ACTIONS(4344), + [anon_sym_CR_LF] = ACTIONS(4344), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4339), - [anon_sym_LBRACE] = ACTIONS(4339), - [anon_sym_const] = ACTIONS(4339), - [anon_sym_LPAREN] = ACTIONS(4339), - [anon_sym___global] = ACTIONS(4339), - [anon_sym_type] = ACTIONS(4339), - [anon_sym_fn] = ACTIONS(4339), - [anon_sym_PLUS] = ACTIONS(4339), - [anon_sym_DASH] = ACTIONS(4339), - [anon_sym_STAR] = ACTIONS(4339), - [anon_sym_struct] = ACTIONS(4339), - [anon_sym_union] = ACTIONS(4339), - [anon_sym_pub] = ACTIONS(4339), - [anon_sym_mut] = ACTIONS(4339), - [anon_sym_enum] = ACTIONS(4339), - [anon_sym_interface] = ACTIONS(4339), - [anon_sym_QMARK] = ACTIONS(4339), - [anon_sym_BANG] = ACTIONS(4339), - [anon_sym_go] = ACTIONS(4339), - [anon_sym_spawn] = ACTIONS(4339), - [anon_sym_json_DOTdecode] = ACTIONS(4339), - [anon_sym_LBRACK2] = ACTIONS(4339), - [anon_sym_TILDE] = ACTIONS(4339), - [anon_sym_CARET] = ACTIONS(4339), - [anon_sym_AMP] = ACTIONS(4339), - [anon_sym_LT_DASH] = ACTIONS(4339), - [sym_none] = ACTIONS(4339), - [sym_true] = ACTIONS(4339), - [sym_false] = ACTIONS(4339), - [sym_nil] = ACTIONS(4339), - [anon_sym_if] = ACTIONS(4339), - [anon_sym_DOLLARif] = ACTIONS(4339), - [anon_sym_match] = ACTIONS(4339), - [anon_sym_select] = ACTIONS(4339), - [anon_sym_lock] = ACTIONS(4339), - [anon_sym_rlock] = ACTIONS(4339), - [anon_sym_unsafe] = ACTIONS(4339), - [anon_sym_sql] = ACTIONS(4339), - [sym_int_literal] = ACTIONS(4339), - [sym_float_literal] = ACTIONS(4339), - [sym_rune_literal] = ACTIONS(4339), - [sym_pseudo_compile_time_identifier] = ACTIONS(4339), - [anon_sym_shared] = ACTIONS(4339), - [anon_sym_map_LBRACK] = ACTIONS(4339), - [anon_sym_chan] = ACTIONS(4339), - [anon_sym_thread] = ACTIONS(4339), - [anon_sym_atomic] = ACTIONS(4339), - [anon_sym_assert] = ACTIONS(4339), - [anon_sym_defer] = ACTIONS(4339), - [anon_sym_goto] = ACTIONS(4339), - [anon_sym_break] = ACTIONS(4339), - [anon_sym_continue] = ACTIONS(4339), - [anon_sym_return] = ACTIONS(4339), - [anon_sym_DOLLARfor] = ACTIONS(4339), - [anon_sym_for] = ACTIONS(4339), - [anon_sym_POUND] = ACTIONS(4339), - [anon_sym_asm] = ACTIONS(4339), - [anon_sym_AT_LBRACK] = ACTIONS(4339), - [sym___double_quote] = ACTIONS(4339), - [sym___single_quote] = ACTIONS(4339), - [sym___c_double_quote] = ACTIONS(4339), - [sym___c_single_quote] = ACTIONS(4339), - [sym___r_double_quote] = ACTIONS(4339), - [sym___r_single_quote] = ACTIONS(4339), + [anon_sym_DOT] = ACTIONS(4344), + [anon_sym_LBRACE] = ACTIONS(4344), + [anon_sym_const] = ACTIONS(4344), + [anon_sym_LPAREN] = ACTIONS(4344), + [anon_sym___global] = ACTIONS(4344), + [anon_sym_type] = ACTIONS(4344), + [anon_sym_fn] = ACTIONS(4344), + [anon_sym_PLUS] = ACTIONS(4344), + [anon_sym_DASH] = ACTIONS(4344), + [anon_sym_STAR] = ACTIONS(4344), + [anon_sym_struct] = ACTIONS(4344), + [anon_sym_union] = ACTIONS(4344), + [anon_sym_pub] = ACTIONS(4344), + [anon_sym_mut] = ACTIONS(4344), + [anon_sym_enum] = ACTIONS(4344), + [anon_sym_interface] = ACTIONS(4344), + [anon_sym_QMARK] = ACTIONS(4344), + [anon_sym_BANG] = ACTIONS(4344), + [anon_sym_go] = ACTIONS(4344), + [anon_sym_spawn] = ACTIONS(4344), + [anon_sym_json_DOTdecode] = ACTIONS(4344), + [anon_sym_LBRACK2] = ACTIONS(4344), + [anon_sym_TILDE] = ACTIONS(4344), + [anon_sym_CARET] = ACTIONS(4344), + [anon_sym_AMP] = ACTIONS(4344), + [anon_sym_LT_DASH] = ACTIONS(4344), + [sym_none] = ACTIONS(4344), + [sym_true] = ACTIONS(4344), + [sym_false] = ACTIONS(4344), + [sym_nil] = ACTIONS(4344), + [anon_sym_if] = ACTIONS(4344), + [anon_sym_DOLLARif] = ACTIONS(4344), + [anon_sym_match] = ACTIONS(4344), + [anon_sym_select] = ACTIONS(4344), + [anon_sym_lock] = ACTIONS(4344), + [anon_sym_rlock] = ACTIONS(4344), + [anon_sym_unsafe] = ACTIONS(4344), + [anon_sym_sql] = ACTIONS(4344), + [sym_int_literal] = ACTIONS(4344), + [sym_float_literal] = ACTIONS(4344), + [sym_rune_literal] = ACTIONS(4344), + [sym_pseudo_compile_time_identifier] = ACTIONS(4344), + [anon_sym_shared] = ACTIONS(4344), + [anon_sym_map_LBRACK] = ACTIONS(4344), + [anon_sym_chan] = ACTIONS(4344), + [anon_sym_thread] = ACTIONS(4344), + [anon_sym_atomic] = ACTIONS(4344), + [anon_sym_assert] = ACTIONS(4344), + [anon_sym_defer] = ACTIONS(4344), + [anon_sym_goto] = ACTIONS(4344), + [anon_sym_break] = ACTIONS(4344), + [anon_sym_continue] = ACTIONS(4344), + [anon_sym_return] = ACTIONS(4344), + [anon_sym_DOLLARfor] = ACTIONS(4344), + [anon_sym_for] = ACTIONS(4344), + [anon_sym_POUND] = ACTIONS(4344), + [anon_sym_asm] = ACTIONS(4344), + [anon_sym_AT_LBRACK] = ACTIONS(4344), + [sym___double_quote] = ACTIONS(4344), + [sym___single_quote] = ACTIONS(4344), + [sym___c_double_quote] = ACTIONS(4344), + [sym___c_single_quote] = ACTIONS(4344), + [sym___r_double_quote] = ACTIONS(4344), + [sym___r_single_quote] = ACTIONS(4344), }, [1549] = { - [ts_builtin_sym_end] = ACTIONS(4341), - [sym_identifier] = ACTIONS(4343), - [anon_sym_LF] = ACTIONS(4343), - [anon_sym_CR] = ACTIONS(4343), - [anon_sym_CR_LF] = ACTIONS(4343), + [ts_builtin_sym_end] = ACTIONS(4346), + [sym_identifier] = ACTIONS(4348), + [anon_sym_LF] = ACTIONS(4348), + [anon_sym_CR] = ACTIONS(4348), + [anon_sym_CR_LF] = ACTIONS(4348), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4343), - [anon_sym_LBRACE] = ACTIONS(4343), - [anon_sym_const] = ACTIONS(4343), - [anon_sym_LPAREN] = ACTIONS(4343), - [anon_sym___global] = ACTIONS(4343), - [anon_sym_type] = ACTIONS(4343), - [anon_sym_fn] = ACTIONS(4343), - [anon_sym_PLUS] = ACTIONS(4343), - [anon_sym_DASH] = ACTIONS(4343), - [anon_sym_STAR] = ACTIONS(4343), - [anon_sym_struct] = ACTIONS(4343), - [anon_sym_union] = ACTIONS(4343), - [anon_sym_pub] = ACTIONS(4343), - [anon_sym_mut] = ACTIONS(4343), - [anon_sym_enum] = ACTIONS(4343), - [anon_sym_interface] = ACTIONS(4343), - [anon_sym_QMARK] = ACTIONS(4343), - [anon_sym_BANG] = ACTIONS(4343), - [anon_sym_go] = ACTIONS(4343), - [anon_sym_spawn] = ACTIONS(4343), - [anon_sym_json_DOTdecode] = ACTIONS(4343), - [anon_sym_LBRACK2] = ACTIONS(4343), - [anon_sym_TILDE] = ACTIONS(4343), - [anon_sym_CARET] = ACTIONS(4343), - [anon_sym_AMP] = ACTIONS(4343), - [anon_sym_LT_DASH] = ACTIONS(4343), - [sym_none] = ACTIONS(4343), - [sym_true] = ACTIONS(4343), - [sym_false] = ACTIONS(4343), - [sym_nil] = ACTIONS(4343), - [anon_sym_if] = ACTIONS(4343), - [anon_sym_DOLLARif] = ACTIONS(4343), - [anon_sym_match] = ACTIONS(4343), - [anon_sym_select] = ACTIONS(4343), - [anon_sym_lock] = ACTIONS(4343), - [anon_sym_rlock] = ACTIONS(4343), - [anon_sym_unsafe] = ACTIONS(4343), - [anon_sym_sql] = ACTIONS(4343), - [sym_int_literal] = ACTIONS(4343), - [sym_float_literal] = ACTIONS(4343), - [sym_rune_literal] = ACTIONS(4343), - [sym_pseudo_compile_time_identifier] = ACTIONS(4343), - [anon_sym_shared] = ACTIONS(4343), - [anon_sym_map_LBRACK] = ACTIONS(4343), - [anon_sym_chan] = ACTIONS(4343), - [anon_sym_thread] = ACTIONS(4343), - [anon_sym_atomic] = ACTIONS(4343), - [anon_sym_assert] = ACTIONS(4343), - [anon_sym_defer] = ACTIONS(4343), - [anon_sym_goto] = ACTIONS(4343), - [anon_sym_break] = ACTIONS(4343), - [anon_sym_continue] = ACTIONS(4343), - [anon_sym_return] = ACTIONS(4343), - [anon_sym_DOLLARfor] = ACTIONS(4343), - [anon_sym_for] = ACTIONS(4343), - [anon_sym_POUND] = ACTIONS(4343), - [anon_sym_asm] = ACTIONS(4343), - [anon_sym_AT_LBRACK] = ACTIONS(4343), - [sym___double_quote] = ACTIONS(4343), - [sym___single_quote] = ACTIONS(4343), - [sym___c_double_quote] = ACTIONS(4343), - [sym___c_single_quote] = ACTIONS(4343), - [sym___r_double_quote] = ACTIONS(4343), - [sym___r_single_quote] = ACTIONS(4343), + [anon_sym_DOT] = ACTIONS(4348), + [anon_sym_LBRACE] = ACTIONS(4348), + [anon_sym_const] = ACTIONS(4348), + [anon_sym_LPAREN] = ACTIONS(4348), + [anon_sym___global] = ACTIONS(4348), + [anon_sym_type] = ACTIONS(4348), + [anon_sym_fn] = ACTIONS(4348), + [anon_sym_PLUS] = ACTIONS(4348), + [anon_sym_DASH] = ACTIONS(4348), + [anon_sym_STAR] = ACTIONS(4348), + [anon_sym_struct] = ACTIONS(4348), + [anon_sym_union] = ACTIONS(4348), + [anon_sym_pub] = ACTIONS(4348), + [anon_sym_mut] = ACTIONS(4348), + [anon_sym_enum] = ACTIONS(4348), + [anon_sym_interface] = ACTIONS(4348), + [anon_sym_QMARK] = ACTIONS(4348), + [anon_sym_BANG] = ACTIONS(4348), + [anon_sym_go] = ACTIONS(4348), + [anon_sym_spawn] = ACTIONS(4348), + [anon_sym_json_DOTdecode] = ACTIONS(4348), + [anon_sym_LBRACK2] = ACTIONS(4348), + [anon_sym_TILDE] = ACTIONS(4348), + [anon_sym_CARET] = ACTIONS(4348), + [anon_sym_AMP] = ACTIONS(4348), + [anon_sym_LT_DASH] = ACTIONS(4348), + [sym_none] = ACTIONS(4348), + [sym_true] = ACTIONS(4348), + [sym_false] = ACTIONS(4348), + [sym_nil] = ACTIONS(4348), + [anon_sym_if] = ACTIONS(4348), + [anon_sym_DOLLARif] = ACTIONS(4348), + [anon_sym_match] = ACTIONS(4348), + [anon_sym_select] = ACTIONS(4348), + [anon_sym_lock] = ACTIONS(4348), + [anon_sym_rlock] = ACTIONS(4348), + [anon_sym_unsafe] = ACTIONS(4348), + [anon_sym_sql] = ACTIONS(4348), + [sym_int_literal] = ACTIONS(4348), + [sym_float_literal] = ACTIONS(4348), + [sym_rune_literal] = ACTIONS(4348), + [sym_pseudo_compile_time_identifier] = ACTIONS(4348), + [anon_sym_shared] = ACTIONS(4348), + [anon_sym_map_LBRACK] = ACTIONS(4348), + [anon_sym_chan] = ACTIONS(4348), + [anon_sym_thread] = ACTIONS(4348), + [anon_sym_atomic] = ACTIONS(4348), + [anon_sym_assert] = ACTIONS(4348), + [anon_sym_defer] = ACTIONS(4348), + [anon_sym_goto] = ACTIONS(4348), + [anon_sym_break] = ACTIONS(4348), + [anon_sym_continue] = ACTIONS(4348), + [anon_sym_return] = ACTIONS(4348), + [anon_sym_DOLLARfor] = ACTIONS(4348), + [anon_sym_for] = ACTIONS(4348), + [anon_sym_POUND] = ACTIONS(4348), + [anon_sym_asm] = ACTIONS(4348), + [anon_sym_AT_LBRACK] = ACTIONS(4348), + [sym___double_quote] = ACTIONS(4348), + [sym___single_quote] = ACTIONS(4348), + [sym___c_double_quote] = ACTIONS(4348), + [sym___c_single_quote] = ACTIONS(4348), + [sym___r_double_quote] = ACTIONS(4348), + [sym___r_single_quote] = ACTIONS(4348), }, [1550] = { - [ts_builtin_sym_end] = ACTIONS(4345), - [sym_identifier] = ACTIONS(4347), - [anon_sym_LF] = ACTIONS(4347), - [anon_sym_CR] = ACTIONS(4347), - [anon_sym_CR_LF] = ACTIONS(4347), + [ts_builtin_sym_end] = ACTIONS(4350), + [sym_identifier] = ACTIONS(4352), + [anon_sym_LF] = ACTIONS(4352), + [anon_sym_CR] = ACTIONS(4352), + [anon_sym_CR_LF] = ACTIONS(4352), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4347), - [anon_sym_LBRACE] = ACTIONS(4347), - [anon_sym_const] = ACTIONS(4347), - [anon_sym_LPAREN] = ACTIONS(4347), - [anon_sym___global] = ACTIONS(4347), - [anon_sym_type] = ACTIONS(4347), - [anon_sym_fn] = ACTIONS(4347), - [anon_sym_PLUS] = ACTIONS(4347), - [anon_sym_DASH] = ACTIONS(4347), - [anon_sym_STAR] = ACTIONS(4347), - [anon_sym_struct] = ACTIONS(4347), - [anon_sym_union] = ACTIONS(4347), - [anon_sym_pub] = ACTIONS(4347), - [anon_sym_mut] = ACTIONS(4347), - [anon_sym_enum] = ACTIONS(4347), - [anon_sym_interface] = ACTIONS(4347), - [anon_sym_QMARK] = ACTIONS(4347), - [anon_sym_BANG] = ACTIONS(4347), - [anon_sym_go] = ACTIONS(4347), - [anon_sym_spawn] = ACTIONS(4347), - [anon_sym_json_DOTdecode] = ACTIONS(4347), - [anon_sym_LBRACK2] = ACTIONS(4347), - [anon_sym_TILDE] = ACTIONS(4347), - [anon_sym_CARET] = ACTIONS(4347), - [anon_sym_AMP] = ACTIONS(4347), - [anon_sym_LT_DASH] = ACTIONS(4347), - [sym_none] = ACTIONS(4347), - [sym_true] = ACTIONS(4347), - [sym_false] = ACTIONS(4347), - [sym_nil] = ACTIONS(4347), - [anon_sym_if] = ACTIONS(4347), - [anon_sym_DOLLARif] = ACTIONS(4347), - [anon_sym_match] = ACTIONS(4347), - [anon_sym_select] = ACTIONS(4347), - [anon_sym_lock] = ACTIONS(4347), - [anon_sym_rlock] = ACTIONS(4347), - [anon_sym_unsafe] = ACTIONS(4347), - [anon_sym_sql] = ACTIONS(4347), - [sym_int_literal] = ACTIONS(4347), - [sym_float_literal] = ACTIONS(4347), - [sym_rune_literal] = ACTIONS(4347), - [sym_pseudo_compile_time_identifier] = ACTIONS(4347), - [anon_sym_shared] = ACTIONS(4347), - [anon_sym_map_LBRACK] = ACTIONS(4347), - [anon_sym_chan] = ACTIONS(4347), - [anon_sym_thread] = ACTIONS(4347), - [anon_sym_atomic] = ACTIONS(4347), - [anon_sym_assert] = ACTIONS(4347), - [anon_sym_defer] = ACTIONS(4347), - [anon_sym_goto] = ACTIONS(4347), - [anon_sym_break] = ACTIONS(4347), - [anon_sym_continue] = ACTIONS(4347), - [anon_sym_return] = ACTIONS(4347), - [anon_sym_DOLLARfor] = ACTIONS(4347), - [anon_sym_for] = ACTIONS(4347), - [anon_sym_POUND] = ACTIONS(4347), - [anon_sym_asm] = ACTIONS(4347), - [anon_sym_AT_LBRACK] = ACTIONS(4347), - [sym___double_quote] = ACTIONS(4347), - [sym___single_quote] = ACTIONS(4347), - [sym___c_double_quote] = ACTIONS(4347), - [sym___c_single_quote] = ACTIONS(4347), - [sym___r_double_quote] = ACTIONS(4347), - [sym___r_single_quote] = ACTIONS(4347), + [anon_sym_DOT] = ACTIONS(4352), + [anon_sym_LBRACE] = ACTIONS(4352), + [anon_sym_const] = ACTIONS(4352), + [anon_sym_LPAREN] = ACTIONS(4352), + [anon_sym___global] = ACTIONS(4352), + [anon_sym_type] = ACTIONS(4352), + [anon_sym_fn] = ACTIONS(4352), + [anon_sym_PLUS] = ACTIONS(4352), + [anon_sym_DASH] = ACTIONS(4352), + [anon_sym_STAR] = ACTIONS(4352), + [anon_sym_struct] = ACTIONS(4352), + [anon_sym_union] = ACTIONS(4352), + [anon_sym_pub] = ACTIONS(4352), + [anon_sym_mut] = ACTIONS(4352), + [anon_sym_enum] = ACTIONS(4352), + [anon_sym_interface] = ACTIONS(4352), + [anon_sym_QMARK] = ACTIONS(4352), + [anon_sym_BANG] = ACTIONS(4352), + [anon_sym_go] = ACTIONS(4352), + [anon_sym_spawn] = ACTIONS(4352), + [anon_sym_json_DOTdecode] = ACTIONS(4352), + [anon_sym_LBRACK2] = ACTIONS(4352), + [anon_sym_TILDE] = ACTIONS(4352), + [anon_sym_CARET] = ACTIONS(4352), + [anon_sym_AMP] = ACTIONS(4352), + [anon_sym_LT_DASH] = ACTIONS(4352), + [sym_none] = ACTIONS(4352), + [sym_true] = ACTIONS(4352), + [sym_false] = ACTIONS(4352), + [sym_nil] = ACTIONS(4352), + [anon_sym_if] = ACTIONS(4352), + [anon_sym_DOLLARif] = ACTIONS(4352), + [anon_sym_match] = ACTIONS(4352), + [anon_sym_select] = ACTIONS(4352), + [anon_sym_lock] = ACTIONS(4352), + [anon_sym_rlock] = ACTIONS(4352), + [anon_sym_unsafe] = ACTIONS(4352), + [anon_sym_sql] = ACTIONS(4352), + [sym_int_literal] = ACTIONS(4352), + [sym_float_literal] = ACTIONS(4352), + [sym_rune_literal] = ACTIONS(4352), + [sym_pseudo_compile_time_identifier] = ACTIONS(4352), + [anon_sym_shared] = ACTIONS(4352), + [anon_sym_map_LBRACK] = ACTIONS(4352), + [anon_sym_chan] = ACTIONS(4352), + [anon_sym_thread] = ACTIONS(4352), + [anon_sym_atomic] = ACTIONS(4352), + [anon_sym_assert] = ACTIONS(4352), + [anon_sym_defer] = ACTIONS(4352), + [anon_sym_goto] = ACTIONS(4352), + [anon_sym_break] = ACTIONS(4352), + [anon_sym_continue] = ACTIONS(4352), + [anon_sym_return] = ACTIONS(4352), + [anon_sym_DOLLARfor] = ACTIONS(4352), + [anon_sym_for] = ACTIONS(4352), + [anon_sym_POUND] = ACTIONS(4352), + [anon_sym_asm] = ACTIONS(4352), + [anon_sym_AT_LBRACK] = ACTIONS(4352), + [sym___double_quote] = ACTIONS(4352), + [sym___single_quote] = ACTIONS(4352), + [sym___c_double_quote] = ACTIONS(4352), + [sym___c_single_quote] = ACTIONS(4352), + [sym___r_double_quote] = ACTIONS(4352), + [sym___r_single_quote] = ACTIONS(4352), }, [1551] = { - [sym_import_declaration] = STATE(1543), - [aux_sym_import_list_repeat1] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(4349), - [sym_identifier] = ACTIONS(4351), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(13), - [anon_sym_DOT] = ACTIONS(4351), - [anon_sym_LBRACE] = ACTIONS(4349), - [anon_sym_const] = ACTIONS(4351), - [anon_sym_LPAREN] = ACTIONS(4349), - [anon_sym___global] = ACTIONS(4351), - [anon_sym_type] = ACTIONS(4351), - [anon_sym_fn] = ACTIONS(4351), - [anon_sym_PLUS] = ACTIONS(4349), - [anon_sym_DASH] = ACTIONS(4349), - [anon_sym_STAR] = ACTIONS(4349), - [anon_sym_struct] = ACTIONS(4351), - [anon_sym_union] = ACTIONS(4351), - [anon_sym_pub] = ACTIONS(4351), - [anon_sym_mut] = ACTIONS(4351), - [anon_sym_enum] = ACTIONS(4351), - [anon_sym_interface] = ACTIONS(4351), - [anon_sym_QMARK] = ACTIONS(4349), - [anon_sym_BANG] = ACTIONS(4349), - [anon_sym_go] = ACTIONS(4351), - [anon_sym_spawn] = ACTIONS(4351), - [anon_sym_json_DOTdecode] = ACTIONS(4349), - [anon_sym_LBRACK2] = ACTIONS(4349), - [anon_sym_TILDE] = ACTIONS(4349), - [anon_sym_CARET] = ACTIONS(4349), - [anon_sym_AMP] = ACTIONS(4349), - [anon_sym_LT_DASH] = ACTIONS(4349), - [sym_none] = ACTIONS(4351), - [sym_true] = ACTIONS(4351), - [sym_false] = ACTIONS(4351), - [sym_nil] = ACTIONS(4351), - [anon_sym_if] = ACTIONS(4351), - [anon_sym_DOLLARif] = ACTIONS(4351), - [anon_sym_match] = ACTIONS(4351), - [anon_sym_select] = ACTIONS(4351), - [anon_sym_lock] = ACTIONS(4351), - [anon_sym_rlock] = ACTIONS(4351), - [anon_sym_unsafe] = ACTIONS(4351), - [anon_sym_sql] = ACTIONS(4351), - [sym_int_literal] = ACTIONS(4351), - [sym_float_literal] = ACTIONS(4349), - [sym_rune_literal] = ACTIONS(4349), - [sym_pseudo_compile_time_identifier] = ACTIONS(4351), - [anon_sym_shared] = ACTIONS(4351), - [anon_sym_map_LBRACK] = ACTIONS(4349), - [anon_sym_chan] = ACTIONS(4351), - [anon_sym_thread] = ACTIONS(4351), - [anon_sym_atomic] = ACTIONS(4351), - [anon_sym_assert] = ACTIONS(4351), - [anon_sym_defer] = ACTIONS(4351), - [anon_sym_goto] = ACTIONS(4351), - [anon_sym_break] = ACTIONS(4351), - [anon_sym_continue] = ACTIONS(4351), - [anon_sym_return] = ACTIONS(4351), - [anon_sym_DOLLARfor] = ACTIONS(4351), - [anon_sym_for] = ACTIONS(4351), - [anon_sym_POUND] = ACTIONS(4349), - [anon_sym_asm] = ACTIONS(4351), - [anon_sym_AT_LBRACK] = ACTIONS(4349), - [sym___double_quote] = ACTIONS(4349), - [sym___single_quote] = ACTIONS(4349), - [sym___c_double_quote] = ACTIONS(4349), - [sym___c_single_quote] = ACTIONS(4349), - [sym___r_double_quote] = ACTIONS(4349), - [sym___r_single_quote] = ACTIONS(4349), + [ts_builtin_sym_end] = ACTIONS(4354), + [sym_identifier] = ACTIONS(4356), + [anon_sym_LF] = ACTIONS(4356), + [anon_sym_CR] = ACTIONS(4356), + [anon_sym_CR_LF] = ACTIONS(4356), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4356), + [anon_sym_LBRACE] = ACTIONS(4356), + [anon_sym_const] = ACTIONS(4356), + [anon_sym_LPAREN] = ACTIONS(4356), + [anon_sym___global] = ACTIONS(4356), + [anon_sym_type] = ACTIONS(4356), + [anon_sym_fn] = ACTIONS(4356), + [anon_sym_PLUS] = ACTIONS(4356), + [anon_sym_DASH] = ACTIONS(4356), + [anon_sym_STAR] = ACTIONS(4356), + [anon_sym_struct] = ACTIONS(4356), + [anon_sym_union] = ACTIONS(4356), + [anon_sym_pub] = ACTIONS(4356), + [anon_sym_mut] = ACTIONS(4356), + [anon_sym_enum] = ACTIONS(4356), + [anon_sym_interface] = ACTIONS(4356), + [anon_sym_QMARK] = ACTIONS(4356), + [anon_sym_BANG] = ACTIONS(4356), + [anon_sym_go] = ACTIONS(4356), + [anon_sym_spawn] = ACTIONS(4356), + [anon_sym_json_DOTdecode] = ACTIONS(4356), + [anon_sym_LBRACK2] = ACTIONS(4356), + [anon_sym_TILDE] = ACTIONS(4356), + [anon_sym_CARET] = ACTIONS(4356), + [anon_sym_AMP] = ACTIONS(4356), + [anon_sym_LT_DASH] = ACTIONS(4356), + [sym_none] = ACTIONS(4356), + [sym_true] = ACTIONS(4356), + [sym_false] = ACTIONS(4356), + [sym_nil] = ACTIONS(4356), + [anon_sym_if] = ACTIONS(4356), + [anon_sym_DOLLARif] = ACTIONS(4356), + [anon_sym_match] = ACTIONS(4356), + [anon_sym_select] = ACTIONS(4356), + [anon_sym_lock] = ACTIONS(4356), + [anon_sym_rlock] = ACTIONS(4356), + [anon_sym_unsafe] = ACTIONS(4356), + [anon_sym_sql] = ACTIONS(4356), + [sym_int_literal] = ACTIONS(4356), + [sym_float_literal] = ACTIONS(4356), + [sym_rune_literal] = ACTIONS(4356), + [sym_pseudo_compile_time_identifier] = ACTIONS(4356), + [anon_sym_shared] = ACTIONS(4356), + [anon_sym_map_LBRACK] = ACTIONS(4356), + [anon_sym_chan] = ACTIONS(4356), + [anon_sym_thread] = ACTIONS(4356), + [anon_sym_atomic] = ACTIONS(4356), + [anon_sym_assert] = ACTIONS(4356), + [anon_sym_defer] = ACTIONS(4356), + [anon_sym_goto] = ACTIONS(4356), + [anon_sym_break] = ACTIONS(4356), + [anon_sym_continue] = ACTIONS(4356), + [anon_sym_return] = ACTIONS(4356), + [anon_sym_DOLLARfor] = ACTIONS(4356), + [anon_sym_for] = ACTIONS(4356), + [anon_sym_POUND] = ACTIONS(4356), + [anon_sym_asm] = ACTIONS(4356), + [anon_sym_AT_LBRACK] = ACTIONS(4356), + [sym___double_quote] = ACTIONS(4356), + [sym___single_quote] = ACTIONS(4356), + [sym___c_double_quote] = ACTIONS(4356), + [sym___c_single_quote] = ACTIONS(4356), + [sym___r_double_quote] = ACTIONS(4356), + [sym___r_single_quote] = ACTIONS(4356), }, [1552] = { - [ts_builtin_sym_end] = ACTIONS(4353), - [sym_identifier] = ACTIONS(4355), - [anon_sym_LF] = ACTIONS(4355), - [anon_sym_CR] = ACTIONS(4355), - [anon_sym_CR_LF] = ACTIONS(4355), + [ts_builtin_sym_end] = ACTIONS(4358), + [sym_identifier] = ACTIONS(4360), + [anon_sym_LF] = ACTIONS(4360), + [anon_sym_CR] = ACTIONS(4360), + [anon_sym_CR_LF] = ACTIONS(4360), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4355), - [anon_sym_LBRACE] = ACTIONS(4355), - [anon_sym_const] = ACTIONS(4355), - [anon_sym_LPAREN] = ACTIONS(4355), - [anon_sym___global] = ACTIONS(4355), - [anon_sym_type] = ACTIONS(4355), - [anon_sym_fn] = ACTIONS(4355), - [anon_sym_PLUS] = ACTIONS(4355), - [anon_sym_DASH] = ACTIONS(4355), - [anon_sym_STAR] = ACTIONS(4355), - [anon_sym_struct] = ACTIONS(4355), - [anon_sym_union] = ACTIONS(4355), - [anon_sym_pub] = ACTIONS(4355), - [anon_sym_mut] = ACTIONS(4355), - [anon_sym_enum] = ACTIONS(4355), - [anon_sym_interface] = ACTIONS(4355), - [anon_sym_QMARK] = ACTIONS(4355), - [anon_sym_BANG] = ACTIONS(4355), - [anon_sym_go] = ACTIONS(4355), - [anon_sym_spawn] = ACTIONS(4355), - [anon_sym_json_DOTdecode] = ACTIONS(4355), - [anon_sym_LBRACK2] = ACTIONS(4355), - [anon_sym_TILDE] = ACTIONS(4355), - [anon_sym_CARET] = ACTIONS(4355), - [anon_sym_AMP] = ACTIONS(4355), - [anon_sym_LT_DASH] = ACTIONS(4355), - [sym_none] = ACTIONS(4355), - [sym_true] = ACTIONS(4355), - [sym_false] = ACTIONS(4355), - [sym_nil] = ACTIONS(4355), - [anon_sym_if] = ACTIONS(4355), - [anon_sym_DOLLARif] = ACTIONS(4355), - [anon_sym_match] = ACTIONS(4355), - [anon_sym_select] = ACTIONS(4355), - [anon_sym_lock] = ACTIONS(4355), - [anon_sym_rlock] = ACTIONS(4355), - [anon_sym_unsafe] = ACTIONS(4355), - [anon_sym_sql] = ACTIONS(4355), - [sym_int_literal] = ACTIONS(4355), - [sym_float_literal] = ACTIONS(4355), - [sym_rune_literal] = ACTIONS(4355), - [sym_pseudo_compile_time_identifier] = ACTIONS(4355), - [anon_sym_shared] = ACTIONS(4355), - [anon_sym_map_LBRACK] = ACTIONS(4355), - [anon_sym_chan] = ACTIONS(4355), - [anon_sym_thread] = ACTIONS(4355), - [anon_sym_atomic] = ACTIONS(4355), - [anon_sym_assert] = ACTIONS(4355), - [anon_sym_defer] = ACTIONS(4355), - [anon_sym_goto] = ACTIONS(4355), - [anon_sym_break] = ACTIONS(4355), - [anon_sym_continue] = ACTIONS(4355), - [anon_sym_return] = ACTIONS(4355), - [anon_sym_DOLLARfor] = ACTIONS(4355), - [anon_sym_for] = ACTIONS(4355), - [anon_sym_POUND] = ACTIONS(4355), - [anon_sym_asm] = ACTIONS(4355), - [anon_sym_AT_LBRACK] = ACTIONS(4355), - [sym___double_quote] = ACTIONS(4355), - [sym___single_quote] = ACTIONS(4355), - [sym___c_double_quote] = ACTIONS(4355), - [sym___c_single_quote] = ACTIONS(4355), - [sym___r_double_quote] = ACTIONS(4355), - [sym___r_single_quote] = ACTIONS(4355), + [anon_sym_DOT] = ACTIONS(4360), + [anon_sym_LBRACE] = ACTIONS(4360), + [anon_sym_const] = ACTIONS(4360), + [anon_sym_LPAREN] = ACTIONS(4360), + [anon_sym___global] = ACTIONS(4360), + [anon_sym_type] = ACTIONS(4360), + [anon_sym_fn] = ACTIONS(4360), + [anon_sym_PLUS] = ACTIONS(4360), + [anon_sym_DASH] = ACTIONS(4360), + [anon_sym_STAR] = ACTIONS(4360), + [anon_sym_struct] = ACTIONS(4360), + [anon_sym_union] = ACTIONS(4360), + [anon_sym_pub] = ACTIONS(4360), + [anon_sym_mut] = ACTIONS(4360), + [anon_sym_enum] = ACTIONS(4360), + [anon_sym_interface] = ACTIONS(4360), + [anon_sym_QMARK] = ACTIONS(4360), + [anon_sym_BANG] = ACTIONS(4360), + [anon_sym_go] = ACTIONS(4360), + [anon_sym_spawn] = ACTIONS(4360), + [anon_sym_json_DOTdecode] = ACTIONS(4360), + [anon_sym_LBRACK2] = ACTIONS(4360), + [anon_sym_TILDE] = ACTIONS(4360), + [anon_sym_CARET] = ACTIONS(4360), + [anon_sym_AMP] = ACTIONS(4360), + [anon_sym_LT_DASH] = ACTIONS(4360), + [sym_none] = ACTIONS(4360), + [sym_true] = ACTIONS(4360), + [sym_false] = ACTIONS(4360), + [sym_nil] = ACTIONS(4360), + [anon_sym_if] = ACTIONS(4360), + [anon_sym_DOLLARif] = ACTIONS(4360), + [anon_sym_match] = ACTIONS(4360), + [anon_sym_select] = ACTIONS(4360), + [anon_sym_lock] = ACTIONS(4360), + [anon_sym_rlock] = ACTIONS(4360), + [anon_sym_unsafe] = ACTIONS(4360), + [anon_sym_sql] = ACTIONS(4360), + [sym_int_literal] = ACTIONS(4360), + [sym_float_literal] = ACTIONS(4360), + [sym_rune_literal] = ACTIONS(4360), + [sym_pseudo_compile_time_identifier] = ACTIONS(4360), + [anon_sym_shared] = ACTIONS(4360), + [anon_sym_map_LBRACK] = ACTIONS(4360), + [anon_sym_chan] = ACTIONS(4360), + [anon_sym_thread] = ACTIONS(4360), + [anon_sym_atomic] = ACTIONS(4360), + [anon_sym_assert] = ACTIONS(4360), + [anon_sym_defer] = ACTIONS(4360), + [anon_sym_goto] = ACTIONS(4360), + [anon_sym_break] = ACTIONS(4360), + [anon_sym_continue] = ACTIONS(4360), + [anon_sym_return] = ACTIONS(4360), + [anon_sym_DOLLARfor] = ACTIONS(4360), + [anon_sym_for] = ACTIONS(4360), + [anon_sym_POUND] = ACTIONS(4360), + [anon_sym_asm] = ACTIONS(4360), + [anon_sym_AT_LBRACK] = ACTIONS(4360), + [sym___double_quote] = ACTIONS(4360), + [sym___single_quote] = ACTIONS(4360), + [sym___c_double_quote] = ACTIONS(4360), + [sym___c_single_quote] = ACTIONS(4360), + [sym___r_double_quote] = ACTIONS(4360), + [sym___r_single_quote] = ACTIONS(4360), }, [1553] = { - [ts_builtin_sym_end] = ACTIONS(4357), - [sym_identifier] = ACTIONS(4359), - [anon_sym_LF] = ACTIONS(4359), - [anon_sym_CR] = ACTIONS(4359), - [anon_sym_CR_LF] = ACTIONS(4359), + [ts_builtin_sym_end] = ACTIONS(4362), + [sym_identifier] = ACTIONS(4364), + [anon_sym_LF] = ACTIONS(4364), + [anon_sym_CR] = ACTIONS(4364), + [anon_sym_CR_LF] = ACTIONS(4364), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4359), - [anon_sym_LBRACE] = ACTIONS(4359), - [anon_sym_const] = ACTIONS(4359), - [anon_sym_LPAREN] = ACTIONS(4359), - [anon_sym___global] = ACTIONS(4359), - [anon_sym_type] = ACTIONS(4359), - [anon_sym_fn] = ACTIONS(4359), - [anon_sym_PLUS] = ACTIONS(4359), - [anon_sym_DASH] = ACTIONS(4359), - [anon_sym_STAR] = ACTIONS(4359), - [anon_sym_struct] = ACTIONS(4359), - [anon_sym_union] = ACTIONS(4359), - [anon_sym_pub] = ACTIONS(4359), - [anon_sym_mut] = ACTIONS(4359), - [anon_sym_enum] = ACTIONS(4359), - [anon_sym_interface] = ACTIONS(4359), - [anon_sym_QMARK] = ACTIONS(4359), - [anon_sym_BANG] = ACTIONS(4359), - [anon_sym_go] = ACTIONS(4359), - [anon_sym_spawn] = ACTIONS(4359), - [anon_sym_json_DOTdecode] = ACTIONS(4359), - [anon_sym_LBRACK2] = ACTIONS(4359), - [anon_sym_TILDE] = ACTIONS(4359), - [anon_sym_CARET] = ACTIONS(4359), - [anon_sym_AMP] = ACTIONS(4359), - [anon_sym_LT_DASH] = ACTIONS(4359), - [sym_none] = ACTIONS(4359), - [sym_true] = ACTIONS(4359), - [sym_false] = ACTIONS(4359), - [sym_nil] = ACTIONS(4359), - [anon_sym_if] = ACTIONS(4359), - [anon_sym_DOLLARif] = ACTIONS(4359), - [anon_sym_match] = ACTIONS(4359), - [anon_sym_select] = ACTIONS(4359), - [anon_sym_lock] = ACTIONS(4359), - [anon_sym_rlock] = ACTIONS(4359), - [anon_sym_unsafe] = ACTIONS(4359), - [anon_sym_sql] = ACTIONS(4359), - [sym_int_literal] = ACTIONS(4359), - [sym_float_literal] = ACTIONS(4359), - [sym_rune_literal] = ACTIONS(4359), - [sym_pseudo_compile_time_identifier] = ACTIONS(4359), - [anon_sym_shared] = ACTIONS(4359), - [anon_sym_map_LBRACK] = ACTIONS(4359), - [anon_sym_chan] = ACTIONS(4359), - [anon_sym_thread] = ACTIONS(4359), - [anon_sym_atomic] = ACTIONS(4359), - [anon_sym_assert] = ACTIONS(4359), - [anon_sym_defer] = ACTIONS(4359), - [anon_sym_goto] = ACTIONS(4359), - [anon_sym_break] = ACTIONS(4359), - [anon_sym_continue] = ACTIONS(4359), - [anon_sym_return] = ACTIONS(4359), - [anon_sym_DOLLARfor] = ACTIONS(4359), - [anon_sym_for] = ACTIONS(4359), - [anon_sym_POUND] = ACTIONS(4359), - [anon_sym_asm] = ACTIONS(4359), - [anon_sym_AT_LBRACK] = ACTIONS(4359), - [sym___double_quote] = ACTIONS(4359), - [sym___single_quote] = ACTIONS(4359), - [sym___c_double_quote] = ACTIONS(4359), - [sym___c_single_quote] = ACTIONS(4359), - [sym___r_double_quote] = ACTIONS(4359), - [sym___r_single_quote] = ACTIONS(4359), + [anon_sym_DOT] = ACTIONS(4364), + [anon_sym_LBRACE] = ACTIONS(4364), + [anon_sym_const] = ACTIONS(4364), + [anon_sym_LPAREN] = ACTIONS(4364), + [anon_sym___global] = ACTIONS(4364), + [anon_sym_type] = ACTIONS(4364), + [anon_sym_fn] = ACTIONS(4364), + [anon_sym_PLUS] = ACTIONS(4364), + [anon_sym_DASH] = ACTIONS(4364), + [anon_sym_STAR] = ACTIONS(4364), + [anon_sym_struct] = ACTIONS(4364), + [anon_sym_union] = ACTIONS(4364), + [anon_sym_pub] = ACTIONS(4364), + [anon_sym_mut] = ACTIONS(4364), + [anon_sym_enum] = ACTIONS(4364), + [anon_sym_interface] = ACTIONS(4364), + [anon_sym_QMARK] = ACTIONS(4364), + [anon_sym_BANG] = ACTIONS(4364), + [anon_sym_go] = ACTIONS(4364), + [anon_sym_spawn] = ACTIONS(4364), + [anon_sym_json_DOTdecode] = ACTIONS(4364), + [anon_sym_LBRACK2] = ACTIONS(4364), + [anon_sym_TILDE] = ACTIONS(4364), + [anon_sym_CARET] = ACTIONS(4364), + [anon_sym_AMP] = ACTIONS(4364), + [anon_sym_LT_DASH] = ACTIONS(4364), + [sym_none] = ACTIONS(4364), + [sym_true] = ACTIONS(4364), + [sym_false] = ACTIONS(4364), + [sym_nil] = ACTIONS(4364), + [anon_sym_if] = ACTIONS(4364), + [anon_sym_DOLLARif] = ACTIONS(4364), + [anon_sym_match] = ACTIONS(4364), + [anon_sym_select] = ACTIONS(4364), + [anon_sym_lock] = ACTIONS(4364), + [anon_sym_rlock] = ACTIONS(4364), + [anon_sym_unsafe] = ACTIONS(4364), + [anon_sym_sql] = ACTIONS(4364), + [sym_int_literal] = ACTIONS(4364), + [sym_float_literal] = ACTIONS(4364), + [sym_rune_literal] = ACTIONS(4364), + [sym_pseudo_compile_time_identifier] = ACTIONS(4364), + [anon_sym_shared] = ACTIONS(4364), + [anon_sym_map_LBRACK] = ACTIONS(4364), + [anon_sym_chan] = ACTIONS(4364), + [anon_sym_thread] = ACTIONS(4364), + [anon_sym_atomic] = ACTIONS(4364), + [anon_sym_assert] = ACTIONS(4364), + [anon_sym_defer] = ACTIONS(4364), + [anon_sym_goto] = ACTIONS(4364), + [anon_sym_break] = ACTIONS(4364), + [anon_sym_continue] = ACTIONS(4364), + [anon_sym_return] = ACTIONS(4364), + [anon_sym_DOLLARfor] = ACTIONS(4364), + [anon_sym_for] = ACTIONS(4364), + [anon_sym_POUND] = ACTIONS(4364), + [anon_sym_asm] = ACTIONS(4364), + [anon_sym_AT_LBRACK] = ACTIONS(4364), + [sym___double_quote] = ACTIONS(4364), + [sym___single_quote] = ACTIONS(4364), + [sym___c_double_quote] = ACTIONS(4364), + [sym___c_single_quote] = ACTIONS(4364), + [sym___r_double_quote] = ACTIONS(4364), + [sym___r_single_quote] = ACTIONS(4364), }, [1554] = { - [ts_builtin_sym_end] = ACTIONS(4361), - [sym_identifier] = ACTIONS(4363), - [anon_sym_LF] = ACTIONS(4363), - [anon_sym_CR] = ACTIONS(4363), - [anon_sym_CR_LF] = ACTIONS(4363), + [ts_builtin_sym_end] = ACTIONS(4366), + [sym_identifier] = ACTIONS(4368), + [anon_sym_LF] = ACTIONS(4368), + [anon_sym_CR] = ACTIONS(4368), + [anon_sym_CR_LF] = ACTIONS(4368), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4363), - [anon_sym_LBRACE] = ACTIONS(4363), - [anon_sym_const] = ACTIONS(4363), - [anon_sym_LPAREN] = ACTIONS(4363), - [anon_sym___global] = ACTIONS(4363), - [anon_sym_type] = ACTIONS(4363), - [anon_sym_fn] = ACTIONS(4363), - [anon_sym_PLUS] = ACTIONS(4363), - [anon_sym_DASH] = ACTIONS(4363), - [anon_sym_STAR] = ACTIONS(4363), - [anon_sym_struct] = ACTIONS(4363), - [anon_sym_union] = ACTIONS(4363), - [anon_sym_pub] = ACTIONS(4363), - [anon_sym_mut] = ACTIONS(4363), - [anon_sym_enum] = ACTIONS(4363), - [anon_sym_interface] = ACTIONS(4363), - [anon_sym_QMARK] = ACTIONS(4363), - [anon_sym_BANG] = ACTIONS(4363), - [anon_sym_go] = ACTIONS(4363), - [anon_sym_spawn] = ACTIONS(4363), - [anon_sym_json_DOTdecode] = ACTIONS(4363), - [anon_sym_LBRACK2] = ACTIONS(4363), - [anon_sym_TILDE] = ACTIONS(4363), - [anon_sym_CARET] = ACTIONS(4363), - [anon_sym_AMP] = ACTIONS(4363), - [anon_sym_LT_DASH] = ACTIONS(4363), - [sym_none] = ACTIONS(4363), - [sym_true] = ACTIONS(4363), - [sym_false] = ACTIONS(4363), - [sym_nil] = ACTIONS(4363), - [anon_sym_if] = ACTIONS(4363), - [anon_sym_DOLLARif] = ACTIONS(4363), - [anon_sym_match] = ACTIONS(4363), - [anon_sym_select] = ACTIONS(4363), - [anon_sym_lock] = ACTIONS(4363), - [anon_sym_rlock] = ACTIONS(4363), - [anon_sym_unsafe] = ACTIONS(4363), - [anon_sym_sql] = ACTIONS(4363), - [sym_int_literal] = ACTIONS(4363), - [sym_float_literal] = ACTIONS(4363), - [sym_rune_literal] = ACTIONS(4363), - [sym_pseudo_compile_time_identifier] = ACTIONS(4363), - [anon_sym_shared] = ACTIONS(4363), - [anon_sym_map_LBRACK] = ACTIONS(4363), - [anon_sym_chan] = ACTIONS(4363), - [anon_sym_thread] = ACTIONS(4363), - [anon_sym_atomic] = ACTIONS(4363), - [anon_sym_assert] = ACTIONS(4363), - [anon_sym_defer] = ACTIONS(4363), - [anon_sym_goto] = ACTIONS(4363), - [anon_sym_break] = ACTIONS(4363), - [anon_sym_continue] = ACTIONS(4363), - [anon_sym_return] = ACTIONS(4363), - [anon_sym_DOLLARfor] = ACTIONS(4363), - [anon_sym_for] = ACTIONS(4363), - [anon_sym_POUND] = ACTIONS(4363), - [anon_sym_asm] = ACTIONS(4363), - [anon_sym_AT_LBRACK] = ACTIONS(4363), - [sym___double_quote] = ACTIONS(4363), - [sym___single_quote] = ACTIONS(4363), - [sym___c_double_quote] = ACTIONS(4363), - [sym___c_single_quote] = ACTIONS(4363), - [sym___r_double_quote] = ACTIONS(4363), - [sym___r_single_quote] = ACTIONS(4363), + [anon_sym_DOT] = ACTIONS(4368), + [anon_sym_LBRACE] = ACTIONS(4368), + [anon_sym_const] = ACTIONS(4368), + [anon_sym_LPAREN] = ACTIONS(4368), + [anon_sym___global] = ACTIONS(4368), + [anon_sym_type] = ACTIONS(4368), + [anon_sym_fn] = ACTIONS(4368), + [anon_sym_PLUS] = ACTIONS(4368), + [anon_sym_DASH] = ACTIONS(4368), + [anon_sym_STAR] = ACTIONS(4368), + [anon_sym_struct] = ACTIONS(4368), + [anon_sym_union] = ACTIONS(4368), + [anon_sym_pub] = ACTIONS(4368), + [anon_sym_mut] = ACTIONS(4368), + [anon_sym_enum] = ACTIONS(4368), + [anon_sym_interface] = ACTIONS(4368), + [anon_sym_QMARK] = ACTIONS(4368), + [anon_sym_BANG] = ACTIONS(4368), + [anon_sym_go] = ACTIONS(4368), + [anon_sym_spawn] = ACTIONS(4368), + [anon_sym_json_DOTdecode] = ACTIONS(4368), + [anon_sym_LBRACK2] = ACTIONS(4368), + [anon_sym_TILDE] = ACTIONS(4368), + [anon_sym_CARET] = ACTIONS(4368), + [anon_sym_AMP] = ACTIONS(4368), + [anon_sym_LT_DASH] = ACTIONS(4368), + [sym_none] = ACTIONS(4368), + [sym_true] = ACTIONS(4368), + [sym_false] = ACTIONS(4368), + [sym_nil] = ACTIONS(4368), + [anon_sym_if] = ACTIONS(4368), + [anon_sym_DOLLARif] = ACTIONS(4368), + [anon_sym_match] = ACTIONS(4368), + [anon_sym_select] = ACTIONS(4368), + [anon_sym_lock] = ACTIONS(4368), + [anon_sym_rlock] = ACTIONS(4368), + [anon_sym_unsafe] = ACTIONS(4368), + [anon_sym_sql] = ACTIONS(4368), + [sym_int_literal] = ACTIONS(4368), + [sym_float_literal] = ACTIONS(4368), + [sym_rune_literal] = ACTIONS(4368), + [sym_pseudo_compile_time_identifier] = ACTIONS(4368), + [anon_sym_shared] = ACTIONS(4368), + [anon_sym_map_LBRACK] = ACTIONS(4368), + [anon_sym_chan] = ACTIONS(4368), + [anon_sym_thread] = ACTIONS(4368), + [anon_sym_atomic] = ACTIONS(4368), + [anon_sym_assert] = ACTIONS(4368), + [anon_sym_defer] = ACTIONS(4368), + [anon_sym_goto] = ACTIONS(4368), + [anon_sym_break] = ACTIONS(4368), + [anon_sym_continue] = ACTIONS(4368), + [anon_sym_return] = ACTIONS(4368), + [anon_sym_DOLLARfor] = ACTIONS(4368), + [anon_sym_for] = ACTIONS(4368), + [anon_sym_POUND] = ACTIONS(4368), + [anon_sym_asm] = ACTIONS(4368), + [anon_sym_AT_LBRACK] = ACTIONS(4368), + [sym___double_quote] = ACTIONS(4368), + [sym___single_quote] = ACTIONS(4368), + [sym___c_double_quote] = ACTIONS(4368), + [sym___c_single_quote] = ACTIONS(4368), + [sym___r_double_quote] = ACTIONS(4368), + [sym___r_single_quote] = ACTIONS(4368), }, [1555] = { - [ts_builtin_sym_end] = ACTIONS(4365), - [sym_identifier] = ACTIONS(4367), - [anon_sym_LF] = ACTIONS(4367), - [anon_sym_CR] = ACTIONS(4367), - [anon_sym_CR_LF] = ACTIONS(4367), + [ts_builtin_sym_end] = ACTIONS(4370), + [sym_identifier] = ACTIONS(4372), + [anon_sym_LF] = ACTIONS(4372), + [anon_sym_CR] = ACTIONS(4372), + [anon_sym_CR_LF] = ACTIONS(4372), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4367), - [anon_sym_LBRACE] = ACTIONS(4367), - [anon_sym_const] = ACTIONS(4367), - [anon_sym_LPAREN] = ACTIONS(4367), - [anon_sym___global] = ACTIONS(4367), - [anon_sym_type] = ACTIONS(4367), - [anon_sym_fn] = ACTIONS(4367), - [anon_sym_PLUS] = ACTIONS(4367), - [anon_sym_DASH] = ACTIONS(4367), - [anon_sym_STAR] = ACTIONS(4367), - [anon_sym_struct] = ACTIONS(4367), - [anon_sym_union] = ACTIONS(4367), - [anon_sym_pub] = ACTIONS(4367), - [anon_sym_mut] = ACTIONS(4367), - [anon_sym_enum] = ACTIONS(4367), - [anon_sym_interface] = ACTIONS(4367), - [anon_sym_QMARK] = ACTIONS(4367), - [anon_sym_BANG] = ACTIONS(4367), - [anon_sym_go] = ACTIONS(4367), - [anon_sym_spawn] = ACTIONS(4367), - [anon_sym_json_DOTdecode] = ACTIONS(4367), - [anon_sym_LBRACK2] = ACTIONS(4367), - [anon_sym_TILDE] = ACTIONS(4367), - [anon_sym_CARET] = ACTIONS(4367), - [anon_sym_AMP] = ACTIONS(4367), - [anon_sym_LT_DASH] = ACTIONS(4367), - [sym_none] = ACTIONS(4367), - [sym_true] = ACTIONS(4367), - [sym_false] = ACTIONS(4367), - [sym_nil] = ACTIONS(4367), - [anon_sym_if] = ACTIONS(4367), - [anon_sym_DOLLARif] = ACTIONS(4367), - [anon_sym_match] = ACTIONS(4367), - [anon_sym_select] = ACTIONS(4367), - [anon_sym_lock] = ACTIONS(4367), - [anon_sym_rlock] = ACTIONS(4367), - [anon_sym_unsafe] = ACTIONS(4367), - [anon_sym_sql] = ACTIONS(4367), - [sym_int_literal] = ACTIONS(4367), - [sym_float_literal] = ACTIONS(4367), - [sym_rune_literal] = ACTIONS(4367), - [sym_pseudo_compile_time_identifier] = ACTIONS(4367), - [anon_sym_shared] = ACTIONS(4367), - [anon_sym_map_LBRACK] = ACTIONS(4367), - [anon_sym_chan] = ACTIONS(4367), - [anon_sym_thread] = ACTIONS(4367), - [anon_sym_atomic] = ACTIONS(4367), - [anon_sym_assert] = ACTIONS(4367), - [anon_sym_defer] = ACTIONS(4367), - [anon_sym_goto] = ACTIONS(4367), - [anon_sym_break] = ACTIONS(4367), - [anon_sym_continue] = ACTIONS(4367), - [anon_sym_return] = ACTIONS(4367), - [anon_sym_DOLLARfor] = ACTIONS(4367), - [anon_sym_for] = ACTIONS(4367), - [anon_sym_POUND] = ACTIONS(4367), - [anon_sym_asm] = ACTIONS(4367), - [anon_sym_AT_LBRACK] = ACTIONS(4367), - [sym___double_quote] = ACTIONS(4367), - [sym___single_quote] = ACTIONS(4367), - [sym___c_double_quote] = ACTIONS(4367), - [sym___c_single_quote] = ACTIONS(4367), - [sym___r_double_quote] = ACTIONS(4367), - [sym___r_single_quote] = ACTIONS(4367), + [anon_sym_DOT] = ACTIONS(4372), + [anon_sym_LBRACE] = ACTIONS(4372), + [anon_sym_const] = ACTIONS(4372), + [anon_sym_LPAREN] = ACTIONS(4372), + [anon_sym___global] = ACTIONS(4372), + [anon_sym_type] = ACTIONS(4372), + [anon_sym_fn] = ACTIONS(4372), + [anon_sym_PLUS] = ACTIONS(4372), + [anon_sym_DASH] = ACTIONS(4372), + [anon_sym_STAR] = ACTIONS(4372), + [anon_sym_struct] = ACTIONS(4372), + [anon_sym_union] = ACTIONS(4372), + [anon_sym_pub] = ACTIONS(4372), + [anon_sym_mut] = ACTIONS(4372), + [anon_sym_enum] = ACTIONS(4372), + [anon_sym_interface] = ACTIONS(4372), + [anon_sym_QMARK] = ACTIONS(4372), + [anon_sym_BANG] = ACTIONS(4372), + [anon_sym_go] = ACTIONS(4372), + [anon_sym_spawn] = ACTIONS(4372), + [anon_sym_json_DOTdecode] = ACTIONS(4372), + [anon_sym_LBRACK2] = ACTIONS(4372), + [anon_sym_TILDE] = ACTIONS(4372), + [anon_sym_CARET] = ACTIONS(4372), + [anon_sym_AMP] = ACTIONS(4372), + [anon_sym_LT_DASH] = ACTIONS(4372), + [sym_none] = ACTIONS(4372), + [sym_true] = ACTIONS(4372), + [sym_false] = ACTIONS(4372), + [sym_nil] = ACTIONS(4372), + [anon_sym_if] = ACTIONS(4372), + [anon_sym_DOLLARif] = ACTIONS(4372), + [anon_sym_match] = ACTIONS(4372), + [anon_sym_select] = ACTIONS(4372), + [anon_sym_lock] = ACTIONS(4372), + [anon_sym_rlock] = ACTIONS(4372), + [anon_sym_unsafe] = ACTIONS(4372), + [anon_sym_sql] = ACTIONS(4372), + [sym_int_literal] = ACTIONS(4372), + [sym_float_literal] = ACTIONS(4372), + [sym_rune_literal] = ACTIONS(4372), + [sym_pseudo_compile_time_identifier] = ACTIONS(4372), + [anon_sym_shared] = ACTIONS(4372), + [anon_sym_map_LBRACK] = ACTIONS(4372), + [anon_sym_chan] = ACTIONS(4372), + [anon_sym_thread] = ACTIONS(4372), + [anon_sym_atomic] = ACTIONS(4372), + [anon_sym_assert] = ACTIONS(4372), + [anon_sym_defer] = ACTIONS(4372), + [anon_sym_goto] = ACTIONS(4372), + [anon_sym_break] = ACTIONS(4372), + [anon_sym_continue] = ACTIONS(4372), + [anon_sym_return] = ACTIONS(4372), + [anon_sym_DOLLARfor] = ACTIONS(4372), + [anon_sym_for] = ACTIONS(4372), + [anon_sym_POUND] = ACTIONS(4372), + [anon_sym_asm] = ACTIONS(4372), + [anon_sym_AT_LBRACK] = ACTIONS(4372), + [sym___double_quote] = ACTIONS(4372), + [sym___single_quote] = ACTIONS(4372), + [sym___c_double_quote] = ACTIONS(4372), + [sym___c_single_quote] = ACTIONS(4372), + [sym___r_double_quote] = ACTIONS(4372), + [sym___r_single_quote] = ACTIONS(4372), }, [1556] = { - [ts_builtin_sym_end] = ACTIONS(4369), - [sym_identifier] = ACTIONS(4371), - [anon_sym_LF] = ACTIONS(4371), - [anon_sym_CR] = ACTIONS(4371), - [anon_sym_CR_LF] = ACTIONS(4371), + [ts_builtin_sym_end] = ACTIONS(4374), + [sym_identifier] = ACTIONS(4376), + [anon_sym_LF] = ACTIONS(4376), + [anon_sym_CR] = ACTIONS(4376), + [anon_sym_CR_LF] = ACTIONS(4376), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4371), - [anon_sym_LBRACE] = ACTIONS(4371), - [anon_sym_const] = ACTIONS(4371), - [anon_sym_LPAREN] = ACTIONS(4371), - [anon_sym___global] = ACTIONS(4371), - [anon_sym_type] = ACTIONS(4371), - [anon_sym_fn] = ACTIONS(4371), - [anon_sym_PLUS] = ACTIONS(4371), - [anon_sym_DASH] = ACTIONS(4371), - [anon_sym_STAR] = ACTIONS(4371), - [anon_sym_struct] = ACTIONS(4371), - [anon_sym_union] = ACTIONS(4371), - [anon_sym_pub] = ACTIONS(4371), - [anon_sym_mut] = ACTIONS(4371), - [anon_sym_enum] = ACTIONS(4371), - [anon_sym_interface] = ACTIONS(4371), - [anon_sym_QMARK] = ACTIONS(4371), - [anon_sym_BANG] = ACTIONS(4371), - [anon_sym_go] = ACTIONS(4371), - [anon_sym_spawn] = ACTIONS(4371), - [anon_sym_json_DOTdecode] = ACTIONS(4371), - [anon_sym_LBRACK2] = ACTIONS(4371), - [anon_sym_TILDE] = ACTIONS(4371), - [anon_sym_CARET] = ACTIONS(4371), - [anon_sym_AMP] = ACTIONS(4371), - [anon_sym_LT_DASH] = ACTIONS(4371), - [sym_none] = ACTIONS(4371), - [sym_true] = ACTIONS(4371), - [sym_false] = ACTIONS(4371), - [sym_nil] = ACTIONS(4371), - [anon_sym_if] = ACTIONS(4371), - [anon_sym_DOLLARif] = ACTIONS(4371), - [anon_sym_match] = ACTIONS(4371), - [anon_sym_select] = ACTIONS(4371), - [anon_sym_lock] = ACTIONS(4371), - [anon_sym_rlock] = ACTIONS(4371), - [anon_sym_unsafe] = ACTIONS(4371), - [anon_sym_sql] = ACTIONS(4371), - [sym_int_literal] = ACTIONS(4371), - [sym_float_literal] = ACTIONS(4371), - [sym_rune_literal] = ACTIONS(4371), - [sym_pseudo_compile_time_identifier] = ACTIONS(4371), - [anon_sym_shared] = ACTIONS(4371), - [anon_sym_map_LBRACK] = ACTIONS(4371), - [anon_sym_chan] = ACTIONS(4371), - [anon_sym_thread] = ACTIONS(4371), - [anon_sym_atomic] = ACTIONS(4371), - [anon_sym_assert] = ACTIONS(4371), - [anon_sym_defer] = ACTIONS(4371), - [anon_sym_goto] = ACTIONS(4371), - [anon_sym_break] = ACTIONS(4371), - [anon_sym_continue] = ACTIONS(4371), - [anon_sym_return] = ACTIONS(4371), - [anon_sym_DOLLARfor] = ACTIONS(4371), - [anon_sym_for] = ACTIONS(4371), - [anon_sym_POUND] = ACTIONS(4371), - [anon_sym_asm] = ACTIONS(4371), - [anon_sym_AT_LBRACK] = ACTIONS(4371), - [sym___double_quote] = ACTIONS(4371), - [sym___single_quote] = ACTIONS(4371), - [sym___c_double_quote] = ACTIONS(4371), - [sym___c_single_quote] = ACTIONS(4371), - [sym___r_double_quote] = ACTIONS(4371), - [sym___r_single_quote] = ACTIONS(4371), + [anon_sym_DOT] = ACTIONS(4376), + [anon_sym_LBRACE] = ACTIONS(4376), + [anon_sym_const] = ACTIONS(4376), + [anon_sym_LPAREN] = ACTIONS(4376), + [anon_sym___global] = ACTIONS(4376), + [anon_sym_type] = ACTIONS(4376), + [anon_sym_fn] = ACTIONS(4376), + [anon_sym_PLUS] = ACTIONS(4376), + [anon_sym_DASH] = ACTIONS(4376), + [anon_sym_STAR] = ACTIONS(4376), + [anon_sym_struct] = ACTIONS(4376), + [anon_sym_union] = ACTIONS(4376), + [anon_sym_pub] = ACTIONS(4376), + [anon_sym_mut] = ACTIONS(4376), + [anon_sym_enum] = ACTIONS(4376), + [anon_sym_interface] = ACTIONS(4376), + [anon_sym_QMARK] = ACTIONS(4376), + [anon_sym_BANG] = ACTIONS(4376), + [anon_sym_go] = ACTIONS(4376), + [anon_sym_spawn] = ACTIONS(4376), + [anon_sym_json_DOTdecode] = ACTIONS(4376), + [anon_sym_LBRACK2] = ACTIONS(4376), + [anon_sym_TILDE] = ACTIONS(4376), + [anon_sym_CARET] = ACTIONS(4376), + [anon_sym_AMP] = ACTIONS(4376), + [anon_sym_LT_DASH] = ACTIONS(4376), + [sym_none] = ACTIONS(4376), + [sym_true] = ACTIONS(4376), + [sym_false] = ACTIONS(4376), + [sym_nil] = ACTIONS(4376), + [anon_sym_if] = ACTIONS(4376), + [anon_sym_DOLLARif] = ACTIONS(4376), + [anon_sym_match] = ACTIONS(4376), + [anon_sym_select] = ACTIONS(4376), + [anon_sym_lock] = ACTIONS(4376), + [anon_sym_rlock] = ACTIONS(4376), + [anon_sym_unsafe] = ACTIONS(4376), + [anon_sym_sql] = ACTIONS(4376), + [sym_int_literal] = ACTIONS(4376), + [sym_float_literal] = ACTIONS(4376), + [sym_rune_literal] = ACTIONS(4376), + [sym_pseudo_compile_time_identifier] = ACTIONS(4376), + [anon_sym_shared] = ACTIONS(4376), + [anon_sym_map_LBRACK] = ACTIONS(4376), + [anon_sym_chan] = ACTIONS(4376), + [anon_sym_thread] = ACTIONS(4376), + [anon_sym_atomic] = ACTIONS(4376), + [anon_sym_assert] = ACTIONS(4376), + [anon_sym_defer] = ACTIONS(4376), + [anon_sym_goto] = ACTIONS(4376), + [anon_sym_break] = ACTIONS(4376), + [anon_sym_continue] = ACTIONS(4376), + [anon_sym_return] = ACTIONS(4376), + [anon_sym_DOLLARfor] = ACTIONS(4376), + [anon_sym_for] = ACTIONS(4376), + [anon_sym_POUND] = ACTIONS(4376), + [anon_sym_asm] = ACTIONS(4376), + [anon_sym_AT_LBRACK] = ACTIONS(4376), + [sym___double_quote] = ACTIONS(4376), + [sym___single_quote] = ACTIONS(4376), + [sym___c_double_quote] = ACTIONS(4376), + [sym___c_single_quote] = ACTIONS(4376), + [sym___r_double_quote] = ACTIONS(4376), + [sym___r_single_quote] = ACTIONS(4376), }, [1557] = { - [ts_builtin_sym_end] = ACTIONS(4373), - [sym_identifier] = ACTIONS(4375), - [anon_sym_LF] = ACTIONS(4375), - [anon_sym_CR] = ACTIONS(4375), - [anon_sym_CR_LF] = ACTIONS(4375), + [ts_builtin_sym_end] = ACTIONS(4378), + [sym_identifier] = ACTIONS(4380), + [anon_sym_LF] = ACTIONS(4380), + [anon_sym_CR] = ACTIONS(4380), + [anon_sym_CR_LF] = ACTIONS(4380), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4375), - [anon_sym_LBRACE] = ACTIONS(4375), - [anon_sym_const] = ACTIONS(4375), - [anon_sym_LPAREN] = ACTIONS(4375), - [anon_sym___global] = ACTIONS(4375), - [anon_sym_type] = ACTIONS(4375), - [anon_sym_fn] = ACTIONS(4375), - [anon_sym_PLUS] = ACTIONS(4375), - [anon_sym_DASH] = ACTIONS(4375), - [anon_sym_STAR] = ACTIONS(4375), - [anon_sym_struct] = ACTIONS(4375), - [anon_sym_union] = ACTIONS(4375), - [anon_sym_pub] = ACTIONS(4375), - [anon_sym_mut] = ACTIONS(4375), - [anon_sym_enum] = ACTIONS(4375), - [anon_sym_interface] = ACTIONS(4375), - [anon_sym_QMARK] = ACTIONS(4375), - [anon_sym_BANG] = ACTIONS(4375), - [anon_sym_go] = ACTIONS(4375), - [anon_sym_spawn] = ACTIONS(4375), - [anon_sym_json_DOTdecode] = ACTIONS(4375), - [anon_sym_LBRACK2] = ACTIONS(4375), - [anon_sym_TILDE] = ACTIONS(4375), - [anon_sym_CARET] = ACTIONS(4375), - [anon_sym_AMP] = ACTIONS(4375), - [anon_sym_LT_DASH] = ACTIONS(4375), - [sym_none] = ACTIONS(4375), - [sym_true] = ACTIONS(4375), - [sym_false] = ACTIONS(4375), - [sym_nil] = ACTIONS(4375), - [anon_sym_if] = ACTIONS(4375), - [anon_sym_DOLLARif] = ACTIONS(4375), - [anon_sym_match] = ACTIONS(4375), - [anon_sym_select] = ACTIONS(4375), - [anon_sym_lock] = ACTIONS(4375), - [anon_sym_rlock] = ACTIONS(4375), - [anon_sym_unsafe] = ACTIONS(4375), - [anon_sym_sql] = ACTIONS(4375), - [sym_int_literal] = ACTIONS(4375), - [sym_float_literal] = ACTIONS(4375), - [sym_rune_literal] = ACTIONS(4375), - [sym_pseudo_compile_time_identifier] = ACTIONS(4375), - [anon_sym_shared] = ACTIONS(4375), - [anon_sym_map_LBRACK] = ACTIONS(4375), - [anon_sym_chan] = ACTIONS(4375), - [anon_sym_thread] = ACTIONS(4375), - [anon_sym_atomic] = ACTIONS(4375), - [anon_sym_assert] = ACTIONS(4375), - [anon_sym_defer] = ACTIONS(4375), - [anon_sym_goto] = ACTIONS(4375), - [anon_sym_break] = ACTIONS(4375), - [anon_sym_continue] = ACTIONS(4375), - [anon_sym_return] = ACTIONS(4375), - [anon_sym_DOLLARfor] = ACTIONS(4375), - [anon_sym_for] = ACTIONS(4375), - [anon_sym_POUND] = ACTIONS(4375), - [anon_sym_asm] = ACTIONS(4375), - [anon_sym_AT_LBRACK] = ACTIONS(4375), - [sym___double_quote] = ACTIONS(4375), - [sym___single_quote] = ACTIONS(4375), - [sym___c_double_quote] = ACTIONS(4375), - [sym___c_single_quote] = ACTIONS(4375), - [sym___r_double_quote] = ACTIONS(4375), - [sym___r_single_quote] = ACTIONS(4375), + [anon_sym_DOT] = ACTIONS(4380), + [anon_sym_LBRACE] = ACTIONS(4380), + [anon_sym_const] = ACTIONS(4380), + [anon_sym_LPAREN] = ACTIONS(4380), + [anon_sym___global] = ACTIONS(4380), + [anon_sym_type] = ACTIONS(4380), + [anon_sym_fn] = ACTIONS(4380), + [anon_sym_PLUS] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_STAR] = ACTIONS(4380), + [anon_sym_struct] = ACTIONS(4380), + [anon_sym_union] = ACTIONS(4380), + [anon_sym_pub] = ACTIONS(4380), + [anon_sym_mut] = ACTIONS(4380), + [anon_sym_enum] = ACTIONS(4380), + [anon_sym_interface] = ACTIONS(4380), + [anon_sym_QMARK] = ACTIONS(4380), + [anon_sym_BANG] = ACTIONS(4380), + [anon_sym_go] = ACTIONS(4380), + [anon_sym_spawn] = ACTIONS(4380), + [anon_sym_json_DOTdecode] = ACTIONS(4380), + [anon_sym_LBRACK2] = ACTIONS(4380), + [anon_sym_TILDE] = ACTIONS(4380), + [anon_sym_CARET] = ACTIONS(4380), + [anon_sym_AMP] = ACTIONS(4380), + [anon_sym_LT_DASH] = ACTIONS(4380), + [sym_none] = ACTIONS(4380), + [sym_true] = ACTIONS(4380), + [sym_false] = ACTIONS(4380), + [sym_nil] = ACTIONS(4380), + [anon_sym_if] = ACTIONS(4380), + [anon_sym_DOLLARif] = ACTIONS(4380), + [anon_sym_match] = ACTIONS(4380), + [anon_sym_select] = ACTIONS(4380), + [anon_sym_lock] = ACTIONS(4380), + [anon_sym_rlock] = ACTIONS(4380), + [anon_sym_unsafe] = ACTIONS(4380), + [anon_sym_sql] = ACTIONS(4380), + [sym_int_literal] = ACTIONS(4380), + [sym_float_literal] = ACTIONS(4380), + [sym_rune_literal] = ACTIONS(4380), + [sym_pseudo_compile_time_identifier] = ACTIONS(4380), + [anon_sym_shared] = ACTIONS(4380), + [anon_sym_map_LBRACK] = ACTIONS(4380), + [anon_sym_chan] = ACTIONS(4380), + [anon_sym_thread] = ACTIONS(4380), + [anon_sym_atomic] = ACTIONS(4380), + [anon_sym_assert] = ACTIONS(4380), + [anon_sym_defer] = ACTIONS(4380), + [anon_sym_goto] = ACTIONS(4380), + [anon_sym_break] = ACTIONS(4380), + [anon_sym_continue] = ACTIONS(4380), + [anon_sym_return] = ACTIONS(4380), + [anon_sym_DOLLARfor] = ACTIONS(4380), + [anon_sym_for] = ACTIONS(4380), + [anon_sym_POUND] = ACTIONS(4380), + [anon_sym_asm] = ACTIONS(4380), + [anon_sym_AT_LBRACK] = ACTIONS(4380), + [sym___double_quote] = ACTIONS(4380), + [sym___single_quote] = ACTIONS(4380), + [sym___c_double_quote] = ACTIONS(4380), + [sym___c_single_quote] = ACTIONS(4380), + [sym___r_double_quote] = ACTIONS(4380), + [sym___r_single_quote] = ACTIONS(4380), }, [1558] = { - [ts_builtin_sym_end] = ACTIONS(4377), - [sym_identifier] = ACTIONS(4379), - [anon_sym_LF] = ACTIONS(4379), - [anon_sym_CR] = ACTIONS(4379), - [anon_sym_CR_LF] = ACTIONS(4379), + [ts_builtin_sym_end] = ACTIONS(4382), + [sym_identifier] = ACTIONS(4384), + [anon_sym_LF] = ACTIONS(4384), + [anon_sym_CR] = ACTIONS(4384), + [anon_sym_CR_LF] = ACTIONS(4384), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4379), - [anon_sym_LBRACE] = ACTIONS(4379), - [anon_sym_const] = ACTIONS(4379), - [anon_sym_LPAREN] = ACTIONS(4379), - [anon_sym___global] = ACTIONS(4379), - [anon_sym_type] = ACTIONS(4379), - [anon_sym_fn] = ACTIONS(4379), - [anon_sym_PLUS] = ACTIONS(4379), - [anon_sym_DASH] = ACTIONS(4379), - [anon_sym_STAR] = ACTIONS(4379), - [anon_sym_struct] = ACTIONS(4379), - [anon_sym_union] = ACTIONS(4379), - [anon_sym_pub] = ACTIONS(4379), - [anon_sym_mut] = ACTIONS(4379), - [anon_sym_enum] = ACTIONS(4379), - [anon_sym_interface] = ACTIONS(4379), - [anon_sym_QMARK] = ACTIONS(4379), - [anon_sym_BANG] = ACTIONS(4379), - [anon_sym_go] = ACTIONS(4379), - [anon_sym_spawn] = ACTIONS(4379), - [anon_sym_json_DOTdecode] = ACTIONS(4379), - [anon_sym_LBRACK2] = ACTIONS(4379), - [anon_sym_TILDE] = ACTIONS(4379), - [anon_sym_CARET] = ACTIONS(4379), - [anon_sym_AMP] = ACTIONS(4379), - [anon_sym_LT_DASH] = ACTIONS(4379), - [sym_none] = ACTIONS(4379), - [sym_true] = ACTIONS(4379), - [sym_false] = ACTIONS(4379), - [sym_nil] = ACTIONS(4379), - [anon_sym_if] = ACTIONS(4379), - [anon_sym_DOLLARif] = ACTIONS(4379), - [anon_sym_match] = ACTIONS(4379), - [anon_sym_select] = ACTIONS(4379), - [anon_sym_lock] = ACTIONS(4379), - [anon_sym_rlock] = ACTIONS(4379), - [anon_sym_unsafe] = ACTIONS(4379), - [anon_sym_sql] = ACTIONS(4379), - [sym_int_literal] = ACTIONS(4379), - [sym_float_literal] = ACTIONS(4379), - [sym_rune_literal] = ACTIONS(4379), - [sym_pseudo_compile_time_identifier] = ACTIONS(4379), - [anon_sym_shared] = ACTIONS(4379), - [anon_sym_map_LBRACK] = ACTIONS(4379), - [anon_sym_chan] = ACTIONS(4379), - [anon_sym_thread] = ACTIONS(4379), - [anon_sym_atomic] = ACTIONS(4379), - [anon_sym_assert] = ACTIONS(4379), - [anon_sym_defer] = ACTIONS(4379), - [anon_sym_goto] = ACTIONS(4379), - [anon_sym_break] = ACTIONS(4379), - [anon_sym_continue] = ACTIONS(4379), - [anon_sym_return] = ACTIONS(4379), - [anon_sym_DOLLARfor] = ACTIONS(4379), - [anon_sym_for] = ACTIONS(4379), - [anon_sym_POUND] = ACTIONS(4379), - [anon_sym_asm] = ACTIONS(4379), - [anon_sym_AT_LBRACK] = ACTIONS(4379), - [sym___double_quote] = ACTIONS(4379), - [sym___single_quote] = ACTIONS(4379), - [sym___c_double_quote] = ACTIONS(4379), - [sym___c_single_quote] = ACTIONS(4379), - [sym___r_double_quote] = ACTIONS(4379), - [sym___r_single_quote] = ACTIONS(4379), + [anon_sym_DOT] = ACTIONS(4384), + [anon_sym_LBRACE] = ACTIONS(4384), + [anon_sym_const] = ACTIONS(4384), + [anon_sym_LPAREN] = ACTIONS(4384), + [anon_sym___global] = ACTIONS(4384), + [anon_sym_type] = ACTIONS(4384), + [anon_sym_fn] = ACTIONS(4384), + [anon_sym_PLUS] = ACTIONS(4384), + [anon_sym_DASH] = ACTIONS(4384), + [anon_sym_STAR] = ACTIONS(4384), + [anon_sym_struct] = ACTIONS(4384), + [anon_sym_union] = ACTIONS(4384), + [anon_sym_pub] = ACTIONS(4384), + [anon_sym_mut] = ACTIONS(4384), + [anon_sym_enum] = ACTIONS(4384), + [anon_sym_interface] = ACTIONS(4384), + [anon_sym_QMARK] = ACTIONS(4384), + [anon_sym_BANG] = ACTIONS(4384), + [anon_sym_go] = ACTIONS(4384), + [anon_sym_spawn] = ACTIONS(4384), + [anon_sym_json_DOTdecode] = ACTIONS(4384), + [anon_sym_LBRACK2] = ACTIONS(4384), + [anon_sym_TILDE] = ACTIONS(4384), + [anon_sym_CARET] = ACTIONS(4384), + [anon_sym_AMP] = ACTIONS(4384), + [anon_sym_LT_DASH] = ACTIONS(4384), + [sym_none] = ACTIONS(4384), + [sym_true] = ACTIONS(4384), + [sym_false] = ACTIONS(4384), + [sym_nil] = ACTIONS(4384), + [anon_sym_if] = ACTIONS(4384), + [anon_sym_DOLLARif] = ACTIONS(4384), + [anon_sym_match] = ACTIONS(4384), + [anon_sym_select] = ACTIONS(4384), + [anon_sym_lock] = ACTIONS(4384), + [anon_sym_rlock] = ACTIONS(4384), + [anon_sym_unsafe] = ACTIONS(4384), + [anon_sym_sql] = ACTIONS(4384), + [sym_int_literal] = ACTIONS(4384), + [sym_float_literal] = ACTIONS(4384), + [sym_rune_literal] = ACTIONS(4384), + [sym_pseudo_compile_time_identifier] = ACTIONS(4384), + [anon_sym_shared] = ACTIONS(4384), + [anon_sym_map_LBRACK] = ACTIONS(4384), + [anon_sym_chan] = ACTIONS(4384), + [anon_sym_thread] = ACTIONS(4384), + [anon_sym_atomic] = ACTIONS(4384), + [anon_sym_assert] = ACTIONS(4384), + [anon_sym_defer] = ACTIONS(4384), + [anon_sym_goto] = ACTIONS(4384), + [anon_sym_break] = ACTIONS(4384), + [anon_sym_continue] = ACTIONS(4384), + [anon_sym_return] = ACTIONS(4384), + [anon_sym_DOLLARfor] = ACTIONS(4384), + [anon_sym_for] = ACTIONS(4384), + [anon_sym_POUND] = ACTIONS(4384), + [anon_sym_asm] = ACTIONS(4384), + [anon_sym_AT_LBRACK] = ACTIONS(4384), + [sym___double_quote] = ACTIONS(4384), + [sym___single_quote] = ACTIONS(4384), + [sym___c_double_quote] = ACTIONS(4384), + [sym___c_single_quote] = ACTIONS(4384), + [sym___r_double_quote] = ACTIONS(4384), + [sym___r_single_quote] = ACTIONS(4384), }, [1559] = { - [ts_builtin_sym_end] = ACTIONS(4381), - [sym_identifier] = ACTIONS(4383), - [anon_sym_LF] = ACTIONS(4383), - [anon_sym_CR] = ACTIONS(4383), - [anon_sym_CR_LF] = ACTIONS(4383), + [ts_builtin_sym_end] = ACTIONS(4386), + [sym_identifier] = ACTIONS(4388), + [anon_sym_LF] = ACTIONS(4388), + [anon_sym_CR] = ACTIONS(4388), + [anon_sym_CR_LF] = ACTIONS(4388), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4383), - [anon_sym_LBRACE] = ACTIONS(4383), - [anon_sym_const] = ACTIONS(4383), - [anon_sym_LPAREN] = ACTIONS(4383), - [anon_sym___global] = ACTIONS(4383), - [anon_sym_type] = ACTIONS(4383), - [anon_sym_fn] = ACTIONS(4383), - [anon_sym_PLUS] = ACTIONS(4383), - [anon_sym_DASH] = ACTIONS(4383), - [anon_sym_STAR] = ACTIONS(4383), - [anon_sym_struct] = ACTIONS(4383), - [anon_sym_union] = ACTIONS(4383), - [anon_sym_pub] = ACTIONS(4383), - [anon_sym_mut] = ACTIONS(4383), - [anon_sym_enum] = ACTIONS(4383), - [anon_sym_interface] = ACTIONS(4383), - [anon_sym_QMARK] = ACTIONS(4383), - [anon_sym_BANG] = ACTIONS(4383), - [anon_sym_go] = ACTIONS(4383), - [anon_sym_spawn] = ACTIONS(4383), - [anon_sym_json_DOTdecode] = ACTIONS(4383), - [anon_sym_LBRACK2] = ACTIONS(4383), - [anon_sym_TILDE] = ACTIONS(4383), - [anon_sym_CARET] = ACTIONS(4383), - [anon_sym_AMP] = ACTIONS(4383), - [anon_sym_LT_DASH] = ACTIONS(4383), - [sym_none] = ACTIONS(4383), - [sym_true] = ACTIONS(4383), - [sym_false] = ACTIONS(4383), - [sym_nil] = ACTIONS(4383), - [anon_sym_if] = ACTIONS(4383), - [anon_sym_DOLLARif] = ACTIONS(4383), - [anon_sym_match] = ACTIONS(4383), - [anon_sym_select] = ACTIONS(4383), - [anon_sym_lock] = ACTIONS(4383), - [anon_sym_rlock] = ACTIONS(4383), - [anon_sym_unsafe] = ACTIONS(4383), - [anon_sym_sql] = ACTIONS(4383), - [sym_int_literal] = ACTIONS(4383), - [sym_float_literal] = ACTIONS(4383), - [sym_rune_literal] = ACTIONS(4383), - [sym_pseudo_compile_time_identifier] = ACTIONS(4383), - [anon_sym_shared] = ACTIONS(4383), - [anon_sym_map_LBRACK] = ACTIONS(4383), - [anon_sym_chan] = ACTIONS(4383), - [anon_sym_thread] = ACTIONS(4383), - [anon_sym_atomic] = ACTIONS(4383), - [anon_sym_assert] = ACTIONS(4383), - [anon_sym_defer] = ACTIONS(4383), - [anon_sym_goto] = ACTIONS(4383), - [anon_sym_break] = ACTIONS(4383), - [anon_sym_continue] = ACTIONS(4383), - [anon_sym_return] = ACTIONS(4383), - [anon_sym_DOLLARfor] = ACTIONS(4383), - [anon_sym_for] = ACTIONS(4383), - [anon_sym_POUND] = ACTIONS(4383), - [anon_sym_asm] = ACTIONS(4383), - [anon_sym_AT_LBRACK] = ACTIONS(4383), - [sym___double_quote] = ACTIONS(4383), - [sym___single_quote] = ACTIONS(4383), - [sym___c_double_quote] = ACTIONS(4383), - [sym___c_single_quote] = ACTIONS(4383), - [sym___r_double_quote] = ACTIONS(4383), - [sym___r_single_quote] = ACTIONS(4383), + [anon_sym_DOT] = ACTIONS(4388), + [anon_sym_LBRACE] = ACTIONS(4388), + [anon_sym_const] = ACTIONS(4388), + [anon_sym_LPAREN] = ACTIONS(4388), + [anon_sym___global] = ACTIONS(4388), + [anon_sym_type] = ACTIONS(4388), + [anon_sym_fn] = ACTIONS(4388), + [anon_sym_PLUS] = ACTIONS(4388), + [anon_sym_DASH] = ACTIONS(4388), + [anon_sym_STAR] = ACTIONS(4388), + [anon_sym_struct] = ACTIONS(4388), + [anon_sym_union] = ACTIONS(4388), + [anon_sym_pub] = ACTIONS(4388), + [anon_sym_mut] = ACTIONS(4388), + [anon_sym_enum] = ACTIONS(4388), + [anon_sym_interface] = ACTIONS(4388), + [anon_sym_QMARK] = ACTIONS(4388), + [anon_sym_BANG] = ACTIONS(4388), + [anon_sym_go] = ACTIONS(4388), + [anon_sym_spawn] = ACTIONS(4388), + [anon_sym_json_DOTdecode] = ACTIONS(4388), + [anon_sym_LBRACK2] = ACTIONS(4388), + [anon_sym_TILDE] = ACTIONS(4388), + [anon_sym_CARET] = ACTIONS(4388), + [anon_sym_AMP] = ACTIONS(4388), + [anon_sym_LT_DASH] = ACTIONS(4388), + [sym_none] = ACTIONS(4388), + [sym_true] = ACTIONS(4388), + [sym_false] = ACTIONS(4388), + [sym_nil] = ACTIONS(4388), + [anon_sym_if] = ACTIONS(4388), + [anon_sym_DOLLARif] = ACTIONS(4388), + [anon_sym_match] = ACTIONS(4388), + [anon_sym_select] = ACTIONS(4388), + [anon_sym_lock] = ACTIONS(4388), + [anon_sym_rlock] = ACTIONS(4388), + [anon_sym_unsafe] = ACTIONS(4388), + [anon_sym_sql] = ACTIONS(4388), + [sym_int_literal] = ACTIONS(4388), + [sym_float_literal] = ACTIONS(4388), + [sym_rune_literal] = ACTIONS(4388), + [sym_pseudo_compile_time_identifier] = ACTIONS(4388), + [anon_sym_shared] = ACTIONS(4388), + [anon_sym_map_LBRACK] = ACTIONS(4388), + [anon_sym_chan] = ACTIONS(4388), + [anon_sym_thread] = ACTIONS(4388), + [anon_sym_atomic] = ACTIONS(4388), + [anon_sym_assert] = ACTIONS(4388), + [anon_sym_defer] = ACTIONS(4388), + [anon_sym_goto] = ACTIONS(4388), + [anon_sym_break] = ACTIONS(4388), + [anon_sym_continue] = ACTIONS(4388), + [anon_sym_return] = ACTIONS(4388), + [anon_sym_DOLLARfor] = ACTIONS(4388), + [anon_sym_for] = ACTIONS(4388), + [anon_sym_POUND] = ACTIONS(4388), + [anon_sym_asm] = ACTIONS(4388), + [anon_sym_AT_LBRACK] = ACTIONS(4388), + [sym___double_quote] = ACTIONS(4388), + [sym___single_quote] = ACTIONS(4388), + [sym___c_double_quote] = ACTIONS(4388), + [sym___c_single_quote] = ACTIONS(4388), + [sym___r_double_quote] = ACTIONS(4388), + [sym___r_single_quote] = ACTIONS(4388), }, [1560] = { - [ts_builtin_sym_end] = ACTIONS(4385), - [sym_identifier] = ACTIONS(4387), - [anon_sym_LF] = ACTIONS(4387), - [anon_sym_CR] = ACTIONS(4387), - [anon_sym_CR_LF] = ACTIONS(4387), + [ts_builtin_sym_end] = ACTIONS(4390), + [sym_identifier] = ACTIONS(4392), + [anon_sym_LF] = ACTIONS(4392), + [anon_sym_CR] = ACTIONS(4392), + [anon_sym_CR_LF] = ACTIONS(4392), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4387), - [anon_sym_LBRACE] = ACTIONS(4387), - [anon_sym_const] = ACTIONS(4387), - [anon_sym_LPAREN] = ACTIONS(4387), - [anon_sym___global] = ACTIONS(4387), - [anon_sym_type] = ACTIONS(4387), - [anon_sym_fn] = ACTIONS(4387), - [anon_sym_PLUS] = ACTIONS(4387), - [anon_sym_DASH] = ACTIONS(4387), - [anon_sym_STAR] = ACTIONS(4387), - [anon_sym_struct] = ACTIONS(4387), - [anon_sym_union] = ACTIONS(4387), - [anon_sym_pub] = ACTIONS(4387), - [anon_sym_mut] = ACTIONS(4387), - [anon_sym_enum] = ACTIONS(4387), - [anon_sym_interface] = ACTIONS(4387), - [anon_sym_QMARK] = ACTIONS(4387), - [anon_sym_BANG] = ACTIONS(4387), - [anon_sym_go] = ACTIONS(4387), - [anon_sym_spawn] = ACTIONS(4387), - [anon_sym_json_DOTdecode] = ACTIONS(4387), - [anon_sym_LBRACK2] = ACTIONS(4387), - [anon_sym_TILDE] = ACTIONS(4387), - [anon_sym_CARET] = ACTIONS(4387), - [anon_sym_AMP] = ACTIONS(4387), - [anon_sym_LT_DASH] = ACTIONS(4387), - [sym_none] = ACTIONS(4387), - [sym_true] = ACTIONS(4387), - [sym_false] = ACTIONS(4387), - [sym_nil] = ACTIONS(4387), - [anon_sym_if] = ACTIONS(4387), - [anon_sym_DOLLARif] = ACTIONS(4387), - [anon_sym_match] = ACTIONS(4387), - [anon_sym_select] = ACTIONS(4387), - [anon_sym_lock] = ACTIONS(4387), - [anon_sym_rlock] = ACTIONS(4387), - [anon_sym_unsafe] = ACTIONS(4387), - [anon_sym_sql] = ACTIONS(4387), - [sym_int_literal] = ACTIONS(4387), - [sym_float_literal] = ACTIONS(4387), - [sym_rune_literal] = ACTIONS(4387), - [sym_pseudo_compile_time_identifier] = ACTIONS(4387), - [anon_sym_shared] = ACTIONS(4387), - [anon_sym_map_LBRACK] = ACTIONS(4387), - [anon_sym_chan] = ACTIONS(4387), - [anon_sym_thread] = ACTIONS(4387), - [anon_sym_atomic] = ACTIONS(4387), - [anon_sym_assert] = ACTIONS(4387), - [anon_sym_defer] = ACTIONS(4387), - [anon_sym_goto] = ACTIONS(4387), - [anon_sym_break] = ACTIONS(4387), - [anon_sym_continue] = ACTIONS(4387), - [anon_sym_return] = ACTIONS(4387), - [anon_sym_DOLLARfor] = ACTIONS(4387), - [anon_sym_for] = ACTIONS(4387), - [anon_sym_POUND] = ACTIONS(4387), - [anon_sym_asm] = ACTIONS(4387), - [anon_sym_AT_LBRACK] = ACTIONS(4387), - [sym___double_quote] = ACTIONS(4387), - [sym___single_quote] = ACTIONS(4387), - [sym___c_double_quote] = ACTIONS(4387), - [sym___c_single_quote] = ACTIONS(4387), - [sym___r_double_quote] = ACTIONS(4387), - [sym___r_single_quote] = ACTIONS(4387), + [anon_sym_DOT] = ACTIONS(4392), + [anon_sym_LBRACE] = ACTIONS(4392), + [anon_sym_const] = ACTIONS(4392), + [anon_sym_LPAREN] = ACTIONS(4392), + [anon_sym___global] = ACTIONS(4392), + [anon_sym_type] = ACTIONS(4392), + [anon_sym_fn] = ACTIONS(4392), + [anon_sym_PLUS] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_STAR] = ACTIONS(4392), + [anon_sym_struct] = ACTIONS(4392), + [anon_sym_union] = ACTIONS(4392), + [anon_sym_pub] = ACTIONS(4392), + [anon_sym_mut] = ACTIONS(4392), + [anon_sym_enum] = ACTIONS(4392), + [anon_sym_interface] = ACTIONS(4392), + [anon_sym_QMARK] = ACTIONS(4392), + [anon_sym_BANG] = ACTIONS(4392), + [anon_sym_go] = ACTIONS(4392), + [anon_sym_spawn] = ACTIONS(4392), + [anon_sym_json_DOTdecode] = ACTIONS(4392), + [anon_sym_LBRACK2] = ACTIONS(4392), + [anon_sym_TILDE] = ACTIONS(4392), + [anon_sym_CARET] = ACTIONS(4392), + [anon_sym_AMP] = ACTIONS(4392), + [anon_sym_LT_DASH] = ACTIONS(4392), + [sym_none] = ACTIONS(4392), + [sym_true] = ACTIONS(4392), + [sym_false] = ACTIONS(4392), + [sym_nil] = ACTIONS(4392), + [anon_sym_if] = ACTIONS(4392), + [anon_sym_DOLLARif] = ACTIONS(4392), + [anon_sym_match] = ACTIONS(4392), + [anon_sym_select] = ACTIONS(4392), + [anon_sym_lock] = ACTIONS(4392), + [anon_sym_rlock] = ACTIONS(4392), + [anon_sym_unsafe] = ACTIONS(4392), + [anon_sym_sql] = ACTIONS(4392), + [sym_int_literal] = ACTIONS(4392), + [sym_float_literal] = ACTIONS(4392), + [sym_rune_literal] = ACTIONS(4392), + [sym_pseudo_compile_time_identifier] = ACTIONS(4392), + [anon_sym_shared] = ACTIONS(4392), + [anon_sym_map_LBRACK] = ACTIONS(4392), + [anon_sym_chan] = ACTIONS(4392), + [anon_sym_thread] = ACTIONS(4392), + [anon_sym_atomic] = ACTIONS(4392), + [anon_sym_assert] = ACTIONS(4392), + [anon_sym_defer] = ACTIONS(4392), + [anon_sym_goto] = ACTIONS(4392), + [anon_sym_break] = ACTIONS(4392), + [anon_sym_continue] = ACTIONS(4392), + [anon_sym_return] = ACTIONS(4392), + [anon_sym_DOLLARfor] = ACTIONS(4392), + [anon_sym_for] = ACTIONS(4392), + [anon_sym_POUND] = ACTIONS(4392), + [anon_sym_asm] = ACTIONS(4392), + [anon_sym_AT_LBRACK] = ACTIONS(4392), + [sym___double_quote] = ACTIONS(4392), + [sym___single_quote] = ACTIONS(4392), + [sym___c_double_quote] = ACTIONS(4392), + [sym___c_single_quote] = ACTIONS(4392), + [sym___r_double_quote] = ACTIONS(4392), + [sym___r_single_quote] = ACTIONS(4392), }, [1561] = { - [ts_builtin_sym_end] = ACTIONS(4389), - [sym_identifier] = ACTIONS(4391), - [anon_sym_LF] = ACTIONS(4391), - [anon_sym_CR] = ACTIONS(4391), - [anon_sym_CR_LF] = ACTIONS(4391), + [ts_builtin_sym_end] = ACTIONS(4394), + [sym_identifier] = ACTIONS(4396), + [anon_sym_LF] = ACTIONS(4396), + [anon_sym_CR] = ACTIONS(4396), + [anon_sym_CR_LF] = ACTIONS(4396), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4391), - [anon_sym_LBRACE] = ACTIONS(4391), - [anon_sym_const] = ACTIONS(4391), - [anon_sym_LPAREN] = ACTIONS(4391), - [anon_sym___global] = ACTIONS(4391), - [anon_sym_type] = ACTIONS(4391), - [anon_sym_fn] = ACTIONS(4391), - [anon_sym_PLUS] = ACTIONS(4391), - [anon_sym_DASH] = ACTIONS(4391), - [anon_sym_STAR] = ACTIONS(4391), - [anon_sym_struct] = ACTIONS(4391), - [anon_sym_union] = ACTIONS(4391), - [anon_sym_pub] = ACTIONS(4391), - [anon_sym_mut] = ACTIONS(4391), - [anon_sym_enum] = ACTIONS(4391), - [anon_sym_interface] = ACTIONS(4391), - [anon_sym_QMARK] = ACTIONS(4391), - [anon_sym_BANG] = ACTIONS(4391), - [anon_sym_go] = ACTIONS(4391), - [anon_sym_spawn] = ACTIONS(4391), - [anon_sym_json_DOTdecode] = ACTIONS(4391), - [anon_sym_LBRACK2] = ACTIONS(4391), - [anon_sym_TILDE] = ACTIONS(4391), - [anon_sym_CARET] = ACTIONS(4391), - [anon_sym_AMP] = ACTIONS(4391), - [anon_sym_LT_DASH] = ACTIONS(4391), - [sym_none] = ACTIONS(4391), - [sym_true] = ACTIONS(4391), - [sym_false] = ACTIONS(4391), - [sym_nil] = ACTIONS(4391), - [anon_sym_if] = ACTIONS(4391), - [anon_sym_DOLLARif] = ACTIONS(4391), - [anon_sym_match] = ACTIONS(4391), - [anon_sym_select] = ACTIONS(4391), - [anon_sym_lock] = ACTIONS(4391), - [anon_sym_rlock] = ACTIONS(4391), - [anon_sym_unsafe] = ACTIONS(4391), - [anon_sym_sql] = ACTIONS(4391), - [sym_int_literal] = ACTIONS(4391), - [sym_float_literal] = ACTIONS(4391), - [sym_rune_literal] = ACTIONS(4391), - [sym_pseudo_compile_time_identifier] = ACTIONS(4391), - [anon_sym_shared] = ACTIONS(4391), - [anon_sym_map_LBRACK] = ACTIONS(4391), - [anon_sym_chan] = ACTIONS(4391), - [anon_sym_thread] = ACTIONS(4391), - [anon_sym_atomic] = ACTIONS(4391), - [anon_sym_assert] = ACTIONS(4391), - [anon_sym_defer] = ACTIONS(4391), - [anon_sym_goto] = ACTIONS(4391), - [anon_sym_break] = ACTIONS(4391), - [anon_sym_continue] = ACTIONS(4391), - [anon_sym_return] = ACTIONS(4391), - [anon_sym_DOLLARfor] = ACTIONS(4391), - [anon_sym_for] = ACTIONS(4391), - [anon_sym_POUND] = ACTIONS(4391), - [anon_sym_asm] = ACTIONS(4391), - [anon_sym_AT_LBRACK] = ACTIONS(4391), - [sym___double_quote] = ACTIONS(4391), - [sym___single_quote] = ACTIONS(4391), - [sym___c_double_quote] = ACTIONS(4391), - [sym___c_single_quote] = ACTIONS(4391), - [sym___r_double_quote] = ACTIONS(4391), - [sym___r_single_quote] = ACTIONS(4391), + [anon_sym_DOT] = ACTIONS(4396), + [anon_sym_LBRACE] = ACTIONS(4396), + [anon_sym_const] = ACTIONS(4396), + [anon_sym_LPAREN] = ACTIONS(4396), + [anon_sym___global] = ACTIONS(4396), + [anon_sym_type] = ACTIONS(4396), + [anon_sym_fn] = ACTIONS(4396), + [anon_sym_PLUS] = ACTIONS(4396), + [anon_sym_DASH] = ACTIONS(4396), + [anon_sym_STAR] = ACTIONS(4396), + [anon_sym_struct] = ACTIONS(4396), + [anon_sym_union] = ACTIONS(4396), + [anon_sym_pub] = ACTIONS(4396), + [anon_sym_mut] = ACTIONS(4396), + [anon_sym_enum] = ACTIONS(4396), + [anon_sym_interface] = ACTIONS(4396), + [anon_sym_QMARK] = ACTIONS(4396), + [anon_sym_BANG] = ACTIONS(4396), + [anon_sym_go] = ACTIONS(4396), + [anon_sym_spawn] = ACTIONS(4396), + [anon_sym_json_DOTdecode] = ACTIONS(4396), + [anon_sym_LBRACK2] = ACTIONS(4396), + [anon_sym_TILDE] = ACTIONS(4396), + [anon_sym_CARET] = ACTIONS(4396), + [anon_sym_AMP] = ACTIONS(4396), + [anon_sym_LT_DASH] = ACTIONS(4396), + [sym_none] = ACTIONS(4396), + [sym_true] = ACTIONS(4396), + [sym_false] = ACTIONS(4396), + [sym_nil] = ACTIONS(4396), + [anon_sym_if] = ACTIONS(4396), + [anon_sym_DOLLARif] = ACTIONS(4396), + [anon_sym_match] = ACTIONS(4396), + [anon_sym_select] = ACTIONS(4396), + [anon_sym_lock] = ACTIONS(4396), + [anon_sym_rlock] = ACTIONS(4396), + [anon_sym_unsafe] = ACTIONS(4396), + [anon_sym_sql] = ACTIONS(4396), + [sym_int_literal] = ACTIONS(4396), + [sym_float_literal] = ACTIONS(4396), + [sym_rune_literal] = ACTIONS(4396), + [sym_pseudo_compile_time_identifier] = ACTIONS(4396), + [anon_sym_shared] = ACTIONS(4396), + [anon_sym_map_LBRACK] = ACTIONS(4396), + [anon_sym_chan] = ACTIONS(4396), + [anon_sym_thread] = ACTIONS(4396), + [anon_sym_atomic] = ACTIONS(4396), + [anon_sym_assert] = ACTIONS(4396), + [anon_sym_defer] = ACTIONS(4396), + [anon_sym_goto] = ACTIONS(4396), + [anon_sym_break] = ACTIONS(4396), + [anon_sym_continue] = ACTIONS(4396), + [anon_sym_return] = ACTIONS(4396), + [anon_sym_DOLLARfor] = ACTIONS(4396), + [anon_sym_for] = ACTIONS(4396), + [anon_sym_POUND] = ACTIONS(4396), + [anon_sym_asm] = ACTIONS(4396), + [anon_sym_AT_LBRACK] = ACTIONS(4396), + [sym___double_quote] = ACTIONS(4396), + [sym___single_quote] = ACTIONS(4396), + [sym___c_double_quote] = ACTIONS(4396), + [sym___c_single_quote] = ACTIONS(4396), + [sym___r_double_quote] = ACTIONS(4396), + [sym___r_single_quote] = ACTIONS(4396), }, [1562] = { - [ts_builtin_sym_end] = ACTIONS(4393), - [sym_identifier] = ACTIONS(4395), - [anon_sym_LF] = ACTIONS(4395), - [anon_sym_CR] = ACTIONS(4395), - [anon_sym_CR_LF] = ACTIONS(4395), + [ts_builtin_sym_end] = ACTIONS(4398), + [sym_identifier] = ACTIONS(4400), + [anon_sym_LF] = ACTIONS(4400), + [anon_sym_CR] = ACTIONS(4400), + [anon_sym_CR_LF] = ACTIONS(4400), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4395), - [anon_sym_LBRACE] = ACTIONS(4395), - [anon_sym_const] = ACTIONS(4395), - [anon_sym_LPAREN] = ACTIONS(4395), - [anon_sym___global] = ACTIONS(4395), - [anon_sym_type] = ACTIONS(4395), - [anon_sym_fn] = ACTIONS(4395), - [anon_sym_PLUS] = ACTIONS(4395), - [anon_sym_DASH] = ACTIONS(4395), - [anon_sym_STAR] = ACTIONS(4395), - [anon_sym_struct] = ACTIONS(4395), - [anon_sym_union] = ACTIONS(4395), - [anon_sym_pub] = ACTIONS(4395), - [anon_sym_mut] = ACTIONS(4395), - [anon_sym_enum] = ACTIONS(4395), - [anon_sym_interface] = ACTIONS(4395), - [anon_sym_QMARK] = ACTIONS(4395), - [anon_sym_BANG] = ACTIONS(4395), - [anon_sym_go] = ACTIONS(4395), - [anon_sym_spawn] = ACTIONS(4395), - [anon_sym_json_DOTdecode] = ACTIONS(4395), - [anon_sym_LBRACK2] = ACTIONS(4395), - [anon_sym_TILDE] = ACTIONS(4395), - [anon_sym_CARET] = ACTIONS(4395), - [anon_sym_AMP] = ACTIONS(4395), - [anon_sym_LT_DASH] = ACTIONS(4395), - [sym_none] = ACTIONS(4395), - [sym_true] = ACTIONS(4395), - [sym_false] = ACTIONS(4395), - [sym_nil] = ACTIONS(4395), - [anon_sym_if] = ACTIONS(4395), - [anon_sym_DOLLARif] = ACTIONS(4395), - [anon_sym_match] = ACTIONS(4395), - [anon_sym_select] = ACTIONS(4395), - [anon_sym_lock] = ACTIONS(4395), - [anon_sym_rlock] = ACTIONS(4395), - [anon_sym_unsafe] = ACTIONS(4395), - [anon_sym_sql] = ACTIONS(4395), - [sym_int_literal] = ACTIONS(4395), - [sym_float_literal] = ACTIONS(4395), - [sym_rune_literal] = ACTIONS(4395), - [sym_pseudo_compile_time_identifier] = ACTIONS(4395), - [anon_sym_shared] = ACTIONS(4395), - [anon_sym_map_LBRACK] = ACTIONS(4395), - [anon_sym_chan] = ACTIONS(4395), - [anon_sym_thread] = ACTIONS(4395), - [anon_sym_atomic] = ACTIONS(4395), - [anon_sym_assert] = ACTIONS(4395), - [anon_sym_defer] = ACTIONS(4395), - [anon_sym_goto] = ACTIONS(4395), - [anon_sym_break] = ACTIONS(4395), - [anon_sym_continue] = ACTIONS(4395), - [anon_sym_return] = ACTIONS(4395), - [anon_sym_DOLLARfor] = ACTIONS(4395), - [anon_sym_for] = ACTIONS(4395), - [anon_sym_POUND] = ACTIONS(4395), - [anon_sym_asm] = ACTIONS(4395), - [anon_sym_AT_LBRACK] = ACTIONS(4395), - [sym___double_quote] = ACTIONS(4395), - [sym___single_quote] = ACTIONS(4395), - [sym___c_double_quote] = ACTIONS(4395), - [sym___c_single_quote] = ACTIONS(4395), - [sym___r_double_quote] = ACTIONS(4395), - [sym___r_single_quote] = ACTIONS(4395), + [anon_sym_DOT] = ACTIONS(4400), + [anon_sym_LBRACE] = ACTIONS(4400), + [anon_sym_const] = ACTIONS(4400), + [anon_sym_LPAREN] = ACTIONS(4400), + [anon_sym___global] = ACTIONS(4400), + [anon_sym_type] = ACTIONS(4400), + [anon_sym_fn] = ACTIONS(4400), + [anon_sym_PLUS] = ACTIONS(4400), + [anon_sym_DASH] = ACTIONS(4400), + [anon_sym_STAR] = ACTIONS(4400), + [anon_sym_struct] = ACTIONS(4400), + [anon_sym_union] = ACTIONS(4400), + [anon_sym_pub] = ACTIONS(4400), + [anon_sym_mut] = ACTIONS(4400), + [anon_sym_enum] = ACTIONS(4400), + [anon_sym_interface] = ACTIONS(4400), + [anon_sym_QMARK] = ACTIONS(4400), + [anon_sym_BANG] = ACTIONS(4400), + [anon_sym_go] = ACTIONS(4400), + [anon_sym_spawn] = ACTIONS(4400), + [anon_sym_json_DOTdecode] = ACTIONS(4400), + [anon_sym_LBRACK2] = ACTIONS(4400), + [anon_sym_TILDE] = ACTIONS(4400), + [anon_sym_CARET] = ACTIONS(4400), + [anon_sym_AMP] = ACTIONS(4400), + [anon_sym_LT_DASH] = ACTIONS(4400), + [sym_none] = ACTIONS(4400), + [sym_true] = ACTIONS(4400), + [sym_false] = ACTIONS(4400), + [sym_nil] = ACTIONS(4400), + [anon_sym_if] = ACTIONS(4400), + [anon_sym_DOLLARif] = ACTIONS(4400), + [anon_sym_match] = ACTIONS(4400), + [anon_sym_select] = ACTIONS(4400), + [anon_sym_lock] = ACTIONS(4400), + [anon_sym_rlock] = ACTIONS(4400), + [anon_sym_unsafe] = ACTIONS(4400), + [anon_sym_sql] = ACTIONS(4400), + [sym_int_literal] = ACTIONS(4400), + [sym_float_literal] = ACTIONS(4400), + [sym_rune_literal] = ACTIONS(4400), + [sym_pseudo_compile_time_identifier] = ACTIONS(4400), + [anon_sym_shared] = ACTIONS(4400), + [anon_sym_map_LBRACK] = ACTIONS(4400), + [anon_sym_chan] = ACTIONS(4400), + [anon_sym_thread] = ACTIONS(4400), + [anon_sym_atomic] = ACTIONS(4400), + [anon_sym_assert] = ACTIONS(4400), + [anon_sym_defer] = ACTIONS(4400), + [anon_sym_goto] = ACTIONS(4400), + [anon_sym_break] = ACTIONS(4400), + [anon_sym_continue] = ACTIONS(4400), + [anon_sym_return] = ACTIONS(4400), + [anon_sym_DOLLARfor] = ACTIONS(4400), + [anon_sym_for] = ACTIONS(4400), + [anon_sym_POUND] = ACTIONS(4400), + [anon_sym_asm] = ACTIONS(4400), + [anon_sym_AT_LBRACK] = ACTIONS(4400), + [sym___double_quote] = ACTIONS(4400), + [sym___single_quote] = ACTIONS(4400), + [sym___c_double_quote] = ACTIONS(4400), + [sym___c_single_quote] = ACTIONS(4400), + [sym___r_double_quote] = ACTIONS(4400), + [sym___r_single_quote] = ACTIONS(4400), }, [1563] = { - [ts_builtin_sym_end] = ACTIONS(4397), - [sym_identifier] = ACTIONS(4399), - [anon_sym_LF] = ACTIONS(4399), - [anon_sym_CR] = ACTIONS(4399), - [anon_sym_CR_LF] = ACTIONS(4399), + [ts_builtin_sym_end] = ACTIONS(4402), + [sym_identifier] = ACTIONS(4404), + [anon_sym_LF] = ACTIONS(4404), + [anon_sym_CR] = ACTIONS(4404), + [anon_sym_CR_LF] = ACTIONS(4404), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4399), - [anon_sym_LBRACE] = ACTIONS(4399), - [anon_sym_const] = ACTIONS(4399), - [anon_sym_LPAREN] = ACTIONS(4399), - [anon_sym___global] = ACTIONS(4399), - [anon_sym_type] = ACTIONS(4399), - [anon_sym_fn] = ACTIONS(4399), - [anon_sym_PLUS] = ACTIONS(4399), - [anon_sym_DASH] = ACTIONS(4399), - [anon_sym_STAR] = ACTIONS(4399), - [anon_sym_struct] = ACTIONS(4399), - [anon_sym_union] = ACTIONS(4399), - [anon_sym_pub] = ACTIONS(4399), - [anon_sym_mut] = ACTIONS(4399), - [anon_sym_enum] = ACTIONS(4399), - [anon_sym_interface] = ACTIONS(4399), - [anon_sym_QMARK] = ACTIONS(4399), - [anon_sym_BANG] = ACTIONS(4399), - [anon_sym_go] = ACTIONS(4399), - [anon_sym_spawn] = ACTIONS(4399), - [anon_sym_json_DOTdecode] = ACTIONS(4399), - [anon_sym_LBRACK2] = ACTIONS(4399), - [anon_sym_TILDE] = ACTIONS(4399), - [anon_sym_CARET] = ACTIONS(4399), - [anon_sym_AMP] = ACTIONS(4399), - [anon_sym_LT_DASH] = ACTIONS(4399), - [sym_none] = ACTIONS(4399), - [sym_true] = ACTIONS(4399), - [sym_false] = ACTIONS(4399), - [sym_nil] = ACTIONS(4399), - [anon_sym_if] = ACTIONS(4399), - [anon_sym_DOLLARif] = ACTIONS(4399), - [anon_sym_match] = ACTIONS(4399), - [anon_sym_select] = ACTIONS(4399), - [anon_sym_lock] = ACTIONS(4399), - [anon_sym_rlock] = ACTIONS(4399), - [anon_sym_unsafe] = ACTIONS(4399), - [anon_sym_sql] = ACTIONS(4399), - [sym_int_literal] = ACTIONS(4399), - [sym_float_literal] = ACTIONS(4399), - [sym_rune_literal] = ACTIONS(4399), - [sym_pseudo_compile_time_identifier] = ACTIONS(4399), - [anon_sym_shared] = ACTIONS(4399), - [anon_sym_map_LBRACK] = ACTIONS(4399), - [anon_sym_chan] = ACTIONS(4399), - [anon_sym_thread] = ACTIONS(4399), - [anon_sym_atomic] = ACTIONS(4399), - [anon_sym_assert] = ACTIONS(4399), - [anon_sym_defer] = ACTIONS(4399), - [anon_sym_goto] = ACTIONS(4399), - [anon_sym_break] = ACTIONS(4399), - [anon_sym_continue] = ACTIONS(4399), - [anon_sym_return] = ACTIONS(4399), - [anon_sym_DOLLARfor] = ACTIONS(4399), - [anon_sym_for] = ACTIONS(4399), - [anon_sym_POUND] = ACTIONS(4399), - [anon_sym_asm] = ACTIONS(4399), - [anon_sym_AT_LBRACK] = ACTIONS(4399), - [sym___double_quote] = ACTIONS(4399), - [sym___single_quote] = ACTIONS(4399), - [sym___c_double_quote] = ACTIONS(4399), - [sym___c_single_quote] = ACTIONS(4399), - [sym___r_double_quote] = ACTIONS(4399), - [sym___r_single_quote] = ACTIONS(4399), + [anon_sym_DOT] = ACTIONS(4404), + [anon_sym_LBRACE] = ACTIONS(4404), + [anon_sym_const] = ACTIONS(4404), + [anon_sym_LPAREN] = ACTIONS(4404), + [anon_sym___global] = ACTIONS(4404), + [anon_sym_type] = ACTIONS(4404), + [anon_sym_fn] = ACTIONS(4404), + [anon_sym_PLUS] = ACTIONS(4404), + [anon_sym_DASH] = ACTIONS(4404), + [anon_sym_STAR] = ACTIONS(4404), + [anon_sym_struct] = ACTIONS(4404), + [anon_sym_union] = ACTIONS(4404), + [anon_sym_pub] = ACTIONS(4404), + [anon_sym_mut] = ACTIONS(4404), + [anon_sym_enum] = ACTIONS(4404), + [anon_sym_interface] = ACTIONS(4404), + [anon_sym_QMARK] = ACTIONS(4404), + [anon_sym_BANG] = ACTIONS(4404), + [anon_sym_go] = ACTIONS(4404), + [anon_sym_spawn] = ACTIONS(4404), + [anon_sym_json_DOTdecode] = ACTIONS(4404), + [anon_sym_LBRACK2] = ACTIONS(4404), + [anon_sym_TILDE] = ACTIONS(4404), + [anon_sym_CARET] = ACTIONS(4404), + [anon_sym_AMP] = ACTIONS(4404), + [anon_sym_LT_DASH] = ACTIONS(4404), + [sym_none] = ACTIONS(4404), + [sym_true] = ACTIONS(4404), + [sym_false] = ACTIONS(4404), + [sym_nil] = ACTIONS(4404), + [anon_sym_if] = ACTIONS(4404), + [anon_sym_DOLLARif] = ACTIONS(4404), + [anon_sym_match] = ACTIONS(4404), + [anon_sym_select] = ACTIONS(4404), + [anon_sym_lock] = ACTIONS(4404), + [anon_sym_rlock] = ACTIONS(4404), + [anon_sym_unsafe] = ACTIONS(4404), + [anon_sym_sql] = ACTIONS(4404), + [sym_int_literal] = ACTIONS(4404), + [sym_float_literal] = ACTIONS(4404), + [sym_rune_literal] = ACTIONS(4404), + [sym_pseudo_compile_time_identifier] = ACTIONS(4404), + [anon_sym_shared] = ACTIONS(4404), + [anon_sym_map_LBRACK] = ACTIONS(4404), + [anon_sym_chan] = ACTIONS(4404), + [anon_sym_thread] = ACTIONS(4404), + [anon_sym_atomic] = ACTIONS(4404), + [anon_sym_assert] = ACTIONS(4404), + [anon_sym_defer] = ACTIONS(4404), + [anon_sym_goto] = ACTIONS(4404), + [anon_sym_break] = ACTIONS(4404), + [anon_sym_continue] = ACTIONS(4404), + [anon_sym_return] = ACTIONS(4404), + [anon_sym_DOLLARfor] = ACTIONS(4404), + [anon_sym_for] = ACTIONS(4404), + [anon_sym_POUND] = ACTIONS(4404), + [anon_sym_asm] = ACTIONS(4404), + [anon_sym_AT_LBRACK] = ACTIONS(4404), + [sym___double_quote] = ACTIONS(4404), + [sym___single_quote] = ACTIONS(4404), + [sym___c_double_quote] = ACTIONS(4404), + [sym___c_single_quote] = ACTIONS(4404), + [sym___r_double_quote] = ACTIONS(4404), + [sym___r_single_quote] = ACTIONS(4404), }, [1564] = { - [ts_builtin_sym_end] = ACTIONS(4401), - [sym_identifier] = ACTIONS(4403), - [anon_sym_LF] = ACTIONS(4403), - [anon_sym_CR] = ACTIONS(4403), - [anon_sym_CR_LF] = ACTIONS(4403), + [ts_builtin_sym_end] = ACTIONS(4406), + [sym_identifier] = ACTIONS(4408), + [anon_sym_LF] = ACTIONS(4408), + [anon_sym_CR] = ACTIONS(4408), + [anon_sym_CR_LF] = ACTIONS(4408), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4403), - [anon_sym_LBRACE] = ACTIONS(4403), - [anon_sym_const] = ACTIONS(4403), - [anon_sym_LPAREN] = ACTIONS(4403), - [anon_sym___global] = ACTIONS(4403), - [anon_sym_type] = ACTIONS(4403), - [anon_sym_fn] = ACTIONS(4403), - [anon_sym_PLUS] = ACTIONS(4403), - [anon_sym_DASH] = ACTIONS(4403), - [anon_sym_STAR] = ACTIONS(4403), - [anon_sym_struct] = ACTIONS(4403), - [anon_sym_union] = ACTIONS(4403), - [anon_sym_pub] = ACTIONS(4403), - [anon_sym_mut] = ACTIONS(4403), - [anon_sym_enum] = ACTIONS(4403), - [anon_sym_interface] = ACTIONS(4403), - [anon_sym_QMARK] = ACTIONS(4403), - [anon_sym_BANG] = ACTIONS(4403), - [anon_sym_go] = ACTIONS(4403), - [anon_sym_spawn] = ACTIONS(4403), - [anon_sym_json_DOTdecode] = ACTIONS(4403), - [anon_sym_LBRACK2] = ACTIONS(4403), - [anon_sym_TILDE] = ACTIONS(4403), - [anon_sym_CARET] = ACTIONS(4403), - [anon_sym_AMP] = ACTIONS(4403), - [anon_sym_LT_DASH] = ACTIONS(4403), - [sym_none] = ACTIONS(4403), - [sym_true] = ACTIONS(4403), - [sym_false] = ACTIONS(4403), - [sym_nil] = ACTIONS(4403), - [anon_sym_if] = ACTIONS(4403), - [anon_sym_DOLLARif] = ACTIONS(4403), - [anon_sym_match] = ACTIONS(4403), - [anon_sym_select] = ACTIONS(4403), - [anon_sym_lock] = ACTIONS(4403), - [anon_sym_rlock] = ACTIONS(4403), - [anon_sym_unsafe] = ACTIONS(4403), - [anon_sym_sql] = ACTIONS(4403), - [sym_int_literal] = ACTIONS(4403), - [sym_float_literal] = ACTIONS(4403), - [sym_rune_literal] = ACTIONS(4403), - [sym_pseudo_compile_time_identifier] = ACTIONS(4403), - [anon_sym_shared] = ACTIONS(4403), - [anon_sym_map_LBRACK] = ACTIONS(4403), - [anon_sym_chan] = ACTIONS(4403), - [anon_sym_thread] = ACTIONS(4403), - [anon_sym_atomic] = ACTIONS(4403), - [anon_sym_assert] = ACTIONS(4403), - [anon_sym_defer] = ACTIONS(4403), - [anon_sym_goto] = ACTIONS(4403), - [anon_sym_break] = ACTIONS(4403), - [anon_sym_continue] = ACTIONS(4403), - [anon_sym_return] = ACTIONS(4403), - [anon_sym_DOLLARfor] = ACTIONS(4403), - [anon_sym_for] = ACTIONS(4403), - [anon_sym_POUND] = ACTIONS(4403), - [anon_sym_asm] = ACTIONS(4403), - [anon_sym_AT_LBRACK] = ACTIONS(4403), - [sym___double_quote] = ACTIONS(4403), - [sym___single_quote] = ACTIONS(4403), - [sym___c_double_quote] = ACTIONS(4403), - [sym___c_single_quote] = ACTIONS(4403), - [sym___r_double_quote] = ACTIONS(4403), - [sym___r_single_quote] = ACTIONS(4403), + [anon_sym_DOT] = ACTIONS(4408), + [anon_sym_LBRACE] = ACTIONS(4408), + [anon_sym_const] = ACTIONS(4408), + [anon_sym_LPAREN] = ACTIONS(4408), + [anon_sym___global] = ACTIONS(4408), + [anon_sym_type] = ACTIONS(4408), + [anon_sym_fn] = ACTIONS(4408), + [anon_sym_PLUS] = ACTIONS(4408), + [anon_sym_DASH] = ACTIONS(4408), + [anon_sym_STAR] = ACTIONS(4408), + [anon_sym_struct] = ACTIONS(4408), + [anon_sym_union] = ACTIONS(4408), + [anon_sym_pub] = ACTIONS(4408), + [anon_sym_mut] = ACTIONS(4408), + [anon_sym_enum] = ACTIONS(4408), + [anon_sym_interface] = ACTIONS(4408), + [anon_sym_QMARK] = ACTIONS(4408), + [anon_sym_BANG] = ACTIONS(4408), + [anon_sym_go] = ACTIONS(4408), + [anon_sym_spawn] = ACTIONS(4408), + [anon_sym_json_DOTdecode] = ACTIONS(4408), + [anon_sym_LBRACK2] = ACTIONS(4408), + [anon_sym_TILDE] = ACTIONS(4408), + [anon_sym_CARET] = ACTIONS(4408), + [anon_sym_AMP] = ACTIONS(4408), + [anon_sym_LT_DASH] = ACTIONS(4408), + [sym_none] = ACTIONS(4408), + [sym_true] = ACTIONS(4408), + [sym_false] = ACTIONS(4408), + [sym_nil] = ACTIONS(4408), + [anon_sym_if] = ACTIONS(4408), + [anon_sym_DOLLARif] = ACTIONS(4408), + [anon_sym_match] = ACTIONS(4408), + [anon_sym_select] = ACTIONS(4408), + [anon_sym_lock] = ACTIONS(4408), + [anon_sym_rlock] = ACTIONS(4408), + [anon_sym_unsafe] = ACTIONS(4408), + [anon_sym_sql] = ACTIONS(4408), + [sym_int_literal] = ACTIONS(4408), + [sym_float_literal] = ACTIONS(4408), + [sym_rune_literal] = ACTIONS(4408), + [sym_pseudo_compile_time_identifier] = ACTIONS(4408), + [anon_sym_shared] = ACTIONS(4408), + [anon_sym_map_LBRACK] = ACTIONS(4408), + [anon_sym_chan] = ACTIONS(4408), + [anon_sym_thread] = ACTIONS(4408), + [anon_sym_atomic] = ACTIONS(4408), + [anon_sym_assert] = ACTIONS(4408), + [anon_sym_defer] = ACTIONS(4408), + [anon_sym_goto] = ACTIONS(4408), + [anon_sym_break] = ACTIONS(4408), + [anon_sym_continue] = ACTIONS(4408), + [anon_sym_return] = ACTIONS(4408), + [anon_sym_DOLLARfor] = ACTIONS(4408), + [anon_sym_for] = ACTIONS(4408), + [anon_sym_POUND] = ACTIONS(4408), + [anon_sym_asm] = ACTIONS(4408), + [anon_sym_AT_LBRACK] = ACTIONS(4408), + [sym___double_quote] = ACTIONS(4408), + [sym___single_quote] = ACTIONS(4408), + [sym___c_double_quote] = ACTIONS(4408), + [sym___c_single_quote] = ACTIONS(4408), + [sym___r_double_quote] = ACTIONS(4408), + [sym___r_single_quote] = ACTIONS(4408), }, [1565] = { - [ts_builtin_sym_end] = ACTIONS(4405), - [sym_identifier] = ACTIONS(4407), - [anon_sym_LF] = ACTIONS(4407), - [anon_sym_CR] = ACTIONS(4407), - [anon_sym_CR_LF] = ACTIONS(4407), + [ts_builtin_sym_end] = ACTIONS(4410), + [sym_identifier] = ACTIONS(4412), + [anon_sym_LF] = ACTIONS(4412), + [anon_sym_CR] = ACTIONS(4412), + [anon_sym_CR_LF] = ACTIONS(4412), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4407), - [anon_sym_LBRACE] = ACTIONS(4407), - [anon_sym_const] = ACTIONS(4407), - [anon_sym_LPAREN] = ACTIONS(4407), - [anon_sym___global] = ACTIONS(4407), - [anon_sym_type] = ACTIONS(4407), - [anon_sym_fn] = ACTIONS(4407), - [anon_sym_PLUS] = ACTIONS(4407), - [anon_sym_DASH] = ACTIONS(4407), - [anon_sym_STAR] = ACTIONS(4407), - [anon_sym_struct] = ACTIONS(4407), - [anon_sym_union] = ACTIONS(4407), - [anon_sym_pub] = ACTIONS(4407), - [anon_sym_mut] = ACTIONS(4407), - [anon_sym_enum] = ACTIONS(4407), - [anon_sym_interface] = ACTIONS(4407), - [anon_sym_QMARK] = ACTIONS(4407), - [anon_sym_BANG] = ACTIONS(4407), - [anon_sym_go] = ACTIONS(4407), - [anon_sym_spawn] = ACTIONS(4407), - [anon_sym_json_DOTdecode] = ACTIONS(4407), - [anon_sym_LBRACK2] = ACTIONS(4407), - [anon_sym_TILDE] = ACTIONS(4407), - [anon_sym_CARET] = ACTIONS(4407), - [anon_sym_AMP] = ACTIONS(4407), - [anon_sym_LT_DASH] = ACTIONS(4407), - [sym_none] = ACTIONS(4407), - [sym_true] = ACTIONS(4407), - [sym_false] = ACTIONS(4407), - [sym_nil] = ACTIONS(4407), - [anon_sym_if] = ACTIONS(4407), - [anon_sym_DOLLARif] = ACTIONS(4407), - [anon_sym_match] = ACTIONS(4407), - [anon_sym_select] = ACTIONS(4407), - [anon_sym_lock] = ACTIONS(4407), - [anon_sym_rlock] = ACTIONS(4407), - [anon_sym_unsafe] = ACTIONS(4407), - [anon_sym_sql] = ACTIONS(4407), - [sym_int_literal] = ACTIONS(4407), - [sym_float_literal] = ACTIONS(4407), - [sym_rune_literal] = ACTIONS(4407), - [sym_pseudo_compile_time_identifier] = ACTIONS(4407), - [anon_sym_shared] = ACTIONS(4407), - [anon_sym_map_LBRACK] = ACTIONS(4407), - [anon_sym_chan] = ACTIONS(4407), - [anon_sym_thread] = ACTIONS(4407), - [anon_sym_atomic] = ACTIONS(4407), - [anon_sym_assert] = ACTIONS(4407), - [anon_sym_defer] = ACTIONS(4407), - [anon_sym_goto] = ACTIONS(4407), - [anon_sym_break] = ACTIONS(4407), - [anon_sym_continue] = ACTIONS(4407), - [anon_sym_return] = ACTIONS(4407), - [anon_sym_DOLLARfor] = ACTIONS(4407), - [anon_sym_for] = ACTIONS(4407), - [anon_sym_POUND] = ACTIONS(4407), - [anon_sym_asm] = ACTIONS(4407), - [anon_sym_AT_LBRACK] = ACTIONS(4407), - [sym___double_quote] = ACTIONS(4407), - [sym___single_quote] = ACTIONS(4407), - [sym___c_double_quote] = ACTIONS(4407), - [sym___c_single_quote] = ACTIONS(4407), - [sym___r_double_quote] = ACTIONS(4407), - [sym___r_single_quote] = ACTIONS(4407), + [anon_sym_DOT] = ACTIONS(4412), + [anon_sym_LBRACE] = ACTIONS(4412), + [anon_sym_const] = ACTIONS(4412), + [anon_sym_LPAREN] = ACTIONS(4412), + [anon_sym___global] = ACTIONS(4412), + [anon_sym_type] = ACTIONS(4412), + [anon_sym_fn] = ACTIONS(4412), + [anon_sym_PLUS] = ACTIONS(4412), + [anon_sym_DASH] = ACTIONS(4412), + [anon_sym_STAR] = ACTIONS(4412), + [anon_sym_struct] = ACTIONS(4412), + [anon_sym_union] = ACTIONS(4412), + [anon_sym_pub] = ACTIONS(4412), + [anon_sym_mut] = ACTIONS(4412), + [anon_sym_enum] = ACTIONS(4412), + [anon_sym_interface] = ACTIONS(4412), + [anon_sym_QMARK] = ACTIONS(4412), + [anon_sym_BANG] = ACTIONS(4412), + [anon_sym_go] = ACTIONS(4412), + [anon_sym_spawn] = ACTIONS(4412), + [anon_sym_json_DOTdecode] = ACTIONS(4412), + [anon_sym_LBRACK2] = ACTIONS(4412), + [anon_sym_TILDE] = ACTIONS(4412), + [anon_sym_CARET] = ACTIONS(4412), + [anon_sym_AMP] = ACTIONS(4412), + [anon_sym_LT_DASH] = ACTIONS(4412), + [sym_none] = ACTIONS(4412), + [sym_true] = ACTIONS(4412), + [sym_false] = ACTIONS(4412), + [sym_nil] = ACTIONS(4412), + [anon_sym_if] = ACTIONS(4412), + [anon_sym_DOLLARif] = ACTIONS(4412), + [anon_sym_match] = ACTIONS(4412), + [anon_sym_select] = ACTIONS(4412), + [anon_sym_lock] = ACTIONS(4412), + [anon_sym_rlock] = ACTIONS(4412), + [anon_sym_unsafe] = ACTIONS(4412), + [anon_sym_sql] = ACTIONS(4412), + [sym_int_literal] = ACTIONS(4412), + [sym_float_literal] = ACTIONS(4412), + [sym_rune_literal] = ACTIONS(4412), + [sym_pseudo_compile_time_identifier] = ACTIONS(4412), + [anon_sym_shared] = ACTIONS(4412), + [anon_sym_map_LBRACK] = ACTIONS(4412), + [anon_sym_chan] = ACTIONS(4412), + [anon_sym_thread] = ACTIONS(4412), + [anon_sym_atomic] = ACTIONS(4412), + [anon_sym_assert] = ACTIONS(4412), + [anon_sym_defer] = ACTIONS(4412), + [anon_sym_goto] = ACTIONS(4412), + [anon_sym_break] = ACTIONS(4412), + [anon_sym_continue] = ACTIONS(4412), + [anon_sym_return] = ACTIONS(4412), + [anon_sym_DOLLARfor] = ACTIONS(4412), + [anon_sym_for] = ACTIONS(4412), + [anon_sym_POUND] = ACTIONS(4412), + [anon_sym_asm] = ACTIONS(4412), + [anon_sym_AT_LBRACK] = ACTIONS(4412), + [sym___double_quote] = ACTIONS(4412), + [sym___single_quote] = ACTIONS(4412), + [sym___c_double_quote] = ACTIONS(4412), + [sym___c_single_quote] = ACTIONS(4412), + [sym___r_double_quote] = ACTIONS(4412), + [sym___r_single_quote] = ACTIONS(4412), }, [1566] = { - [ts_builtin_sym_end] = ACTIONS(4409), - [sym_identifier] = ACTIONS(4411), - [anon_sym_LF] = ACTIONS(4411), - [anon_sym_CR] = ACTIONS(4411), - [anon_sym_CR_LF] = ACTIONS(4411), + [ts_builtin_sym_end] = ACTIONS(4414), + [sym_identifier] = ACTIONS(4416), + [anon_sym_LF] = ACTIONS(4416), + [anon_sym_CR] = ACTIONS(4416), + [anon_sym_CR_LF] = ACTIONS(4416), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4411), - [anon_sym_LBRACE] = ACTIONS(4411), - [anon_sym_const] = ACTIONS(4411), - [anon_sym_LPAREN] = ACTIONS(4411), - [anon_sym___global] = ACTIONS(4411), - [anon_sym_type] = ACTIONS(4411), - [anon_sym_fn] = ACTIONS(4411), - [anon_sym_PLUS] = ACTIONS(4411), - [anon_sym_DASH] = ACTIONS(4411), - [anon_sym_STAR] = ACTIONS(4411), - [anon_sym_struct] = ACTIONS(4411), - [anon_sym_union] = ACTIONS(4411), - [anon_sym_pub] = ACTIONS(4411), - [anon_sym_mut] = ACTIONS(4411), - [anon_sym_enum] = ACTIONS(4411), - [anon_sym_interface] = ACTIONS(4411), - [anon_sym_QMARK] = ACTIONS(4411), - [anon_sym_BANG] = ACTIONS(4411), - [anon_sym_go] = ACTIONS(4411), - [anon_sym_spawn] = ACTIONS(4411), - [anon_sym_json_DOTdecode] = ACTIONS(4411), - [anon_sym_LBRACK2] = ACTIONS(4411), - [anon_sym_TILDE] = ACTIONS(4411), - [anon_sym_CARET] = ACTIONS(4411), - [anon_sym_AMP] = ACTIONS(4411), - [anon_sym_LT_DASH] = ACTIONS(4411), - [sym_none] = ACTIONS(4411), - [sym_true] = ACTIONS(4411), - [sym_false] = ACTIONS(4411), - [sym_nil] = ACTIONS(4411), - [anon_sym_if] = ACTIONS(4411), - [anon_sym_DOLLARif] = ACTIONS(4411), - [anon_sym_match] = ACTIONS(4411), - [anon_sym_select] = ACTIONS(4411), - [anon_sym_lock] = ACTIONS(4411), - [anon_sym_rlock] = ACTIONS(4411), - [anon_sym_unsafe] = ACTIONS(4411), - [anon_sym_sql] = ACTIONS(4411), - [sym_int_literal] = ACTIONS(4411), - [sym_float_literal] = ACTIONS(4411), - [sym_rune_literal] = ACTIONS(4411), - [sym_pseudo_compile_time_identifier] = ACTIONS(4411), - [anon_sym_shared] = ACTIONS(4411), - [anon_sym_map_LBRACK] = ACTIONS(4411), - [anon_sym_chan] = ACTIONS(4411), - [anon_sym_thread] = ACTIONS(4411), - [anon_sym_atomic] = ACTIONS(4411), - [anon_sym_assert] = ACTIONS(4411), - [anon_sym_defer] = ACTIONS(4411), - [anon_sym_goto] = ACTIONS(4411), - [anon_sym_break] = ACTIONS(4411), - [anon_sym_continue] = ACTIONS(4411), - [anon_sym_return] = ACTIONS(4411), - [anon_sym_DOLLARfor] = ACTIONS(4411), - [anon_sym_for] = ACTIONS(4411), - [anon_sym_POUND] = ACTIONS(4411), - [anon_sym_asm] = ACTIONS(4411), - [anon_sym_AT_LBRACK] = ACTIONS(4411), - [sym___double_quote] = ACTIONS(4411), - [sym___single_quote] = ACTIONS(4411), - [sym___c_double_quote] = ACTIONS(4411), - [sym___c_single_quote] = ACTIONS(4411), - [sym___r_double_quote] = ACTIONS(4411), - [sym___r_single_quote] = ACTIONS(4411), + [anon_sym_DOT] = ACTIONS(4416), + [anon_sym_LBRACE] = ACTIONS(4416), + [anon_sym_const] = ACTIONS(4416), + [anon_sym_LPAREN] = ACTIONS(4416), + [anon_sym___global] = ACTIONS(4416), + [anon_sym_type] = ACTIONS(4416), + [anon_sym_fn] = ACTIONS(4416), + [anon_sym_PLUS] = ACTIONS(4416), + [anon_sym_DASH] = ACTIONS(4416), + [anon_sym_STAR] = ACTIONS(4416), + [anon_sym_struct] = ACTIONS(4416), + [anon_sym_union] = ACTIONS(4416), + [anon_sym_pub] = ACTIONS(4416), + [anon_sym_mut] = ACTIONS(4416), + [anon_sym_enum] = ACTIONS(4416), + [anon_sym_interface] = ACTIONS(4416), + [anon_sym_QMARK] = ACTIONS(4416), + [anon_sym_BANG] = ACTIONS(4416), + [anon_sym_go] = ACTIONS(4416), + [anon_sym_spawn] = ACTIONS(4416), + [anon_sym_json_DOTdecode] = ACTIONS(4416), + [anon_sym_LBRACK2] = ACTIONS(4416), + [anon_sym_TILDE] = ACTIONS(4416), + [anon_sym_CARET] = ACTIONS(4416), + [anon_sym_AMP] = ACTIONS(4416), + [anon_sym_LT_DASH] = ACTIONS(4416), + [sym_none] = ACTIONS(4416), + [sym_true] = ACTIONS(4416), + [sym_false] = ACTIONS(4416), + [sym_nil] = ACTIONS(4416), + [anon_sym_if] = ACTIONS(4416), + [anon_sym_DOLLARif] = ACTIONS(4416), + [anon_sym_match] = ACTIONS(4416), + [anon_sym_select] = ACTIONS(4416), + [anon_sym_lock] = ACTIONS(4416), + [anon_sym_rlock] = ACTIONS(4416), + [anon_sym_unsafe] = ACTIONS(4416), + [anon_sym_sql] = ACTIONS(4416), + [sym_int_literal] = ACTIONS(4416), + [sym_float_literal] = ACTIONS(4416), + [sym_rune_literal] = ACTIONS(4416), + [sym_pseudo_compile_time_identifier] = ACTIONS(4416), + [anon_sym_shared] = ACTIONS(4416), + [anon_sym_map_LBRACK] = ACTIONS(4416), + [anon_sym_chan] = ACTIONS(4416), + [anon_sym_thread] = ACTIONS(4416), + [anon_sym_atomic] = ACTIONS(4416), + [anon_sym_assert] = ACTIONS(4416), + [anon_sym_defer] = ACTIONS(4416), + [anon_sym_goto] = ACTIONS(4416), + [anon_sym_break] = ACTIONS(4416), + [anon_sym_continue] = ACTIONS(4416), + [anon_sym_return] = ACTIONS(4416), + [anon_sym_DOLLARfor] = ACTIONS(4416), + [anon_sym_for] = ACTIONS(4416), + [anon_sym_POUND] = ACTIONS(4416), + [anon_sym_asm] = ACTIONS(4416), + [anon_sym_AT_LBRACK] = ACTIONS(4416), + [sym___double_quote] = ACTIONS(4416), + [sym___single_quote] = ACTIONS(4416), + [sym___c_double_quote] = ACTIONS(4416), + [sym___c_single_quote] = ACTIONS(4416), + [sym___r_double_quote] = ACTIONS(4416), + [sym___r_single_quote] = ACTIONS(4416), }, [1567] = { - [ts_builtin_sym_end] = ACTIONS(4413), - [sym_identifier] = ACTIONS(4415), - [anon_sym_LF] = ACTIONS(4415), - [anon_sym_CR] = ACTIONS(4415), - [anon_sym_CR_LF] = ACTIONS(4415), + [ts_builtin_sym_end] = ACTIONS(4418), + [sym_identifier] = ACTIONS(4420), + [anon_sym_LF] = ACTIONS(4420), + [anon_sym_CR] = ACTIONS(4420), + [anon_sym_CR_LF] = ACTIONS(4420), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4415), - [anon_sym_LBRACE] = ACTIONS(4415), - [anon_sym_const] = ACTIONS(4415), - [anon_sym_LPAREN] = ACTIONS(4415), - [anon_sym___global] = ACTIONS(4415), - [anon_sym_type] = ACTIONS(4415), - [anon_sym_fn] = ACTIONS(4415), - [anon_sym_PLUS] = ACTIONS(4415), - [anon_sym_DASH] = ACTIONS(4415), - [anon_sym_STAR] = ACTIONS(4415), - [anon_sym_struct] = ACTIONS(4415), - [anon_sym_union] = ACTIONS(4415), - [anon_sym_pub] = ACTIONS(4415), - [anon_sym_mut] = ACTIONS(4415), - [anon_sym_enum] = ACTIONS(4415), - [anon_sym_interface] = ACTIONS(4415), - [anon_sym_QMARK] = ACTIONS(4415), - [anon_sym_BANG] = ACTIONS(4415), - [anon_sym_go] = ACTIONS(4415), - [anon_sym_spawn] = ACTIONS(4415), - [anon_sym_json_DOTdecode] = ACTIONS(4415), - [anon_sym_LBRACK2] = ACTIONS(4415), - [anon_sym_TILDE] = ACTIONS(4415), - [anon_sym_CARET] = ACTIONS(4415), - [anon_sym_AMP] = ACTIONS(4415), - [anon_sym_LT_DASH] = ACTIONS(4415), - [sym_none] = ACTIONS(4415), - [sym_true] = ACTIONS(4415), - [sym_false] = ACTIONS(4415), - [sym_nil] = ACTIONS(4415), - [anon_sym_if] = ACTIONS(4415), - [anon_sym_DOLLARif] = ACTIONS(4415), - [anon_sym_match] = ACTIONS(4415), - [anon_sym_select] = ACTIONS(4415), - [anon_sym_lock] = ACTIONS(4415), - [anon_sym_rlock] = ACTIONS(4415), - [anon_sym_unsafe] = ACTIONS(4415), - [anon_sym_sql] = ACTIONS(4415), - [sym_int_literal] = ACTIONS(4415), - [sym_float_literal] = ACTIONS(4415), - [sym_rune_literal] = ACTIONS(4415), - [sym_pseudo_compile_time_identifier] = ACTIONS(4415), - [anon_sym_shared] = ACTIONS(4415), - [anon_sym_map_LBRACK] = ACTIONS(4415), - [anon_sym_chan] = ACTIONS(4415), - [anon_sym_thread] = ACTIONS(4415), - [anon_sym_atomic] = ACTIONS(4415), - [anon_sym_assert] = ACTIONS(4415), - [anon_sym_defer] = ACTIONS(4415), - [anon_sym_goto] = ACTIONS(4415), - [anon_sym_break] = ACTIONS(4415), - [anon_sym_continue] = ACTIONS(4415), - [anon_sym_return] = ACTIONS(4415), - [anon_sym_DOLLARfor] = ACTIONS(4415), - [anon_sym_for] = ACTIONS(4415), - [anon_sym_POUND] = ACTIONS(4415), - [anon_sym_asm] = ACTIONS(4415), - [anon_sym_AT_LBRACK] = ACTIONS(4415), - [sym___double_quote] = ACTIONS(4415), - [sym___single_quote] = ACTIONS(4415), - [sym___c_double_quote] = ACTIONS(4415), - [sym___c_single_quote] = ACTIONS(4415), - [sym___r_double_quote] = ACTIONS(4415), - [sym___r_single_quote] = ACTIONS(4415), + [anon_sym_DOT] = ACTIONS(4420), + [anon_sym_LBRACE] = ACTIONS(4420), + [anon_sym_const] = ACTIONS(4420), + [anon_sym_LPAREN] = ACTIONS(4420), + [anon_sym___global] = ACTIONS(4420), + [anon_sym_type] = ACTIONS(4420), + [anon_sym_fn] = ACTIONS(4420), + [anon_sym_PLUS] = ACTIONS(4420), + [anon_sym_DASH] = ACTIONS(4420), + [anon_sym_STAR] = ACTIONS(4420), + [anon_sym_struct] = ACTIONS(4420), + [anon_sym_union] = ACTIONS(4420), + [anon_sym_pub] = ACTIONS(4420), + [anon_sym_mut] = ACTIONS(4420), + [anon_sym_enum] = ACTIONS(4420), + [anon_sym_interface] = ACTIONS(4420), + [anon_sym_QMARK] = ACTIONS(4420), + [anon_sym_BANG] = ACTIONS(4420), + [anon_sym_go] = ACTIONS(4420), + [anon_sym_spawn] = ACTIONS(4420), + [anon_sym_json_DOTdecode] = ACTIONS(4420), + [anon_sym_LBRACK2] = ACTIONS(4420), + [anon_sym_TILDE] = ACTIONS(4420), + [anon_sym_CARET] = ACTIONS(4420), + [anon_sym_AMP] = ACTIONS(4420), + [anon_sym_LT_DASH] = ACTIONS(4420), + [sym_none] = ACTIONS(4420), + [sym_true] = ACTIONS(4420), + [sym_false] = ACTIONS(4420), + [sym_nil] = ACTIONS(4420), + [anon_sym_if] = ACTIONS(4420), + [anon_sym_DOLLARif] = ACTIONS(4420), + [anon_sym_match] = ACTIONS(4420), + [anon_sym_select] = ACTIONS(4420), + [anon_sym_lock] = ACTIONS(4420), + [anon_sym_rlock] = ACTIONS(4420), + [anon_sym_unsafe] = ACTIONS(4420), + [anon_sym_sql] = ACTIONS(4420), + [sym_int_literal] = ACTIONS(4420), + [sym_float_literal] = ACTIONS(4420), + [sym_rune_literal] = ACTIONS(4420), + [sym_pseudo_compile_time_identifier] = ACTIONS(4420), + [anon_sym_shared] = ACTIONS(4420), + [anon_sym_map_LBRACK] = ACTIONS(4420), + [anon_sym_chan] = ACTIONS(4420), + [anon_sym_thread] = ACTIONS(4420), + [anon_sym_atomic] = ACTIONS(4420), + [anon_sym_assert] = ACTIONS(4420), + [anon_sym_defer] = ACTIONS(4420), + [anon_sym_goto] = ACTIONS(4420), + [anon_sym_break] = ACTIONS(4420), + [anon_sym_continue] = ACTIONS(4420), + [anon_sym_return] = ACTIONS(4420), + [anon_sym_DOLLARfor] = ACTIONS(4420), + [anon_sym_for] = ACTIONS(4420), + [anon_sym_POUND] = ACTIONS(4420), + [anon_sym_asm] = ACTIONS(4420), + [anon_sym_AT_LBRACK] = ACTIONS(4420), + [sym___double_quote] = ACTIONS(4420), + [sym___single_quote] = ACTIONS(4420), + [sym___c_double_quote] = ACTIONS(4420), + [sym___c_single_quote] = ACTIONS(4420), + [sym___r_double_quote] = ACTIONS(4420), + [sym___r_single_quote] = ACTIONS(4420), }, [1568] = { - [ts_builtin_sym_end] = ACTIONS(4417), - [sym_identifier] = ACTIONS(4419), - [anon_sym_LF] = ACTIONS(4419), - [anon_sym_CR] = ACTIONS(4419), - [anon_sym_CR_LF] = ACTIONS(4419), + [ts_builtin_sym_end] = ACTIONS(4422), + [sym_identifier] = ACTIONS(4424), + [anon_sym_LF] = ACTIONS(4424), + [anon_sym_CR] = ACTIONS(4424), + [anon_sym_CR_LF] = ACTIONS(4424), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4419), - [anon_sym_LBRACE] = ACTIONS(4419), - [anon_sym_const] = ACTIONS(4419), - [anon_sym_LPAREN] = ACTIONS(4419), - [anon_sym___global] = ACTIONS(4419), - [anon_sym_type] = ACTIONS(4419), - [anon_sym_fn] = ACTIONS(4419), - [anon_sym_PLUS] = ACTIONS(4419), - [anon_sym_DASH] = ACTIONS(4419), - [anon_sym_STAR] = ACTIONS(4419), - [anon_sym_struct] = ACTIONS(4419), - [anon_sym_union] = ACTIONS(4419), - [anon_sym_pub] = ACTIONS(4419), - [anon_sym_mut] = ACTIONS(4419), - [anon_sym_enum] = ACTIONS(4419), - [anon_sym_interface] = ACTIONS(4419), - [anon_sym_QMARK] = ACTIONS(4419), - [anon_sym_BANG] = ACTIONS(4419), - [anon_sym_go] = ACTIONS(4419), - [anon_sym_spawn] = ACTIONS(4419), - [anon_sym_json_DOTdecode] = ACTIONS(4419), - [anon_sym_LBRACK2] = ACTIONS(4419), - [anon_sym_TILDE] = ACTIONS(4419), - [anon_sym_CARET] = ACTIONS(4419), - [anon_sym_AMP] = ACTIONS(4419), - [anon_sym_LT_DASH] = ACTIONS(4419), - [sym_none] = ACTIONS(4419), - [sym_true] = ACTIONS(4419), - [sym_false] = ACTIONS(4419), - [sym_nil] = ACTIONS(4419), - [anon_sym_if] = ACTIONS(4419), - [anon_sym_DOLLARif] = ACTIONS(4419), - [anon_sym_match] = ACTIONS(4419), - [anon_sym_select] = ACTIONS(4419), - [anon_sym_lock] = ACTIONS(4419), - [anon_sym_rlock] = ACTIONS(4419), - [anon_sym_unsafe] = ACTIONS(4419), - [anon_sym_sql] = ACTIONS(4419), - [sym_int_literal] = ACTIONS(4419), - [sym_float_literal] = ACTIONS(4419), - [sym_rune_literal] = ACTIONS(4419), - [sym_pseudo_compile_time_identifier] = ACTIONS(4419), - [anon_sym_shared] = ACTIONS(4419), - [anon_sym_map_LBRACK] = ACTIONS(4419), - [anon_sym_chan] = ACTIONS(4419), - [anon_sym_thread] = ACTIONS(4419), - [anon_sym_atomic] = ACTIONS(4419), - [anon_sym_assert] = ACTIONS(4419), - [anon_sym_defer] = ACTIONS(4419), - [anon_sym_goto] = ACTIONS(4419), - [anon_sym_break] = ACTIONS(4419), - [anon_sym_continue] = ACTIONS(4419), - [anon_sym_return] = ACTIONS(4419), - [anon_sym_DOLLARfor] = ACTIONS(4419), - [anon_sym_for] = ACTIONS(4419), - [anon_sym_POUND] = ACTIONS(4419), - [anon_sym_asm] = ACTIONS(4419), - [anon_sym_AT_LBRACK] = ACTIONS(4419), - [sym___double_quote] = ACTIONS(4419), - [sym___single_quote] = ACTIONS(4419), - [sym___c_double_quote] = ACTIONS(4419), - [sym___c_single_quote] = ACTIONS(4419), - [sym___r_double_quote] = ACTIONS(4419), - [sym___r_single_quote] = ACTIONS(4419), + [anon_sym_DOT] = ACTIONS(4424), + [anon_sym_LBRACE] = ACTIONS(4424), + [anon_sym_const] = ACTIONS(4424), + [anon_sym_LPAREN] = ACTIONS(4424), + [anon_sym___global] = ACTIONS(4424), + [anon_sym_type] = ACTIONS(4424), + [anon_sym_fn] = ACTIONS(4424), + [anon_sym_PLUS] = ACTIONS(4424), + [anon_sym_DASH] = ACTIONS(4424), + [anon_sym_STAR] = ACTIONS(4424), + [anon_sym_struct] = ACTIONS(4424), + [anon_sym_union] = ACTIONS(4424), + [anon_sym_pub] = ACTIONS(4424), + [anon_sym_mut] = ACTIONS(4424), + [anon_sym_enum] = ACTIONS(4424), + [anon_sym_interface] = ACTIONS(4424), + [anon_sym_QMARK] = ACTIONS(4424), + [anon_sym_BANG] = ACTIONS(4424), + [anon_sym_go] = ACTIONS(4424), + [anon_sym_spawn] = ACTIONS(4424), + [anon_sym_json_DOTdecode] = ACTIONS(4424), + [anon_sym_LBRACK2] = ACTIONS(4424), + [anon_sym_TILDE] = ACTIONS(4424), + [anon_sym_CARET] = ACTIONS(4424), + [anon_sym_AMP] = ACTIONS(4424), + [anon_sym_LT_DASH] = ACTIONS(4424), + [sym_none] = ACTIONS(4424), + [sym_true] = ACTIONS(4424), + [sym_false] = ACTIONS(4424), + [sym_nil] = ACTIONS(4424), + [anon_sym_if] = ACTIONS(4424), + [anon_sym_DOLLARif] = ACTIONS(4424), + [anon_sym_match] = ACTIONS(4424), + [anon_sym_select] = ACTIONS(4424), + [anon_sym_lock] = ACTIONS(4424), + [anon_sym_rlock] = ACTIONS(4424), + [anon_sym_unsafe] = ACTIONS(4424), + [anon_sym_sql] = ACTIONS(4424), + [sym_int_literal] = ACTIONS(4424), + [sym_float_literal] = ACTIONS(4424), + [sym_rune_literal] = ACTIONS(4424), + [sym_pseudo_compile_time_identifier] = ACTIONS(4424), + [anon_sym_shared] = ACTIONS(4424), + [anon_sym_map_LBRACK] = ACTIONS(4424), + [anon_sym_chan] = ACTIONS(4424), + [anon_sym_thread] = ACTIONS(4424), + [anon_sym_atomic] = ACTIONS(4424), + [anon_sym_assert] = ACTIONS(4424), + [anon_sym_defer] = ACTIONS(4424), + [anon_sym_goto] = ACTIONS(4424), + [anon_sym_break] = ACTIONS(4424), + [anon_sym_continue] = ACTIONS(4424), + [anon_sym_return] = ACTIONS(4424), + [anon_sym_DOLLARfor] = ACTIONS(4424), + [anon_sym_for] = ACTIONS(4424), + [anon_sym_POUND] = ACTIONS(4424), + [anon_sym_asm] = ACTIONS(4424), + [anon_sym_AT_LBRACK] = ACTIONS(4424), + [sym___double_quote] = ACTIONS(4424), + [sym___single_quote] = ACTIONS(4424), + [sym___c_double_quote] = ACTIONS(4424), + [sym___c_single_quote] = ACTIONS(4424), + [sym___r_double_quote] = ACTIONS(4424), + [sym___r_single_quote] = ACTIONS(4424), }, [1569] = { - [ts_builtin_sym_end] = ACTIONS(4421), - [sym_identifier] = ACTIONS(4423), - [anon_sym_LF] = ACTIONS(4423), - [anon_sym_CR] = ACTIONS(4423), - [anon_sym_CR_LF] = ACTIONS(4423), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4423), - [anon_sym_LBRACE] = ACTIONS(4423), - [anon_sym_const] = ACTIONS(4423), - [anon_sym_LPAREN] = ACTIONS(4423), - [anon_sym___global] = ACTIONS(4423), - [anon_sym_type] = ACTIONS(4423), - [anon_sym_fn] = ACTIONS(4423), - [anon_sym_PLUS] = ACTIONS(4423), - [anon_sym_DASH] = ACTIONS(4423), - [anon_sym_STAR] = ACTIONS(4423), - [anon_sym_struct] = ACTIONS(4423), - [anon_sym_union] = ACTIONS(4423), - [anon_sym_pub] = ACTIONS(4423), - [anon_sym_mut] = ACTIONS(4423), - [anon_sym_enum] = ACTIONS(4423), - [anon_sym_interface] = ACTIONS(4423), - [anon_sym_QMARK] = ACTIONS(4423), - [anon_sym_BANG] = ACTIONS(4423), - [anon_sym_go] = ACTIONS(4423), - [anon_sym_spawn] = ACTIONS(4423), - [anon_sym_json_DOTdecode] = ACTIONS(4423), - [anon_sym_LBRACK2] = ACTIONS(4423), - [anon_sym_TILDE] = ACTIONS(4423), - [anon_sym_CARET] = ACTIONS(4423), - [anon_sym_AMP] = ACTIONS(4423), - [anon_sym_LT_DASH] = ACTIONS(4423), - [sym_none] = ACTIONS(4423), - [sym_true] = ACTIONS(4423), - [sym_false] = ACTIONS(4423), - [sym_nil] = ACTIONS(4423), - [anon_sym_if] = ACTIONS(4423), - [anon_sym_DOLLARif] = ACTIONS(4423), - [anon_sym_match] = ACTIONS(4423), - [anon_sym_select] = ACTIONS(4423), - [anon_sym_lock] = ACTIONS(4423), - [anon_sym_rlock] = ACTIONS(4423), - [anon_sym_unsafe] = ACTIONS(4423), - [anon_sym_sql] = ACTIONS(4423), - [sym_int_literal] = ACTIONS(4423), - [sym_float_literal] = ACTIONS(4423), - [sym_rune_literal] = ACTIONS(4423), - [sym_pseudo_compile_time_identifier] = ACTIONS(4423), - [anon_sym_shared] = ACTIONS(4423), - [anon_sym_map_LBRACK] = ACTIONS(4423), - [anon_sym_chan] = ACTIONS(4423), - [anon_sym_thread] = ACTIONS(4423), - [anon_sym_atomic] = ACTIONS(4423), - [anon_sym_assert] = ACTIONS(4423), - [anon_sym_defer] = ACTIONS(4423), - [anon_sym_goto] = ACTIONS(4423), - [anon_sym_break] = ACTIONS(4423), - [anon_sym_continue] = ACTIONS(4423), - [anon_sym_return] = ACTIONS(4423), - [anon_sym_DOLLARfor] = ACTIONS(4423), - [anon_sym_for] = ACTIONS(4423), - [anon_sym_POUND] = ACTIONS(4423), - [anon_sym_asm] = ACTIONS(4423), - [anon_sym_AT_LBRACK] = ACTIONS(4423), - [sym___double_quote] = ACTIONS(4423), - [sym___single_quote] = ACTIONS(4423), - [sym___c_double_quote] = ACTIONS(4423), - [sym___c_single_quote] = ACTIONS(4423), - [sym___r_double_quote] = ACTIONS(4423), - [sym___r_single_quote] = ACTIONS(4423), + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(563), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_RBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(559), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4426), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(559), }, [1570] = { - [ts_builtin_sym_end] = ACTIONS(4425), - [sym_identifier] = ACTIONS(4427), - [anon_sym_LF] = ACTIONS(4427), - [anon_sym_CR] = ACTIONS(4427), - [anon_sym_CR_LF] = ACTIONS(4427), + [ts_builtin_sym_end] = ACTIONS(4428), + [sym_identifier] = ACTIONS(4430), + [anon_sym_LF] = ACTIONS(4430), + [anon_sym_CR] = ACTIONS(4430), + [anon_sym_CR_LF] = ACTIONS(4430), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4427), - [anon_sym_LBRACE] = ACTIONS(4427), - [anon_sym_const] = ACTIONS(4427), - [anon_sym_LPAREN] = ACTIONS(4427), - [anon_sym___global] = ACTIONS(4427), - [anon_sym_type] = ACTIONS(4427), - [anon_sym_fn] = ACTIONS(4427), - [anon_sym_PLUS] = ACTIONS(4427), - [anon_sym_DASH] = ACTIONS(4427), - [anon_sym_STAR] = ACTIONS(4427), - [anon_sym_struct] = ACTIONS(4427), - [anon_sym_union] = ACTIONS(4427), - [anon_sym_pub] = ACTIONS(4427), - [anon_sym_mut] = ACTIONS(4427), - [anon_sym_enum] = ACTIONS(4427), - [anon_sym_interface] = ACTIONS(4427), - [anon_sym_QMARK] = ACTIONS(4427), - [anon_sym_BANG] = ACTIONS(4427), - [anon_sym_go] = ACTIONS(4427), - [anon_sym_spawn] = ACTIONS(4427), - [anon_sym_json_DOTdecode] = ACTIONS(4427), - [anon_sym_LBRACK2] = ACTIONS(4427), - [anon_sym_TILDE] = ACTIONS(4427), - [anon_sym_CARET] = ACTIONS(4427), - [anon_sym_AMP] = ACTIONS(4427), - [anon_sym_LT_DASH] = ACTIONS(4427), - [sym_none] = ACTIONS(4427), - [sym_true] = ACTIONS(4427), - [sym_false] = ACTIONS(4427), - [sym_nil] = ACTIONS(4427), - [anon_sym_if] = ACTIONS(4427), - [anon_sym_DOLLARif] = ACTIONS(4427), - [anon_sym_match] = ACTIONS(4427), - [anon_sym_select] = ACTIONS(4427), - [anon_sym_lock] = ACTIONS(4427), - [anon_sym_rlock] = ACTIONS(4427), - [anon_sym_unsafe] = ACTIONS(4427), - [anon_sym_sql] = ACTIONS(4427), - [sym_int_literal] = ACTIONS(4427), - [sym_float_literal] = ACTIONS(4427), - [sym_rune_literal] = ACTIONS(4427), - [sym_pseudo_compile_time_identifier] = ACTIONS(4427), - [anon_sym_shared] = ACTIONS(4427), - [anon_sym_map_LBRACK] = ACTIONS(4427), - [anon_sym_chan] = ACTIONS(4427), - [anon_sym_thread] = ACTIONS(4427), - [anon_sym_atomic] = ACTIONS(4427), - [anon_sym_assert] = ACTIONS(4427), - [anon_sym_defer] = ACTIONS(4427), - [anon_sym_goto] = ACTIONS(4427), - [anon_sym_break] = ACTIONS(4427), - [anon_sym_continue] = ACTIONS(4427), - [anon_sym_return] = ACTIONS(4427), - [anon_sym_DOLLARfor] = ACTIONS(4427), - [anon_sym_for] = ACTIONS(4427), - [anon_sym_POUND] = ACTIONS(4427), - [anon_sym_asm] = ACTIONS(4427), - [anon_sym_AT_LBRACK] = ACTIONS(4427), - [sym___double_quote] = ACTIONS(4427), - [sym___single_quote] = ACTIONS(4427), - [sym___c_double_quote] = ACTIONS(4427), - [sym___c_single_quote] = ACTIONS(4427), - [sym___r_double_quote] = ACTIONS(4427), - [sym___r_single_quote] = ACTIONS(4427), + [anon_sym_DOT] = ACTIONS(4430), + [anon_sym_LBRACE] = ACTIONS(4430), + [anon_sym_const] = ACTIONS(4430), + [anon_sym_LPAREN] = ACTIONS(4430), + [anon_sym___global] = ACTIONS(4430), + [anon_sym_type] = ACTIONS(4430), + [anon_sym_fn] = ACTIONS(4430), + [anon_sym_PLUS] = ACTIONS(4430), + [anon_sym_DASH] = ACTIONS(4430), + [anon_sym_STAR] = ACTIONS(4430), + [anon_sym_struct] = ACTIONS(4430), + [anon_sym_union] = ACTIONS(4430), + [anon_sym_pub] = ACTIONS(4430), + [anon_sym_mut] = ACTIONS(4430), + [anon_sym_enum] = ACTIONS(4430), + [anon_sym_interface] = ACTIONS(4430), + [anon_sym_QMARK] = ACTIONS(4430), + [anon_sym_BANG] = ACTIONS(4430), + [anon_sym_go] = ACTIONS(4430), + [anon_sym_spawn] = ACTIONS(4430), + [anon_sym_json_DOTdecode] = ACTIONS(4430), + [anon_sym_LBRACK2] = ACTIONS(4430), + [anon_sym_TILDE] = ACTIONS(4430), + [anon_sym_CARET] = ACTIONS(4430), + [anon_sym_AMP] = ACTIONS(4430), + [anon_sym_LT_DASH] = ACTIONS(4430), + [sym_none] = ACTIONS(4430), + [sym_true] = ACTIONS(4430), + [sym_false] = ACTIONS(4430), + [sym_nil] = ACTIONS(4430), + [anon_sym_if] = ACTIONS(4430), + [anon_sym_DOLLARif] = ACTIONS(4430), + [anon_sym_match] = ACTIONS(4430), + [anon_sym_select] = ACTIONS(4430), + [anon_sym_lock] = ACTIONS(4430), + [anon_sym_rlock] = ACTIONS(4430), + [anon_sym_unsafe] = ACTIONS(4430), + [anon_sym_sql] = ACTIONS(4430), + [sym_int_literal] = ACTIONS(4430), + [sym_float_literal] = ACTIONS(4430), + [sym_rune_literal] = ACTIONS(4430), + [sym_pseudo_compile_time_identifier] = ACTIONS(4430), + [anon_sym_shared] = ACTIONS(4430), + [anon_sym_map_LBRACK] = ACTIONS(4430), + [anon_sym_chan] = ACTIONS(4430), + [anon_sym_thread] = ACTIONS(4430), + [anon_sym_atomic] = ACTIONS(4430), + [anon_sym_assert] = ACTIONS(4430), + [anon_sym_defer] = ACTIONS(4430), + [anon_sym_goto] = ACTIONS(4430), + [anon_sym_break] = ACTIONS(4430), + [anon_sym_continue] = ACTIONS(4430), + [anon_sym_return] = ACTIONS(4430), + [anon_sym_DOLLARfor] = ACTIONS(4430), + [anon_sym_for] = ACTIONS(4430), + [anon_sym_POUND] = ACTIONS(4430), + [anon_sym_asm] = ACTIONS(4430), + [anon_sym_AT_LBRACK] = ACTIONS(4430), + [sym___double_quote] = ACTIONS(4430), + [sym___single_quote] = ACTIONS(4430), + [sym___c_double_quote] = ACTIONS(4430), + [sym___c_single_quote] = ACTIONS(4430), + [sym___r_double_quote] = ACTIONS(4430), + [sym___r_single_quote] = ACTIONS(4430), }, [1571] = { - [ts_builtin_sym_end] = ACTIONS(4429), - [sym_identifier] = ACTIONS(4431), - [anon_sym_LF] = ACTIONS(4431), - [anon_sym_CR] = ACTIONS(4431), - [anon_sym_CR_LF] = ACTIONS(4431), + [ts_builtin_sym_end] = ACTIONS(4432), + [sym_identifier] = ACTIONS(4434), + [anon_sym_LF] = ACTIONS(4434), + [anon_sym_CR] = ACTIONS(4434), + [anon_sym_CR_LF] = ACTIONS(4434), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4431), - [anon_sym_LBRACE] = ACTIONS(4431), - [anon_sym_const] = ACTIONS(4431), - [anon_sym_LPAREN] = ACTIONS(4431), - [anon_sym___global] = ACTIONS(4431), - [anon_sym_type] = ACTIONS(4431), - [anon_sym_fn] = ACTIONS(4431), - [anon_sym_PLUS] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_STAR] = ACTIONS(4431), - [anon_sym_struct] = ACTIONS(4431), - [anon_sym_union] = ACTIONS(4431), - [anon_sym_pub] = ACTIONS(4431), - [anon_sym_mut] = ACTIONS(4431), - [anon_sym_enum] = ACTIONS(4431), - [anon_sym_interface] = ACTIONS(4431), - [anon_sym_QMARK] = ACTIONS(4431), - [anon_sym_BANG] = ACTIONS(4431), - [anon_sym_go] = ACTIONS(4431), - [anon_sym_spawn] = ACTIONS(4431), - [anon_sym_json_DOTdecode] = ACTIONS(4431), - [anon_sym_LBRACK2] = ACTIONS(4431), - [anon_sym_TILDE] = ACTIONS(4431), - [anon_sym_CARET] = ACTIONS(4431), - [anon_sym_AMP] = ACTIONS(4431), - [anon_sym_LT_DASH] = ACTIONS(4431), - [sym_none] = ACTIONS(4431), - [sym_true] = ACTIONS(4431), - [sym_false] = ACTIONS(4431), - [sym_nil] = ACTIONS(4431), - [anon_sym_if] = ACTIONS(4431), - [anon_sym_DOLLARif] = ACTIONS(4431), - [anon_sym_match] = ACTIONS(4431), - [anon_sym_select] = ACTIONS(4431), - [anon_sym_lock] = ACTIONS(4431), - [anon_sym_rlock] = ACTIONS(4431), - [anon_sym_unsafe] = ACTIONS(4431), - [anon_sym_sql] = ACTIONS(4431), - [sym_int_literal] = ACTIONS(4431), - [sym_float_literal] = ACTIONS(4431), - [sym_rune_literal] = ACTIONS(4431), - [sym_pseudo_compile_time_identifier] = ACTIONS(4431), - [anon_sym_shared] = ACTIONS(4431), - [anon_sym_map_LBRACK] = ACTIONS(4431), - [anon_sym_chan] = ACTIONS(4431), - [anon_sym_thread] = ACTIONS(4431), - [anon_sym_atomic] = ACTIONS(4431), - [anon_sym_assert] = ACTIONS(4431), - [anon_sym_defer] = ACTIONS(4431), - [anon_sym_goto] = ACTIONS(4431), - [anon_sym_break] = ACTIONS(4431), - [anon_sym_continue] = ACTIONS(4431), - [anon_sym_return] = ACTIONS(4431), - [anon_sym_DOLLARfor] = ACTIONS(4431), - [anon_sym_for] = ACTIONS(4431), - [anon_sym_POUND] = ACTIONS(4431), - [anon_sym_asm] = ACTIONS(4431), - [anon_sym_AT_LBRACK] = ACTIONS(4431), - [sym___double_quote] = ACTIONS(4431), - [sym___single_quote] = ACTIONS(4431), - [sym___c_double_quote] = ACTIONS(4431), - [sym___c_single_quote] = ACTIONS(4431), - [sym___r_double_quote] = ACTIONS(4431), - [sym___r_single_quote] = ACTIONS(4431), + [anon_sym_DOT] = ACTIONS(4434), + [anon_sym_LBRACE] = ACTIONS(4434), + [anon_sym_const] = ACTIONS(4434), + [anon_sym_LPAREN] = ACTIONS(4434), + [anon_sym___global] = ACTIONS(4434), + [anon_sym_type] = ACTIONS(4434), + [anon_sym_fn] = ACTIONS(4434), + [anon_sym_PLUS] = ACTIONS(4434), + [anon_sym_DASH] = ACTIONS(4434), + [anon_sym_STAR] = ACTIONS(4434), + [anon_sym_struct] = ACTIONS(4434), + [anon_sym_union] = ACTIONS(4434), + [anon_sym_pub] = ACTIONS(4434), + [anon_sym_mut] = ACTIONS(4434), + [anon_sym_enum] = ACTIONS(4434), + [anon_sym_interface] = ACTIONS(4434), + [anon_sym_QMARK] = ACTIONS(4434), + [anon_sym_BANG] = ACTIONS(4434), + [anon_sym_go] = ACTIONS(4434), + [anon_sym_spawn] = ACTIONS(4434), + [anon_sym_json_DOTdecode] = ACTIONS(4434), + [anon_sym_LBRACK2] = ACTIONS(4434), + [anon_sym_TILDE] = ACTIONS(4434), + [anon_sym_CARET] = ACTIONS(4434), + [anon_sym_AMP] = ACTIONS(4434), + [anon_sym_LT_DASH] = ACTIONS(4434), + [sym_none] = ACTIONS(4434), + [sym_true] = ACTIONS(4434), + [sym_false] = ACTIONS(4434), + [sym_nil] = ACTIONS(4434), + [anon_sym_if] = ACTIONS(4434), + [anon_sym_DOLLARif] = ACTIONS(4434), + [anon_sym_match] = ACTIONS(4434), + [anon_sym_select] = ACTIONS(4434), + [anon_sym_lock] = ACTIONS(4434), + [anon_sym_rlock] = ACTIONS(4434), + [anon_sym_unsafe] = ACTIONS(4434), + [anon_sym_sql] = ACTIONS(4434), + [sym_int_literal] = ACTIONS(4434), + [sym_float_literal] = ACTIONS(4434), + [sym_rune_literal] = ACTIONS(4434), + [sym_pseudo_compile_time_identifier] = ACTIONS(4434), + [anon_sym_shared] = ACTIONS(4434), + [anon_sym_map_LBRACK] = ACTIONS(4434), + [anon_sym_chan] = ACTIONS(4434), + [anon_sym_thread] = ACTIONS(4434), + [anon_sym_atomic] = ACTIONS(4434), + [anon_sym_assert] = ACTIONS(4434), + [anon_sym_defer] = ACTIONS(4434), + [anon_sym_goto] = ACTIONS(4434), + [anon_sym_break] = ACTIONS(4434), + [anon_sym_continue] = ACTIONS(4434), + [anon_sym_return] = ACTIONS(4434), + [anon_sym_DOLLARfor] = ACTIONS(4434), + [anon_sym_for] = ACTIONS(4434), + [anon_sym_POUND] = ACTIONS(4434), + [anon_sym_asm] = ACTIONS(4434), + [anon_sym_AT_LBRACK] = ACTIONS(4434), + [sym___double_quote] = ACTIONS(4434), + [sym___single_quote] = ACTIONS(4434), + [sym___c_double_quote] = ACTIONS(4434), + [sym___c_single_quote] = ACTIONS(4434), + [sym___r_double_quote] = ACTIONS(4434), + [sym___r_single_quote] = ACTIONS(4434), }, [1572] = { - [ts_builtin_sym_end] = ACTIONS(4433), - [sym_identifier] = ACTIONS(4435), - [anon_sym_LF] = ACTIONS(4435), - [anon_sym_CR] = ACTIONS(4435), - [anon_sym_CR_LF] = ACTIONS(4435), + [ts_builtin_sym_end] = ACTIONS(4436), + [sym_identifier] = ACTIONS(4438), + [anon_sym_LF] = ACTIONS(4438), + [anon_sym_CR] = ACTIONS(4438), + [anon_sym_CR_LF] = ACTIONS(4438), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4435), - [anon_sym_LBRACE] = ACTIONS(4435), - [anon_sym_const] = ACTIONS(4435), - [anon_sym_LPAREN] = ACTIONS(4435), - [anon_sym___global] = ACTIONS(4435), - [anon_sym_type] = ACTIONS(4435), - [anon_sym_fn] = ACTIONS(4435), - [anon_sym_PLUS] = ACTIONS(4435), - [anon_sym_DASH] = ACTIONS(4435), - [anon_sym_STAR] = ACTIONS(4435), - [anon_sym_struct] = ACTIONS(4435), - [anon_sym_union] = ACTIONS(4435), - [anon_sym_pub] = ACTIONS(4435), - [anon_sym_mut] = ACTIONS(4435), - [anon_sym_enum] = ACTIONS(4435), - [anon_sym_interface] = ACTIONS(4435), - [anon_sym_QMARK] = ACTIONS(4435), - [anon_sym_BANG] = ACTIONS(4435), - [anon_sym_go] = ACTIONS(4435), - [anon_sym_spawn] = ACTIONS(4435), - [anon_sym_json_DOTdecode] = ACTIONS(4435), - [anon_sym_LBRACK2] = ACTIONS(4435), - [anon_sym_TILDE] = ACTIONS(4435), - [anon_sym_CARET] = ACTIONS(4435), - [anon_sym_AMP] = ACTIONS(4435), - [anon_sym_LT_DASH] = ACTIONS(4435), - [sym_none] = ACTIONS(4435), - [sym_true] = ACTIONS(4435), - [sym_false] = ACTIONS(4435), - [sym_nil] = ACTIONS(4435), - [anon_sym_if] = ACTIONS(4435), - [anon_sym_DOLLARif] = ACTIONS(4435), - [anon_sym_match] = ACTIONS(4435), - [anon_sym_select] = ACTIONS(4435), - [anon_sym_lock] = ACTIONS(4435), - [anon_sym_rlock] = ACTIONS(4435), - [anon_sym_unsafe] = ACTIONS(4435), - [anon_sym_sql] = ACTIONS(4435), - [sym_int_literal] = ACTIONS(4435), - [sym_float_literal] = ACTIONS(4435), - [sym_rune_literal] = ACTIONS(4435), - [sym_pseudo_compile_time_identifier] = ACTIONS(4435), - [anon_sym_shared] = ACTIONS(4435), - [anon_sym_map_LBRACK] = ACTIONS(4435), - [anon_sym_chan] = ACTIONS(4435), - [anon_sym_thread] = ACTIONS(4435), - [anon_sym_atomic] = ACTIONS(4435), - [anon_sym_assert] = ACTIONS(4435), - [anon_sym_defer] = ACTIONS(4435), - [anon_sym_goto] = ACTIONS(4435), - [anon_sym_break] = ACTIONS(4435), - [anon_sym_continue] = ACTIONS(4435), - [anon_sym_return] = ACTIONS(4435), - [anon_sym_DOLLARfor] = ACTIONS(4435), - [anon_sym_for] = ACTIONS(4435), - [anon_sym_POUND] = ACTIONS(4435), - [anon_sym_asm] = ACTIONS(4435), - [anon_sym_AT_LBRACK] = ACTIONS(4435), - [sym___double_quote] = ACTIONS(4435), - [sym___single_quote] = ACTIONS(4435), - [sym___c_double_quote] = ACTIONS(4435), - [sym___c_single_quote] = ACTIONS(4435), - [sym___r_double_quote] = ACTIONS(4435), - [sym___r_single_quote] = ACTIONS(4435), + [anon_sym_DOT] = ACTIONS(4438), + [anon_sym_LBRACE] = ACTIONS(4438), + [anon_sym_const] = ACTIONS(4438), + [anon_sym_LPAREN] = ACTIONS(4438), + [anon_sym___global] = ACTIONS(4438), + [anon_sym_type] = ACTIONS(4438), + [anon_sym_fn] = ACTIONS(4438), + [anon_sym_PLUS] = ACTIONS(4438), + [anon_sym_DASH] = ACTIONS(4438), + [anon_sym_STAR] = ACTIONS(4438), + [anon_sym_struct] = ACTIONS(4438), + [anon_sym_union] = ACTIONS(4438), + [anon_sym_pub] = ACTIONS(4438), + [anon_sym_mut] = ACTIONS(4438), + [anon_sym_enum] = ACTIONS(4438), + [anon_sym_interface] = ACTIONS(4438), + [anon_sym_QMARK] = ACTIONS(4438), + [anon_sym_BANG] = ACTIONS(4438), + [anon_sym_go] = ACTIONS(4438), + [anon_sym_spawn] = ACTIONS(4438), + [anon_sym_json_DOTdecode] = ACTIONS(4438), + [anon_sym_LBRACK2] = ACTIONS(4438), + [anon_sym_TILDE] = ACTIONS(4438), + [anon_sym_CARET] = ACTIONS(4438), + [anon_sym_AMP] = ACTIONS(4438), + [anon_sym_LT_DASH] = ACTIONS(4438), + [sym_none] = ACTIONS(4438), + [sym_true] = ACTIONS(4438), + [sym_false] = ACTIONS(4438), + [sym_nil] = ACTIONS(4438), + [anon_sym_if] = ACTIONS(4438), + [anon_sym_DOLLARif] = ACTIONS(4438), + [anon_sym_match] = ACTIONS(4438), + [anon_sym_select] = ACTIONS(4438), + [anon_sym_lock] = ACTIONS(4438), + [anon_sym_rlock] = ACTIONS(4438), + [anon_sym_unsafe] = ACTIONS(4438), + [anon_sym_sql] = ACTIONS(4438), + [sym_int_literal] = ACTIONS(4438), + [sym_float_literal] = ACTIONS(4438), + [sym_rune_literal] = ACTIONS(4438), + [sym_pseudo_compile_time_identifier] = ACTIONS(4438), + [anon_sym_shared] = ACTIONS(4438), + [anon_sym_map_LBRACK] = ACTIONS(4438), + [anon_sym_chan] = ACTIONS(4438), + [anon_sym_thread] = ACTIONS(4438), + [anon_sym_atomic] = ACTIONS(4438), + [anon_sym_assert] = ACTIONS(4438), + [anon_sym_defer] = ACTIONS(4438), + [anon_sym_goto] = ACTIONS(4438), + [anon_sym_break] = ACTIONS(4438), + [anon_sym_continue] = ACTIONS(4438), + [anon_sym_return] = ACTIONS(4438), + [anon_sym_DOLLARfor] = ACTIONS(4438), + [anon_sym_for] = ACTIONS(4438), + [anon_sym_POUND] = ACTIONS(4438), + [anon_sym_asm] = ACTIONS(4438), + [anon_sym_AT_LBRACK] = ACTIONS(4438), + [sym___double_quote] = ACTIONS(4438), + [sym___single_quote] = ACTIONS(4438), + [sym___c_double_quote] = ACTIONS(4438), + [sym___c_single_quote] = ACTIONS(4438), + [sym___r_double_quote] = ACTIONS(4438), + [sym___r_single_quote] = ACTIONS(4438), }, [1573] = { - [ts_builtin_sym_end] = ACTIONS(4437), - [sym_identifier] = ACTIONS(4439), - [anon_sym_LF] = ACTIONS(4439), - [anon_sym_CR] = ACTIONS(4439), - [anon_sym_CR_LF] = ACTIONS(4439), + [ts_builtin_sym_end] = ACTIONS(4440), + [sym_identifier] = ACTIONS(4442), + [anon_sym_LF] = ACTIONS(4442), + [anon_sym_CR] = ACTIONS(4442), + [anon_sym_CR_LF] = ACTIONS(4442), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4439), - [anon_sym_LBRACE] = ACTIONS(4439), - [anon_sym_const] = ACTIONS(4439), - [anon_sym_LPAREN] = ACTIONS(4439), - [anon_sym___global] = ACTIONS(4439), - [anon_sym_type] = ACTIONS(4439), - [anon_sym_fn] = ACTIONS(4439), - [anon_sym_PLUS] = ACTIONS(4439), - [anon_sym_DASH] = ACTIONS(4439), - [anon_sym_STAR] = ACTIONS(4439), - [anon_sym_struct] = ACTIONS(4439), - [anon_sym_union] = ACTIONS(4439), - [anon_sym_pub] = ACTIONS(4439), - [anon_sym_mut] = ACTIONS(4439), - [anon_sym_enum] = ACTIONS(4439), - [anon_sym_interface] = ACTIONS(4439), - [anon_sym_QMARK] = ACTIONS(4439), - [anon_sym_BANG] = ACTIONS(4439), - [anon_sym_go] = ACTIONS(4439), - [anon_sym_spawn] = ACTIONS(4439), - [anon_sym_json_DOTdecode] = ACTIONS(4439), - [anon_sym_LBRACK2] = ACTIONS(4439), - [anon_sym_TILDE] = ACTIONS(4439), - [anon_sym_CARET] = ACTIONS(4439), - [anon_sym_AMP] = ACTIONS(4439), - [anon_sym_LT_DASH] = ACTIONS(4439), - [sym_none] = ACTIONS(4439), - [sym_true] = ACTIONS(4439), - [sym_false] = ACTIONS(4439), - [sym_nil] = ACTIONS(4439), - [anon_sym_if] = ACTIONS(4439), - [anon_sym_DOLLARif] = ACTIONS(4439), - [anon_sym_match] = ACTIONS(4439), - [anon_sym_select] = ACTIONS(4439), - [anon_sym_lock] = ACTIONS(4439), - [anon_sym_rlock] = ACTIONS(4439), - [anon_sym_unsafe] = ACTIONS(4439), - [anon_sym_sql] = ACTIONS(4439), - [sym_int_literal] = ACTIONS(4439), - [sym_float_literal] = ACTIONS(4439), - [sym_rune_literal] = ACTIONS(4439), - [sym_pseudo_compile_time_identifier] = ACTIONS(4439), - [anon_sym_shared] = ACTIONS(4439), - [anon_sym_map_LBRACK] = ACTIONS(4439), - [anon_sym_chan] = ACTIONS(4439), - [anon_sym_thread] = ACTIONS(4439), - [anon_sym_atomic] = ACTIONS(4439), - [anon_sym_assert] = ACTIONS(4439), - [anon_sym_defer] = ACTIONS(4439), - [anon_sym_goto] = ACTIONS(4439), - [anon_sym_break] = ACTIONS(4439), - [anon_sym_continue] = ACTIONS(4439), - [anon_sym_return] = ACTIONS(4439), - [anon_sym_DOLLARfor] = ACTIONS(4439), - [anon_sym_for] = ACTIONS(4439), - [anon_sym_POUND] = ACTIONS(4439), - [anon_sym_asm] = ACTIONS(4439), - [anon_sym_AT_LBRACK] = ACTIONS(4439), - [sym___double_quote] = ACTIONS(4439), - [sym___single_quote] = ACTIONS(4439), - [sym___c_double_quote] = ACTIONS(4439), - [sym___c_single_quote] = ACTIONS(4439), - [sym___r_double_quote] = ACTIONS(4439), - [sym___r_single_quote] = ACTIONS(4439), + [anon_sym_DOT] = ACTIONS(4442), + [anon_sym_LBRACE] = ACTIONS(4442), + [anon_sym_const] = ACTIONS(4442), + [anon_sym_LPAREN] = ACTIONS(4442), + [anon_sym___global] = ACTIONS(4442), + [anon_sym_type] = ACTIONS(4442), + [anon_sym_fn] = ACTIONS(4442), + [anon_sym_PLUS] = ACTIONS(4442), + [anon_sym_DASH] = ACTIONS(4442), + [anon_sym_STAR] = ACTIONS(4442), + [anon_sym_struct] = ACTIONS(4442), + [anon_sym_union] = ACTIONS(4442), + [anon_sym_pub] = ACTIONS(4442), + [anon_sym_mut] = ACTIONS(4442), + [anon_sym_enum] = ACTIONS(4442), + [anon_sym_interface] = ACTIONS(4442), + [anon_sym_QMARK] = ACTIONS(4442), + [anon_sym_BANG] = ACTIONS(4442), + [anon_sym_go] = ACTIONS(4442), + [anon_sym_spawn] = ACTIONS(4442), + [anon_sym_json_DOTdecode] = ACTIONS(4442), + [anon_sym_LBRACK2] = ACTIONS(4442), + [anon_sym_TILDE] = ACTIONS(4442), + [anon_sym_CARET] = ACTIONS(4442), + [anon_sym_AMP] = ACTIONS(4442), + [anon_sym_LT_DASH] = ACTIONS(4442), + [sym_none] = ACTIONS(4442), + [sym_true] = ACTIONS(4442), + [sym_false] = ACTIONS(4442), + [sym_nil] = ACTIONS(4442), + [anon_sym_if] = ACTIONS(4442), + [anon_sym_DOLLARif] = ACTIONS(4442), + [anon_sym_match] = ACTIONS(4442), + [anon_sym_select] = ACTIONS(4442), + [anon_sym_lock] = ACTIONS(4442), + [anon_sym_rlock] = ACTIONS(4442), + [anon_sym_unsafe] = ACTIONS(4442), + [anon_sym_sql] = ACTIONS(4442), + [sym_int_literal] = ACTIONS(4442), + [sym_float_literal] = ACTIONS(4442), + [sym_rune_literal] = ACTIONS(4442), + [sym_pseudo_compile_time_identifier] = ACTIONS(4442), + [anon_sym_shared] = ACTIONS(4442), + [anon_sym_map_LBRACK] = ACTIONS(4442), + [anon_sym_chan] = ACTIONS(4442), + [anon_sym_thread] = ACTIONS(4442), + [anon_sym_atomic] = ACTIONS(4442), + [anon_sym_assert] = ACTIONS(4442), + [anon_sym_defer] = ACTIONS(4442), + [anon_sym_goto] = ACTIONS(4442), + [anon_sym_break] = ACTIONS(4442), + [anon_sym_continue] = ACTIONS(4442), + [anon_sym_return] = ACTIONS(4442), + [anon_sym_DOLLARfor] = ACTIONS(4442), + [anon_sym_for] = ACTIONS(4442), + [anon_sym_POUND] = ACTIONS(4442), + [anon_sym_asm] = ACTIONS(4442), + [anon_sym_AT_LBRACK] = ACTIONS(4442), + [sym___double_quote] = ACTIONS(4442), + [sym___single_quote] = ACTIONS(4442), + [sym___c_double_quote] = ACTIONS(4442), + [sym___c_single_quote] = ACTIONS(4442), + [sym___r_double_quote] = ACTIONS(4442), + [sym___r_single_quote] = ACTIONS(4442), }, [1574] = { - [ts_builtin_sym_end] = ACTIONS(4441), - [sym_identifier] = ACTIONS(4443), - [anon_sym_LF] = ACTIONS(4443), - [anon_sym_CR] = ACTIONS(4443), - [anon_sym_CR_LF] = ACTIONS(4443), + [ts_builtin_sym_end] = ACTIONS(2683), + [sym_identifier] = ACTIONS(2685), + [anon_sym_LF] = ACTIONS(2685), + [anon_sym_CR] = ACTIONS(2685), + [anon_sym_CR_LF] = ACTIONS(2685), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4443), - [anon_sym_LBRACE] = ACTIONS(4443), - [anon_sym_const] = ACTIONS(4443), - [anon_sym_LPAREN] = ACTIONS(4443), - [anon_sym___global] = ACTIONS(4443), - [anon_sym_type] = ACTIONS(4443), - [anon_sym_fn] = ACTIONS(4443), - [anon_sym_PLUS] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_STAR] = ACTIONS(4443), - [anon_sym_struct] = ACTIONS(4443), - [anon_sym_union] = ACTIONS(4443), - [anon_sym_pub] = ACTIONS(4443), - [anon_sym_mut] = ACTIONS(4443), - [anon_sym_enum] = ACTIONS(4443), - [anon_sym_interface] = ACTIONS(4443), - [anon_sym_QMARK] = ACTIONS(4443), - [anon_sym_BANG] = ACTIONS(4443), - [anon_sym_go] = ACTIONS(4443), - [anon_sym_spawn] = ACTIONS(4443), - [anon_sym_json_DOTdecode] = ACTIONS(4443), - [anon_sym_LBRACK2] = ACTIONS(4443), - [anon_sym_TILDE] = ACTIONS(4443), - [anon_sym_CARET] = ACTIONS(4443), - [anon_sym_AMP] = ACTIONS(4443), - [anon_sym_LT_DASH] = ACTIONS(4443), - [sym_none] = ACTIONS(4443), - [sym_true] = ACTIONS(4443), - [sym_false] = ACTIONS(4443), - [sym_nil] = ACTIONS(4443), - [anon_sym_if] = ACTIONS(4443), - [anon_sym_DOLLARif] = ACTIONS(4443), - [anon_sym_match] = ACTIONS(4443), - [anon_sym_select] = ACTIONS(4443), - [anon_sym_lock] = ACTIONS(4443), - [anon_sym_rlock] = ACTIONS(4443), - [anon_sym_unsafe] = ACTIONS(4443), - [anon_sym_sql] = ACTIONS(4443), - [sym_int_literal] = ACTIONS(4443), - [sym_float_literal] = ACTIONS(4443), - [sym_rune_literal] = ACTIONS(4443), - [sym_pseudo_compile_time_identifier] = ACTIONS(4443), - [anon_sym_shared] = ACTIONS(4443), - [anon_sym_map_LBRACK] = ACTIONS(4443), - [anon_sym_chan] = ACTIONS(4443), - [anon_sym_thread] = ACTIONS(4443), - [anon_sym_atomic] = ACTIONS(4443), - [anon_sym_assert] = ACTIONS(4443), - [anon_sym_defer] = ACTIONS(4443), - [anon_sym_goto] = ACTIONS(4443), - [anon_sym_break] = ACTIONS(4443), - [anon_sym_continue] = ACTIONS(4443), - [anon_sym_return] = ACTIONS(4443), - [anon_sym_DOLLARfor] = ACTIONS(4443), - [anon_sym_for] = ACTIONS(4443), - [anon_sym_POUND] = ACTIONS(4443), - [anon_sym_asm] = ACTIONS(4443), - [anon_sym_AT_LBRACK] = ACTIONS(4443), - [sym___double_quote] = ACTIONS(4443), - [sym___single_quote] = ACTIONS(4443), - [sym___c_double_quote] = ACTIONS(4443), - [sym___c_single_quote] = ACTIONS(4443), - [sym___r_double_quote] = ACTIONS(4443), - [sym___r_single_quote] = ACTIONS(4443), + [anon_sym_DOT] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_const] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym___global] = ACTIONS(2685), + [anon_sym_type] = ACTIONS(2685), + [anon_sym_fn] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_struct] = ACTIONS(2685), + [anon_sym_union] = ACTIONS(2685), + [anon_sym_pub] = ACTIONS(2685), + [anon_sym_mut] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_QMARK] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_go] = ACTIONS(2685), + [anon_sym_spawn] = ACTIONS(2685), + [anon_sym_json_DOTdecode] = ACTIONS(2685), + [anon_sym_LBRACK2] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_LT_DASH] = ACTIONS(2685), + [sym_none] = ACTIONS(2685), + [sym_true] = ACTIONS(2685), + [sym_false] = ACTIONS(2685), + [sym_nil] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_DOLLARif] = ACTIONS(2685), + [anon_sym_match] = ACTIONS(2685), + [anon_sym_select] = ACTIONS(2685), + [anon_sym_lock] = ACTIONS(2685), + [anon_sym_rlock] = ACTIONS(2685), + [anon_sym_unsafe] = ACTIONS(2685), + [anon_sym_sql] = ACTIONS(2685), + [sym_int_literal] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + [sym_rune_literal] = ACTIONS(2685), + [sym_pseudo_compile_time_identifier] = ACTIONS(2685), + [anon_sym_shared] = ACTIONS(2685), + [anon_sym_map_LBRACK] = ACTIONS(2685), + [anon_sym_chan] = ACTIONS(2685), + [anon_sym_thread] = ACTIONS(2685), + [anon_sym_atomic] = ACTIONS(2685), + [anon_sym_assert] = ACTIONS(2685), + [anon_sym_defer] = ACTIONS(2685), + [anon_sym_goto] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_DOLLARfor] = ACTIONS(2685), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_asm] = ACTIONS(2685), + [anon_sym_AT_LBRACK] = ACTIONS(2685), + [sym___double_quote] = ACTIONS(2685), + [sym___single_quote] = ACTIONS(2685), + [sym___c_double_quote] = ACTIONS(2685), + [sym___c_single_quote] = ACTIONS(2685), + [sym___r_double_quote] = ACTIONS(2685), + [sym___r_single_quote] = ACTIONS(2685), }, [1575] = { - [ts_builtin_sym_end] = ACTIONS(4445), - [sym_identifier] = ACTIONS(4447), - [anon_sym_LF] = ACTIONS(4447), - [anon_sym_CR] = ACTIONS(4447), - [anon_sym_CR_LF] = ACTIONS(4447), + [ts_builtin_sym_end] = ACTIONS(4444), + [sym_identifier] = ACTIONS(4446), + [anon_sym_LF] = ACTIONS(4446), + [anon_sym_CR] = ACTIONS(4446), + [anon_sym_CR_LF] = ACTIONS(4446), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4447), - [anon_sym_LBRACE] = ACTIONS(4447), - [anon_sym_const] = ACTIONS(4447), - [anon_sym_LPAREN] = ACTIONS(4447), - [anon_sym___global] = ACTIONS(4447), - [anon_sym_type] = ACTIONS(4447), - [anon_sym_fn] = ACTIONS(4447), - [anon_sym_PLUS] = ACTIONS(4447), - [anon_sym_DASH] = ACTIONS(4447), - [anon_sym_STAR] = ACTIONS(4447), - [anon_sym_struct] = ACTIONS(4447), - [anon_sym_union] = ACTIONS(4447), - [anon_sym_pub] = ACTIONS(4447), - [anon_sym_mut] = ACTIONS(4447), - [anon_sym_enum] = ACTIONS(4447), - [anon_sym_interface] = ACTIONS(4447), - [anon_sym_QMARK] = ACTIONS(4447), - [anon_sym_BANG] = ACTIONS(4447), - [anon_sym_go] = ACTIONS(4447), - [anon_sym_spawn] = ACTIONS(4447), - [anon_sym_json_DOTdecode] = ACTIONS(4447), - [anon_sym_LBRACK2] = ACTIONS(4447), - [anon_sym_TILDE] = ACTIONS(4447), - [anon_sym_CARET] = ACTIONS(4447), - [anon_sym_AMP] = ACTIONS(4447), - [anon_sym_LT_DASH] = ACTIONS(4447), - [sym_none] = ACTIONS(4447), - [sym_true] = ACTIONS(4447), - [sym_false] = ACTIONS(4447), - [sym_nil] = ACTIONS(4447), - [anon_sym_if] = ACTIONS(4447), - [anon_sym_DOLLARif] = ACTIONS(4447), - [anon_sym_match] = ACTIONS(4447), - [anon_sym_select] = ACTIONS(4447), - [anon_sym_lock] = ACTIONS(4447), - [anon_sym_rlock] = ACTIONS(4447), - [anon_sym_unsafe] = ACTIONS(4447), - [anon_sym_sql] = ACTIONS(4447), - [sym_int_literal] = ACTIONS(4447), - [sym_float_literal] = ACTIONS(4447), - [sym_rune_literal] = ACTIONS(4447), - [sym_pseudo_compile_time_identifier] = ACTIONS(4447), - [anon_sym_shared] = ACTIONS(4447), - [anon_sym_map_LBRACK] = ACTIONS(4447), - [anon_sym_chan] = ACTIONS(4447), - [anon_sym_thread] = ACTIONS(4447), - [anon_sym_atomic] = ACTIONS(4447), - [anon_sym_assert] = ACTIONS(4447), - [anon_sym_defer] = ACTIONS(4447), - [anon_sym_goto] = ACTIONS(4447), - [anon_sym_break] = ACTIONS(4447), - [anon_sym_continue] = ACTIONS(4447), - [anon_sym_return] = ACTIONS(4447), - [anon_sym_DOLLARfor] = ACTIONS(4447), - [anon_sym_for] = ACTIONS(4447), - [anon_sym_POUND] = ACTIONS(4447), - [anon_sym_asm] = ACTIONS(4447), - [anon_sym_AT_LBRACK] = ACTIONS(4447), - [sym___double_quote] = ACTIONS(4447), - [sym___single_quote] = ACTIONS(4447), - [sym___c_double_quote] = ACTIONS(4447), - [sym___c_single_quote] = ACTIONS(4447), - [sym___r_double_quote] = ACTIONS(4447), - [sym___r_single_quote] = ACTIONS(4447), + [anon_sym_DOT] = ACTIONS(4446), + [anon_sym_LBRACE] = ACTIONS(4446), + [anon_sym_const] = ACTIONS(4446), + [anon_sym_LPAREN] = ACTIONS(4446), + [anon_sym___global] = ACTIONS(4446), + [anon_sym_type] = ACTIONS(4446), + [anon_sym_fn] = ACTIONS(4446), + [anon_sym_PLUS] = ACTIONS(4446), + [anon_sym_DASH] = ACTIONS(4446), + [anon_sym_STAR] = ACTIONS(4446), + [anon_sym_struct] = ACTIONS(4446), + [anon_sym_union] = ACTIONS(4446), + [anon_sym_pub] = ACTIONS(4446), + [anon_sym_mut] = ACTIONS(4446), + [anon_sym_enum] = ACTIONS(4446), + [anon_sym_interface] = ACTIONS(4446), + [anon_sym_QMARK] = ACTIONS(4446), + [anon_sym_BANG] = ACTIONS(4446), + [anon_sym_go] = ACTIONS(4446), + [anon_sym_spawn] = ACTIONS(4446), + [anon_sym_json_DOTdecode] = ACTIONS(4446), + [anon_sym_LBRACK2] = ACTIONS(4446), + [anon_sym_TILDE] = ACTIONS(4446), + [anon_sym_CARET] = ACTIONS(4446), + [anon_sym_AMP] = ACTIONS(4446), + [anon_sym_LT_DASH] = ACTIONS(4446), + [sym_none] = ACTIONS(4446), + [sym_true] = ACTIONS(4446), + [sym_false] = ACTIONS(4446), + [sym_nil] = ACTIONS(4446), + [anon_sym_if] = ACTIONS(4446), + [anon_sym_DOLLARif] = ACTIONS(4446), + [anon_sym_match] = ACTIONS(4446), + [anon_sym_select] = ACTIONS(4446), + [anon_sym_lock] = ACTIONS(4446), + [anon_sym_rlock] = ACTIONS(4446), + [anon_sym_unsafe] = ACTIONS(4446), + [anon_sym_sql] = ACTIONS(4446), + [sym_int_literal] = ACTIONS(4446), + [sym_float_literal] = ACTIONS(4446), + [sym_rune_literal] = ACTIONS(4446), + [sym_pseudo_compile_time_identifier] = ACTIONS(4446), + [anon_sym_shared] = ACTIONS(4446), + [anon_sym_map_LBRACK] = ACTIONS(4446), + [anon_sym_chan] = ACTIONS(4446), + [anon_sym_thread] = ACTIONS(4446), + [anon_sym_atomic] = ACTIONS(4446), + [anon_sym_assert] = ACTIONS(4446), + [anon_sym_defer] = ACTIONS(4446), + [anon_sym_goto] = ACTIONS(4446), + [anon_sym_break] = ACTIONS(4446), + [anon_sym_continue] = ACTIONS(4446), + [anon_sym_return] = ACTIONS(4446), + [anon_sym_DOLLARfor] = ACTIONS(4446), + [anon_sym_for] = ACTIONS(4446), + [anon_sym_POUND] = ACTIONS(4446), + [anon_sym_asm] = ACTIONS(4446), + [anon_sym_AT_LBRACK] = ACTIONS(4446), + [sym___double_quote] = ACTIONS(4446), + [sym___single_quote] = ACTIONS(4446), + [sym___c_double_quote] = ACTIONS(4446), + [sym___c_single_quote] = ACTIONS(4446), + [sym___r_double_quote] = ACTIONS(4446), + [sym___r_single_quote] = ACTIONS(4446), }, [1576] = { - [ts_builtin_sym_end] = ACTIONS(4449), - [sym_identifier] = ACTIONS(4451), - [anon_sym_LF] = ACTIONS(4451), - [anon_sym_CR] = ACTIONS(4451), - [anon_sym_CR_LF] = ACTIONS(4451), + [ts_builtin_sym_end] = ACTIONS(4448), + [sym_identifier] = ACTIONS(4450), + [anon_sym_LF] = ACTIONS(4450), + [anon_sym_CR] = ACTIONS(4450), + [anon_sym_CR_LF] = ACTIONS(4450), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4451), - [anon_sym_LBRACE] = ACTIONS(4451), - [anon_sym_const] = ACTIONS(4451), - [anon_sym_LPAREN] = ACTIONS(4451), - [anon_sym___global] = ACTIONS(4451), - [anon_sym_type] = ACTIONS(4451), - [anon_sym_fn] = ACTIONS(4451), - [anon_sym_PLUS] = ACTIONS(4451), - [anon_sym_DASH] = ACTIONS(4451), - [anon_sym_STAR] = ACTIONS(4451), - [anon_sym_struct] = ACTIONS(4451), - [anon_sym_union] = ACTIONS(4451), - [anon_sym_pub] = ACTIONS(4451), - [anon_sym_mut] = ACTIONS(4451), - [anon_sym_enum] = ACTIONS(4451), - [anon_sym_interface] = ACTIONS(4451), - [anon_sym_QMARK] = ACTIONS(4451), - [anon_sym_BANG] = ACTIONS(4451), - [anon_sym_go] = ACTIONS(4451), - [anon_sym_spawn] = ACTIONS(4451), - [anon_sym_json_DOTdecode] = ACTIONS(4451), - [anon_sym_LBRACK2] = ACTIONS(4451), - [anon_sym_TILDE] = ACTIONS(4451), - [anon_sym_CARET] = ACTIONS(4451), - [anon_sym_AMP] = ACTIONS(4451), - [anon_sym_LT_DASH] = ACTIONS(4451), - [sym_none] = ACTIONS(4451), - [sym_true] = ACTIONS(4451), - [sym_false] = ACTIONS(4451), - [sym_nil] = ACTIONS(4451), - [anon_sym_if] = ACTIONS(4451), - [anon_sym_DOLLARif] = ACTIONS(4451), - [anon_sym_match] = ACTIONS(4451), - [anon_sym_select] = ACTIONS(4451), - [anon_sym_lock] = ACTIONS(4451), - [anon_sym_rlock] = ACTIONS(4451), - [anon_sym_unsafe] = ACTIONS(4451), - [anon_sym_sql] = ACTIONS(4451), - [sym_int_literal] = ACTIONS(4451), - [sym_float_literal] = ACTIONS(4451), - [sym_rune_literal] = ACTIONS(4451), - [sym_pseudo_compile_time_identifier] = ACTIONS(4451), - [anon_sym_shared] = ACTIONS(4451), - [anon_sym_map_LBRACK] = ACTIONS(4451), - [anon_sym_chan] = ACTIONS(4451), - [anon_sym_thread] = ACTIONS(4451), - [anon_sym_atomic] = ACTIONS(4451), - [anon_sym_assert] = ACTIONS(4451), - [anon_sym_defer] = ACTIONS(4451), - [anon_sym_goto] = ACTIONS(4451), - [anon_sym_break] = ACTIONS(4451), - [anon_sym_continue] = ACTIONS(4451), - [anon_sym_return] = ACTIONS(4451), - [anon_sym_DOLLARfor] = ACTIONS(4451), - [anon_sym_for] = ACTIONS(4451), - [anon_sym_POUND] = ACTIONS(4451), - [anon_sym_asm] = ACTIONS(4451), - [anon_sym_AT_LBRACK] = ACTIONS(4451), - [sym___double_quote] = ACTIONS(4451), - [sym___single_quote] = ACTIONS(4451), - [sym___c_double_quote] = ACTIONS(4451), - [sym___c_single_quote] = ACTIONS(4451), - [sym___r_double_quote] = ACTIONS(4451), - [sym___r_single_quote] = ACTIONS(4451), + [anon_sym_DOT] = ACTIONS(4450), + [anon_sym_LBRACE] = ACTIONS(4450), + [anon_sym_const] = ACTIONS(4450), + [anon_sym_LPAREN] = ACTIONS(4450), + [anon_sym___global] = ACTIONS(4450), + [anon_sym_type] = ACTIONS(4450), + [anon_sym_fn] = ACTIONS(4450), + [anon_sym_PLUS] = ACTIONS(4450), + [anon_sym_DASH] = ACTIONS(4450), + [anon_sym_STAR] = ACTIONS(4450), + [anon_sym_struct] = ACTIONS(4450), + [anon_sym_union] = ACTIONS(4450), + [anon_sym_pub] = ACTIONS(4450), + [anon_sym_mut] = ACTIONS(4450), + [anon_sym_enum] = ACTIONS(4450), + [anon_sym_interface] = ACTIONS(4450), + [anon_sym_QMARK] = ACTIONS(4450), + [anon_sym_BANG] = ACTIONS(4450), + [anon_sym_go] = ACTIONS(4450), + [anon_sym_spawn] = ACTIONS(4450), + [anon_sym_json_DOTdecode] = ACTIONS(4450), + [anon_sym_LBRACK2] = ACTIONS(4450), + [anon_sym_TILDE] = ACTIONS(4450), + [anon_sym_CARET] = ACTIONS(4450), + [anon_sym_AMP] = ACTIONS(4450), + [anon_sym_LT_DASH] = ACTIONS(4450), + [sym_none] = ACTIONS(4450), + [sym_true] = ACTIONS(4450), + [sym_false] = ACTIONS(4450), + [sym_nil] = ACTIONS(4450), + [anon_sym_if] = ACTIONS(4450), + [anon_sym_DOLLARif] = ACTIONS(4450), + [anon_sym_match] = ACTIONS(4450), + [anon_sym_select] = ACTIONS(4450), + [anon_sym_lock] = ACTIONS(4450), + [anon_sym_rlock] = ACTIONS(4450), + [anon_sym_unsafe] = ACTIONS(4450), + [anon_sym_sql] = ACTIONS(4450), + [sym_int_literal] = ACTIONS(4450), + [sym_float_literal] = ACTIONS(4450), + [sym_rune_literal] = ACTIONS(4450), + [sym_pseudo_compile_time_identifier] = ACTIONS(4450), + [anon_sym_shared] = ACTIONS(4450), + [anon_sym_map_LBRACK] = ACTIONS(4450), + [anon_sym_chan] = ACTIONS(4450), + [anon_sym_thread] = ACTIONS(4450), + [anon_sym_atomic] = ACTIONS(4450), + [anon_sym_assert] = ACTIONS(4450), + [anon_sym_defer] = ACTIONS(4450), + [anon_sym_goto] = ACTIONS(4450), + [anon_sym_break] = ACTIONS(4450), + [anon_sym_continue] = ACTIONS(4450), + [anon_sym_return] = ACTIONS(4450), + [anon_sym_DOLLARfor] = ACTIONS(4450), + [anon_sym_for] = ACTIONS(4450), + [anon_sym_POUND] = ACTIONS(4450), + [anon_sym_asm] = ACTIONS(4450), + [anon_sym_AT_LBRACK] = ACTIONS(4450), + [sym___double_quote] = ACTIONS(4450), + [sym___single_quote] = ACTIONS(4450), + [sym___c_double_quote] = ACTIONS(4450), + [sym___c_single_quote] = ACTIONS(4450), + [sym___r_double_quote] = ACTIONS(4450), + [sym___r_single_quote] = ACTIONS(4450), }, [1577] = { - [ts_builtin_sym_end] = ACTIONS(4453), - [sym_identifier] = ACTIONS(4455), - [anon_sym_LF] = ACTIONS(4455), - [anon_sym_CR] = ACTIONS(4455), - [anon_sym_CR_LF] = ACTIONS(4455), + [ts_builtin_sym_end] = ACTIONS(4452), + [sym_identifier] = ACTIONS(4454), + [anon_sym_LF] = ACTIONS(4454), + [anon_sym_CR] = ACTIONS(4454), + [anon_sym_CR_LF] = ACTIONS(4454), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4455), - [anon_sym_LBRACE] = ACTIONS(4455), - [anon_sym_const] = ACTIONS(4455), - [anon_sym_LPAREN] = ACTIONS(4455), - [anon_sym___global] = ACTIONS(4455), - [anon_sym_type] = ACTIONS(4455), - [anon_sym_fn] = ACTIONS(4455), - [anon_sym_PLUS] = ACTIONS(4455), - [anon_sym_DASH] = ACTIONS(4455), - [anon_sym_STAR] = ACTIONS(4455), - [anon_sym_struct] = ACTIONS(4455), - [anon_sym_union] = ACTIONS(4455), - [anon_sym_pub] = ACTIONS(4455), - [anon_sym_mut] = ACTIONS(4455), - [anon_sym_enum] = ACTIONS(4455), - [anon_sym_interface] = ACTIONS(4455), - [anon_sym_QMARK] = ACTIONS(4455), - [anon_sym_BANG] = ACTIONS(4455), - [anon_sym_go] = ACTIONS(4455), - [anon_sym_spawn] = ACTIONS(4455), - [anon_sym_json_DOTdecode] = ACTIONS(4455), - [anon_sym_LBRACK2] = ACTIONS(4455), - [anon_sym_TILDE] = ACTIONS(4455), - [anon_sym_CARET] = ACTIONS(4455), - [anon_sym_AMP] = ACTIONS(4455), - [anon_sym_LT_DASH] = ACTIONS(4455), - [sym_none] = ACTIONS(4455), - [sym_true] = ACTIONS(4455), - [sym_false] = ACTIONS(4455), - [sym_nil] = ACTIONS(4455), - [anon_sym_if] = ACTIONS(4455), - [anon_sym_DOLLARif] = ACTIONS(4455), - [anon_sym_match] = ACTIONS(4455), - [anon_sym_select] = ACTIONS(4455), - [anon_sym_lock] = ACTIONS(4455), - [anon_sym_rlock] = ACTIONS(4455), - [anon_sym_unsafe] = ACTIONS(4455), - [anon_sym_sql] = ACTIONS(4455), - [sym_int_literal] = ACTIONS(4455), - [sym_float_literal] = ACTIONS(4455), - [sym_rune_literal] = ACTIONS(4455), - [sym_pseudo_compile_time_identifier] = ACTIONS(4455), - [anon_sym_shared] = ACTIONS(4455), - [anon_sym_map_LBRACK] = ACTIONS(4455), - [anon_sym_chan] = ACTIONS(4455), - [anon_sym_thread] = ACTIONS(4455), - [anon_sym_atomic] = ACTIONS(4455), - [anon_sym_assert] = ACTIONS(4455), - [anon_sym_defer] = ACTIONS(4455), - [anon_sym_goto] = ACTIONS(4455), - [anon_sym_break] = ACTIONS(4455), - [anon_sym_continue] = ACTIONS(4455), - [anon_sym_return] = ACTIONS(4455), - [anon_sym_DOLLARfor] = ACTIONS(4455), - [anon_sym_for] = ACTIONS(4455), - [anon_sym_POUND] = ACTIONS(4455), - [anon_sym_asm] = ACTIONS(4455), - [anon_sym_AT_LBRACK] = ACTIONS(4455), - [sym___double_quote] = ACTIONS(4455), - [sym___single_quote] = ACTIONS(4455), - [sym___c_double_quote] = ACTIONS(4455), - [sym___c_single_quote] = ACTIONS(4455), - [sym___r_double_quote] = ACTIONS(4455), - [sym___r_single_quote] = ACTIONS(4455), + [anon_sym_DOT] = ACTIONS(4454), + [anon_sym_LBRACE] = ACTIONS(4454), + [anon_sym_const] = ACTIONS(4454), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym___global] = ACTIONS(4454), + [anon_sym_type] = ACTIONS(4454), + [anon_sym_fn] = ACTIONS(4454), + [anon_sym_PLUS] = ACTIONS(4454), + [anon_sym_DASH] = ACTIONS(4454), + [anon_sym_STAR] = ACTIONS(4454), + [anon_sym_struct] = ACTIONS(4454), + [anon_sym_union] = ACTIONS(4454), + [anon_sym_pub] = ACTIONS(4454), + [anon_sym_mut] = ACTIONS(4454), + [anon_sym_enum] = ACTIONS(4454), + [anon_sym_interface] = ACTIONS(4454), + [anon_sym_QMARK] = ACTIONS(4454), + [anon_sym_BANG] = ACTIONS(4454), + [anon_sym_go] = ACTIONS(4454), + [anon_sym_spawn] = ACTIONS(4454), + [anon_sym_json_DOTdecode] = ACTIONS(4454), + [anon_sym_LBRACK2] = ACTIONS(4454), + [anon_sym_TILDE] = ACTIONS(4454), + [anon_sym_CARET] = ACTIONS(4454), + [anon_sym_AMP] = ACTIONS(4454), + [anon_sym_LT_DASH] = ACTIONS(4454), + [sym_none] = ACTIONS(4454), + [sym_true] = ACTIONS(4454), + [sym_false] = ACTIONS(4454), + [sym_nil] = ACTIONS(4454), + [anon_sym_if] = ACTIONS(4454), + [anon_sym_DOLLARif] = ACTIONS(4454), + [anon_sym_match] = ACTIONS(4454), + [anon_sym_select] = ACTIONS(4454), + [anon_sym_lock] = ACTIONS(4454), + [anon_sym_rlock] = ACTIONS(4454), + [anon_sym_unsafe] = ACTIONS(4454), + [anon_sym_sql] = ACTIONS(4454), + [sym_int_literal] = ACTIONS(4454), + [sym_float_literal] = ACTIONS(4454), + [sym_rune_literal] = ACTIONS(4454), + [sym_pseudo_compile_time_identifier] = ACTIONS(4454), + [anon_sym_shared] = ACTIONS(4454), + [anon_sym_map_LBRACK] = ACTIONS(4454), + [anon_sym_chan] = ACTIONS(4454), + [anon_sym_thread] = ACTIONS(4454), + [anon_sym_atomic] = ACTIONS(4454), + [anon_sym_assert] = ACTIONS(4454), + [anon_sym_defer] = ACTIONS(4454), + [anon_sym_goto] = ACTIONS(4454), + [anon_sym_break] = ACTIONS(4454), + [anon_sym_continue] = ACTIONS(4454), + [anon_sym_return] = ACTIONS(4454), + [anon_sym_DOLLARfor] = ACTIONS(4454), + [anon_sym_for] = ACTIONS(4454), + [anon_sym_POUND] = ACTIONS(4454), + [anon_sym_asm] = ACTIONS(4454), + [anon_sym_AT_LBRACK] = ACTIONS(4454), + [sym___double_quote] = ACTIONS(4454), + [sym___single_quote] = ACTIONS(4454), + [sym___c_double_quote] = ACTIONS(4454), + [sym___c_single_quote] = ACTIONS(4454), + [sym___r_double_quote] = ACTIONS(4454), + [sym___r_single_quote] = ACTIONS(4454), }, [1578] = { - [ts_builtin_sym_end] = ACTIONS(4457), - [sym_identifier] = ACTIONS(4459), - [anon_sym_LF] = ACTIONS(4459), - [anon_sym_CR] = ACTIONS(4459), - [anon_sym_CR_LF] = ACTIONS(4459), + [ts_builtin_sym_end] = ACTIONS(4456), + [sym_identifier] = ACTIONS(4458), + [anon_sym_LF] = ACTIONS(4458), + [anon_sym_CR] = ACTIONS(4458), + [anon_sym_CR_LF] = ACTIONS(4458), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4459), - [anon_sym_LBRACE] = ACTIONS(4459), - [anon_sym_const] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4459), - [anon_sym___global] = ACTIONS(4459), - [anon_sym_type] = ACTIONS(4459), - [anon_sym_fn] = ACTIONS(4459), - [anon_sym_PLUS] = ACTIONS(4459), - [anon_sym_DASH] = ACTIONS(4459), - [anon_sym_STAR] = ACTIONS(4459), - [anon_sym_struct] = ACTIONS(4459), - [anon_sym_union] = ACTIONS(4459), - [anon_sym_pub] = ACTIONS(4459), - [anon_sym_mut] = ACTIONS(4459), - [anon_sym_enum] = ACTIONS(4459), - [anon_sym_interface] = ACTIONS(4459), - [anon_sym_QMARK] = ACTIONS(4459), - [anon_sym_BANG] = ACTIONS(4459), - [anon_sym_go] = ACTIONS(4459), - [anon_sym_spawn] = ACTIONS(4459), - [anon_sym_json_DOTdecode] = ACTIONS(4459), - [anon_sym_LBRACK2] = ACTIONS(4459), - [anon_sym_TILDE] = ACTIONS(4459), - [anon_sym_CARET] = ACTIONS(4459), - [anon_sym_AMP] = ACTIONS(4459), - [anon_sym_LT_DASH] = ACTIONS(4459), - [sym_none] = ACTIONS(4459), - [sym_true] = ACTIONS(4459), - [sym_false] = ACTIONS(4459), - [sym_nil] = ACTIONS(4459), - [anon_sym_if] = ACTIONS(4459), - [anon_sym_DOLLARif] = ACTIONS(4459), - [anon_sym_match] = ACTIONS(4459), - [anon_sym_select] = ACTIONS(4459), - [anon_sym_lock] = ACTIONS(4459), - [anon_sym_rlock] = ACTIONS(4459), - [anon_sym_unsafe] = ACTIONS(4459), - [anon_sym_sql] = ACTIONS(4459), - [sym_int_literal] = ACTIONS(4459), - [sym_float_literal] = ACTIONS(4459), - [sym_rune_literal] = ACTIONS(4459), - [sym_pseudo_compile_time_identifier] = ACTIONS(4459), - [anon_sym_shared] = ACTIONS(4459), - [anon_sym_map_LBRACK] = ACTIONS(4459), - [anon_sym_chan] = ACTIONS(4459), - [anon_sym_thread] = ACTIONS(4459), - [anon_sym_atomic] = ACTIONS(4459), - [anon_sym_assert] = ACTIONS(4459), - [anon_sym_defer] = ACTIONS(4459), - [anon_sym_goto] = ACTIONS(4459), - [anon_sym_break] = ACTIONS(4459), - [anon_sym_continue] = ACTIONS(4459), - [anon_sym_return] = ACTIONS(4459), - [anon_sym_DOLLARfor] = ACTIONS(4459), - [anon_sym_for] = ACTIONS(4459), - [anon_sym_POUND] = ACTIONS(4459), - [anon_sym_asm] = ACTIONS(4459), - [anon_sym_AT_LBRACK] = ACTIONS(4459), - [sym___double_quote] = ACTIONS(4459), - [sym___single_quote] = ACTIONS(4459), - [sym___c_double_quote] = ACTIONS(4459), - [sym___c_single_quote] = ACTIONS(4459), - [sym___r_double_quote] = ACTIONS(4459), - [sym___r_single_quote] = ACTIONS(4459), + [anon_sym_DOT] = ACTIONS(4458), + [anon_sym_LBRACE] = ACTIONS(4458), + [anon_sym_const] = ACTIONS(4458), + [anon_sym_LPAREN] = ACTIONS(4458), + [anon_sym___global] = ACTIONS(4458), + [anon_sym_type] = ACTIONS(4458), + [anon_sym_fn] = ACTIONS(4458), + [anon_sym_PLUS] = ACTIONS(4458), + [anon_sym_DASH] = ACTIONS(4458), + [anon_sym_STAR] = ACTIONS(4458), + [anon_sym_struct] = ACTIONS(4458), + [anon_sym_union] = ACTIONS(4458), + [anon_sym_pub] = ACTIONS(4458), + [anon_sym_mut] = ACTIONS(4458), + [anon_sym_enum] = ACTIONS(4458), + [anon_sym_interface] = ACTIONS(4458), + [anon_sym_QMARK] = ACTIONS(4458), + [anon_sym_BANG] = ACTIONS(4458), + [anon_sym_go] = ACTIONS(4458), + [anon_sym_spawn] = ACTIONS(4458), + [anon_sym_json_DOTdecode] = ACTIONS(4458), + [anon_sym_LBRACK2] = ACTIONS(4458), + [anon_sym_TILDE] = ACTIONS(4458), + [anon_sym_CARET] = ACTIONS(4458), + [anon_sym_AMP] = ACTIONS(4458), + [anon_sym_LT_DASH] = ACTIONS(4458), + [sym_none] = ACTIONS(4458), + [sym_true] = ACTIONS(4458), + [sym_false] = ACTIONS(4458), + [sym_nil] = ACTIONS(4458), + [anon_sym_if] = ACTIONS(4458), + [anon_sym_DOLLARif] = ACTIONS(4458), + [anon_sym_match] = ACTIONS(4458), + [anon_sym_select] = ACTIONS(4458), + [anon_sym_lock] = ACTIONS(4458), + [anon_sym_rlock] = ACTIONS(4458), + [anon_sym_unsafe] = ACTIONS(4458), + [anon_sym_sql] = ACTIONS(4458), + [sym_int_literal] = ACTIONS(4458), + [sym_float_literal] = ACTIONS(4458), + [sym_rune_literal] = ACTIONS(4458), + [sym_pseudo_compile_time_identifier] = ACTIONS(4458), + [anon_sym_shared] = ACTIONS(4458), + [anon_sym_map_LBRACK] = ACTIONS(4458), + [anon_sym_chan] = ACTIONS(4458), + [anon_sym_thread] = ACTIONS(4458), + [anon_sym_atomic] = ACTIONS(4458), + [anon_sym_assert] = ACTIONS(4458), + [anon_sym_defer] = ACTIONS(4458), + [anon_sym_goto] = ACTIONS(4458), + [anon_sym_break] = ACTIONS(4458), + [anon_sym_continue] = ACTIONS(4458), + [anon_sym_return] = ACTIONS(4458), + [anon_sym_DOLLARfor] = ACTIONS(4458), + [anon_sym_for] = ACTIONS(4458), + [anon_sym_POUND] = ACTIONS(4458), + [anon_sym_asm] = ACTIONS(4458), + [anon_sym_AT_LBRACK] = ACTIONS(4458), + [sym___double_quote] = ACTIONS(4458), + [sym___single_quote] = ACTIONS(4458), + [sym___c_double_quote] = ACTIONS(4458), + [sym___c_single_quote] = ACTIONS(4458), + [sym___r_double_quote] = ACTIONS(4458), + [sym___r_single_quote] = ACTIONS(4458), }, [1579] = { - [ts_builtin_sym_end] = ACTIONS(4461), - [sym_identifier] = ACTIONS(4463), - [anon_sym_LF] = ACTIONS(4463), - [anon_sym_CR] = ACTIONS(4463), - [anon_sym_CR_LF] = ACTIONS(4463), + [ts_builtin_sym_end] = ACTIONS(4460), + [sym_identifier] = ACTIONS(4462), + [anon_sym_LF] = ACTIONS(4464), + [anon_sym_CR] = ACTIONS(4464), + [anon_sym_CR_LF] = ACTIONS(4464), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4463), - [anon_sym_LBRACE] = ACTIONS(4463), - [anon_sym_const] = ACTIONS(4463), - [anon_sym_LPAREN] = ACTIONS(4463), - [anon_sym___global] = ACTIONS(4463), - [anon_sym_type] = ACTIONS(4463), - [anon_sym_fn] = ACTIONS(4463), - [anon_sym_PLUS] = ACTIONS(4463), - [anon_sym_DASH] = ACTIONS(4463), - [anon_sym_STAR] = ACTIONS(4463), - [anon_sym_struct] = ACTIONS(4463), - [anon_sym_union] = ACTIONS(4463), - [anon_sym_pub] = ACTIONS(4463), - [anon_sym_mut] = ACTIONS(4463), - [anon_sym_enum] = ACTIONS(4463), - [anon_sym_interface] = ACTIONS(4463), - [anon_sym_QMARK] = ACTIONS(4463), - [anon_sym_BANG] = ACTIONS(4463), - [anon_sym_go] = ACTIONS(4463), - [anon_sym_spawn] = ACTIONS(4463), - [anon_sym_json_DOTdecode] = ACTIONS(4463), - [anon_sym_LBRACK2] = ACTIONS(4463), - [anon_sym_TILDE] = ACTIONS(4463), - [anon_sym_CARET] = ACTIONS(4463), - [anon_sym_AMP] = ACTIONS(4463), - [anon_sym_LT_DASH] = ACTIONS(4463), - [sym_none] = ACTIONS(4463), - [sym_true] = ACTIONS(4463), - [sym_false] = ACTIONS(4463), - [sym_nil] = ACTIONS(4463), - [anon_sym_if] = ACTIONS(4463), - [anon_sym_DOLLARif] = ACTIONS(4463), - [anon_sym_match] = ACTIONS(4463), - [anon_sym_select] = ACTIONS(4463), - [anon_sym_lock] = ACTIONS(4463), - [anon_sym_rlock] = ACTIONS(4463), - [anon_sym_unsafe] = ACTIONS(4463), - [anon_sym_sql] = ACTIONS(4463), - [sym_int_literal] = ACTIONS(4463), - [sym_float_literal] = ACTIONS(4463), - [sym_rune_literal] = ACTIONS(4463), - [sym_pseudo_compile_time_identifier] = ACTIONS(4463), - [anon_sym_shared] = ACTIONS(4463), - [anon_sym_map_LBRACK] = ACTIONS(4463), - [anon_sym_chan] = ACTIONS(4463), - [anon_sym_thread] = ACTIONS(4463), - [anon_sym_atomic] = ACTIONS(4463), - [anon_sym_assert] = ACTIONS(4463), - [anon_sym_defer] = ACTIONS(4463), - [anon_sym_goto] = ACTIONS(4463), - [anon_sym_break] = ACTIONS(4463), - [anon_sym_continue] = ACTIONS(4463), - [anon_sym_return] = ACTIONS(4463), - [anon_sym_DOLLARfor] = ACTIONS(4463), - [anon_sym_for] = ACTIONS(4463), - [anon_sym_POUND] = ACTIONS(4463), - [anon_sym_asm] = ACTIONS(4463), - [anon_sym_AT_LBRACK] = ACTIONS(4463), - [sym___double_quote] = ACTIONS(4463), - [sym___single_quote] = ACTIONS(4463), - [sym___c_double_quote] = ACTIONS(4463), - [sym___c_single_quote] = ACTIONS(4463), - [sym___r_double_quote] = ACTIONS(4463), - [sym___r_single_quote] = ACTIONS(4463), + [anon_sym_DOT] = ACTIONS(4462), + [anon_sym_LBRACE] = ACTIONS(4462), + [anon_sym_const] = ACTIONS(4462), + [anon_sym_LPAREN] = ACTIONS(4462), + [anon_sym___global] = ACTIONS(4462), + [anon_sym_type] = ACTIONS(4462), + [anon_sym_fn] = ACTIONS(4462), + [anon_sym_PLUS] = ACTIONS(4462), + [anon_sym_DASH] = ACTIONS(4462), + [anon_sym_STAR] = ACTIONS(4462), + [anon_sym_struct] = ACTIONS(4462), + [anon_sym_union] = ACTIONS(4462), + [anon_sym_pub] = ACTIONS(4462), + [anon_sym_mut] = ACTIONS(4462), + [anon_sym_enum] = ACTIONS(4462), + [anon_sym_interface] = ACTIONS(4462), + [anon_sym_QMARK] = ACTIONS(4462), + [anon_sym_BANG] = ACTIONS(4462), + [anon_sym_go] = ACTIONS(4462), + [anon_sym_spawn] = ACTIONS(4462), + [anon_sym_json_DOTdecode] = ACTIONS(4462), + [anon_sym_LBRACK2] = ACTIONS(4462), + [anon_sym_TILDE] = ACTIONS(4462), + [anon_sym_CARET] = ACTIONS(4462), + [anon_sym_AMP] = ACTIONS(4462), + [anon_sym_LT_DASH] = ACTIONS(4462), + [sym_none] = ACTIONS(4462), + [sym_true] = ACTIONS(4462), + [sym_false] = ACTIONS(4462), + [sym_nil] = ACTIONS(4462), + [anon_sym_if] = ACTIONS(4462), + [anon_sym_DOLLARif] = ACTIONS(4462), + [anon_sym_match] = ACTIONS(4462), + [anon_sym_select] = ACTIONS(4462), + [anon_sym_lock] = ACTIONS(4462), + [anon_sym_rlock] = ACTIONS(4462), + [anon_sym_unsafe] = ACTIONS(4462), + [anon_sym_sql] = ACTIONS(4462), + [sym_int_literal] = ACTIONS(4462), + [sym_float_literal] = ACTIONS(4462), + [sym_rune_literal] = ACTIONS(4462), + [sym_pseudo_compile_time_identifier] = ACTIONS(4462), + [anon_sym_shared] = ACTIONS(4462), + [anon_sym_map_LBRACK] = ACTIONS(4462), + [anon_sym_chan] = ACTIONS(4462), + [anon_sym_thread] = ACTIONS(4462), + [anon_sym_atomic] = ACTIONS(4462), + [anon_sym_assert] = ACTIONS(4462), + [anon_sym_defer] = ACTIONS(4462), + [anon_sym_goto] = ACTIONS(4462), + [anon_sym_break] = ACTIONS(4462), + [anon_sym_continue] = ACTIONS(4462), + [anon_sym_return] = ACTIONS(4462), + [anon_sym_DOLLARfor] = ACTIONS(4462), + [anon_sym_for] = ACTIONS(4462), + [anon_sym_POUND] = ACTIONS(4462), + [anon_sym_asm] = ACTIONS(4462), + [anon_sym_AT_LBRACK] = ACTIONS(4462), + [sym___double_quote] = ACTIONS(4462), + [sym___single_quote] = ACTIONS(4462), + [sym___c_double_quote] = ACTIONS(4462), + [sym___c_single_quote] = ACTIONS(4462), + [sym___r_double_quote] = ACTIONS(4462), + [sym___r_single_quote] = ACTIONS(4462), }, [1580] = { - [ts_builtin_sym_end] = ACTIONS(4465), - [sym_identifier] = ACTIONS(4467), - [anon_sym_LF] = ACTIONS(4467), - [anon_sym_CR] = ACTIONS(4467), - [anon_sym_CR_LF] = ACTIONS(4467), + [ts_builtin_sym_end] = ACTIONS(4466), + [sym_identifier] = ACTIONS(4468), + [anon_sym_LF] = ACTIONS(4468), + [anon_sym_CR] = ACTIONS(4468), + [anon_sym_CR_LF] = ACTIONS(4468), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4467), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_const] = ACTIONS(4467), - [anon_sym_LPAREN] = ACTIONS(4467), - [anon_sym___global] = ACTIONS(4467), - [anon_sym_type] = ACTIONS(4467), - [anon_sym_fn] = ACTIONS(4467), - [anon_sym_PLUS] = ACTIONS(4467), - [anon_sym_DASH] = ACTIONS(4467), - [anon_sym_STAR] = ACTIONS(4467), - [anon_sym_struct] = ACTIONS(4467), - [anon_sym_union] = ACTIONS(4467), - [anon_sym_pub] = ACTIONS(4467), - [anon_sym_mut] = ACTIONS(4467), - [anon_sym_enum] = ACTIONS(4467), - [anon_sym_interface] = ACTIONS(4467), - [anon_sym_QMARK] = ACTIONS(4467), - [anon_sym_BANG] = ACTIONS(4467), - [anon_sym_go] = ACTIONS(4467), - [anon_sym_spawn] = ACTIONS(4467), - [anon_sym_json_DOTdecode] = ACTIONS(4467), - [anon_sym_LBRACK2] = ACTIONS(4467), - [anon_sym_TILDE] = ACTIONS(4467), - [anon_sym_CARET] = ACTIONS(4467), - [anon_sym_AMP] = ACTIONS(4467), - [anon_sym_LT_DASH] = ACTIONS(4467), - [sym_none] = ACTIONS(4467), - [sym_true] = ACTIONS(4467), - [sym_false] = ACTIONS(4467), - [sym_nil] = ACTIONS(4467), - [anon_sym_if] = ACTIONS(4467), - [anon_sym_DOLLARif] = ACTIONS(4467), - [anon_sym_match] = ACTIONS(4467), - [anon_sym_select] = ACTIONS(4467), - [anon_sym_lock] = ACTIONS(4467), - [anon_sym_rlock] = ACTIONS(4467), - [anon_sym_unsafe] = ACTIONS(4467), - [anon_sym_sql] = ACTIONS(4467), - [sym_int_literal] = ACTIONS(4467), - [sym_float_literal] = ACTIONS(4467), - [sym_rune_literal] = ACTIONS(4467), - [sym_pseudo_compile_time_identifier] = ACTIONS(4467), - [anon_sym_shared] = ACTIONS(4467), - [anon_sym_map_LBRACK] = ACTIONS(4467), - [anon_sym_chan] = ACTIONS(4467), - [anon_sym_thread] = ACTIONS(4467), - [anon_sym_atomic] = ACTIONS(4467), - [anon_sym_assert] = ACTIONS(4467), - [anon_sym_defer] = ACTIONS(4467), - [anon_sym_goto] = ACTIONS(4467), - [anon_sym_break] = ACTIONS(4467), - [anon_sym_continue] = ACTIONS(4467), - [anon_sym_return] = ACTIONS(4467), - [anon_sym_DOLLARfor] = ACTIONS(4467), - [anon_sym_for] = ACTIONS(4467), - [anon_sym_POUND] = ACTIONS(4467), - [anon_sym_asm] = ACTIONS(4467), - [anon_sym_AT_LBRACK] = ACTIONS(4467), - [sym___double_quote] = ACTIONS(4467), - [sym___single_quote] = ACTIONS(4467), - [sym___c_double_quote] = ACTIONS(4467), - [sym___c_single_quote] = ACTIONS(4467), - [sym___r_double_quote] = ACTIONS(4467), - [sym___r_single_quote] = ACTIONS(4467), + [anon_sym_DOT] = ACTIONS(4468), + [anon_sym_LBRACE] = ACTIONS(4468), + [anon_sym_const] = ACTIONS(4468), + [anon_sym_LPAREN] = ACTIONS(4468), + [anon_sym___global] = ACTIONS(4468), + [anon_sym_type] = ACTIONS(4468), + [anon_sym_fn] = ACTIONS(4468), + [anon_sym_PLUS] = ACTIONS(4468), + [anon_sym_DASH] = ACTIONS(4468), + [anon_sym_STAR] = ACTIONS(4468), + [anon_sym_struct] = ACTIONS(4468), + [anon_sym_union] = ACTIONS(4468), + [anon_sym_pub] = ACTIONS(4468), + [anon_sym_mut] = ACTIONS(4468), + [anon_sym_enum] = ACTIONS(4468), + [anon_sym_interface] = ACTIONS(4468), + [anon_sym_QMARK] = ACTIONS(4468), + [anon_sym_BANG] = ACTIONS(4468), + [anon_sym_go] = ACTIONS(4468), + [anon_sym_spawn] = ACTIONS(4468), + [anon_sym_json_DOTdecode] = ACTIONS(4468), + [anon_sym_LBRACK2] = ACTIONS(4468), + [anon_sym_TILDE] = ACTIONS(4468), + [anon_sym_CARET] = ACTIONS(4468), + [anon_sym_AMP] = ACTIONS(4468), + [anon_sym_LT_DASH] = ACTIONS(4468), + [sym_none] = ACTIONS(4468), + [sym_true] = ACTIONS(4468), + [sym_false] = ACTIONS(4468), + [sym_nil] = ACTIONS(4468), + [anon_sym_if] = ACTIONS(4468), + [anon_sym_DOLLARif] = ACTIONS(4468), + [anon_sym_match] = ACTIONS(4468), + [anon_sym_select] = ACTIONS(4468), + [anon_sym_lock] = ACTIONS(4468), + [anon_sym_rlock] = ACTIONS(4468), + [anon_sym_unsafe] = ACTIONS(4468), + [anon_sym_sql] = ACTIONS(4468), + [sym_int_literal] = ACTIONS(4468), + [sym_float_literal] = ACTIONS(4468), + [sym_rune_literal] = ACTIONS(4468), + [sym_pseudo_compile_time_identifier] = ACTIONS(4468), + [anon_sym_shared] = ACTIONS(4468), + [anon_sym_map_LBRACK] = ACTIONS(4468), + [anon_sym_chan] = ACTIONS(4468), + [anon_sym_thread] = ACTIONS(4468), + [anon_sym_atomic] = ACTIONS(4468), + [anon_sym_assert] = ACTIONS(4468), + [anon_sym_defer] = ACTIONS(4468), + [anon_sym_goto] = ACTIONS(4468), + [anon_sym_break] = ACTIONS(4468), + [anon_sym_continue] = ACTIONS(4468), + [anon_sym_return] = ACTIONS(4468), + [anon_sym_DOLLARfor] = ACTIONS(4468), + [anon_sym_for] = ACTIONS(4468), + [anon_sym_POUND] = ACTIONS(4468), + [anon_sym_asm] = ACTIONS(4468), + [anon_sym_AT_LBRACK] = ACTIONS(4468), + [sym___double_quote] = ACTIONS(4468), + [sym___single_quote] = ACTIONS(4468), + [sym___c_double_quote] = ACTIONS(4468), + [sym___c_single_quote] = ACTIONS(4468), + [sym___r_double_quote] = ACTIONS(4468), + [sym___r_single_quote] = ACTIONS(4468), }, [1581] = { - [ts_builtin_sym_end] = ACTIONS(4469), - [sym_identifier] = ACTIONS(4471), - [anon_sym_LF] = ACTIONS(4471), - [anon_sym_CR] = ACTIONS(4471), - [anon_sym_CR_LF] = ACTIONS(4471), + [ts_builtin_sym_end] = ACTIONS(4470), + [sym_identifier] = ACTIONS(4472), + [anon_sym_LF] = ACTIONS(4472), + [anon_sym_CR] = ACTIONS(4472), + [anon_sym_CR_LF] = ACTIONS(4472), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4471), - [anon_sym_LBRACE] = ACTIONS(4471), - [anon_sym_const] = ACTIONS(4471), - [anon_sym_LPAREN] = ACTIONS(4471), - [anon_sym___global] = ACTIONS(4471), - [anon_sym_type] = ACTIONS(4471), - [anon_sym_fn] = ACTIONS(4471), - [anon_sym_PLUS] = ACTIONS(4471), - [anon_sym_DASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4471), - [anon_sym_struct] = ACTIONS(4471), - [anon_sym_union] = ACTIONS(4471), - [anon_sym_pub] = ACTIONS(4471), - [anon_sym_mut] = ACTIONS(4471), - [anon_sym_enum] = ACTIONS(4471), - [anon_sym_interface] = ACTIONS(4471), - [anon_sym_QMARK] = ACTIONS(4471), - [anon_sym_BANG] = ACTIONS(4471), - [anon_sym_go] = ACTIONS(4471), - [anon_sym_spawn] = ACTIONS(4471), - [anon_sym_json_DOTdecode] = ACTIONS(4471), - [anon_sym_LBRACK2] = ACTIONS(4471), - [anon_sym_TILDE] = ACTIONS(4471), - [anon_sym_CARET] = ACTIONS(4471), - [anon_sym_AMP] = ACTIONS(4471), - [anon_sym_LT_DASH] = ACTIONS(4471), - [sym_none] = ACTIONS(4471), - [sym_true] = ACTIONS(4471), - [sym_false] = ACTIONS(4471), - [sym_nil] = ACTIONS(4471), - [anon_sym_if] = ACTIONS(4471), - [anon_sym_DOLLARif] = ACTIONS(4471), - [anon_sym_match] = ACTIONS(4471), - [anon_sym_select] = ACTIONS(4471), - [anon_sym_lock] = ACTIONS(4471), - [anon_sym_rlock] = ACTIONS(4471), - [anon_sym_unsafe] = ACTIONS(4471), - [anon_sym_sql] = ACTIONS(4471), - [sym_int_literal] = ACTIONS(4471), - [sym_float_literal] = ACTIONS(4471), - [sym_rune_literal] = ACTIONS(4471), - [sym_pseudo_compile_time_identifier] = ACTIONS(4471), - [anon_sym_shared] = ACTIONS(4471), - [anon_sym_map_LBRACK] = ACTIONS(4471), - [anon_sym_chan] = ACTIONS(4471), - [anon_sym_thread] = ACTIONS(4471), - [anon_sym_atomic] = ACTIONS(4471), - [anon_sym_assert] = ACTIONS(4471), - [anon_sym_defer] = ACTIONS(4471), - [anon_sym_goto] = ACTIONS(4471), - [anon_sym_break] = ACTIONS(4471), - [anon_sym_continue] = ACTIONS(4471), - [anon_sym_return] = ACTIONS(4471), - [anon_sym_DOLLARfor] = ACTIONS(4471), - [anon_sym_for] = ACTIONS(4471), - [anon_sym_POUND] = ACTIONS(4471), - [anon_sym_asm] = ACTIONS(4471), - [anon_sym_AT_LBRACK] = ACTIONS(4471), - [sym___double_quote] = ACTIONS(4471), - [sym___single_quote] = ACTIONS(4471), - [sym___c_double_quote] = ACTIONS(4471), - [sym___c_single_quote] = ACTIONS(4471), - [sym___r_double_quote] = ACTIONS(4471), - [sym___r_single_quote] = ACTIONS(4471), + [anon_sym_DOT] = ACTIONS(4472), + [anon_sym_LBRACE] = ACTIONS(4472), + [anon_sym_const] = ACTIONS(4472), + [anon_sym_LPAREN] = ACTIONS(4472), + [anon_sym___global] = ACTIONS(4472), + [anon_sym_type] = ACTIONS(4472), + [anon_sym_fn] = ACTIONS(4472), + [anon_sym_PLUS] = ACTIONS(4472), + [anon_sym_DASH] = ACTIONS(4472), + [anon_sym_STAR] = ACTIONS(4472), + [anon_sym_struct] = ACTIONS(4472), + [anon_sym_union] = ACTIONS(4472), + [anon_sym_pub] = ACTIONS(4472), + [anon_sym_mut] = ACTIONS(4472), + [anon_sym_enum] = ACTIONS(4472), + [anon_sym_interface] = ACTIONS(4472), + [anon_sym_QMARK] = ACTIONS(4472), + [anon_sym_BANG] = ACTIONS(4472), + [anon_sym_go] = ACTIONS(4472), + [anon_sym_spawn] = ACTIONS(4472), + [anon_sym_json_DOTdecode] = ACTIONS(4472), + [anon_sym_LBRACK2] = ACTIONS(4472), + [anon_sym_TILDE] = ACTIONS(4472), + [anon_sym_CARET] = ACTIONS(4472), + [anon_sym_AMP] = ACTIONS(4472), + [anon_sym_LT_DASH] = ACTIONS(4472), + [sym_none] = ACTIONS(4472), + [sym_true] = ACTIONS(4472), + [sym_false] = ACTIONS(4472), + [sym_nil] = ACTIONS(4472), + [anon_sym_if] = ACTIONS(4472), + [anon_sym_DOLLARif] = ACTIONS(4472), + [anon_sym_match] = ACTIONS(4472), + [anon_sym_select] = ACTIONS(4472), + [anon_sym_lock] = ACTIONS(4472), + [anon_sym_rlock] = ACTIONS(4472), + [anon_sym_unsafe] = ACTIONS(4472), + [anon_sym_sql] = ACTIONS(4472), + [sym_int_literal] = ACTIONS(4472), + [sym_float_literal] = ACTIONS(4472), + [sym_rune_literal] = ACTIONS(4472), + [sym_pseudo_compile_time_identifier] = ACTIONS(4472), + [anon_sym_shared] = ACTIONS(4472), + [anon_sym_map_LBRACK] = ACTIONS(4472), + [anon_sym_chan] = ACTIONS(4472), + [anon_sym_thread] = ACTIONS(4472), + [anon_sym_atomic] = ACTIONS(4472), + [anon_sym_assert] = ACTIONS(4472), + [anon_sym_defer] = ACTIONS(4472), + [anon_sym_goto] = ACTIONS(4472), + [anon_sym_break] = ACTIONS(4472), + [anon_sym_continue] = ACTIONS(4472), + [anon_sym_return] = ACTIONS(4472), + [anon_sym_DOLLARfor] = ACTIONS(4472), + [anon_sym_for] = ACTIONS(4472), + [anon_sym_POUND] = ACTIONS(4472), + [anon_sym_asm] = ACTIONS(4472), + [anon_sym_AT_LBRACK] = ACTIONS(4472), + [sym___double_quote] = ACTIONS(4472), + [sym___single_quote] = ACTIONS(4472), + [sym___c_double_quote] = ACTIONS(4472), + [sym___c_single_quote] = ACTIONS(4472), + [sym___r_double_quote] = ACTIONS(4472), + [sym___r_single_quote] = ACTIONS(4472), }, [1582] = { - [ts_builtin_sym_end] = ACTIONS(4473), - [sym_identifier] = ACTIONS(4475), - [anon_sym_LF] = ACTIONS(4475), - [anon_sym_CR] = ACTIONS(4475), - [anon_sym_CR_LF] = ACTIONS(4475), + [ts_builtin_sym_end] = ACTIONS(4474), + [sym_identifier] = ACTIONS(4476), + [anon_sym_LF] = ACTIONS(4476), + [anon_sym_CR] = ACTIONS(4476), + [anon_sym_CR_LF] = ACTIONS(4476), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4475), - [anon_sym_LBRACE] = ACTIONS(4475), - [anon_sym_const] = ACTIONS(4475), - [anon_sym_LPAREN] = ACTIONS(4475), - [anon_sym___global] = ACTIONS(4475), - [anon_sym_type] = ACTIONS(4475), - [anon_sym_fn] = ACTIONS(4475), - [anon_sym_PLUS] = ACTIONS(4475), - [anon_sym_DASH] = ACTIONS(4475), - [anon_sym_STAR] = ACTIONS(4475), - [anon_sym_struct] = ACTIONS(4475), - [anon_sym_union] = ACTIONS(4475), - [anon_sym_pub] = ACTIONS(4475), - [anon_sym_mut] = ACTIONS(4475), - [anon_sym_enum] = ACTIONS(4475), - [anon_sym_interface] = ACTIONS(4475), - [anon_sym_QMARK] = ACTIONS(4475), - [anon_sym_BANG] = ACTIONS(4475), - [anon_sym_go] = ACTIONS(4475), - [anon_sym_spawn] = ACTIONS(4475), - [anon_sym_json_DOTdecode] = ACTIONS(4475), - [anon_sym_LBRACK2] = ACTIONS(4475), - [anon_sym_TILDE] = ACTIONS(4475), - [anon_sym_CARET] = ACTIONS(4475), - [anon_sym_AMP] = ACTIONS(4475), - [anon_sym_LT_DASH] = ACTIONS(4475), - [sym_none] = ACTIONS(4475), - [sym_true] = ACTIONS(4475), - [sym_false] = ACTIONS(4475), - [sym_nil] = ACTIONS(4475), - [anon_sym_if] = ACTIONS(4475), - [anon_sym_DOLLARif] = ACTIONS(4475), - [anon_sym_match] = ACTIONS(4475), - [anon_sym_select] = ACTIONS(4475), - [anon_sym_lock] = ACTIONS(4475), - [anon_sym_rlock] = ACTIONS(4475), - [anon_sym_unsafe] = ACTIONS(4475), - [anon_sym_sql] = ACTIONS(4475), - [sym_int_literal] = ACTIONS(4475), - [sym_float_literal] = ACTIONS(4475), - [sym_rune_literal] = ACTIONS(4475), - [sym_pseudo_compile_time_identifier] = ACTIONS(4475), - [anon_sym_shared] = ACTIONS(4475), - [anon_sym_map_LBRACK] = ACTIONS(4475), - [anon_sym_chan] = ACTIONS(4475), - [anon_sym_thread] = ACTIONS(4475), - [anon_sym_atomic] = ACTIONS(4475), - [anon_sym_assert] = ACTIONS(4475), - [anon_sym_defer] = ACTIONS(4475), - [anon_sym_goto] = ACTIONS(4475), - [anon_sym_break] = ACTIONS(4475), - [anon_sym_continue] = ACTIONS(4475), - [anon_sym_return] = ACTIONS(4475), - [anon_sym_DOLLARfor] = ACTIONS(4475), - [anon_sym_for] = ACTIONS(4475), - [anon_sym_POUND] = ACTIONS(4475), - [anon_sym_asm] = ACTIONS(4475), - [anon_sym_AT_LBRACK] = ACTIONS(4475), - [sym___double_quote] = ACTIONS(4475), - [sym___single_quote] = ACTIONS(4475), - [sym___c_double_quote] = ACTIONS(4475), - [sym___c_single_quote] = ACTIONS(4475), - [sym___r_double_quote] = ACTIONS(4475), - [sym___r_single_quote] = ACTIONS(4475), + [anon_sym_DOT] = ACTIONS(4476), + [anon_sym_LBRACE] = ACTIONS(4476), + [anon_sym_const] = ACTIONS(4476), + [anon_sym_LPAREN] = ACTIONS(4476), + [anon_sym___global] = ACTIONS(4476), + [anon_sym_type] = ACTIONS(4476), + [anon_sym_fn] = ACTIONS(4476), + [anon_sym_PLUS] = ACTIONS(4476), + [anon_sym_DASH] = ACTIONS(4476), + [anon_sym_STAR] = ACTIONS(4476), + [anon_sym_struct] = ACTIONS(4476), + [anon_sym_union] = ACTIONS(4476), + [anon_sym_pub] = ACTIONS(4476), + [anon_sym_mut] = ACTIONS(4476), + [anon_sym_enum] = ACTIONS(4476), + [anon_sym_interface] = ACTIONS(4476), + [anon_sym_QMARK] = ACTIONS(4476), + [anon_sym_BANG] = ACTIONS(4476), + [anon_sym_go] = ACTIONS(4476), + [anon_sym_spawn] = ACTIONS(4476), + [anon_sym_json_DOTdecode] = ACTIONS(4476), + [anon_sym_LBRACK2] = ACTIONS(4476), + [anon_sym_TILDE] = ACTIONS(4476), + [anon_sym_CARET] = ACTIONS(4476), + [anon_sym_AMP] = ACTIONS(4476), + [anon_sym_LT_DASH] = ACTIONS(4476), + [sym_none] = ACTIONS(4476), + [sym_true] = ACTIONS(4476), + [sym_false] = ACTIONS(4476), + [sym_nil] = ACTIONS(4476), + [anon_sym_if] = ACTIONS(4476), + [anon_sym_DOLLARif] = ACTIONS(4476), + [anon_sym_match] = ACTIONS(4476), + [anon_sym_select] = ACTIONS(4476), + [anon_sym_lock] = ACTIONS(4476), + [anon_sym_rlock] = ACTIONS(4476), + [anon_sym_unsafe] = ACTIONS(4476), + [anon_sym_sql] = ACTIONS(4476), + [sym_int_literal] = ACTIONS(4476), + [sym_float_literal] = ACTIONS(4476), + [sym_rune_literal] = ACTIONS(4476), + [sym_pseudo_compile_time_identifier] = ACTIONS(4476), + [anon_sym_shared] = ACTIONS(4476), + [anon_sym_map_LBRACK] = ACTIONS(4476), + [anon_sym_chan] = ACTIONS(4476), + [anon_sym_thread] = ACTIONS(4476), + [anon_sym_atomic] = ACTIONS(4476), + [anon_sym_assert] = ACTIONS(4476), + [anon_sym_defer] = ACTIONS(4476), + [anon_sym_goto] = ACTIONS(4476), + [anon_sym_break] = ACTIONS(4476), + [anon_sym_continue] = ACTIONS(4476), + [anon_sym_return] = ACTIONS(4476), + [anon_sym_DOLLARfor] = ACTIONS(4476), + [anon_sym_for] = ACTIONS(4476), + [anon_sym_POUND] = ACTIONS(4476), + [anon_sym_asm] = ACTIONS(4476), + [anon_sym_AT_LBRACK] = ACTIONS(4476), + [sym___double_quote] = ACTIONS(4476), + [sym___single_quote] = ACTIONS(4476), + [sym___c_double_quote] = ACTIONS(4476), + [sym___c_single_quote] = ACTIONS(4476), + [sym___r_double_quote] = ACTIONS(4476), + [sym___r_single_quote] = ACTIONS(4476), }, [1583] = { - [ts_builtin_sym_end] = ACTIONS(4477), - [sym_identifier] = ACTIONS(4479), - [anon_sym_LF] = ACTIONS(4479), - [anon_sym_CR] = ACTIONS(4479), - [anon_sym_CR_LF] = ACTIONS(4479), + [ts_builtin_sym_end] = ACTIONS(4478), + [sym_identifier] = ACTIONS(4480), + [anon_sym_LF] = ACTIONS(4480), + [anon_sym_CR] = ACTIONS(4480), + [anon_sym_CR_LF] = ACTIONS(4480), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4479), - [anon_sym_LBRACE] = ACTIONS(4479), - [anon_sym_const] = ACTIONS(4479), - [anon_sym_LPAREN] = ACTIONS(4479), - [anon_sym___global] = ACTIONS(4479), - [anon_sym_type] = ACTIONS(4479), - [anon_sym_fn] = ACTIONS(4479), - [anon_sym_PLUS] = ACTIONS(4479), - [anon_sym_DASH] = ACTIONS(4479), - [anon_sym_STAR] = ACTIONS(4479), - [anon_sym_struct] = ACTIONS(4479), - [anon_sym_union] = ACTIONS(4479), - [anon_sym_pub] = ACTIONS(4479), - [anon_sym_mut] = ACTIONS(4479), - [anon_sym_enum] = ACTIONS(4479), - [anon_sym_interface] = ACTIONS(4479), - [anon_sym_QMARK] = ACTIONS(4479), - [anon_sym_BANG] = ACTIONS(4479), - [anon_sym_go] = ACTIONS(4479), - [anon_sym_spawn] = ACTIONS(4479), - [anon_sym_json_DOTdecode] = ACTIONS(4479), - [anon_sym_LBRACK2] = ACTIONS(4479), - [anon_sym_TILDE] = ACTIONS(4479), - [anon_sym_CARET] = ACTIONS(4479), - [anon_sym_AMP] = ACTIONS(4479), - [anon_sym_LT_DASH] = ACTIONS(4479), - [sym_none] = ACTIONS(4479), - [sym_true] = ACTIONS(4479), - [sym_false] = ACTIONS(4479), - [sym_nil] = ACTIONS(4479), - [anon_sym_if] = ACTIONS(4479), - [anon_sym_DOLLARif] = ACTIONS(4479), - [anon_sym_match] = ACTIONS(4479), - [anon_sym_select] = ACTIONS(4479), - [anon_sym_lock] = ACTIONS(4479), - [anon_sym_rlock] = ACTIONS(4479), - [anon_sym_unsafe] = ACTIONS(4479), - [anon_sym_sql] = ACTIONS(4479), - [sym_int_literal] = ACTIONS(4479), - [sym_float_literal] = ACTIONS(4479), - [sym_rune_literal] = ACTIONS(4479), - [sym_pseudo_compile_time_identifier] = ACTIONS(4479), - [anon_sym_shared] = ACTIONS(4479), - [anon_sym_map_LBRACK] = ACTIONS(4479), - [anon_sym_chan] = ACTIONS(4479), - [anon_sym_thread] = ACTIONS(4479), - [anon_sym_atomic] = ACTIONS(4479), - [anon_sym_assert] = ACTIONS(4479), - [anon_sym_defer] = ACTIONS(4479), - [anon_sym_goto] = ACTIONS(4479), - [anon_sym_break] = ACTIONS(4479), - [anon_sym_continue] = ACTIONS(4479), - [anon_sym_return] = ACTIONS(4479), - [anon_sym_DOLLARfor] = ACTIONS(4479), - [anon_sym_for] = ACTIONS(4479), - [anon_sym_POUND] = ACTIONS(4479), - [anon_sym_asm] = ACTIONS(4479), - [anon_sym_AT_LBRACK] = ACTIONS(4479), - [sym___double_quote] = ACTIONS(4479), - [sym___single_quote] = ACTIONS(4479), - [sym___c_double_quote] = ACTIONS(4479), - [sym___c_single_quote] = ACTIONS(4479), - [sym___r_double_quote] = ACTIONS(4479), - [sym___r_single_quote] = ACTIONS(4479), + [anon_sym_DOT] = ACTIONS(4480), + [anon_sym_LBRACE] = ACTIONS(4480), + [anon_sym_const] = ACTIONS(4480), + [anon_sym_LPAREN] = ACTIONS(4480), + [anon_sym___global] = ACTIONS(4480), + [anon_sym_type] = ACTIONS(4480), + [anon_sym_fn] = ACTIONS(4480), + [anon_sym_PLUS] = ACTIONS(4480), + [anon_sym_DASH] = ACTIONS(4480), + [anon_sym_STAR] = ACTIONS(4480), + [anon_sym_struct] = ACTIONS(4480), + [anon_sym_union] = ACTIONS(4480), + [anon_sym_pub] = ACTIONS(4480), + [anon_sym_mut] = ACTIONS(4480), + [anon_sym_enum] = ACTIONS(4480), + [anon_sym_interface] = ACTIONS(4480), + [anon_sym_QMARK] = ACTIONS(4480), + [anon_sym_BANG] = ACTIONS(4480), + [anon_sym_go] = ACTIONS(4480), + [anon_sym_spawn] = ACTIONS(4480), + [anon_sym_json_DOTdecode] = ACTIONS(4480), + [anon_sym_LBRACK2] = ACTIONS(4480), + [anon_sym_TILDE] = ACTIONS(4480), + [anon_sym_CARET] = ACTIONS(4480), + [anon_sym_AMP] = ACTIONS(4480), + [anon_sym_LT_DASH] = ACTIONS(4480), + [sym_none] = ACTIONS(4480), + [sym_true] = ACTIONS(4480), + [sym_false] = ACTIONS(4480), + [sym_nil] = ACTIONS(4480), + [anon_sym_if] = ACTIONS(4480), + [anon_sym_DOLLARif] = ACTIONS(4480), + [anon_sym_match] = ACTIONS(4480), + [anon_sym_select] = ACTIONS(4480), + [anon_sym_lock] = ACTIONS(4480), + [anon_sym_rlock] = ACTIONS(4480), + [anon_sym_unsafe] = ACTIONS(4480), + [anon_sym_sql] = ACTIONS(4480), + [sym_int_literal] = ACTIONS(4480), + [sym_float_literal] = ACTIONS(4480), + [sym_rune_literal] = ACTIONS(4480), + [sym_pseudo_compile_time_identifier] = ACTIONS(4480), + [anon_sym_shared] = ACTIONS(4480), + [anon_sym_map_LBRACK] = ACTIONS(4480), + [anon_sym_chan] = ACTIONS(4480), + [anon_sym_thread] = ACTIONS(4480), + [anon_sym_atomic] = ACTIONS(4480), + [anon_sym_assert] = ACTIONS(4480), + [anon_sym_defer] = ACTIONS(4480), + [anon_sym_goto] = ACTIONS(4480), + [anon_sym_break] = ACTIONS(4480), + [anon_sym_continue] = ACTIONS(4480), + [anon_sym_return] = ACTIONS(4480), + [anon_sym_DOLLARfor] = ACTIONS(4480), + [anon_sym_for] = ACTIONS(4480), + [anon_sym_POUND] = ACTIONS(4480), + [anon_sym_asm] = ACTIONS(4480), + [anon_sym_AT_LBRACK] = ACTIONS(4480), + [sym___double_quote] = ACTIONS(4480), + [sym___single_quote] = ACTIONS(4480), + [sym___c_double_quote] = ACTIONS(4480), + [sym___c_single_quote] = ACTIONS(4480), + [sym___r_double_quote] = ACTIONS(4480), + [sym___r_single_quote] = ACTIONS(4480), }, [1584] = { - [ts_builtin_sym_end] = ACTIONS(4481), - [sym_identifier] = ACTIONS(4483), - [anon_sym_LF] = ACTIONS(4483), - [anon_sym_CR] = ACTIONS(4483), - [anon_sym_CR_LF] = ACTIONS(4483), + [ts_builtin_sym_end] = ACTIONS(4482), + [sym_identifier] = ACTIONS(4484), + [anon_sym_LF] = ACTIONS(4484), + [anon_sym_CR] = ACTIONS(4484), + [anon_sym_CR_LF] = ACTIONS(4484), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4483), - [anon_sym_LBRACE] = ACTIONS(4483), - [anon_sym_const] = ACTIONS(4483), - [anon_sym_LPAREN] = ACTIONS(4483), - [anon_sym___global] = ACTIONS(4483), - [anon_sym_type] = ACTIONS(4483), - [anon_sym_fn] = ACTIONS(4483), - [anon_sym_PLUS] = ACTIONS(4483), - [anon_sym_DASH] = ACTIONS(4483), - [anon_sym_STAR] = ACTIONS(4483), - [anon_sym_struct] = ACTIONS(4483), - [anon_sym_union] = ACTIONS(4483), - [anon_sym_pub] = ACTIONS(4483), - [anon_sym_mut] = ACTIONS(4483), - [anon_sym_enum] = ACTIONS(4483), - [anon_sym_interface] = ACTIONS(4483), - [anon_sym_QMARK] = ACTIONS(4483), - [anon_sym_BANG] = ACTIONS(4483), - [anon_sym_go] = ACTIONS(4483), - [anon_sym_spawn] = ACTIONS(4483), - [anon_sym_json_DOTdecode] = ACTIONS(4483), - [anon_sym_LBRACK2] = ACTIONS(4483), - [anon_sym_TILDE] = ACTIONS(4483), - [anon_sym_CARET] = ACTIONS(4483), - [anon_sym_AMP] = ACTIONS(4483), - [anon_sym_LT_DASH] = ACTIONS(4483), - [sym_none] = ACTIONS(4483), - [sym_true] = ACTIONS(4483), - [sym_false] = ACTIONS(4483), - [sym_nil] = ACTIONS(4483), - [anon_sym_if] = ACTIONS(4483), - [anon_sym_DOLLARif] = ACTIONS(4483), - [anon_sym_match] = ACTIONS(4483), - [anon_sym_select] = ACTIONS(4483), - [anon_sym_lock] = ACTIONS(4483), - [anon_sym_rlock] = ACTIONS(4483), - [anon_sym_unsafe] = ACTIONS(4483), - [anon_sym_sql] = ACTIONS(4483), - [sym_int_literal] = ACTIONS(4483), - [sym_float_literal] = ACTIONS(4483), - [sym_rune_literal] = ACTIONS(4483), - [sym_pseudo_compile_time_identifier] = ACTIONS(4483), - [anon_sym_shared] = ACTIONS(4483), - [anon_sym_map_LBRACK] = ACTIONS(4483), - [anon_sym_chan] = ACTIONS(4483), - [anon_sym_thread] = ACTIONS(4483), - [anon_sym_atomic] = ACTIONS(4483), - [anon_sym_assert] = ACTIONS(4483), - [anon_sym_defer] = ACTIONS(4483), - [anon_sym_goto] = ACTIONS(4483), - [anon_sym_break] = ACTIONS(4483), - [anon_sym_continue] = ACTIONS(4483), - [anon_sym_return] = ACTIONS(4483), - [anon_sym_DOLLARfor] = ACTIONS(4483), - [anon_sym_for] = ACTIONS(4483), - [anon_sym_POUND] = ACTIONS(4483), - [anon_sym_asm] = ACTIONS(4483), - [anon_sym_AT_LBRACK] = ACTIONS(4483), - [sym___double_quote] = ACTIONS(4483), - [sym___single_quote] = ACTIONS(4483), - [sym___c_double_quote] = ACTIONS(4483), - [sym___c_single_quote] = ACTIONS(4483), - [sym___r_double_quote] = ACTIONS(4483), - [sym___r_single_quote] = ACTIONS(4483), + [anon_sym_DOT] = ACTIONS(4484), + [anon_sym_LBRACE] = ACTIONS(4484), + [anon_sym_const] = ACTIONS(4484), + [anon_sym_LPAREN] = ACTIONS(4484), + [anon_sym___global] = ACTIONS(4484), + [anon_sym_type] = ACTIONS(4484), + [anon_sym_fn] = ACTIONS(4484), + [anon_sym_PLUS] = ACTIONS(4484), + [anon_sym_DASH] = ACTIONS(4484), + [anon_sym_STAR] = ACTIONS(4484), + [anon_sym_struct] = ACTIONS(4484), + [anon_sym_union] = ACTIONS(4484), + [anon_sym_pub] = ACTIONS(4484), + [anon_sym_mut] = ACTIONS(4484), + [anon_sym_enum] = ACTIONS(4484), + [anon_sym_interface] = ACTIONS(4484), + [anon_sym_QMARK] = ACTIONS(4484), + [anon_sym_BANG] = ACTIONS(4484), + [anon_sym_go] = ACTIONS(4484), + [anon_sym_spawn] = ACTIONS(4484), + [anon_sym_json_DOTdecode] = ACTIONS(4484), + [anon_sym_LBRACK2] = ACTIONS(4484), + [anon_sym_TILDE] = ACTIONS(4484), + [anon_sym_CARET] = ACTIONS(4484), + [anon_sym_AMP] = ACTIONS(4484), + [anon_sym_LT_DASH] = ACTIONS(4484), + [sym_none] = ACTIONS(4484), + [sym_true] = ACTIONS(4484), + [sym_false] = ACTIONS(4484), + [sym_nil] = ACTIONS(4484), + [anon_sym_if] = ACTIONS(4484), + [anon_sym_DOLLARif] = ACTIONS(4484), + [anon_sym_match] = ACTIONS(4484), + [anon_sym_select] = ACTIONS(4484), + [anon_sym_lock] = ACTIONS(4484), + [anon_sym_rlock] = ACTIONS(4484), + [anon_sym_unsafe] = ACTIONS(4484), + [anon_sym_sql] = ACTIONS(4484), + [sym_int_literal] = ACTIONS(4484), + [sym_float_literal] = ACTIONS(4484), + [sym_rune_literal] = ACTIONS(4484), + [sym_pseudo_compile_time_identifier] = ACTIONS(4484), + [anon_sym_shared] = ACTIONS(4484), + [anon_sym_map_LBRACK] = ACTIONS(4484), + [anon_sym_chan] = ACTIONS(4484), + [anon_sym_thread] = ACTIONS(4484), + [anon_sym_atomic] = ACTIONS(4484), + [anon_sym_assert] = ACTIONS(4484), + [anon_sym_defer] = ACTIONS(4484), + [anon_sym_goto] = ACTIONS(4484), + [anon_sym_break] = ACTIONS(4484), + [anon_sym_continue] = ACTIONS(4484), + [anon_sym_return] = ACTIONS(4484), + [anon_sym_DOLLARfor] = ACTIONS(4484), + [anon_sym_for] = ACTIONS(4484), + [anon_sym_POUND] = ACTIONS(4484), + [anon_sym_asm] = ACTIONS(4484), + [anon_sym_AT_LBRACK] = ACTIONS(4484), + [sym___double_quote] = ACTIONS(4484), + [sym___single_quote] = ACTIONS(4484), + [sym___c_double_quote] = ACTIONS(4484), + [sym___c_single_quote] = ACTIONS(4484), + [sym___r_double_quote] = ACTIONS(4484), + [sym___r_single_quote] = ACTIONS(4484), }, [1585] = { - [ts_builtin_sym_end] = ACTIONS(4485), - [sym_identifier] = ACTIONS(4487), - [anon_sym_LF] = ACTIONS(4487), - [anon_sym_CR] = ACTIONS(4487), - [anon_sym_CR_LF] = ACTIONS(4487), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym_identifier] = ACTIONS(1709), + [anon_sym_LF] = ACTIONS(1709), + [anon_sym_CR] = ACTIONS(1709), + [anon_sym_CR_LF] = ACTIONS(1709), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4487), - [anon_sym_LBRACE] = ACTIONS(4487), - [anon_sym_const] = ACTIONS(4487), - [anon_sym_LPAREN] = ACTIONS(4487), - [anon_sym___global] = ACTIONS(4487), - [anon_sym_type] = ACTIONS(4487), - [anon_sym_fn] = ACTIONS(4487), - [anon_sym_PLUS] = ACTIONS(4487), - [anon_sym_DASH] = ACTIONS(4487), - [anon_sym_STAR] = ACTIONS(4487), - [anon_sym_struct] = ACTIONS(4487), - [anon_sym_union] = ACTIONS(4487), - [anon_sym_pub] = ACTIONS(4487), - [anon_sym_mut] = ACTIONS(4487), - [anon_sym_enum] = ACTIONS(4487), - [anon_sym_interface] = ACTIONS(4487), - [anon_sym_QMARK] = ACTIONS(4487), - [anon_sym_BANG] = ACTIONS(4487), - [anon_sym_go] = ACTIONS(4487), - [anon_sym_spawn] = ACTIONS(4487), - [anon_sym_json_DOTdecode] = ACTIONS(4487), - [anon_sym_LBRACK2] = ACTIONS(4487), - [anon_sym_TILDE] = ACTIONS(4487), - [anon_sym_CARET] = ACTIONS(4487), - [anon_sym_AMP] = ACTIONS(4487), - [anon_sym_LT_DASH] = ACTIONS(4487), - [sym_none] = ACTIONS(4487), - [sym_true] = ACTIONS(4487), - [sym_false] = ACTIONS(4487), - [sym_nil] = ACTIONS(4487), - [anon_sym_if] = ACTIONS(4487), - [anon_sym_DOLLARif] = ACTIONS(4487), - [anon_sym_match] = ACTIONS(4487), - [anon_sym_select] = ACTIONS(4487), - [anon_sym_lock] = ACTIONS(4487), - [anon_sym_rlock] = ACTIONS(4487), - [anon_sym_unsafe] = ACTIONS(4487), - [anon_sym_sql] = ACTIONS(4487), - [sym_int_literal] = ACTIONS(4487), - [sym_float_literal] = ACTIONS(4487), - [sym_rune_literal] = ACTIONS(4487), - [sym_pseudo_compile_time_identifier] = ACTIONS(4487), - [anon_sym_shared] = ACTIONS(4487), - [anon_sym_map_LBRACK] = ACTIONS(4487), - [anon_sym_chan] = ACTIONS(4487), - [anon_sym_thread] = ACTIONS(4487), - [anon_sym_atomic] = ACTIONS(4487), - [anon_sym_assert] = ACTIONS(4487), - [anon_sym_defer] = ACTIONS(4487), - [anon_sym_goto] = ACTIONS(4487), - [anon_sym_break] = ACTIONS(4487), - [anon_sym_continue] = ACTIONS(4487), - [anon_sym_return] = ACTIONS(4487), - [anon_sym_DOLLARfor] = ACTIONS(4487), - [anon_sym_for] = ACTIONS(4487), - [anon_sym_POUND] = ACTIONS(4487), - [anon_sym_asm] = ACTIONS(4487), - [anon_sym_AT_LBRACK] = ACTIONS(4487), - [sym___double_quote] = ACTIONS(4487), - [sym___single_quote] = ACTIONS(4487), - [sym___c_double_quote] = ACTIONS(4487), - [sym___c_single_quote] = ACTIONS(4487), - [sym___r_double_quote] = ACTIONS(4487), - [sym___r_single_quote] = ACTIONS(4487), + [anon_sym_DOT] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym___global] = ACTIONS(1709), + [anon_sym_type] = ACTIONS(1709), + [anon_sym_fn] = ACTIONS(1709), + [anon_sym_PLUS] = ACTIONS(1709), + [anon_sym_DASH] = ACTIONS(1709), + [anon_sym_STAR] = ACTIONS(1709), + [anon_sym_struct] = ACTIONS(1709), + [anon_sym_union] = ACTIONS(1709), + [anon_sym_pub] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_enum] = ACTIONS(1709), + [anon_sym_interface] = ACTIONS(1709), + [anon_sym_QMARK] = ACTIONS(1709), + [anon_sym_BANG] = ACTIONS(1709), + [anon_sym_go] = ACTIONS(1709), + [anon_sym_spawn] = ACTIONS(1709), + [anon_sym_json_DOTdecode] = ACTIONS(1709), + [anon_sym_LBRACK2] = ACTIONS(1709), + [anon_sym_TILDE] = ACTIONS(1709), + [anon_sym_CARET] = ACTIONS(1709), + [anon_sym_AMP] = ACTIONS(1709), + [anon_sym_LT_DASH] = ACTIONS(1709), + [sym_none] = ACTIONS(1709), + [sym_true] = ACTIONS(1709), + [sym_false] = ACTIONS(1709), + [sym_nil] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_DOLLARif] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_select] = ACTIONS(1709), + [anon_sym_lock] = ACTIONS(1709), + [anon_sym_rlock] = ACTIONS(1709), + [anon_sym_unsafe] = ACTIONS(1709), + [anon_sym_sql] = ACTIONS(1709), + [sym_int_literal] = ACTIONS(1709), + [sym_float_literal] = ACTIONS(1709), + [sym_rune_literal] = ACTIONS(1709), + [sym_pseudo_compile_time_identifier] = ACTIONS(1709), + [anon_sym_shared] = ACTIONS(1709), + [anon_sym_map_LBRACK] = ACTIONS(1709), + [anon_sym_chan] = ACTIONS(1709), + [anon_sym_thread] = ACTIONS(1709), + [anon_sym_atomic] = ACTIONS(1709), + [anon_sym_assert] = ACTIONS(1709), + [anon_sym_defer] = ACTIONS(1709), + [anon_sym_goto] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_DOLLARfor] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(1709), + [anon_sym_asm] = ACTIONS(1709), + [anon_sym_AT_LBRACK] = ACTIONS(1709), + [sym___double_quote] = ACTIONS(1709), + [sym___single_quote] = ACTIONS(1709), + [sym___c_double_quote] = ACTIONS(1709), + [sym___c_single_quote] = ACTIONS(1709), + [sym___r_double_quote] = ACTIONS(1709), + [sym___r_single_quote] = ACTIONS(1709), }, [1586] = { - [ts_builtin_sym_end] = ACTIONS(4489), - [sym_identifier] = ACTIONS(4491), - [anon_sym_LF] = ACTIONS(4491), - [anon_sym_CR] = ACTIONS(4491), - [anon_sym_CR_LF] = ACTIONS(4491), + [ts_builtin_sym_end] = ACTIONS(4486), + [sym_identifier] = ACTIONS(4488), + [anon_sym_LF] = ACTIONS(4488), + [anon_sym_CR] = ACTIONS(4488), + [anon_sym_CR_LF] = ACTIONS(4488), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4491), - [anon_sym_LBRACE] = ACTIONS(4491), - [anon_sym_const] = ACTIONS(4491), - [anon_sym_LPAREN] = ACTIONS(4491), - [anon_sym___global] = ACTIONS(4491), - [anon_sym_type] = ACTIONS(4491), - [anon_sym_fn] = ACTIONS(4491), - [anon_sym_PLUS] = ACTIONS(4491), - [anon_sym_DASH] = ACTIONS(4491), - [anon_sym_STAR] = ACTIONS(4491), - [anon_sym_struct] = ACTIONS(4491), - [anon_sym_union] = ACTIONS(4491), - [anon_sym_pub] = ACTIONS(4491), - [anon_sym_mut] = ACTIONS(4491), - [anon_sym_enum] = ACTIONS(4491), - [anon_sym_interface] = ACTIONS(4491), - [anon_sym_QMARK] = ACTIONS(4491), - [anon_sym_BANG] = ACTIONS(4491), - [anon_sym_go] = ACTIONS(4491), - [anon_sym_spawn] = ACTIONS(4491), - [anon_sym_json_DOTdecode] = ACTIONS(4491), - [anon_sym_LBRACK2] = ACTIONS(4491), - [anon_sym_TILDE] = ACTIONS(4491), - [anon_sym_CARET] = ACTIONS(4491), - [anon_sym_AMP] = ACTIONS(4491), - [anon_sym_LT_DASH] = ACTIONS(4491), - [sym_none] = ACTIONS(4491), - [sym_true] = ACTIONS(4491), - [sym_false] = ACTIONS(4491), - [sym_nil] = ACTIONS(4491), - [anon_sym_if] = ACTIONS(4491), - [anon_sym_DOLLARif] = ACTIONS(4491), - [anon_sym_match] = ACTIONS(4491), - [anon_sym_select] = ACTIONS(4491), - [anon_sym_lock] = ACTIONS(4491), - [anon_sym_rlock] = ACTIONS(4491), - [anon_sym_unsafe] = ACTIONS(4491), - [anon_sym_sql] = ACTIONS(4491), - [sym_int_literal] = ACTIONS(4491), - [sym_float_literal] = ACTIONS(4491), - [sym_rune_literal] = ACTIONS(4491), - [sym_pseudo_compile_time_identifier] = ACTIONS(4491), - [anon_sym_shared] = ACTIONS(4491), - [anon_sym_map_LBRACK] = ACTIONS(4491), - [anon_sym_chan] = ACTIONS(4491), - [anon_sym_thread] = ACTIONS(4491), - [anon_sym_atomic] = ACTIONS(4491), - [anon_sym_assert] = ACTIONS(4491), - [anon_sym_defer] = ACTIONS(4491), - [anon_sym_goto] = ACTIONS(4491), - [anon_sym_break] = ACTIONS(4491), - [anon_sym_continue] = ACTIONS(4491), - [anon_sym_return] = ACTIONS(4491), - [anon_sym_DOLLARfor] = ACTIONS(4491), - [anon_sym_for] = ACTIONS(4491), - [anon_sym_POUND] = ACTIONS(4491), - [anon_sym_asm] = ACTIONS(4491), - [anon_sym_AT_LBRACK] = ACTIONS(4491), - [sym___double_quote] = ACTIONS(4491), - [sym___single_quote] = ACTIONS(4491), - [sym___c_double_quote] = ACTIONS(4491), - [sym___c_single_quote] = ACTIONS(4491), - [sym___r_double_quote] = ACTIONS(4491), - [sym___r_single_quote] = ACTIONS(4491), + [anon_sym_DOT] = ACTIONS(4488), + [anon_sym_LBRACE] = ACTIONS(4488), + [anon_sym_const] = ACTIONS(4488), + [anon_sym_LPAREN] = ACTIONS(4488), + [anon_sym___global] = ACTIONS(4488), + [anon_sym_type] = ACTIONS(4488), + [anon_sym_fn] = ACTIONS(4488), + [anon_sym_PLUS] = ACTIONS(4488), + [anon_sym_DASH] = ACTIONS(4488), + [anon_sym_STAR] = ACTIONS(4488), + [anon_sym_struct] = ACTIONS(4488), + [anon_sym_union] = ACTIONS(4488), + [anon_sym_pub] = ACTIONS(4488), + [anon_sym_mut] = ACTIONS(4488), + [anon_sym_enum] = ACTIONS(4488), + [anon_sym_interface] = ACTIONS(4488), + [anon_sym_QMARK] = ACTIONS(4488), + [anon_sym_BANG] = ACTIONS(4488), + [anon_sym_go] = ACTIONS(4488), + [anon_sym_spawn] = ACTIONS(4488), + [anon_sym_json_DOTdecode] = ACTIONS(4488), + [anon_sym_LBRACK2] = ACTIONS(4488), + [anon_sym_TILDE] = ACTIONS(4488), + [anon_sym_CARET] = ACTIONS(4488), + [anon_sym_AMP] = ACTIONS(4488), + [anon_sym_LT_DASH] = ACTIONS(4488), + [sym_none] = ACTIONS(4488), + [sym_true] = ACTIONS(4488), + [sym_false] = ACTIONS(4488), + [sym_nil] = ACTIONS(4488), + [anon_sym_if] = ACTIONS(4488), + [anon_sym_DOLLARif] = ACTIONS(4488), + [anon_sym_match] = ACTIONS(4488), + [anon_sym_select] = ACTIONS(4488), + [anon_sym_lock] = ACTIONS(4488), + [anon_sym_rlock] = ACTIONS(4488), + [anon_sym_unsafe] = ACTIONS(4488), + [anon_sym_sql] = ACTIONS(4488), + [sym_int_literal] = ACTIONS(4488), + [sym_float_literal] = ACTIONS(4488), + [sym_rune_literal] = ACTIONS(4488), + [sym_pseudo_compile_time_identifier] = ACTIONS(4488), + [anon_sym_shared] = ACTIONS(4488), + [anon_sym_map_LBRACK] = ACTIONS(4488), + [anon_sym_chan] = ACTIONS(4488), + [anon_sym_thread] = ACTIONS(4488), + [anon_sym_atomic] = ACTIONS(4488), + [anon_sym_assert] = ACTIONS(4488), + [anon_sym_defer] = ACTIONS(4488), + [anon_sym_goto] = ACTIONS(4488), + [anon_sym_break] = ACTIONS(4488), + [anon_sym_continue] = ACTIONS(4488), + [anon_sym_return] = ACTIONS(4488), + [anon_sym_DOLLARfor] = ACTIONS(4488), + [anon_sym_for] = ACTIONS(4488), + [anon_sym_POUND] = ACTIONS(4488), + [anon_sym_asm] = ACTIONS(4488), + [anon_sym_AT_LBRACK] = ACTIONS(4488), + [sym___double_quote] = ACTIONS(4488), + [sym___single_quote] = ACTIONS(4488), + [sym___c_double_quote] = ACTIONS(4488), + [sym___c_single_quote] = ACTIONS(4488), + [sym___r_double_quote] = ACTIONS(4488), + [sym___r_single_quote] = ACTIONS(4488), }, [1587] = { - [ts_builtin_sym_end] = ACTIONS(4493), - [sym_identifier] = ACTIONS(4495), - [anon_sym_LF] = ACTIONS(4495), - [anon_sym_CR] = ACTIONS(4495), - [anon_sym_CR_LF] = ACTIONS(4495), + [ts_builtin_sym_end] = ACTIONS(4490), + [sym_identifier] = ACTIONS(4492), + [anon_sym_LF] = ACTIONS(4492), + [anon_sym_CR] = ACTIONS(4492), + [anon_sym_CR_LF] = ACTIONS(4492), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4495), - [anon_sym_LBRACE] = ACTIONS(4495), - [anon_sym_const] = ACTIONS(4495), - [anon_sym_LPAREN] = ACTIONS(4495), - [anon_sym___global] = ACTIONS(4495), - [anon_sym_type] = ACTIONS(4495), - [anon_sym_fn] = ACTIONS(4495), - [anon_sym_PLUS] = ACTIONS(4495), - [anon_sym_DASH] = ACTIONS(4495), - [anon_sym_STAR] = ACTIONS(4495), - [anon_sym_struct] = ACTIONS(4495), - [anon_sym_union] = ACTIONS(4495), - [anon_sym_pub] = ACTIONS(4495), - [anon_sym_mut] = ACTIONS(4495), - [anon_sym_enum] = ACTIONS(4495), - [anon_sym_interface] = ACTIONS(4495), - [anon_sym_QMARK] = ACTIONS(4495), - [anon_sym_BANG] = ACTIONS(4495), - [anon_sym_go] = ACTIONS(4495), - [anon_sym_spawn] = ACTIONS(4495), - [anon_sym_json_DOTdecode] = ACTIONS(4495), - [anon_sym_LBRACK2] = ACTIONS(4495), - [anon_sym_TILDE] = ACTIONS(4495), - [anon_sym_CARET] = ACTIONS(4495), - [anon_sym_AMP] = ACTIONS(4495), - [anon_sym_LT_DASH] = ACTIONS(4495), - [sym_none] = ACTIONS(4495), - [sym_true] = ACTIONS(4495), - [sym_false] = ACTIONS(4495), - [sym_nil] = ACTIONS(4495), - [anon_sym_if] = ACTIONS(4495), - [anon_sym_DOLLARif] = ACTIONS(4495), - [anon_sym_match] = ACTIONS(4495), - [anon_sym_select] = ACTIONS(4495), - [anon_sym_lock] = ACTIONS(4495), - [anon_sym_rlock] = ACTIONS(4495), - [anon_sym_unsafe] = ACTIONS(4495), - [anon_sym_sql] = ACTIONS(4495), - [sym_int_literal] = ACTIONS(4495), - [sym_float_literal] = ACTIONS(4495), - [sym_rune_literal] = ACTIONS(4495), - [sym_pseudo_compile_time_identifier] = ACTIONS(4495), - [anon_sym_shared] = ACTIONS(4495), - [anon_sym_map_LBRACK] = ACTIONS(4495), - [anon_sym_chan] = ACTIONS(4495), - [anon_sym_thread] = ACTIONS(4495), - [anon_sym_atomic] = ACTIONS(4495), - [anon_sym_assert] = ACTIONS(4495), - [anon_sym_defer] = ACTIONS(4495), - [anon_sym_goto] = ACTIONS(4495), - [anon_sym_break] = ACTIONS(4495), - [anon_sym_continue] = ACTIONS(4495), - [anon_sym_return] = ACTIONS(4495), - [anon_sym_DOLLARfor] = ACTIONS(4495), - [anon_sym_for] = ACTIONS(4495), - [anon_sym_POUND] = ACTIONS(4495), - [anon_sym_asm] = ACTIONS(4495), - [anon_sym_AT_LBRACK] = ACTIONS(4495), - [sym___double_quote] = ACTIONS(4495), - [sym___single_quote] = ACTIONS(4495), - [sym___c_double_quote] = ACTIONS(4495), - [sym___c_single_quote] = ACTIONS(4495), - [sym___r_double_quote] = ACTIONS(4495), - [sym___r_single_quote] = ACTIONS(4495), + [anon_sym_DOT] = ACTIONS(4492), + [anon_sym_LBRACE] = ACTIONS(4492), + [anon_sym_const] = ACTIONS(4492), + [anon_sym_LPAREN] = ACTIONS(4492), + [anon_sym___global] = ACTIONS(4492), + [anon_sym_type] = ACTIONS(4492), + [anon_sym_fn] = ACTIONS(4492), + [anon_sym_PLUS] = ACTIONS(4492), + [anon_sym_DASH] = ACTIONS(4492), + [anon_sym_STAR] = ACTIONS(4492), + [anon_sym_struct] = ACTIONS(4492), + [anon_sym_union] = ACTIONS(4492), + [anon_sym_pub] = ACTIONS(4492), + [anon_sym_mut] = ACTIONS(4492), + [anon_sym_enum] = ACTIONS(4492), + [anon_sym_interface] = ACTIONS(4492), + [anon_sym_QMARK] = ACTIONS(4492), + [anon_sym_BANG] = ACTIONS(4492), + [anon_sym_go] = ACTIONS(4492), + [anon_sym_spawn] = ACTIONS(4492), + [anon_sym_json_DOTdecode] = ACTIONS(4492), + [anon_sym_LBRACK2] = ACTIONS(4492), + [anon_sym_TILDE] = ACTIONS(4492), + [anon_sym_CARET] = ACTIONS(4492), + [anon_sym_AMP] = ACTIONS(4492), + [anon_sym_LT_DASH] = ACTIONS(4492), + [sym_none] = ACTIONS(4492), + [sym_true] = ACTIONS(4492), + [sym_false] = ACTIONS(4492), + [sym_nil] = ACTIONS(4492), + [anon_sym_if] = ACTIONS(4492), + [anon_sym_DOLLARif] = ACTIONS(4492), + [anon_sym_match] = ACTIONS(4492), + [anon_sym_select] = ACTIONS(4492), + [anon_sym_lock] = ACTIONS(4492), + [anon_sym_rlock] = ACTIONS(4492), + [anon_sym_unsafe] = ACTIONS(4492), + [anon_sym_sql] = ACTIONS(4492), + [sym_int_literal] = ACTIONS(4492), + [sym_float_literal] = ACTIONS(4492), + [sym_rune_literal] = ACTIONS(4492), + [sym_pseudo_compile_time_identifier] = ACTIONS(4492), + [anon_sym_shared] = ACTIONS(4492), + [anon_sym_map_LBRACK] = ACTIONS(4492), + [anon_sym_chan] = ACTIONS(4492), + [anon_sym_thread] = ACTIONS(4492), + [anon_sym_atomic] = ACTIONS(4492), + [anon_sym_assert] = ACTIONS(4492), + [anon_sym_defer] = ACTIONS(4492), + [anon_sym_goto] = ACTIONS(4492), + [anon_sym_break] = ACTIONS(4492), + [anon_sym_continue] = ACTIONS(4492), + [anon_sym_return] = ACTIONS(4492), + [anon_sym_DOLLARfor] = ACTIONS(4492), + [anon_sym_for] = ACTIONS(4492), + [anon_sym_POUND] = ACTIONS(4492), + [anon_sym_asm] = ACTIONS(4492), + [anon_sym_AT_LBRACK] = ACTIONS(4492), + [sym___double_quote] = ACTIONS(4492), + [sym___single_quote] = ACTIONS(4492), + [sym___c_double_quote] = ACTIONS(4492), + [sym___c_single_quote] = ACTIONS(4492), + [sym___r_double_quote] = ACTIONS(4492), + [sym___r_single_quote] = ACTIONS(4492), }, [1588] = { - [ts_builtin_sym_end] = ACTIONS(4497), - [sym_identifier] = ACTIONS(4499), - [anon_sym_LF] = ACTIONS(4499), - [anon_sym_CR] = ACTIONS(4499), - [anon_sym_CR_LF] = ACTIONS(4499), + [ts_builtin_sym_end] = ACTIONS(4494), + [sym_identifier] = ACTIONS(4496), + [anon_sym_LF] = ACTIONS(4496), + [anon_sym_CR] = ACTIONS(4496), + [anon_sym_CR_LF] = ACTIONS(4496), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4499), - [anon_sym_LBRACE] = ACTIONS(4499), - [anon_sym_const] = ACTIONS(4499), - [anon_sym_LPAREN] = ACTIONS(4499), - [anon_sym___global] = ACTIONS(4499), - [anon_sym_type] = ACTIONS(4499), - [anon_sym_fn] = ACTIONS(4499), - [anon_sym_PLUS] = ACTIONS(4499), - [anon_sym_DASH] = ACTIONS(4499), - [anon_sym_STAR] = ACTIONS(4499), - [anon_sym_struct] = ACTIONS(4499), - [anon_sym_union] = ACTIONS(4499), - [anon_sym_pub] = ACTIONS(4499), - [anon_sym_mut] = ACTIONS(4499), - [anon_sym_enum] = ACTIONS(4499), - [anon_sym_interface] = ACTIONS(4499), - [anon_sym_QMARK] = ACTIONS(4499), - [anon_sym_BANG] = ACTIONS(4499), - [anon_sym_go] = ACTIONS(4499), - [anon_sym_spawn] = ACTIONS(4499), - [anon_sym_json_DOTdecode] = ACTIONS(4499), - [anon_sym_LBRACK2] = ACTIONS(4499), - [anon_sym_TILDE] = ACTIONS(4499), - [anon_sym_CARET] = ACTIONS(4499), - [anon_sym_AMP] = ACTIONS(4499), - [anon_sym_LT_DASH] = ACTIONS(4499), - [sym_none] = ACTIONS(4499), - [sym_true] = ACTIONS(4499), - [sym_false] = ACTIONS(4499), - [sym_nil] = ACTIONS(4499), - [anon_sym_if] = ACTIONS(4499), - [anon_sym_DOLLARif] = ACTIONS(4499), - [anon_sym_match] = ACTIONS(4499), - [anon_sym_select] = ACTIONS(4499), - [anon_sym_lock] = ACTIONS(4499), - [anon_sym_rlock] = ACTIONS(4499), - [anon_sym_unsafe] = ACTIONS(4499), - [anon_sym_sql] = ACTIONS(4499), - [sym_int_literal] = ACTIONS(4499), - [sym_float_literal] = ACTIONS(4499), - [sym_rune_literal] = ACTIONS(4499), - [sym_pseudo_compile_time_identifier] = ACTIONS(4499), - [anon_sym_shared] = ACTIONS(4499), - [anon_sym_map_LBRACK] = ACTIONS(4499), - [anon_sym_chan] = ACTIONS(4499), - [anon_sym_thread] = ACTIONS(4499), - [anon_sym_atomic] = ACTIONS(4499), - [anon_sym_assert] = ACTIONS(4499), - [anon_sym_defer] = ACTIONS(4499), - [anon_sym_goto] = ACTIONS(4499), - [anon_sym_break] = ACTIONS(4499), - [anon_sym_continue] = ACTIONS(4499), - [anon_sym_return] = ACTIONS(4499), - [anon_sym_DOLLARfor] = ACTIONS(4499), - [anon_sym_for] = ACTIONS(4499), - [anon_sym_POUND] = ACTIONS(4499), - [anon_sym_asm] = ACTIONS(4499), - [anon_sym_AT_LBRACK] = ACTIONS(4499), - [sym___double_quote] = ACTIONS(4499), - [sym___single_quote] = ACTIONS(4499), - [sym___c_double_quote] = ACTIONS(4499), - [sym___c_single_quote] = ACTIONS(4499), - [sym___r_double_quote] = ACTIONS(4499), - [sym___r_single_quote] = ACTIONS(4499), + [anon_sym_DOT] = ACTIONS(4496), + [anon_sym_LBRACE] = ACTIONS(4496), + [anon_sym_const] = ACTIONS(4496), + [anon_sym_LPAREN] = ACTIONS(4496), + [anon_sym___global] = ACTIONS(4496), + [anon_sym_type] = ACTIONS(4496), + [anon_sym_fn] = ACTIONS(4496), + [anon_sym_PLUS] = ACTIONS(4496), + [anon_sym_DASH] = ACTIONS(4496), + [anon_sym_STAR] = ACTIONS(4496), + [anon_sym_struct] = ACTIONS(4496), + [anon_sym_union] = ACTIONS(4496), + [anon_sym_pub] = ACTIONS(4496), + [anon_sym_mut] = ACTIONS(4496), + [anon_sym_enum] = ACTIONS(4496), + [anon_sym_interface] = ACTIONS(4496), + [anon_sym_QMARK] = ACTIONS(4496), + [anon_sym_BANG] = ACTIONS(4496), + [anon_sym_go] = ACTIONS(4496), + [anon_sym_spawn] = ACTIONS(4496), + [anon_sym_json_DOTdecode] = ACTIONS(4496), + [anon_sym_LBRACK2] = ACTIONS(4496), + [anon_sym_TILDE] = ACTIONS(4496), + [anon_sym_CARET] = ACTIONS(4496), + [anon_sym_AMP] = ACTIONS(4496), + [anon_sym_LT_DASH] = ACTIONS(4496), + [sym_none] = ACTIONS(4496), + [sym_true] = ACTIONS(4496), + [sym_false] = ACTIONS(4496), + [sym_nil] = ACTIONS(4496), + [anon_sym_if] = ACTIONS(4496), + [anon_sym_DOLLARif] = ACTIONS(4496), + [anon_sym_match] = ACTIONS(4496), + [anon_sym_select] = ACTIONS(4496), + [anon_sym_lock] = ACTIONS(4496), + [anon_sym_rlock] = ACTIONS(4496), + [anon_sym_unsafe] = ACTIONS(4496), + [anon_sym_sql] = ACTIONS(4496), + [sym_int_literal] = ACTIONS(4496), + [sym_float_literal] = ACTIONS(4496), + [sym_rune_literal] = ACTIONS(4496), + [sym_pseudo_compile_time_identifier] = ACTIONS(4496), + [anon_sym_shared] = ACTIONS(4496), + [anon_sym_map_LBRACK] = ACTIONS(4496), + [anon_sym_chan] = ACTIONS(4496), + [anon_sym_thread] = ACTIONS(4496), + [anon_sym_atomic] = ACTIONS(4496), + [anon_sym_assert] = ACTIONS(4496), + [anon_sym_defer] = ACTIONS(4496), + [anon_sym_goto] = ACTIONS(4496), + [anon_sym_break] = ACTIONS(4496), + [anon_sym_continue] = ACTIONS(4496), + [anon_sym_return] = ACTIONS(4496), + [anon_sym_DOLLARfor] = ACTIONS(4496), + [anon_sym_for] = ACTIONS(4496), + [anon_sym_POUND] = ACTIONS(4496), + [anon_sym_asm] = ACTIONS(4496), + [anon_sym_AT_LBRACK] = ACTIONS(4496), + [sym___double_quote] = ACTIONS(4496), + [sym___single_quote] = ACTIONS(4496), + [sym___c_double_quote] = ACTIONS(4496), + [sym___c_single_quote] = ACTIONS(4496), + [sym___r_double_quote] = ACTIONS(4496), + [sym___r_single_quote] = ACTIONS(4496), }, [1589] = { - [ts_builtin_sym_end] = ACTIONS(4501), - [sym_identifier] = ACTIONS(4503), - [anon_sym_LF] = ACTIONS(4503), - [anon_sym_CR] = ACTIONS(4503), - [anon_sym_CR_LF] = ACTIONS(4503), - [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(4503), - [anon_sym_LBRACE] = ACTIONS(4503), - [anon_sym_const] = ACTIONS(4503), - [anon_sym_LPAREN] = ACTIONS(4503), - [anon_sym___global] = ACTIONS(4503), - [anon_sym_type] = ACTIONS(4503), - [anon_sym_fn] = ACTIONS(4503), - [anon_sym_PLUS] = ACTIONS(4503), - [anon_sym_DASH] = ACTIONS(4503), - [anon_sym_STAR] = ACTIONS(4503), - [anon_sym_struct] = ACTIONS(4503), - [anon_sym_union] = ACTIONS(4503), - [anon_sym_pub] = ACTIONS(4503), - [anon_sym_mut] = ACTIONS(4503), - [anon_sym_enum] = ACTIONS(4503), - [anon_sym_interface] = ACTIONS(4503), - [anon_sym_QMARK] = ACTIONS(4503), - [anon_sym_BANG] = ACTIONS(4503), - [anon_sym_go] = ACTIONS(4503), - [anon_sym_spawn] = ACTIONS(4503), - [anon_sym_json_DOTdecode] = ACTIONS(4503), - [anon_sym_LBRACK2] = ACTIONS(4503), - [anon_sym_TILDE] = ACTIONS(4503), - [anon_sym_CARET] = ACTIONS(4503), - [anon_sym_AMP] = ACTIONS(4503), - [anon_sym_LT_DASH] = ACTIONS(4503), - [sym_none] = ACTIONS(4503), - [sym_true] = ACTIONS(4503), - [sym_false] = ACTIONS(4503), - [sym_nil] = ACTIONS(4503), - [anon_sym_if] = ACTIONS(4503), - [anon_sym_DOLLARif] = ACTIONS(4503), - [anon_sym_match] = ACTIONS(4503), - [anon_sym_select] = ACTIONS(4503), - [anon_sym_lock] = ACTIONS(4503), - [anon_sym_rlock] = ACTIONS(4503), - [anon_sym_unsafe] = ACTIONS(4503), - [anon_sym_sql] = ACTIONS(4503), - [sym_int_literal] = ACTIONS(4503), - [sym_float_literal] = ACTIONS(4503), - [sym_rune_literal] = ACTIONS(4503), - [sym_pseudo_compile_time_identifier] = ACTIONS(4503), - [anon_sym_shared] = ACTIONS(4503), - [anon_sym_map_LBRACK] = ACTIONS(4503), - [anon_sym_chan] = ACTIONS(4503), - [anon_sym_thread] = ACTIONS(4503), - [anon_sym_atomic] = ACTIONS(4503), - [anon_sym_assert] = ACTIONS(4503), - [anon_sym_defer] = ACTIONS(4503), - [anon_sym_goto] = ACTIONS(4503), - [anon_sym_break] = ACTIONS(4503), - [anon_sym_continue] = ACTIONS(4503), - [anon_sym_return] = ACTIONS(4503), - [anon_sym_DOLLARfor] = ACTIONS(4503), - [anon_sym_for] = ACTIONS(4503), - [anon_sym_POUND] = ACTIONS(4503), - [anon_sym_asm] = ACTIONS(4503), - [anon_sym_AT_LBRACK] = ACTIONS(4503), - [sym___double_quote] = ACTIONS(4503), - [sym___single_quote] = ACTIONS(4503), - [sym___c_double_quote] = ACTIONS(4503), - [sym___c_single_quote] = ACTIONS(4503), - [sym___r_double_quote] = ACTIONS(4503), - [sym___r_single_quote] = ACTIONS(4503), + [sym_import_declaration] = STATE(1589), + [aux_sym_import_list_repeat1] = STATE(1589), + [ts_builtin_sym_end] = ACTIONS(4498), + [sym_identifier] = ACTIONS(4500), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4502), + [anon_sym_DOT] = ACTIONS(4500), + [anon_sym_LBRACE] = ACTIONS(4498), + [anon_sym_const] = ACTIONS(4500), + [anon_sym_LPAREN] = ACTIONS(4498), + [anon_sym___global] = ACTIONS(4500), + [anon_sym_type] = ACTIONS(4500), + [anon_sym_fn] = ACTIONS(4500), + [anon_sym_PLUS] = ACTIONS(4498), + [anon_sym_DASH] = ACTIONS(4498), + [anon_sym_STAR] = ACTIONS(4498), + [anon_sym_struct] = ACTIONS(4500), + [anon_sym_union] = ACTIONS(4500), + [anon_sym_pub] = ACTIONS(4500), + [anon_sym_mut] = ACTIONS(4500), + [anon_sym_enum] = ACTIONS(4500), + [anon_sym_interface] = ACTIONS(4500), + [anon_sym_QMARK] = ACTIONS(4498), + [anon_sym_BANG] = ACTIONS(4498), + [anon_sym_go] = ACTIONS(4500), + [anon_sym_spawn] = ACTIONS(4500), + [anon_sym_json_DOTdecode] = ACTIONS(4498), + [anon_sym_LBRACK2] = ACTIONS(4498), + [anon_sym_TILDE] = ACTIONS(4498), + [anon_sym_CARET] = ACTIONS(4498), + [anon_sym_AMP] = ACTIONS(4498), + [anon_sym_LT_DASH] = ACTIONS(4498), + [sym_none] = ACTIONS(4500), + [sym_true] = ACTIONS(4500), + [sym_false] = ACTIONS(4500), + [sym_nil] = ACTIONS(4500), + [anon_sym_if] = ACTIONS(4500), + [anon_sym_DOLLARif] = ACTIONS(4500), + [anon_sym_match] = ACTIONS(4500), + [anon_sym_select] = ACTIONS(4500), + [anon_sym_lock] = ACTIONS(4500), + [anon_sym_rlock] = ACTIONS(4500), + [anon_sym_unsafe] = ACTIONS(4500), + [anon_sym_sql] = ACTIONS(4500), + [sym_int_literal] = ACTIONS(4500), + [sym_float_literal] = ACTIONS(4498), + [sym_rune_literal] = ACTIONS(4498), + [sym_pseudo_compile_time_identifier] = ACTIONS(4500), + [anon_sym_shared] = ACTIONS(4500), + [anon_sym_map_LBRACK] = ACTIONS(4498), + [anon_sym_chan] = ACTIONS(4500), + [anon_sym_thread] = ACTIONS(4500), + [anon_sym_atomic] = ACTIONS(4500), + [anon_sym_assert] = ACTIONS(4500), + [anon_sym_defer] = ACTIONS(4500), + [anon_sym_goto] = ACTIONS(4500), + [anon_sym_break] = ACTIONS(4500), + [anon_sym_continue] = ACTIONS(4500), + [anon_sym_return] = ACTIONS(4500), + [anon_sym_DOLLARfor] = ACTIONS(4500), + [anon_sym_for] = ACTIONS(4500), + [anon_sym_POUND] = ACTIONS(4498), + [anon_sym_asm] = ACTIONS(4500), + [anon_sym_AT_LBRACK] = ACTIONS(4498), + [sym___double_quote] = ACTIONS(4498), + [sym___single_quote] = ACTIONS(4498), + [sym___c_double_quote] = ACTIONS(4498), + [sym___c_single_quote] = ACTIONS(4498), + [sym___r_double_quote] = ACTIONS(4498), + [sym___r_single_quote] = ACTIONS(4498), }, [1590] = { [ts_builtin_sym_end] = ACTIONS(4505), @@ -189325,38 +189468,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(4527), }, [1596] = { + [sym_import_declaration] = STATE(1589), + [aux_sym_import_list_repeat1] = STATE(1589), [ts_builtin_sym_end] = ACTIONS(4529), [sym_identifier] = ACTIONS(4531), - [anon_sym_LF] = ACTIONS(4531), - [anon_sym_CR] = ACTIONS(4531), - [anon_sym_CR_LF] = ACTIONS(4531), - [sym_comment] = ACTIONS(495), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(13), [anon_sym_DOT] = ACTIONS(4531), - [anon_sym_LBRACE] = ACTIONS(4531), + [anon_sym_LBRACE] = ACTIONS(4529), [anon_sym_const] = ACTIONS(4531), - [anon_sym_LPAREN] = ACTIONS(4531), + [anon_sym_LPAREN] = ACTIONS(4529), [anon_sym___global] = ACTIONS(4531), [anon_sym_type] = ACTIONS(4531), [anon_sym_fn] = ACTIONS(4531), - [anon_sym_PLUS] = ACTIONS(4531), - [anon_sym_DASH] = ACTIONS(4531), - [anon_sym_STAR] = ACTIONS(4531), + [anon_sym_PLUS] = ACTIONS(4529), + [anon_sym_DASH] = ACTIONS(4529), + [anon_sym_STAR] = ACTIONS(4529), [anon_sym_struct] = ACTIONS(4531), [anon_sym_union] = ACTIONS(4531), [anon_sym_pub] = ACTIONS(4531), [anon_sym_mut] = ACTIONS(4531), [anon_sym_enum] = ACTIONS(4531), [anon_sym_interface] = ACTIONS(4531), - [anon_sym_QMARK] = ACTIONS(4531), - [anon_sym_BANG] = ACTIONS(4531), + [anon_sym_QMARK] = ACTIONS(4529), + [anon_sym_BANG] = ACTIONS(4529), [anon_sym_go] = ACTIONS(4531), [anon_sym_spawn] = ACTIONS(4531), - [anon_sym_json_DOTdecode] = ACTIONS(4531), - [anon_sym_LBRACK2] = ACTIONS(4531), - [anon_sym_TILDE] = ACTIONS(4531), - [anon_sym_CARET] = ACTIONS(4531), - [anon_sym_AMP] = ACTIONS(4531), - [anon_sym_LT_DASH] = ACTIONS(4531), + [anon_sym_json_DOTdecode] = ACTIONS(4529), + [anon_sym_LBRACK2] = ACTIONS(4529), + [anon_sym_TILDE] = ACTIONS(4529), + [anon_sym_CARET] = ACTIONS(4529), + [anon_sym_AMP] = ACTIONS(4529), + [anon_sym_LT_DASH] = ACTIONS(4529), [sym_none] = ACTIONS(4531), [sym_true] = ACTIONS(4531), [sym_false] = ACTIONS(4531), @@ -189370,11 +189513,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4531), [anon_sym_sql] = ACTIONS(4531), [sym_int_literal] = ACTIONS(4531), - [sym_float_literal] = ACTIONS(4531), - [sym_rune_literal] = ACTIONS(4531), + [sym_float_literal] = ACTIONS(4529), + [sym_rune_literal] = ACTIONS(4529), [sym_pseudo_compile_time_identifier] = ACTIONS(4531), [anon_sym_shared] = ACTIONS(4531), - [anon_sym_map_LBRACK] = ACTIONS(4531), + [anon_sym_map_LBRACK] = ACTIONS(4529), [anon_sym_chan] = ACTIONS(4531), [anon_sym_thread] = ACTIONS(4531), [anon_sym_atomic] = ACTIONS(4531), @@ -189386,15 +189529,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4531), [anon_sym_DOLLARfor] = ACTIONS(4531), [anon_sym_for] = ACTIONS(4531), - [anon_sym_POUND] = ACTIONS(4531), + [anon_sym_POUND] = ACTIONS(4529), [anon_sym_asm] = ACTIONS(4531), - [anon_sym_AT_LBRACK] = ACTIONS(4531), - [sym___double_quote] = ACTIONS(4531), - [sym___single_quote] = ACTIONS(4531), - [sym___c_double_quote] = ACTIONS(4531), - [sym___c_single_quote] = ACTIONS(4531), - [sym___r_double_quote] = ACTIONS(4531), - [sym___r_single_quote] = ACTIONS(4531), + [anon_sym_AT_LBRACK] = ACTIONS(4529), + [sym___double_quote] = ACTIONS(4529), + [sym___single_quote] = ACTIONS(4529), + [sym___c_double_quote] = ACTIONS(4529), + [sym___c_single_quote] = ACTIONS(4529), + [sym___r_double_quote] = ACTIONS(4529), + [sym___r_single_quote] = ACTIONS(4529), }, [1597] = { [ts_builtin_sym_end] = ACTIONS(4533), @@ -189829,109 +189972,254 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_single_quote] = ACTIONS(4555), }, [1603] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(607), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_DOT_DOT_DOT] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4557), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(603), - [anon_sym_AMP_CARET] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), - [anon_sym_DOT_DOT] = ACTIONS(607), + [ts_builtin_sym_end] = ACTIONS(4557), + [sym_identifier] = ACTIONS(4559), + [anon_sym_LF] = ACTIONS(4559), + [anon_sym_CR] = ACTIONS(4559), + [anon_sym_CR_LF] = ACTIONS(4559), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4559), + [anon_sym_LBRACE] = ACTIONS(4559), + [anon_sym_const] = ACTIONS(4559), + [anon_sym_LPAREN] = ACTIONS(4559), + [anon_sym___global] = ACTIONS(4559), + [anon_sym_type] = ACTIONS(4559), + [anon_sym_fn] = ACTIONS(4559), + [anon_sym_PLUS] = ACTIONS(4559), + [anon_sym_DASH] = ACTIONS(4559), + [anon_sym_STAR] = ACTIONS(4559), + [anon_sym_struct] = ACTIONS(4559), + [anon_sym_union] = ACTIONS(4559), + [anon_sym_pub] = ACTIONS(4559), + [anon_sym_mut] = ACTIONS(4559), + [anon_sym_enum] = ACTIONS(4559), + [anon_sym_interface] = ACTIONS(4559), + [anon_sym_QMARK] = ACTIONS(4559), + [anon_sym_BANG] = ACTIONS(4559), + [anon_sym_go] = ACTIONS(4559), + [anon_sym_spawn] = ACTIONS(4559), + [anon_sym_json_DOTdecode] = ACTIONS(4559), + [anon_sym_LBRACK2] = ACTIONS(4559), + [anon_sym_TILDE] = ACTIONS(4559), + [anon_sym_CARET] = ACTIONS(4559), + [anon_sym_AMP] = ACTIONS(4559), + [anon_sym_LT_DASH] = ACTIONS(4559), + [sym_none] = ACTIONS(4559), + [sym_true] = ACTIONS(4559), + [sym_false] = ACTIONS(4559), + [sym_nil] = ACTIONS(4559), + [anon_sym_if] = ACTIONS(4559), + [anon_sym_DOLLARif] = ACTIONS(4559), + [anon_sym_match] = ACTIONS(4559), + [anon_sym_select] = ACTIONS(4559), + [anon_sym_lock] = ACTIONS(4559), + [anon_sym_rlock] = ACTIONS(4559), + [anon_sym_unsafe] = ACTIONS(4559), + [anon_sym_sql] = ACTIONS(4559), + [sym_int_literal] = ACTIONS(4559), + [sym_float_literal] = ACTIONS(4559), + [sym_rune_literal] = ACTIONS(4559), + [sym_pseudo_compile_time_identifier] = ACTIONS(4559), + [anon_sym_shared] = ACTIONS(4559), + [anon_sym_map_LBRACK] = ACTIONS(4559), + [anon_sym_chan] = ACTIONS(4559), + [anon_sym_thread] = ACTIONS(4559), + [anon_sym_atomic] = ACTIONS(4559), + [anon_sym_assert] = ACTIONS(4559), + [anon_sym_defer] = ACTIONS(4559), + [anon_sym_goto] = ACTIONS(4559), + [anon_sym_break] = ACTIONS(4559), + [anon_sym_continue] = ACTIONS(4559), + [anon_sym_return] = ACTIONS(4559), + [anon_sym_DOLLARfor] = ACTIONS(4559), + [anon_sym_for] = ACTIONS(4559), + [anon_sym_POUND] = ACTIONS(4559), + [anon_sym_asm] = ACTIONS(4559), + [anon_sym_AT_LBRACK] = ACTIONS(4559), + [sym___double_quote] = ACTIONS(4559), + [sym___single_quote] = ACTIONS(4559), + [sym___c_double_quote] = ACTIONS(4559), + [sym___c_single_quote] = ACTIONS(4559), + [sym___r_double_quote] = ACTIONS(4559), + [sym___r_single_quote] = ACTIONS(4559), }, [1604] = { - [sym_reference_expression] = STATE(4511), - [sym_type_reference_expression] = STATE(2643), - [sym_plain_type] = STATE(2705), - [sym__plain_type_without_special] = STATE(2694), - [sym_anon_struct_type] = STATE(2695), - [sym_multi_return_type] = STATE(2694), - [sym_result_type] = STATE(2694), - [sym_option_type] = STATE(2694), - [sym_qualified_type] = STATE(2643), - [sym_fixed_array_type] = STATE(2695), - [sym_array_type] = STATE(2695), - [sym_pointer_type] = STATE(2695), - [sym_wrong_pointer_type] = STATE(2695), - [sym_map_type] = STATE(2695), - [sym_channel_type] = STATE(2695), - [sym_shared_type] = STATE(2695), - [sym_thread_type] = STATE(2695), - [sym_atomic_type] = STATE(2695), - [sym_generic_type] = STATE(2695), - [sym_function_type] = STATE(2695), - [sym_identifier] = ACTIONS(4559), + [ts_builtin_sym_end] = ACTIONS(4561), + [sym_identifier] = ACTIONS(4563), + [anon_sym_LF] = ACTIONS(4563), + [anon_sym_CR] = ACTIONS(4563), + [anon_sym_CR_LF] = ACTIONS(4563), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4563), + [anon_sym_LBRACE] = ACTIONS(4563), + [anon_sym_const] = ACTIONS(4563), + [anon_sym_LPAREN] = ACTIONS(4563), + [anon_sym___global] = ACTIONS(4563), + [anon_sym_type] = ACTIONS(4563), + [anon_sym_fn] = ACTIONS(4563), + [anon_sym_PLUS] = ACTIONS(4563), + [anon_sym_DASH] = ACTIONS(4563), + [anon_sym_STAR] = ACTIONS(4563), + [anon_sym_struct] = ACTIONS(4563), + [anon_sym_union] = ACTIONS(4563), + [anon_sym_pub] = ACTIONS(4563), + [anon_sym_mut] = ACTIONS(4563), + [anon_sym_enum] = ACTIONS(4563), + [anon_sym_interface] = ACTIONS(4563), + [anon_sym_QMARK] = ACTIONS(4563), + [anon_sym_BANG] = ACTIONS(4563), + [anon_sym_go] = ACTIONS(4563), + [anon_sym_spawn] = ACTIONS(4563), + [anon_sym_json_DOTdecode] = ACTIONS(4563), + [anon_sym_LBRACK2] = ACTIONS(4563), + [anon_sym_TILDE] = ACTIONS(4563), + [anon_sym_CARET] = ACTIONS(4563), + [anon_sym_AMP] = ACTIONS(4563), + [anon_sym_LT_DASH] = ACTIONS(4563), + [sym_none] = ACTIONS(4563), + [sym_true] = ACTIONS(4563), + [sym_false] = ACTIONS(4563), + [sym_nil] = ACTIONS(4563), + [anon_sym_if] = ACTIONS(4563), + [anon_sym_DOLLARif] = ACTIONS(4563), + [anon_sym_match] = ACTIONS(4563), + [anon_sym_select] = ACTIONS(4563), + [anon_sym_lock] = ACTIONS(4563), + [anon_sym_rlock] = ACTIONS(4563), + [anon_sym_unsafe] = ACTIONS(4563), + [anon_sym_sql] = ACTIONS(4563), + [sym_int_literal] = ACTIONS(4563), + [sym_float_literal] = ACTIONS(4563), + [sym_rune_literal] = ACTIONS(4563), + [sym_pseudo_compile_time_identifier] = ACTIONS(4563), + [anon_sym_shared] = ACTIONS(4563), + [anon_sym_map_LBRACK] = ACTIONS(4563), + [anon_sym_chan] = ACTIONS(4563), + [anon_sym_thread] = ACTIONS(4563), + [anon_sym_atomic] = ACTIONS(4563), + [anon_sym_assert] = ACTIONS(4563), + [anon_sym_defer] = ACTIONS(4563), + [anon_sym_goto] = ACTIONS(4563), + [anon_sym_break] = ACTIONS(4563), + [anon_sym_continue] = ACTIONS(4563), + [anon_sym_return] = ACTIONS(4563), + [anon_sym_DOLLARfor] = ACTIONS(4563), + [anon_sym_for] = ACTIONS(4563), + [anon_sym_POUND] = ACTIONS(4563), + [anon_sym_asm] = ACTIONS(4563), + [anon_sym_AT_LBRACK] = ACTIONS(4563), + [sym___double_quote] = ACTIONS(4563), + [sym___single_quote] = ACTIONS(4563), + [sym___c_double_quote] = ACTIONS(4563), + [sym___c_single_quote] = ACTIONS(4563), + [sym___r_double_quote] = ACTIONS(4563), + [sym___r_single_quote] = ACTIONS(4563), + }, + [1605] = { + [ts_builtin_sym_end] = ACTIONS(4565), + [sym_identifier] = ACTIONS(4567), + [anon_sym_LF] = ACTIONS(4567), + [anon_sym_CR] = ACTIONS(4567), + [anon_sym_CR_LF] = ACTIONS(4567), + [sym_comment] = ACTIONS(495), + [anon_sym_DOT] = ACTIONS(4567), + [anon_sym_LBRACE] = ACTIONS(4567), + [anon_sym_const] = ACTIONS(4567), + [anon_sym_LPAREN] = ACTIONS(4567), + [anon_sym___global] = ACTIONS(4567), + [anon_sym_type] = ACTIONS(4567), + [anon_sym_fn] = ACTIONS(4567), + [anon_sym_PLUS] = ACTIONS(4567), + [anon_sym_DASH] = ACTIONS(4567), + [anon_sym_STAR] = ACTIONS(4567), + [anon_sym_struct] = ACTIONS(4567), + [anon_sym_union] = ACTIONS(4567), + [anon_sym_pub] = ACTIONS(4567), + [anon_sym_mut] = ACTIONS(4567), + [anon_sym_enum] = ACTIONS(4567), + [anon_sym_interface] = ACTIONS(4567), + [anon_sym_QMARK] = ACTIONS(4567), + [anon_sym_BANG] = ACTIONS(4567), + [anon_sym_go] = ACTIONS(4567), + [anon_sym_spawn] = ACTIONS(4567), + [anon_sym_json_DOTdecode] = ACTIONS(4567), + [anon_sym_LBRACK2] = ACTIONS(4567), + [anon_sym_TILDE] = ACTIONS(4567), + [anon_sym_CARET] = ACTIONS(4567), + [anon_sym_AMP] = ACTIONS(4567), + [anon_sym_LT_DASH] = ACTIONS(4567), + [sym_none] = ACTIONS(4567), + [sym_true] = ACTIONS(4567), + [sym_false] = ACTIONS(4567), + [sym_nil] = ACTIONS(4567), + [anon_sym_if] = ACTIONS(4567), + [anon_sym_DOLLARif] = ACTIONS(4567), + [anon_sym_match] = ACTIONS(4567), + [anon_sym_select] = ACTIONS(4567), + [anon_sym_lock] = ACTIONS(4567), + [anon_sym_rlock] = ACTIONS(4567), + [anon_sym_unsafe] = ACTIONS(4567), + [anon_sym_sql] = ACTIONS(4567), + [sym_int_literal] = ACTIONS(4567), + [sym_float_literal] = ACTIONS(4567), + [sym_rune_literal] = ACTIONS(4567), + [sym_pseudo_compile_time_identifier] = ACTIONS(4567), + [anon_sym_shared] = ACTIONS(4567), + [anon_sym_map_LBRACK] = ACTIONS(4567), + [anon_sym_chan] = ACTIONS(4567), + [anon_sym_thread] = ACTIONS(4567), + [anon_sym_atomic] = ACTIONS(4567), + [anon_sym_assert] = ACTIONS(4567), + [anon_sym_defer] = ACTIONS(4567), + [anon_sym_goto] = ACTIONS(4567), + [anon_sym_break] = ACTIONS(4567), + [anon_sym_continue] = ACTIONS(4567), + [anon_sym_return] = ACTIONS(4567), + [anon_sym_DOLLARfor] = ACTIONS(4567), + [anon_sym_for] = ACTIONS(4567), + [anon_sym_POUND] = ACTIONS(4567), + [anon_sym_asm] = ACTIONS(4567), + [anon_sym_AT_LBRACK] = ACTIONS(4567), + [sym___double_quote] = ACTIONS(4567), + [sym___single_quote] = ACTIONS(4567), + [sym___c_double_quote] = ACTIONS(4567), + [sym___c_single_quote] = ACTIONS(4567), + [sym___r_double_quote] = ACTIONS(4567), + [sym___r_single_quote] = ACTIONS(4567), + }, + [1606] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), [anon_sym_DOT] = ACTIONS(563), [anon_sym_as] = ACTIONS(563), [anon_sym_LBRACE] = ACTIONS(559), [anon_sym_COMMA] = ACTIONS(559), - [anon_sym_LPAREN] = ACTIONS(4561), + [anon_sym_LPAREN] = ACTIONS(3630), [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_fn] = ACTIONS(4563), + [anon_sym_fn] = ACTIONS(567), [anon_sym_PLUS] = ACTIONS(563), [anon_sym_DASH] = ACTIONS(563), - [anon_sym_STAR] = ACTIONS(4565), + [anon_sym_STAR] = ACTIONS(3632), [anon_sym_SLASH] = ACTIONS(563), [anon_sym_PERCENT] = ACTIONS(559), [anon_sym_LT] = ACTIONS(563), @@ -189942,14 +190230,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(559), [anon_sym_DOT_DOT_DOT] = ACTIONS(559), [anon_sym_LBRACK] = ACTIONS(559), - [anon_sym_struct] = ACTIONS(4567), + [anon_sym_struct] = ACTIONS(571), [anon_sym_PLUS_PLUS] = ACTIONS(559), [anon_sym_DASH_DASH] = ACTIONS(559), - [anon_sym_QMARK] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4571), - [anon_sym_LBRACK2] = ACTIONS(4573), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(575), [anon_sym_CARET] = ACTIONS(559), - [anon_sym_AMP] = ACTIONS(4575), + [anon_sym_AMP] = ACTIONS(577), [anon_sym_LT_LT] = ACTIONS(559), [anon_sym_GT_GT] = ACTIONS(563), [anon_sym_GT_GT_GT] = ACTIONS(559), @@ -189963,639 +190251,360 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANGis] = ACTIONS(559), [anon_sym_in] = ACTIONS(563), [anon_sym_BANGin] = ACTIONS(559), - [anon_sym_shared] = ACTIONS(4577), - [anon_sym_map_LBRACK] = ACTIONS(4579), - [anon_sym_chan] = ACTIONS(4581), - [anon_sym_thread] = ACTIONS(4583), - [anon_sym_atomic] = ACTIONS(4585), - [anon_sym_DOT_DOT] = ACTIONS(563), - }, - [1605] = { - [sym_reference_expression] = STATE(4511), - [sym_type_reference_expression] = STATE(2643), - [sym_plain_type] = STATE(2717), - [sym__plain_type_without_special] = STATE(2694), - [sym_anon_struct_type] = STATE(2695), - [sym_multi_return_type] = STATE(2694), - [sym_result_type] = STATE(2694), - [sym_option_type] = STATE(2694), - [sym_qualified_type] = STATE(2643), - [sym_fixed_array_type] = STATE(2695), - [sym_array_type] = STATE(2695), - [sym_pointer_type] = STATE(2695), - [sym_wrong_pointer_type] = STATE(2695), - [sym_map_type] = STATE(2695), - [sym_channel_type] = STATE(2695), - [sym_shared_type] = STATE(2695), - [sym_thread_type] = STATE(2695), - [sym_atomic_type] = STATE(2695), - [sym_generic_type] = STATE(2695), - [sym_function_type] = STATE(2695), - [sym_identifier] = ACTIONS(4559), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(597), - [anon_sym_as] = ACTIONS(597), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_PIPE] = ACTIONS(597), - [anon_sym_fn] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(597), - [anon_sym_DASH] = ACTIONS(597), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(597), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(597), - [anon_sym_GT] = ACTIONS(597), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(595), - [anon_sym_struct] = ACTIONS(4567), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4571), - [anon_sym_LBRACK2] = ACTIONS(4573), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(597), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(597), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(597), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(597), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(4577), - [anon_sym_map_LBRACK] = ACTIONS(4579), - [anon_sym_chan] = ACTIONS(4581), - [anon_sym_thread] = ACTIONS(4583), - [anon_sym_atomic] = ACTIONS(4585), - [anon_sym_DOT_DOT] = ACTIONS(597), - }, - [1606] = { - [sym_reference_expression] = STATE(4511), - [sym_type_reference_expression] = STATE(2643), - [sym_plain_type] = STATE(2721), - [sym__plain_type_without_special] = STATE(2694), - [sym_anon_struct_type] = STATE(2695), - [sym_multi_return_type] = STATE(2694), - [sym_result_type] = STATE(2694), - [sym_option_type] = STATE(2694), - [sym_qualified_type] = STATE(2643), - [sym_fixed_array_type] = STATE(2695), - [sym_array_type] = STATE(2695), - [sym_pointer_type] = STATE(2695), - [sym_wrong_pointer_type] = STATE(2695), - [sym_map_type] = STATE(2695), - [sym_channel_type] = STATE(2695), - [sym_shared_type] = STATE(2695), - [sym_thread_type] = STATE(2695), - [sym_atomic_type] = STATE(2695), - [sym_generic_type] = STATE(2695), - [sym_function_type] = STATE(2695), - [sym_identifier] = ACTIONS(4559), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(593), - [anon_sym_as] = ACTIONS(593), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(4561), - [anon_sym_PIPE] = ACTIONS(593), - [anon_sym_fn] = ACTIONS(4563), - [anon_sym_PLUS] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(593), - [anon_sym_STAR] = ACTIONS(4565), - [anon_sym_SLASH] = ACTIONS(593), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(593), - [anon_sym_GT] = ACTIONS(593), - [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(4567), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(4569), - [anon_sym_BANG] = ACTIONS(4571), - [anon_sym_LBRACK2] = ACTIONS(4573), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(4575), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(593), - [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(593), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(593), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(593), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(4577), - [anon_sym_map_LBRACK] = ACTIONS(4579), - [anon_sym_chan] = ACTIONS(4581), - [anon_sym_thread] = ACTIONS(4583), - [anon_sym_atomic] = ACTIONS(4585), - [anon_sym_DOT_DOT] = ACTIONS(593), - }, - [1607] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2353), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(599), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_as] = ACTIONS(601), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(599), - [anon_sym_LPAREN] = ACTIONS(599), - [anon_sym_PIPE] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(601), - [anon_sym_STAR] = ACTIONS(599), - [anon_sym_SLASH] = ACTIONS(601), - [anon_sym_PERCENT] = ACTIONS(599), - [anon_sym_LT] = ACTIONS(601), - [anon_sym_GT] = ACTIONS(601), - [anon_sym_EQ_EQ] = ACTIONS(599), - [anon_sym_BANG_EQ] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(599), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(599), - [anon_sym_DASH_DASH] = ACTIONS(599), - [anon_sym_QMARK] = ACTIONS(601), - [anon_sym_BANG] = ACTIONS(601), - [anon_sym_LBRACK2] = ACTIONS(601), - [anon_sym_CARET] = ACTIONS(599), - [anon_sym_AMP] = ACTIONS(601), - [anon_sym_LT_LT] = ACTIONS(599), - [anon_sym_GT_GT] = ACTIONS(601), - [anon_sym_GT_GT_GT] = ACTIONS(599), - [anon_sym_AMP_CARET] = ACTIONS(599), - [anon_sym_AMP_AMP] = ACTIONS(599), - [anon_sym_PIPE_PIPE] = ACTIONS(599), - [anon_sym_or] = ACTIONS(601), - [anon_sym_QMARK_DOT] = ACTIONS(599), - [anon_sym_POUND_LBRACK] = ACTIONS(599), - [anon_sym_is] = ACTIONS(601), - [anon_sym_BANGis] = ACTIONS(599), - [anon_sym_in] = ACTIONS(601), - [anon_sym_BANGin] = ACTIONS(599), - [anon_sym_COLON_EQ] = ACTIONS(599), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), + [anon_sym_DOT_DOT] = ACTIONS(563), }, - [1608] = { - [ts_builtin_sym_end] = ACTIONS(4587), - [sym_identifier] = ACTIONS(4589), + [1607] = { + [sym_reference_expression] = STATE(4533), + [sym_type_reference_expression] = STATE(2652), + [sym_plain_type] = STATE(2732), + [sym__plain_type_without_special] = STATE(2707), + [sym_anon_struct_type] = STATE(2708), + [sym_multi_return_type] = STATE(2707), + [sym_result_type] = STATE(2707), + [sym_option_type] = STATE(2707), + [sym_qualified_type] = STATE(2652), + [sym_fixed_array_type] = STATE(2708), + [sym_array_type] = STATE(2708), + [sym_pointer_type] = STATE(2708), + [sym_wrong_pointer_type] = STATE(2708), + [sym_map_type] = STATE(2708), + [sym_channel_type] = STATE(2708), + [sym_shared_type] = STATE(2708), + [sym_thread_type] = STATE(2708), + [sym_atomic_type] = STATE(2708), + [sym_generic_type] = STATE(2708), + [sym_function_type] = STATE(2708), + [sym_identifier] = ACTIONS(4571), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4589), - [anon_sym_DOT] = ACTIONS(4589), - [anon_sym_LBRACE] = ACTIONS(4587), - [anon_sym_const] = ACTIONS(4589), - [anon_sym_LPAREN] = ACTIONS(4587), - [anon_sym___global] = ACTIONS(4589), - [anon_sym_type] = ACTIONS(4589), - [anon_sym_fn] = ACTIONS(4589), - [anon_sym_PLUS] = ACTIONS(4587), - [anon_sym_DASH] = ACTIONS(4587), - [anon_sym_STAR] = ACTIONS(4587), - [anon_sym_struct] = ACTIONS(4589), - [anon_sym_union] = ACTIONS(4589), - [anon_sym_pub] = ACTIONS(4589), - [anon_sym_mut] = ACTIONS(4589), - [anon_sym_enum] = ACTIONS(4589), - [anon_sym_interface] = ACTIONS(4589), - [anon_sym_QMARK] = ACTIONS(4587), - [anon_sym_BANG] = ACTIONS(4587), - [anon_sym_go] = ACTIONS(4589), - [anon_sym_spawn] = ACTIONS(4589), - [anon_sym_json_DOTdecode] = ACTIONS(4587), - [anon_sym_LBRACK2] = ACTIONS(4587), - [anon_sym_TILDE] = ACTIONS(4587), - [anon_sym_CARET] = ACTIONS(4587), + [anon_sym_DOT] = ACTIONS(585), + [anon_sym_as] = ACTIONS(585), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(581), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_fn] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(585), + [anon_sym_DASH] = ACTIONS(585), + [anon_sym_STAR] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(585), + [anon_sym_PERCENT] = ACTIONS(581), + [anon_sym_LT] = ACTIONS(585), + [anon_sym_GT] = ACTIONS(585), + [anon_sym_EQ_EQ] = ACTIONS(581), + [anon_sym_BANG_EQ] = ACTIONS(581), + [anon_sym_LT_EQ] = ACTIONS(581), + [anon_sym_GT_EQ] = ACTIONS(581), + [anon_sym_DOT_DOT_DOT] = ACTIONS(581), + [anon_sym_LBRACK] = ACTIONS(581), + [anon_sym_struct] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(581), + [anon_sym_DASH_DASH] = ACTIONS(581), + [anon_sym_QMARK] = ACTIONS(4581), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_LBRACK2] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(581), [anon_sym_AMP] = ACTIONS(4587), - [anon_sym_LT_DASH] = ACTIONS(4587), - [sym_none] = ACTIONS(4589), - [sym_true] = ACTIONS(4589), - [sym_false] = ACTIONS(4589), - [sym_nil] = ACTIONS(4589), - [anon_sym_if] = ACTIONS(4589), - [anon_sym_DOLLARif] = ACTIONS(4589), - [anon_sym_match] = ACTIONS(4589), - [anon_sym_select] = ACTIONS(4589), - [anon_sym_lock] = ACTIONS(4589), - [anon_sym_rlock] = ACTIONS(4589), - [anon_sym_unsafe] = ACTIONS(4589), - [anon_sym_sql] = ACTIONS(4589), - [sym_int_literal] = ACTIONS(4589), - [sym_float_literal] = ACTIONS(4587), - [sym_rune_literal] = ACTIONS(4587), - [sym_pseudo_compile_time_identifier] = ACTIONS(4589), + [anon_sym_LT_LT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(585), + [anon_sym_GT_GT_GT] = ACTIONS(581), + [anon_sym_AMP_CARET] = ACTIONS(581), + [anon_sym_AMP_AMP] = ACTIONS(581), + [anon_sym_PIPE_PIPE] = ACTIONS(581), + [anon_sym_or] = ACTIONS(585), + [anon_sym_QMARK_DOT] = ACTIONS(581), + [anon_sym_POUND_LBRACK] = ACTIONS(581), + [anon_sym_is] = ACTIONS(585), + [anon_sym_BANGis] = ACTIONS(581), + [anon_sym_in] = ACTIONS(585), + [anon_sym_BANGin] = ACTIONS(581), [anon_sym_shared] = ACTIONS(4589), - [anon_sym_map_LBRACK] = ACTIONS(4587), - [anon_sym_chan] = ACTIONS(4589), - [anon_sym_thread] = ACTIONS(4589), - [anon_sym_atomic] = ACTIONS(4589), - [anon_sym_assert] = ACTIONS(4589), - [anon_sym_defer] = ACTIONS(4589), - [anon_sym_goto] = ACTIONS(4589), - [anon_sym_break] = ACTIONS(4589), - [anon_sym_continue] = ACTIONS(4589), - [anon_sym_return] = ACTIONS(4589), - [anon_sym_DOLLARfor] = ACTIONS(4589), - [anon_sym_for] = ACTIONS(4589), - [anon_sym_POUND] = ACTIONS(4587), - [anon_sym_asm] = ACTIONS(4589), - [anon_sym_AT_LBRACK] = ACTIONS(4587), - [sym___double_quote] = ACTIONS(4587), - [sym___single_quote] = ACTIONS(4587), - [sym___c_double_quote] = ACTIONS(4587), - [sym___c_single_quote] = ACTIONS(4587), - [sym___r_double_quote] = ACTIONS(4587), - [sym___r_single_quote] = ACTIONS(4587), + [anon_sym_map_LBRACK] = ACTIONS(4591), + [anon_sym_chan] = ACTIONS(4593), + [anon_sym_thread] = ACTIONS(4595), + [anon_sym_atomic] = ACTIONS(4597), + [anon_sym_DOT_DOT] = ACTIONS(585), }, - [1609] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), + [1608] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2384), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_LBRACE] = ACTIONS(603), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4557), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(603), - [anon_sym_AMP_CARET] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), + [anon_sym_SEMI] = ACTIONS(613), + [anon_sym_DOT] = ACTIONS(613), + [anon_sym_as] = ACTIONS(615), + [anon_sym_LBRACE] = ACTIONS(581), + [anon_sym_COMMA] = ACTIONS(613), + [anon_sym_LPAREN] = ACTIONS(613), + [anon_sym_PIPE] = ACTIONS(615), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(615), + [anon_sym_DASH] = ACTIONS(615), + [anon_sym_STAR] = ACTIONS(613), + [anon_sym_SLASH] = ACTIONS(615), + [anon_sym_PERCENT] = ACTIONS(613), + [anon_sym_LT] = ACTIONS(615), + [anon_sym_GT] = ACTIONS(615), + [anon_sym_EQ_EQ] = ACTIONS(613), + [anon_sym_BANG_EQ] = ACTIONS(613), + [anon_sym_LT_EQ] = ACTIONS(613), + [anon_sym_GT_EQ] = ACTIONS(613), + [anon_sym_LBRACK] = ACTIONS(613), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(613), + [anon_sym_DASH_DASH] = ACTIONS(613), + [anon_sym_QMARK] = ACTIONS(615), + [anon_sym_BANG] = ACTIONS(615), + [anon_sym_LBRACK2] = ACTIONS(615), + [anon_sym_CARET] = ACTIONS(613), + [anon_sym_AMP] = ACTIONS(615), + [anon_sym_LT_LT] = ACTIONS(613), + [anon_sym_GT_GT] = ACTIONS(615), + [anon_sym_GT_GT_GT] = ACTIONS(613), + [anon_sym_AMP_CARET] = ACTIONS(613), + [anon_sym_AMP_AMP] = ACTIONS(613), + [anon_sym_PIPE_PIPE] = ACTIONS(613), + [anon_sym_or] = ACTIONS(615), + [anon_sym_QMARK_DOT] = ACTIONS(613), + [anon_sym_POUND_LBRACK] = ACTIONS(613), + [anon_sym_is] = ACTIONS(615), + [anon_sym_BANGis] = ACTIONS(613), + [anon_sym_in] = ACTIONS(615), + [anon_sym_BANGin] = ACTIONS(613), + [anon_sym_COLON_EQ] = ACTIONS(613), + [anon_sym_shared] = ACTIONS(579), [anon_sym_map_LBRACK] = ACTIONS(83), [anon_sym_chan] = ACTIONS(85), [anon_sym_thread] = ACTIONS(87), [anon_sym_atomic] = ACTIONS(89), }, - [1610] = { - [ts_builtin_sym_end] = ACTIONS(4591), - [sym_identifier] = ACTIONS(4593), + [1609] = { + [sym_reference_expression] = STATE(4533), + [sym_type_reference_expression] = STATE(2652), + [sym_plain_type] = STATE(2728), + [sym__plain_type_without_special] = STATE(2707), + [sym_anon_struct_type] = STATE(2708), + [sym_multi_return_type] = STATE(2707), + [sym_result_type] = STATE(2707), + [sym_option_type] = STATE(2707), + [sym_qualified_type] = STATE(2652), + [sym_fixed_array_type] = STATE(2708), + [sym_array_type] = STATE(2708), + [sym_pointer_type] = STATE(2708), + [sym_wrong_pointer_type] = STATE(2708), + [sym_map_type] = STATE(2708), + [sym_channel_type] = STATE(2708), + [sym_shared_type] = STATE(2708), + [sym_thread_type] = STATE(2708), + [sym_atomic_type] = STATE(2708), + [sym_generic_type] = STATE(2708), + [sym_function_type] = STATE(2708), + [sym_identifier] = ACTIONS(4571), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4593), - [anon_sym_DOT] = ACTIONS(4593), - [anon_sym_LBRACE] = ACTIONS(4591), - [anon_sym_const] = ACTIONS(4593), - [anon_sym_LPAREN] = ACTIONS(4591), - [anon_sym___global] = ACTIONS(4593), - [anon_sym_type] = ACTIONS(4593), - [anon_sym_fn] = ACTIONS(4593), - [anon_sym_PLUS] = ACTIONS(4591), - [anon_sym_DASH] = ACTIONS(4591), - [anon_sym_STAR] = ACTIONS(4591), - [anon_sym_struct] = ACTIONS(4593), - [anon_sym_union] = ACTIONS(4593), - [anon_sym_pub] = ACTIONS(4593), - [anon_sym_mut] = ACTIONS(4593), - [anon_sym_enum] = ACTIONS(4593), - [anon_sym_interface] = ACTIONS(4593), - [anon_sym_QMARK] = ACTIONS(4591), - [anon_sym_BANG] = ACTIONS(4591), - [anon_sym_go] = ACTIONS(4593), - [anon_sym_spawn] = ACTIONS(4593), - [anon_sym_json_DOTdecode] = ACTIONS(4591), - [anon_sym_LBRACK2] = ACTIONS(4591), - [anon_sym_TILDE] = ACTIONS(4591), - [anon_sym_CARET] = ACTIONS(4591), - [anon_sym_AMP] = ACTIONS(4591), - [anon_sym_LT_DASH] = ACTIONS(4591), - [sym_none] = ACTIONS(4593), - [sym_true] = ACTIONS(4593), - [sym_false] = ACTIONS(4593), - [sym_nil] = ACTIONS(4593), - [anon_sym_if] = ACTIONS(4593), - [anon_sym_DOLLARif] = ACTIONS(4593), - [anon_sym_match] = ACTIONS(4593), - [anon_sym_select] = ACTIONS(4593), - [anon_sym_lock] = ACTIONS(4593), - [anon_sym_rlock] = ACTIONS(4593), - [anon_sym_unsafe] = ACTIONS(4593), - [anon_sym_sql] = ACTIONS(4593), - [sym_int_literal] = ACTIONS(4593), - [sym_float_literal] = ACTIONS(4591), - [sym_rune_literal] = ACTIONS(4591), - [sym_pseudo_compile_time_identifier] = ACTIONS(4593), - [anon_sym_shared] = ACTIONS(4593), + [anon_sym_DOT] = ACTIONS(619), + [anon_sym_as] = ACTIONS(619), + [anon_sym_LBRACE] = ACTIONS(617), + [anon_sym_COMMA] = ACTIONS(617), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_PIPE] = ACTIONS(619), + [anon_sym_fn] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(619), + [anon_sym_DASH] = ACTIONS(619), + [anon_sym_STAR] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(619), + [anon_sym_PERCENT] = ACTIONS(617), + [anon_sym_LT] = ACTIONS(619), + [anon_sym_GT] = ACTIONS(619), + [anon_sym_EQ_EQ] = ACTIONS(617), + [anon_sym_BANG_EQ] = ACTIONS(617), + [anon_sym_LT_EQ] = ACTIONS(617), + [anon_sym_GT_EQ] = ACTIONS(617), + [anon_sym_DOT_DOT_DOT] = ACTIONS(617), + [anon_sym_LBRACK] = ACTIONS(617), + [anon_sym_struct] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(617), + [anon_sym_DASH_DASH] = ACTIONS(617), + [anon_sym_QMARK] = ACTIONS(4581), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_LBRACK2] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(617), + [anon_sym_AMP] = ACTIONS(4587), + [anon_sym_LT_LT] = ACTIONS(617), + [anon_sym_GT_GT] = ACTIONS(619), + [anon_sym_GT_GT_GT] = ACTIONS(617), + [anon_sym_AMP_CARET] = ACTIONS(617), + [anon_sym_AMP_AMP] = ACTIONS(617), + [anon_sym_PIPE_PIPE] = ACTIONS(617), + [anon_sym_or] = ACTIONS(619), + [anon_sym_QMARK_DOT] = ACTIONS(617), + [anon_sym_POUND_LBRACK] = ACTIONS(617), + [anon_sym_is] = ACTIONS(619), + [anon_sym_BANGis] = ACTIONS(617), + [anon_sym_in] = ACTIONS(619), + [anon_sym_BANGin] = ACTIONS(617), + [anon_sym_shared] = ACTIONS(4589), [anon_sym_map_LBRACK] = ACTIONS(4591), [anon_sym_chan] = ACTIONS(4593), - [anon_sym_thread] = ACTIONS(4593), - [anon_sym_atomic] = ACTIONS(4593), - [anon_sym_assert] = ACTIONS(4593), - [anon_sym_defer] = ACTIONS(4593), - [anon_sym_goto] = ACTIONS(4593), - [anon_sym_break] = ACTIONS(4593), - [anon_sym_continue] = ACTIONS(4593), - [anon_sym_return] = ACTIONS(4593), - [anon_sym_DOLLARfor] = ACTIONS(4593), - [anon_sym_for] = ACTIONS(4593), - [anon_sym_POUND] = ACTIONS(4591), - [anon_sym_asm] = ACTIONS(4593), - [anon_sym_AT_LBRACK] = ACTIONS(4591), - [sym___double_quote] = ACTIONS(4591), - [sym___single_quote] = ACTIONS(4591), - [sym___c_double_quote] = ACTIONS(4591), - [sym___c_single_quote] = ACTIONS(4591), - [sym___r_double_quote] = ACTIONS(4591), - [sym___r_single_quote] = ACTIONS(4591), - }, - [1611] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2349), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(605), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(603), - [anon_sym_DOT] = ACTIONS(603), - [anon_sym_as] = ACTIONS(607), - [anon_sym_COMMA] = ACTIONS(603), - [anon_sym_LPAREN] = ACTIONS(3622), - [anon_sym_PIPE] = ACTIONS(607), - [anon_sym_fn] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(607), - [anon_sym_DASH] = ACTIONS(607), - [anon_sym_STAR] = ACTIONS(3624), - [anon_sym_SLASH] = ACTIONS(607), - [anon_sym_PERCENT] = ACTIONS(603), - [anon_sym_LT] = ACTIONS(607), - [anon_sym_GT] = ACTIONS(607), - [anon_sym_EQ_EQ] = ACTIONS(603), - [anon_sym_BANG_EQ] = ACTIONS(603), - [anon_sym_LT_EQ] = ACTIONS(603), - [anon_sym_GT_EQ] = ACTIONS(603), - [anon_sym_LBRACK] = ACTIONS(603), - [anon_sym_struct] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(603), - [anon_sym_DASH_DASH] = ACTIONS(603), - [anon_sym_QMARK] = ACTIONS(511), - [anon_sym_BANG] = ACTIONS(4595), - [anon_sym_LBRACK2] = ACTIONS(619), - [anon_sym_CARET] = ACTIONS(603), - [anon_sym_AMP] = ACTIONS(621), - [anon_sym_LT_LT] = ACTIONS(603), - [anon_sym_GT_GT] = ACTIONS(607), - [anon_sym_GT_GT_GT] = ACTIONS(603), - [anon_sym_AMP_CARET] = ACTIONS(603), - [anon_sym_AMP_AMP] = ACTIONS(603), - [anon_sym_PIPE_PIPE] = ACTIONS(603), - [anon_sym_or] = ACTIONS(607), - [anon_sym_QMARK_DOT] = ACTIONS(603), - [anon_sym_POUND_LBRACK] = ACTIONS(603), - [anon_sym_is] = ACTIONS(607), - [anon_sym_BANGis] = ACTIONS(603), - [anon_sym_in] = ACTIONS(607), - [anon_sym_BANGin] = ACTIONS(603), - [anon_sym_COLON_EQ] = ACTIONS(603), - [anon_sym_shared] = ACTIONS(623), - [anon_sym_map_LBRACK] = ACTIONS(83), - [anon_sym_chan] = ACTIONS(85), - [anon_sym_thread] = ACTIONS(87), - [anon_sym_atomic] = ACTIONS(89), + [anon_sym_thread] = ACTIONS(4595), + [anon_sym_atomic] = ACTIONS(4597), + [anon_sym_DOT_DOT] = ACTIONS(619), }, - [1612] = { - [sym_reference_expression] = STATE(4551), - [sym_type_reference_expression] = STATE(3543), - [sym_plain_type] = STATE(2437), - [sym__plain_type_without_special] = STATE(2346), - [sym_anon_struct_type] = STATE(2434), - [sym_multi_return_type] = STATE(2346), - [sym_result_type] = STATE(2346), - [sym_option_type] = STATE(2346), - [sym_qualified_type] = STATE(3543), - [sym_fixed_array_type] = STATE(2434), - [sym_array_type] = STATE(2434), - [sym_pointer_type] = STATE(2434), - [sym_wrong_pointer_type] = STATE(2434), - [sym_map_type] = STATE(2434), - [sym_channel_type] = STATE(2434), - [sym_shared_type] = STATE(2434), - [sym_thread_type] = STATE(2434), - [sym_atomic_type] = STATE(2434), - [sym_generic_type] = STATE(2434), - [sym_function_type] = STATE(2434), - [sym_identifier] = ACTIONS(4597), + [1610] = { + [sym_reference_expression] = STATE(4533), + [sym_type_reference_expression] = STATE(2652), + [sym_plain_type] = STATE(2717), + [sym__plain_type_without_special] = STATE(2707), + [sym_anon_struct_type] = STATE(2708), + [sym_multi_return_type] = STATE(2707), + [sym_result_type] = STATE(2707), + [sym_option_type] = STATE(2707), + [sym_qualified_type] = STATE(2652), + [sym_fixed_array_type] = STATE(2708), + [sym_array_type] = STATE(2708), + [sym_pointer_type] = STATE(2708), + [sym_wrong_pointer_type] = STATE(2708), + [sym_map_type] = STATE(2708), + [sym_channel_type] = STATE(2708), + [sym_shared_type] = STATE(2708), + [sym_thread_type] = STATE(2708), + [sym_atomic_type] = STATE(2708), + [sym_generic_type] = STATE(2708), + [sym_function_type] = STATE(2708), + [sym_identifier] = ACTIONS(4571), [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4597), - [anon_sym_LBRACE] = ACTIONS(4599), - [anon_sym_LPAREN] = ACTIONS(4599), - [anon_sym_fn] = ACTIONS(4597), - [anon_sym_PLUS] = ACTIONS(4599), - [anon_sym_DASH] = ACTIONS(4599), - [anon_sym_STAR] = ACTIONS(4599), - [anon_sym_struct] = ACTIONS(4597), - [anon_sym_mut] = ACTIONS(4597), - [anon_sym_QMARK] = ACTIONS(4599), - [anon_sym_BANG] = ACTIONS(4599), - [anon_sym_go] = ACTIONS(4597), - [anon_sym_spawn] = ACTIONS(4597), - [anon_sym_json_DOTdecode] = ACTIONS(4599), - [anon_sym_LBRACK2] = ACTIONS(4599), - [anon_sym_TILDE] = ACTIONS(4599), - [anon_sym_CARET] = ACTIONS(4599), - [anon_sym_AMP] = ACTIONS(4599), - [anon_sym_LT_DASH] = ACTIONS(4599), - [sym_none] = ACTIONS(4597), - [sym_true] = ACTIONS(4597), - [sym_false] = ACTIONS(4597), - [sym_nil] = ACTIONS(4597), - [anon_sym_if] = ACTIONS(4597), - [anon_sym_DOLLARif] = ACTIONS(4597), - [anon_sym_match] = ACTIONS(4597), - [anon_sym_select] = ACTIONS(4597), - [anon_sym_lock] = ACTIONS(4597), - [anon_sym_rlock] = ACTIONS(4597), - [anon_sym_unsafe] = ACTIONS(4597), - [anon_sym_sql] = ACTIONS(4597), - [sym_int_literal] = ACTIONS(4597), - [sym_float_literal] = ACTIONS(4599), - [sym_rune_literal] = ACTIONS(4599), - [sym_pseudo_compile_time_identifier] = ACTIONS(4597), - [anon_sym_shared] = ACTIONS(4597), - [anon_sym_map_LBRACK] = ACTIONS(4599), - [anon_sym_chan] = ACTIONS(4597), - [anon_sym_thread] = ACTIONS(4597), + [anon_sym_DOT] = ACTIONS(623), + [anon_sym_as] = ACTIONS(623), + [anon_sym_LBRACE] = ACTIONS(621), + [anon_sym_COMMA] = ACTIONS(621), + [anon_sym_LPAREN] = ACTIONS(4573), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_fn] = ACTIONS(4575), + [anon_sym_PLUS] = ACTIONS(623), + [anon_sym_DASH] = ACTIONS(623), + [anon_sym_STAR] = ACTIONS(4577), + [anon_sym_SLASH] = ACTIONS(623), + [anon_sym_PERCENT] = ACTIONS(621), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_EQ_EQ] = ACTIONS(621), + [anon_sym_BANG_EQ] = ACTIONS(621), + [anon_sym_LT_EQ] = ACTIONS(621), + [anon_sym_GT_EQ] = ACTIONS(621), + [anon_sym_DOT_DOT_DOT] = ACTIONS(621), + [anon_sym_LBRACK] = ACTIONS(621), + [anon_sym_struct] = ACTIONS(4579), + [anon_sym_PLUS_PLUS] = ACTIONS(621), + [anon_sym_DASH_DASH] = ACTIONS(621), + [anon_sym_QMARK] = ACTIONS(4581), + [anon_sym_BANG] = ACTIONS(4583), + [anon_sym_LBRACK2] = ACTIONS(4585), + [anon_sym_CARET] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(4587), + [anon_sym_LT_LT] = ACTIONS(621), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_GT_GT_GT] = ACTIONS(621), + [anon_sym_AMP_CARET] = ACTIONS(621), + [anon_sym_AMP_AMP] = ACTIONS(621), + [anon_sym_PIPE_PIPE] = ACTIONS(621), + [anon_sym_or] = ACTIONS(623), + [anon_sym_QMARK_DOT] = ACTIONS(621), + [anon_sym_POUND_LBRACK] = ACTIONS(621), + [anon_sym_is] = ACTIONS(623), + [anon_sym_BANGis] = ACTIONS(621), + [anon_sym_in] = ACTIONS(623), + [anon_sym_BANGin] = ACTIONS(621), + [anon_sym_shared] = ACTIONS(4589), + [anon_sym_map_LBRACK] = ACTIONS(4591), + [anon_sym_chan] = ACTIONS(4593), + [anon_sym_thread] = ACTIONS(4595), [anon_sym_atomic] = ACTIONS(4597), - [sym___double_quote] = ACTIONS(4599), - [sym___single_quote] = ACTIONS(4599), - [sym___c_double_quote] = ACTIONS(4599), - [sym___c_single_quote] = ACTIONS(4599), - [sym___r_double_quote] = ACTIONS(4599), - [sym___r_single_quote] = ACTIONS(4599), + [anon_sym_DOT_DOT] = ACTIONS(623), }, - [1613] = { - [ts_builtin_sym_end] = ACTIONS(4601), - [sym_identifier] = ACTIONS(4603), + [1611] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2438), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(4599), [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4603), - [anon_sym_DOT] = ACTIONS(4603), + [anon_sym_DOT] = ACTIONS(4599), [anon_sym_LBRACE] = ACTIONS(4601), - [anon_sym_const] = ACTIONS(4603), [anon_sym_LPAREN] = ACTIONS(4601), - [anon_sym___global] = ACTIONS(4603), - [anon_sym_type] = ACTIONS(4603), - [anon_sym_fn] = ACTIONS(4603), + [anon_sym_fn] = ACTIONS(4599), [anon_sym_PLUS] = ACTIONS(4601), [anon_sym_DASH] = ACTIONS(4601), [anon_sym_STAR] = ACTIONS(4601), - [anon_sym_struct] = ACTIONS(4603), - [anon_sym_union] = ACTIONS(4603), - [anon_sym_pub] = ACTIONS(4603), - [anon_sym_mut] = ACTIONS(4603), - [anon_sym_enum] = ACTIONS(4603), - [anon_sym_interface] = ACTIONS(4603), + [anon_sym_struct] = ACTIONS(4599), + [anon_sym_mut] = ACTIONS(4599), [anon_sym_QMARK] = ACTIONS(4601), [anon_sym_BANG] = ACTIONS(4601), - [anon_sym_go] = ACTIONS(4603), - [anon_sym_spawn] = ACTIONS(4603), + [anon_sym_go] = ACTIONS(4599), + [anon_sym_spawn] = ACTIONS(4599), [anon_sym_json_DOTdecode] = ACTIONS(4601), [anon_sym_LBRACK2] = ACTIONS(4601), [anon_sym_TILDE] = ACTIONS(4601), [anon_sym_CARET] = ACTIONS(4601), [anon_sym_AMP] = ACTIONS(4601), [anon_sym_LT_DASH] = ACTIONS(4601), - [sym_none] = ACTIONS(4603), - [sym_true] = ACTIONS(4603), - [sym_false] = ACTIONS(4603), - [sym_nil] = ACTIONS(4603), - [anon_sym_if] = ACTIONS(4603), - [anon_sym_DOLLARif] = ACTIONS(4603), - [anon_sym_match] = ACTIONS(4603), - [anon_sym_select] = ACTIONS(4603), - [anon_sym_lock] = ACTIONS(4603), - [anon_sym_rlock] = ACTIONS(4603), - [anon_sym_unsafe] = ACTIONS(4603), - [anon_sym_sql] = ACTIONS(4603), - [sym_int_literal] = ACTIONS(4603), + [sym_none] = ACTIONS(4599), + [sym_true] = ACTIONS(4599), + [sym_false] = ACTIONS(4599), + [sym_nil] = ACTIONS(4599), + [anon_sym_if] = ACTIONS(4599), + [anon_sym_DOLLARif] = ACTIONS(4599), + [anon_sym_match] = ACTIONS(4599), + [anon_sym_select] = ACTIONS(4599), + [anon_sym_lock] = ACTIONS(4599), + [anon_sym_rlock] = ACTIONS(4599), + [anon_sym_unsafe] = ACTIONS(4599), + [anon_sym_sql] = ACTIONS(4599), + [sym_int_literal] = ACTIONS(4599), [sym_float_literal] = ACTIONS(4601), [sym_rune_literal] = ACTIONS(4601), - [sym_pseudo_compile_time_identifier] = ACTIONS(4603), - [anon_sym_shared] = ACTIONS(4603), + [sym_pseudo_compile_time_identifier] = ACTIONS(4599), + [anon_sym_shared] = ACTIONS(4599), [anon_sym_map_LBRACK] = ACTIONS(4601), - [anon_sym_chan] = ACTIONS(4603), - [anon_sym_thread] = ACTIONS(4603), - [anon_sym_atomic] = ACTIONS(4603), - [anon_sym_assert] = ACTIONS(4603), - [anon_sym_defer] = ACTIONS(4603), - [anon_sym_goto] = ACTIONS(4603), - [anon_sym_break] = ACTIONS(4603), - [anon_sym_continue] = ACTIONS(4603), - [anon_sym_return] = ACTIONS(4603), - [anon_sym_DOLLARfor] = ACTIONS(4603), - [anon_sym_for] = ACTIONS(4603), - [anon_sym_POUND] = ACTIONS(4601), - [anon_sym_asm] = ACTIONS(4603), - [anon_sym_AT_LBRACK] = ACTIONS(4601), + [anon_sym_chan] = ACTIONS(4599), + [anon_sym_thread] = ACTIONS(4599), + [anon_sym_atomic] = ACTIONS(4599), [sym___double_quote] = ACTIONS(4601), [sym___single_quote] = ACTIONS(4601), [sym___c_double_quote] = ACTIONS(4601), @@ -190603,36 +190612,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(4601), [sym___r_single_quote] = ACTIONS(4601), }, - [1614] = { - [ts_builtin_sym_end] = ACTIONS(135), + [1612] = { + [ts_builtin_sym_end] = ACTIONS(4603), [sym_identifier] = ACTIONS(4605), [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4605), [anon_sym_DOT] = ACTIONS(4605), - [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_LBRACE] = ACTIONS(4603), [anon_sym_const] = ACTIONS(4605), - [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_LPAREN] = ACTIONS(4603), [anon_sym___global] = ACTIONS(4605), [anon_sym_type] = ACTIONS(4605), [anon_sym_fn] = ACTIONS(4605), - [anon_sym_PLUS] = ACTIONS(135), - [anon_sym_DASH] = ACTIONS(135), - [anon_sym_STAR] = ACTIONS(135), + [anon_sym_PLUS] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_STAR] = ACTIONS(4603), [anon_sym_struct] = ACTIONS(4605), [anon_sym_union] = ACTIONS(4605), [anon_sym_pub] = ACTIONS(4605), [anon_sym_mut] = ACTIONS(4605), [anon_sym_enum] = ACTIONS(4605), [anon_sym_interface] = ACTIONS(4605), - [anon_sym_QMARK] = ACTIONS(135), - [anon_sym_BANG] = ACTIONS(135), + [anon_sym_QMARK] = ACTIONS(4603), + [anon_sym_BANG] = ACTIONS(4603), [anon_sym_go] = ACTIONS(4605), [anon_sym_spawn] = ACTIONS(4605), - [anon_sym_json_DOTdecode] = ACTIONS(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), + [anon_sym_json_DOTdecode] = ACTIONS(4603), + [anon_sym_LBRACK2] = ACTIONS(4603), + [anon_sym_TILDE] = ACTIONS(4603), + [anon_sym_CARET] = ACTIONS(4603), + [anon_sym_AMP] = ACTIONS(4603), + [anon_sym_LT_DASH] = ACTIONS(4603), [sym_none] = ACTIONS(4605), [sym_true] = ACTIONS(4605), [sym_false] = ACTIONS(4605), @@ -190646,11 +190656,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_unsafe] = ACTIONS(4605), [anon_sym_sql] = ACTIONS(4605), [sym_int_literal] = ACTIONS(4605), - [sym_float_literal] = ACTIONS(135), - [sym_rune_literal] = ACTIONS(135), + [sym_float_literal] = ACTIONS(4603), + [sym_rune_literal] = ACTIONS(4603), [sym_pseudo_compile_time_identifier] = ACTIONS(4605), [anon_sym_shared] = ACTIONS(4605), - [anon_sym_map_LBRACK] = ACTIONS(135), + [anon_sym_map_LBRACK] = ACTIONS(4603), [anon_sym_chan] = ACTIONS(4605), [anon_sym_thread] = ACTIONS(4605), [anon_sym_atomic] = ACTIONS(4605), @@ -190662,8 +190672,357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(4605), [anon_sym_DOLLARfor] = ACTIONS(4605), [anon_sym_for] = ACTIONS(4605), - [anon_sym_POUND] = ACTIONS(135), + [anon_sym_POUND] = ACTIONS(4603), [anon_sym_asm] = ACTIONS(4605), + [anon_sym_AT_LBRACK] = ACTIONS(4603), + [sym___double_quote] = ACTIONS(4603), + [sym___single_quote] = ACTIONS(4603), + [sym___c_double_quote] = ACTIONS(4603), + [sym___c_single_quote] = ACTIONS(4603), + [sym___r_double_quote] = ACTIONS(4603), + [sym___r_single_quote] = ACTIONS(4603), + }, + [1613] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_SEMI] = ACTIONS(559), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4607), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_COLON_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1614] = { + [ts_builtin_sym_end] = ACTIONS(4609), + [sym_identifier] = ACTIONS(4611), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4611), + [anon_sym_DOT] = ACTIONS(4611), + [anon_sym_LBRACE] = ACTIONS(4609), + [anon_sym_const] = ACTIONS(4611), + [anon_sym_LPAREN] = ACTIONS(4609), + [anon_sym___global] = ACTIONS(4611), + [anon_sym_type] = ACTIONS(4611), + [anon_sym_fn] = ACTIONS(4611), + [anon_sym_PLUS] = ACTIONS(4609), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_STAR] = ACTIONS(4609), + [anon_sym_struct] = ACTIONS(4611), + [anon_sym_union] = ACTIONS(4611), + [anon_sym_pub] = ACTIONS(4611), + [anon_sym_mut] = ACTIONS(4611), + [anon_sym_enum] = ACTIONS(4611), + [anon_sym_interface] = ACTIONS(4611), + [anon_sym_QMARK] = ACTIONS(4609), + [anon_sym_BANG] = ACTIONS(4609), + [anon_sym_go] = ACTIONS(4611), + [anon_sym_spawn] = ACTIONS(4611), + [anon_sym_json_DOTdecode] = ACTIONS(4609), + [anon_sym_LBRACK2] = ACTIONS(4609), + [anon_sym_TILDE] = ACTIONS(4609), + [anon_sym_CARET] = ACTIONS(4609), + [anon_sym_AMP] = ACTIONS(4609), + [anon_sym_LT_DASH] = ACTIONS(4609), + [sym_none] = ACTIONS(4611), + [sym_true] = ACTIONS(4611), + [sym_false] = ACTIONS(4611), + [sym_nil] = ACTIONS(4611), + [anon_sym_if] = ACTIONS(4611), + [anon_sym_DOLLARif] = ACTIONS(4611), + [anon_sym_match] = ACTIONS(4611), + [anon_sym_select] = ACTIONS(4611), + [anon_sym_lock] = ACTIONS(4611), + [anon_sym_rlock] = ACTIONS(4611), + [anon_sym_unsafe] = ACTIONS(4611), + [anon_sym_sql] = ACTIONS(4611), + [sym_int_literal] = ACTIONS(4611), + [sym_float_literal] = ACTIONS(4609), + [sym_rune_literal] = ACTIONS(4609), + [sym_pseudo_compile_time_identifier] = ACTIONS(4611), + [anon_sym_shared] = ACTIONS(4611), + [anon_sym_map_LBRACK] = ACTIONS(4609), + [anon_sym_chan] = ACTIONS(4611), + [anon_sym_thread] = ACTIONS(4611), + [anon_sym_atomic] = ACTIONS(4611), + [anon_sym_assert] = ACTIONS(4611), + [anon_sym_defer] = ACTIONS(4611), + [anon_sym_goto] = ACTIONS(4611), + [anon_sym_break] = ACTIONS(4611), + [anon_sym_continue] = ACTIONS(4611), + [anon_sym_return] = ACTIONS(4611), + [anon_sym_DOLLARfor] = ACTIONS(4611), + [anon_sym_for] = ACTIONS(4611), + [anon_sym_POUND] = ACTIONS(4609), + [anon_sym_asm] = ACTIONS(4611), + [anon_sym_AT_LBRACK] = ACTIONS(4609), + [sym___double_quote] = ACTIONS(4609), + [sym___single_quote] = ACTIONS(4609), + [sym___c_double_quote] = ACTIONS(4609), + [sym___c_single_quote] = ACTIONS(4609), + [sym___r_double_quote] = ACTIONS(4609), + [sym___r_single_quote] = ACTIONS(4609), + }, + [1615] = { + [ts_builtin_sym_end] = ACTIONS(4613), + [sym_identifier] = ACTIONS(4615), + [sym_comment] = ACTIONS(3), + [anon_sym_import] = ACTIONS(4615), + [anon_sym_DOT] = ACTIONS(4615), + [anon_sym_LBRACE] = ACTIONS(4613), + [anon_sym_const] = ACTIONS(4615), + [anon_sym_LPAREN] = ACTIONS(4613), + [anon_sym___global] = ACTIONS(4615), + [anon_sym_type] = ACTIONS(4615), + [anon_sym_fn] = ACTIONS(4615), + [anon_sym_PLUS] = ACTIONS(4613), + [anon_sym_DASH] = ACTIONS(4613), + [anon_sym_STAR] = ACTIONS(4613), + [anon_sym_struct] = ACTIONS(4615), + [anon_sym_union] = ACTIONS(4615), + [anon_sym_pub] = ACTIONS(4615), + [anon_sym_mut] = ACTIONS(4615), + [anon_sym_enum] = ACTIONS(4615), + [anon_sym_interface] = ACTIONS(4615), + [anon_sym_QMARK] = ACTIONS(4613), + [anon_sym_BANG] = ACTIONS(4613), + [anon_sym_go] = ACTIONS(4615), + [anon_sym_spawn] = ACTIONS(4615), + [anon_sym_json_DOTdecode] = ACTIONS(4613), + [anon_sym_LBRACK2] = ACTIONS(4613), + [anon_sym_TILDE] = ACTIONS(4613), + [anon_sym_CARET] = ACTIONS(4613), + [anon_sym_AMP] = ACTIONS(4613), + [anon_sym_LT_DASH] = ACTIONS(4613), + [sym_none] = ACTIONS(4615), + [sym_true] = ACTIONS(4615), + [sym_false] = ACTIONS(4615), + [sym_nil] = ACTIONS(4615), + [anon_sym_if] = ACTIONS(4615), + [anon_sym_DOLLARif] = ACTIONS(4615), + [anon_sym_match] = ACTIONS(4615), + [anon_sym_select] = ACTIONS(4615), + [anon_sym_lock] = ACTIONS(4615), + [anon_sym_rlock] = ACTIONS(4615), + [anon_sym_unsafe] = ACTIONS(4615), + [anon_sym_sql] = ACTIONS(4615), + [sym_int_literal] = ACTIONS(4615), + [sym_float_literal] = ACTIONS(4613), + [sym_rune_literal] = ACTIONS(4613), + [sym_pseudo_compile_time_identifier] = ACTIONS(4615), + [anon_sym_shared] = ACTIONS(4615), + [anon_sym_map_LBRACK] = ACTIONS(4613), + [anon_sym_chan] = ACTIONS(4615), + [anon_sym_thread] = ACTIONS(4615), + [anon_sym_atomic] = ACTIONS(4615), + [anon_sym_assert] = ACTIONS(4615), + [anon_sym_defer] = ACTIONS(4615), + [anon_sym_goto] = ACTIONS(4615), + [anon_sym_break] = ACTIONS(4615), + [anon_sym_continue] = ACTIONS(4615), + [anon_sym_return] = ACTIONS(4615), + [anon_sym_DOLLARfor] = ACTIONS(4615), + [anon_sym_for] = ACTIONS(4615), + [anon_sym_POUND] = ACTIONS(4613), + [anon_sym_asm] = ACTIONS(4615), + [anon_sym_AT_LBRACK] = ACTIONS(4613), + [sym___double_quote] = ACTIONS(4613), + [sym___single_quote] = ACTIONS(4613), + [sym___c_double_quote] = ACTIONS(4613), + [sym___c_single_quote] = ACTIONS(4613), + [sym___r_double_quote] = ACTIONS(4613), + [sym___r_single_quote] = ACTIONS(4613), + }, + [1616] = { + [sym_reference_expression] = STATE(4626), + [sym_type_reference_expression] = STATE(3605), + [sym_plain_type] = STATE(2395), + [sym__plain_type_without_special] = STATE(2406), + [sym_anon_struct_type] = STATE(2413), + [sym_multi_return_type] = STATE(2406), + [sym_result_type] = STATE(2406), + [sym_option_type] = STATE(2406), + [sym_qualified_type] = STATE(3605), + [sym_fixed_array_type] = STATE(2413), + [sym_array_type] = STATE(2413), + [sym_pointer_type] = STATE(2413), + [sym_wrong_pointer_type] = STATE(2413), + [sym_map_type] = STATE(2413), + [sym_channel_type] = STATE(2413), + [sym_shared_type] = STATE(2413), + [sym_thread_type] = STATE(2413), + [sym_atomic_type] = STATE(2413), + [sym_generic_type] = STATE(2413), + [sym_function_type] = STATE(2413), + [sym_identifier] = ACTIONS(561), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(559), + [anon_sym_as] = ACTIONS(563), + [anon_sym_LBRACE] = ACTIONS(559), + [anon_sym_COMMA] = ACTIONS(559), + [anon_sym_LPAREN] = ACTIONS(3630), + [anon_sym_PIPE] = ACTIONS(563), + [anon_sym_fn] = ACTIONS(567), + [anon_sym_PLUS] = ACTIONS(563), + [anon_sym_DASH] = ACTIONS(563), + [anon_sym_STAR] = ACTIONS(3632), + [anon_sym_SLASH] = ACTIONS(563), + [anon_sym_PERCENT] = ACTIONS(559), + [anon_sym_LT] = ACTIONS(563), + [anon_sym_GT] = ACTIONS(563), + [anon_sym_EQ_EQ] = ACTIONS(559), + [anon_sym_BANG_EQ] = ACTIONS(559), + [anon_sym_LT_EQ] = ACTIONS(559), + [anon_sym_GT_EQ] = ACTIONS(559), + [anon_sym_LBRACK] = ACTIONS(559), + [anon_sym_struct] = ACTIONS(571), + [anon_sym_PLUS_PLUS] = ACTIONS(559), + [anon_sym_DASH_DASH] = ACTIONS(559), + [anon_sym_QMARK] = ACTIONS(511), + [anon_sym_BANG] = ACTIONS(4569), + [anon_sym_LBRACK2] = ACTIONS(575), + [anon_sym_CARET] = ACTIONS(559), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_LT_LT] = ACTIONS(559), + [anon_sym_GT_GT] = ACTIONS(563), + [anon_sym_GT_GT_GT] = ACTIONS(559), + [anon_sym_AMP_CARET] = ACTIONS(559), + [anon_sym_AMP_AMP] = ACTIONS(559), + [anon_sym_PIPE_PIPE] = ACTIONS(559), + [anon_sym_or] = ACTIONS(563), + [anon_sym_QMARK_DOT] = ACTIONS(559), + [anon_sym_POUND_LBRACK] = ACTIONS(559), + [anon_sym_is] = ACTIONS(563), + [anon_sym_BANGis] = ACTIONS(559), + [anon_sym_in] = ACTIONS(563), + [anon_sym_BANGin] = ACTIONS(559), + [anon_sym_COLON_EQ] = ACTIONS(559), + [anon_sym_shared] = ACTIONS(579), + [anon_sym_map_LBRACK] = ACTIONS(83), + [anon_sym_chan] = ACTIONS(85), + [anon_sym_thread] = ACTIONS(87), + [anon_sym_atomic] = ACTIONS(89), + }, + [1617] = { + [ts_builtin_sym_end] = ACTIONS(135), + [sym_identifier] = ACTIONS(4617), + [sym_comment] = ACTIONS(3), + [anon_sym_DOT] = ACTIONS(4617), + [anon_sym_LBRACE] = ACTIONS(135), + [anon_sym_const] = ACTIONS(4617), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym___global] = ACTIONS(4617), + [anon_sym_type] = ACTIONS(4617), + [anon_sym_fn] = ACTIONS(4617), + [anon_sym_PLUS] = ACTIONS(135), + [anon_sym_DASH] = ACTIONS(135), + [anon_sym_STAR] = ACTIONS(135), + [anon_sym_struct] = ACTIONS(4617), + [anon_sym_union] = ACTIONS(4617), + [anon_sym_pub] = ACTIONS(4617), + [anon_sym_mut] = ACTIONS(4617), + [anon_sym_enum] = ACTIONS(4617), + [anon_sym_interface] = ACTIONS(4617), + [anon_sym_QMARK] = ACTIONS(135), + [anon_sym_BANG] = ACTIONS(135), + [anon_sym_go] = ACTIONS(4617), + [anon_sym_spawn] = ACTIONS(4617), + [anon_sym_json_DOTdecode] = ACTIONS(135), + [anon_sym_LBRACK2] = ACTIONS(135), + [anon_sym_TILDE] = ACTIONS(135), + [anon_sym_CARET] = ACTIONS(135), + [anon_sym_AMP] = ACTIONS(135), + [anon_sym_LT_DASH] = ACTIONS(135), + [sym_none] = ACTIONS(4617), + [sym_true] = ACTIONS(4617), + [sym_false] = ACTIONS(4617), + [sym_nil] = ACTIONS(4617), + [anon_sym_if] = ACTIONS(4617), + [anon_sym_DOLLARif] = ACTIONS(4617), + [anon_sym_match] = ACTIONS(4617), + [anon_sym_select] = ACTIONS(4617), + [anon_sym_lock] = ACTIONS(4617), + [anon_sym_rlock] = ACTIONS(4617), + [anon_sym_unsafe] = ACTIONS(4617), + [anon_sym_sql] = ACTIONS(4617), + [sym_int_literal] = ACTIONS(4617), + [sym_float_literal] = ACTIONS(135), + [sym_rune_literal] = ACTIONS(135), + [sym_pseudo_compile_time_identifier] = ACTIONS(4617), + [anon_sym_shared] = ACTIONS(4617), + [anon_sym_map_LBRACK] = ACTIONS(135), + [anon_sym_chan] = ACTIONS(4617), + [anon_sym_thread] = ACTIONS(4617), + [anon_sym_atomic] = ACTIONS(4617), + [anon_sym_assert] = ACTIONS(4617), + [anon_sym_defer] = ACTIONS(4617), + [anon_sym_goto] = ACTIONS(4617), + [anon_sym_break] = ACTIONS(4617), + [anon_sym_continue] = ACTIONS(4617), + [anon_sym_return] = ACTIONS(4617), + [anon_sym_DOLLARfor] = ACTIONS(4617), + [anon_sym_for] = ACTIONS(4617), + [anon_sym_POUND] = ACTIONS(135), + [anon_sym_asm] = ACTIONS(4617), [anon_sym_AT_LBRACK] = ACTIONS(135), [sym___double_quote] = ACTIONS(135), [sym___single_quote] = ACTIONS(135), @@ -190672,345 +191031,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___r_double_quote] = ACTIONS(135), [sym___r_single_quote] = ACTIONS(135), }, - [1615] = { - [sym_identifier] = ACTIONS(3207), - [anon_sym_LF] = ACTIONS(3207), - [anon_sym_CR] = ACTIONS(3207), - [anon_sym_CR_LF] = ACTIONS(3207), + [1618] = { + [sym_identifier] = ACTIONS(3261), + [anon_sym_LF] = ACTIONS(3261), + [anon_sym_CR] = ACTIONS(3261), + [anon_sym_CR_LF] = ACTIONS(3261), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3207), - [anon_sym_as] = ACTIONS(3207), - [anon_sym_COMMA] = ACTIONS(3207), - [anon_sym_RBRACE] = ACTIONS(3207), - [anon_sym_LPAREN] = ACTIONS(3207), - [anon_sym_EQ] = ACTIONS(3207), - [anon_sym_PIPE] = ACTIONS(3207), - [anon_sym_fn] = ACTIONS(3207), - [anon_sym_PLUS] = ACTIONS(3207), - [anon_sym_DASH] = ACTIONS(3207), - [anon_sym_STAR] = ACTIONS(3207), - [anon_sym_SLASH] = ACTIONS(3207), - [anon_sym_PERCENT] = ACTIONS(3207), - [anon_sym_LT] = ACTIONS(3207), - [anon_sym_GT] = ACTIONS(3207), - [anon_sym_EQ_EQ] = ACTIONS(3207), - [anon_sym_BANG_EQ] = ACTIONS(3207), - [anon_sym_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_EQ] = ACTIONS(3207), - [anon_sym_LBRACK] = ACTIONS(3205), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_COLON] = ACTIONS(3207), - [anon_sym_PLUS_PLUS] = ACTIONS(3207), - [anon_sym_DASH_DASH] = ACTIONS(3207), - [anon_sym_QMARK] = ACTIONS(3207), - [anon_sym_BANG] = ACTIONS(3207), - [anon_sym_LBRACK2] = ACTIONS(3207), - [anon_sym_CARET] = ACTIONS(3207), - [anon_sym_AMP] = ACTIONS(3207), - [anon_sym_LT_DASH] = ACTIONS(3207), - [anon_sym_LT_LT] = ACTIONS(3207), - [anon_sym_GT_GT] = ACTIONS(3207), - [anon_sym_GT_GT_GT] = ACTIONS(3207), - [anon_sym_AMP_CARET] = ACTIONS(3207), - [anon_sym_AMP_AMP] = ACTIONS(3207), - [anon_sym_PIPE_PIPE] = ACTIONS(3207), - [anon_sym_or] = ACTIONS(3207), - [anon_sym_QMARK_DOT] = ACTIONS(3207), - [anon_sym_POUND_LBRACK] = ACTIONS(3207), - [anon_sym_is] = ACTIONS(3207), - [anon_sym_BANGis] = ACTIONS(3207), - [anon_sym_in] = ACTIONS(3207), - [anon_sym_BANGin] = ACTIONS(3207), - [anon_sym_STAR_EQ] = ACTIONS(3207), - [anon_sym_SLASH_EQ] = ACTIONS(3207), - [anon_sym_PERCENT_EQ] = ACTIONS(3207), - [anon_sym_LT_LT_EQ] = ACTIONS(3207), - [anon_sym_GT_GT_EQ] = ACTIONS(3207), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3207), - [anon_sym_AMP_EQ] = ACTIONS(3207), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3207), - [anon_sym_PLUS_EQ] = ACTIONS(3207), - [anon_sym_DASH_EQ] = ACTIONS(3207), - [anon_sym_PIPE_EQ] = ACTIONS(3207), - [anon_sym_CARET_EQ] = ACTIONS(3207), - [anon_sym_COLON_EQ] = ACTIONS(3207), - [anon_sym_shared] = ACTIONS(3207), - [anon_sym_map_LBRACK] = ACTIONS(3207), - [anon_sym_chan] = ACTIONS(3207), - [anon_sym_thread] = ACTIONS(3207), - [anon_sym_atomic] = ACTIONS(3207), + [anon_sym_DOT] = ACTIONS(3261), + [anon_sym_as] = ACTIONS(3261), + [anon_sym_COMMA] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_fn] = ACTIONS(3261), + [anon_sym_PLUS] = ACTIONS(3261), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3261), + [anon_sym_COLON] = ACTIONS(3261), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_QMARK] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_LBRACK2] = ACTIONS(3261), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_LT_DASH] = ACTIONS(3261), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3261), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_or] = ACTIONS(3261), + [anon_sym_QMARK_DOT] = ACTIONS(3261), + [anon_sym_POUND_LBRACK] = ACTIONS(3261), + [anon_sym_is] = ACTIONS(3261), + [anon_sym_BANGis] = ACTIONS(3261), + [anon_sym_in] = ACTIONS(3261), + [anon_sym_BANGin] = ACTIONS(3261), + [anon_sym_STAR_EQ] = ACTIONS(3261), + [anon_sym_SLASH_EQ] = ACTIONS(3261), + [anon_sym_PERCENT_EQ] = ACTIONS(3261), + [anon_sym_LT_LT_EQ] = ACTIONS(3261), + [anon_sym_GT_GT_EQ] = ACTIONS(3261), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3261), + [anon_sym_AMP_EQ] = ACTIONS(3261), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3261), + [anon_sym_PLUS_EQ] = ACTIONS(3261), + [anon_sym_DASH_EQ] = ACTIONS(3261), + [anon_sym_PIPE_EQ] = ACTIONS(3261), + [anon_sym_CARET_EQ] = ACTIONS(3261), + [anon_sym_COLON_EQ] = ACTIONS(3261), + [anon_sym_shared] = ACTIONS(3261), + [anon_sym_map_LBRACK] = ACTIONS(3261), + [anon_sym_chan] = ACTIONS(3261), + [anon_sym_thread] = ACTIONS(3261), + [anon_sym_atomic] = ACTIONS(3261), }, - [1616] = { - [sym_identifier] = ACTIONS(3247), - [anon_sym_LF] = ACTIONS(3247), - [anon_sym_CR] = ACTIONS(3247), - [anon_sym_CR_LF] = ACTIONS(3247), + [1619] = { + [sym_identifier] = ACTIONS(3005), + [anon_sym_LF] = ACTIONS(3005), + [anon_sym_CR] = ACTIONS(3005), + [anon_sym_CR_LF] = ACTIONS(3005), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3247), - [anon_sym_as] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_EQ] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_fn] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_PERCENT] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_GT] = ACTIONS(3247), - [anon_sym_EQ_EQ] = ACTIONS(3247), - [anon_sym_BANG_EQ] = ACTIONS(3247), - [anon_sym_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_EQ] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_struct] = ACTIONS(3247), - [anon_sym_COLON] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_LBRACK2] = ACTIONS(3247), - [anon_sym_CARET] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_LT_DASH] = ACTIONS(3247), - [anon_sym_LT_LT] = ACTIONS(3247), - [anon_sym_GT_GT] = ACTIONS(3247), - [anon_sym_GT_GT_GT] = ACTIONS(3247), - [anon_sym_AMP_CARET] = ACTIONS(3247), - [anon_sym_AMP_AMP] = ACTIONS(3247), - [anon_sym_PIPE_PIPE] = ACTIONS(3247), - [anon_sym_or] = ACTIONS(3247), - [anon_sym_QMARK_DOT] = ACTIONS(3247), - [anon_sym_POUND_LBRACK] = ACTIONS(3247), - [anon_sym_is] = ACTIONS(3247), - [anon_sym_BANGis] = ACTIONS(3247), - [anon_sym_in] = ACTIONS(3247), - [anon_sym_BANGin] = ACTIONS(3247), - [anon_sym_STAR_EQ] = ACTIONS(3247), - [anon_sym_SLASH_EQ] = ACTIONS(3247), - [anon_sym_PERCENT_EQ] = ACTIONS(3247), - [anon_sym_LT_LT_EQ] = ACTIONS(3247), - [anon_sym_GT_GT_EQ] = ACTIONS(3247), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3247), - [anon_sym_AMP_EQ] = ACTIONS(3247), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3247), - [anon_sym_PLUS_EQ] = ACTIONS(3247), - [anon_sym_DASH_EQ] = ACTIONS(3247), - [anon_sym_PIPE_EQ] = ACTIONS(3247), - [anon_sym_CARET_EQ] = ACTIONS(3247), - [anon_sym_COLON_EQ] = ACTIONS(3247), - [anon_sym_shared] = ACTIONS(3247), - [anon_sym_map_LBRACK] = ACTIONS(3247), - [anon_sym_chan] = ACTIONS(3247), - [anon_sym_thread] = ACTIONS(3247), - [anon_sym_atomic] = ACTIONS(3247), - }, - [1617] = { - [sym_identifier] = ACTIONS(3239), - [anon_sym_LF] = ACTIONS(3239), - [anon_sym_CR] = ACTIONS(3239), - [anon_sym_CR_LF] = ACTIONS(3239), + [anon_sym_DOT] = ACTIONS(3005), + [anon_sym_as] = ACTIONS(3005), + [anon_sym_COMMA] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_fn] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PERCENT] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_EQ_EQ] = ACTIONS(3005), + [anon_sym_BANG_EQ] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3005), + [anon_sym_COLON] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3005), + [anon_sym_DASH_DASH] = ACTIONS(3005), + [anon_sym_QMARK] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_LBRACK2] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_LT_DASH] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3005), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3005), + [anon_sym_AMP_CARET] = ACTIONS(3005), + [anon_sym_AMP_AMP] = ACTIONS(3005), + [anon_sym_PIPE_PIPE] = ACTIONS(3005), + [anon_sym_or] = ACTIONS(3005), + [anon_sym_QMARK_DOT] = ACTIONS(3005), + [anon_sym_POUND_LBRACK] = ACTIONS(3005), + [anon_sym_is] = ACTIONS(3005), + [anon_sym_BANGis] = ACTIONS(3005), + [anon_sym_in] = ACTIONS(3005), + [anon_sym_BANGin] = ACTIONS(3005), + [anon_sym_STAR_EQ] = ACTIONS(3005), + [anon_sym_SLASH_EQ] = ACTIONS(3005), + [anon_sym_PERCENT_EQ] = ACTIONS(3005), + [anon_sym_LT_LT_EQ] = ACTIONS(3005), + [anon_sym_GT_GT_EQ] = ACTIONS(3005), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3005), + [anon_sym_AMP_EQ] = ACTIONS(3005), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3005), + [anon_sym_PLUS_EQ] = ACTIONS(3005), + [anon_sym_DASH_EQ] = ACTIONS(3005), + [anon_sym_PIPE_EQ] = ACTIONS(3005), + [anon_sym_CARET_EQ] = ACTIONS(3005), + [anon_sym_COLON_EQ] = ACTIONS(3005), + [anon_sym_shared] = ACTIONS(3005), + [anon_sym_map_LBRACK] = ACTIONS(3005), + [anon_sym_chan] = ACTIONS(3005), + [anon_sym_thread] = ACTIONS(3005), + [anon_sym_atomic] = ACTIONS(3005), + }, + [1620] = { + [sym_identifier] = ACTIONS(3009), + [anon_sym_LF] = ACTIONS(3009), + [anon_sym_CR] = ACTIONS(3009), + [anon_sym_CR_LF] = ACTIONS(3009), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3239), - [anon_sym_as] = ACTIONS(3239), - [anon_sym_COMMA] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_EQ] = ACTIONS(3239), - [anon_sym_PIPE] = ACTIONS(3239), - [anon_sym_fn] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_GT] = ACTIONS(3239), - [anon_sym_EQ_EQ] = ACTIONS(3239), - [anon_sym_BANG_EQ] = ACTIONS(3239), - [anon_sym_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_EQ] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3237), - [anon_sym_struct] = ACTIONS(3239), - [anon_sym_COLON] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [anon_sym_QMARK] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_LBRACK2] = ACTIONS(3239), - [anon_sym_CARET] = ACTIONS(3239), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3239), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3239), - [anon_sym_PIPE_PIPE] = ACTIONS(3239), - [anon_sym_or] = ACTIONS(3239), - [anon_sym_QMARK_DOT] = ACTIONS(3239), - [anon_sym_POUND_LBRACK] = ACTIONS(3239), - [anon_sym_is] = ACTIONS(3239), - [anon_sym_BANGis] = ACTIONS(3239), - [anon_sym_in] = ACTIONS(3239), - [anon_sym_BANGin] = ACTIONS(3239), - [anon_sym_STAR_EQ] = ACTIONS(3239), - [anon_sym_SLASH_EQ] = ACTIONS(3239), - [anon_sym_PERCENT_EQ] = ACTIONS(3239), - [anon_sym_LT_LT_EQ] = ACTIONS(3239), - [anon_sym_GT_GT_EQ] = ACTIONS(3239), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3239), - [anon_sym_AMP_EQ] = ACTIONS(3239), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3239), - [anon_sym_PLUS_EQ] = ACTIONS(3239), - [anon_sym_DASH_EQ] = ACTIONS(3239), - [anon_sym_PIPE_EQ] = ACTIONS(3239), - [anon_sym_CARET_EQ] = ACTIONS(3239), - [anon_sym_COLON_EQ] = ACTIONS(3239), - [anon_sym_shared] = ACTIONS(3239), - [anon_sym_map_LBRACK] = ACTIONS(3239), - [anon_sym_chan] = ACTIONS(3239), - [anon_sym_thread] = ACTIONS(3239), - [anon_sym_atomic] = ACTIONS(3239), - }, - [1618] = { - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(3199), - [anon_sym_CR] = ACTIONS(3199), - [anon_sym_CR_LF] = ACTIONS(3199), + [anon_sym_DOT] = ACTIONS(3009), + [anon_sym_as] = ACTIONS(3009), + [anon_sym_COMMA] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_EQ] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_fn] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PERCENT] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_EQ_EQ] = ACTIONS(3009), + [anon_sym_BANG_EQ] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3009), + [anon_sym_COLON] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3009), + [anon_sym_DASH_DASH] = ACTIONS(3009), + [anon_sym_QMARK] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_LBRACK2] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_LT_DASH] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3009), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3009), + [anon_sym_AMP_CARET] = ACTIONS(3009), + [anon_sym_AMP_AMP] = ACTIONS(3009), + [anon_sym_PIPE_PIPE] = ACTIONS(3009), + [anon_sym_or] = ACTIONS(3009), + [anon_sym_QMARK_DOT] = ACTIONS(3009), + [anon_sym_POUND_LBRACK] = ACTIONS(3009), + [anon_sym_is] = ACTIONS(3009), + [anon_sym_BANGis] = ACTIONS(3009), + [anon_sym_in] = ACTIONS(3009), + [anon_sym_BANGin] = ACTIONS(3009), + [anon_sym_STAR_EQ] = ACTIONS(3009), + [anon_sym_SLASH_EQ] = ACTIONS(3009), + [anon_sym_PERCENT_EQ] = ACTIONS(3009), + [anon_sym_LT_LT_EQ] = ACTIONS(3009), + [anon_sym_GT_GT_EQ] = ACTIONS(3009), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(3009), + [anon_sym_AMP_EQ] = ACTIONS(3009), + [anon_sym_AMP_CARET_EQ] = ACTIONS(3009), + [anon_sym_PLUS_EQ] = ACTIONS(3009), + [anon_sym_DASH_EQ] = ACTIONS(3009), + [anon_sym_PIPE_EQ] = ACTIONS(3009), + [anon_sym_CARET_EQ] = ACTIONS(3009), + [anon_sym_COLON_EQ] = ACTIONS(3009), + [anon_sym_shared] = ACTIONS(3009), + [anon_sym_map_LBRACK] = ACTIONS(3009), + [anon_sym_chan] = ACTIONS(3009), + [anon_sym_thread] = ACTIONS(3009), + [anon_sym_atomic] = ACTIONS(3009), + }, + [1621] = { + [sym_identifier] = ACTIONS(2891), + [anon_sym_LF] = ACTIONS(2891), + [anon_sym_CR] = ACTIONS(2891), + [anon_sym_CR_LF] = ACTIONS(2891), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_as] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_EQ] = 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_COLON] = 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_LBRACK2] = 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), - [anon_sym_QMARK_DOT] = ACTIONS(3199), - [anon_sym_POUND_LBRACK] = ACTIONS(3199), - [anon_sym_is] = ACTIONS(3199), - [anon_sym_BANGis] = ACTIONS(3199), - [anon_sym_in] = ACTIONS(3199), - [anon_sym_BANGin] = 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_shared] = ACTIONS(3199), - [anon_sym_map_LBRACK] = ACTIONS(3199), - [anon_sym_chan] = ACTIONS(3199), - [anon_sym_thread] = ACTIONS(3199), - [anon_sym_atomic] = ACTIONS(3199), - }, - [1619] = { - [sym_identifier] = ACTIONS(3347), - [anon_sym_LF] = ACTIONS(3347), - [anon_sym_CR] = ACTIONS(3347), - [anon_sym_CR_LF] = ACTIONS(3347), + [anon_sym_DOT] = ACTIONS(2891), + [anon_sym_as] = ACTIONS(2891), + [anon_sym_COMMA] = ACTIONS(2891), + [anon_sym_RBRACE] = ACTIONS(2891), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_EQ] = ACTIONS(2891), + [anon_sym_PIPE] = ACTIONS(2891), + [anon_sym_fn] = ACTIONS(2891), + [anon_sym_PLUS] = ACTIONS(2891), + [anon_sym_DASH] = ACTIONS(2891), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_LBRACK] = ACTIONS(2889), + [anon_sym_struct] = ACTIONS(2891), + [anon_sym_COLON] = ACTIONS(2891), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_QMARK] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2891), + [anon_sym_LBRACK2] = ACTIONS(2891), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2891), + [anon_sym_LT_DASH] = ACTIONS(2891), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2891), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_or] = ACTIONS(2891), + [anon_sym_QMARK_DOT] = ACTIONS(2891), + [anon_sym_POUND_LBRACK] = ACTIONS(2891), + [anon_sym_is] = ACTIONS(2891), + [anon_sym_BANGis] = ACTIONS(2891), + [anon_sym_in] = ACTIONS(2891), + [anon_sym_BANGin] = ACTIONS(2891), + [anon_sym_STAR_EQ] = ACTIONS(2891), + [anon_sym_SLASH_EQ] = ACTIONS(2891), + [anon_sym_PERCENT_EQ] = ACTIONS(2891), + [anon_sym_LT_LT_EQ] = ACTIONS(2891), + [anon_sym_GT_GT_EQ] = ACTIONS(2891), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2891), + [anon_sym_AMP_EQ] = ACTIONS(2891), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2891), + [anon_sym_PLUS_EQ] = ACTIONS(2891), + [anon_sym_DASH_EQ] = ACTIONS(2891), + [anon_sym_PIPE_EQ] = ACTIONS(2891), + [anon_sym_CARET_EQ] = ACTIONS(2891), + [anon_sym_COLON_EQ] = ACTIONS(2891), + [anon_sym_shared] = ACTIONS(2891), + [anon_sym_map_LBRACK] = ACTIONS(2891), + [anon_sym_chan] = ACTIONS(2891), + [anon_sym_thread] = ACTIONS(2891), + [anon_sym_atomic] = ACTIONS(2891), + }, + [1622] = { + [sym_identifier] = ACTIONS(2895), + [anon_sym_LF] = ACTIONS(2895), + [anon_sym_CR] = ACTIONS(2895), + [anon_sym_CR_LF] = ACTIONS(2895), [sym_comment] = ACTIONS(495), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_as] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_EQ] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3347), - [anon_sym_fn] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_STAR] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_PERCENT] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_GT] = ACTIONS(3347), - [anon_sym_EQ_EQ] = ACTIONS(3347), - [anon_sym_BANG_EQ] = ACTIONS(3347), - [anon_sym_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_EQ] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_struct] = ACTIONS(3347), - [anon_sym_COLON] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [anon_sym_QMARK] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_LBRACK2] = ACTIONS(3347), - [anon_sym_CARET] = ACTIONS(3347), - [anon_sym_AMP] = ACTIONS(3347), - [anon_sym_LT_DASH] = ACTIONS(3347), - [anon_sym_LT_LT] = ACTIONS(3347), - [anon_sym_GT_GT] = ACTIONS(3347), - [anon_sym_GT_GT_GT] = ACTIONS(3347), - [anon_sym_AMP_CARET] = ACTIONS(3347), - [anon_sym_AMP_AMP] = ACTIONS(3347), - [anon_sym_PIPE_PIPE] = ACTIONS(3347), - [anon_sym_or] = ACTIONS(3347), - [anon_sym_QMARK_DOT] = ACTIONS(3347), - [anon_sym_POUND_LBRACK] = ACTIONS(3347), - [anon_sym_is] = ACTIONS(3347), - [anon_sym_BANGis] = ACTIONS(3347), - [anon_sym_in] = ACTIONS(3347), - [anon_sym_BANGin] = ACTIONS(3347), - [anon_sym_STAR_EQ] = ACTIONS(3347), - [anon_sym_SLASH_EQ] = ACTIONS(3347), - [anon_sym_PERCENT_EQ] = ACTIONS(3347), - [anon_sym_LT_LT_EQ] = ACTIONS(3347), - [anon_sym_GT_GT_EQ] = ACTIONS(3347), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3347), - [anon_sym_AMP_EQ] = ACTIONS(3347), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3347), - [anon_sym_PLUS_EQ] = ACTIONS(3347), - [anon_sym_DASH_EQ] = ACTIONS(3347), - [anon_sym_PIPE_EQ] = ACTIONS(3347), - [anon_sym_CARET_EQ] = ACTIONS(3347), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_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_DOT] = ACTIONS(2895), + [anon_sym_as] = ACTIONS(2895), + [anon_sym_COMMA] = ACTIONS(2895), + [anon_sym_RBRACE] = ACTIONS(2895), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2895), + [anon_sym_PIPE] = ACTIONS(2895), + [anon_sym_fn] = ACTIONS(2895), + [anon_sym_PLUS] = ACTIONS(2895), + [anon_sym_DASH] = ACTIONS(2895), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [anon_sym_LT_EQ] = ACTIONS(2895), + [anon_sym_GT_EQ] = ACTIONS(2895), + [anon_sym_LBRACK] = ACTIONS(2893), + [anon_sym_struct] = ACTIONS(2895), + [anon_sym_COLON] = ACTIONS(2895), + [anon_sym_PLUS_PLUS] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2895), + [anon_sym_QMARK] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2895), + [anon_sym_LBRACK2] = ACTIONS(2895), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2895), + [anon_sym_LT_DASH] = ACTIONS(2895), + [anon_sym_LT_LT] = ACTIONS(2895), + [anon_sym_GT_GT] = ACTIONS(2895), + [anon_sym_GT_GT_GT] = ACTIONS(2895), + [anon_sym_AMP_CARET] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_or] = ACTIONS(2895), + [anon_sym_QMARK_DOT] = ACTIONS(2895), + [anon_sym_POUND_LBRACK] = ACTIONS(2895), + [anon_sym_is] = ACTIONS(2895), + [anon_sym_BANGis] = ACTIONS(2895), + [anon_sym_in] = ACTIONS(2895), + [anon_sym_BANGin] = ACTIONS(2895), + [anon_sym_STAR_EQ] = ACTIONS(2895), + [anon_sym_SLASH_EQ] = ACTIONS(2895), + [anon_sym_PERCENT_EQ] = ACTIONS(2895), + [anon_sym_LT_LT_EQ] = ACTIONS(2895), + [anon_sym_GT_GT_EQ] = ACTIONS(2895), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2895), + [anon_sym_AMP_EQ] = ACTIONS(2895), + [anon_sym_AMP_CARET_EQ] = ACTIONS(2895), + [anon_sym_PLUS_EQ] = ACTIONS(2895), + [anon_sym_DASH_EQ] = ACTIONS(2895), + [anon_sym_PIPE_EQ] = ACTIONS(2895), + [anon_sym_CARET_EQ] = ACTIONS(2895), + [anon_sym_COLON_EQ] = ACTIONS(2895), + [anon_sym_shared] = ACTIONS(2895), + [anon_sym_map_LBRACK] = ACTIONS(2895), + [anon_sym_chan] = ACTIONS(2895), + [anon_sym_thread] = ACTIONS(2895), + [anon_sym_atomic] = ACTIONS(2895), }, }; @@ -191018,9 +191377,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(2893), 1, anon_sym_LBRACK, - ACTIONS(3247), 62, + ACTIONS(2895), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191086,9 +191445,9 @@ static const uint16_t ts_small_parse_table[] = { [71] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3237), 1, + ACTIONS(2889), 1, anon_sym_LBRACK, - ACTIONS(3239), 62, + ACTIONS(2891), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191154,9 +191513,9 @@ static const uint16_t ts_small_parse_table[] = { [142] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3205), 1, + ACTIONS(3003), 1, anon_sym_LBRACK, - ACTIONS(3207), 62, + ACTIONS(3005), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191222,9 +191581,9 @@ static const uint16_t ts_small_parse_table[] = { [213] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3197), 1, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(3199), 62, + ACTIONS(3261), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191290,9 +191649,9 @@ static const uint16_t ts_small_parse_table[] = { [284] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3007), 1, anon_sym_LBRACK, - ACTIONS(3347), 62, + ACTIONS(3009), 62, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -191355,86 +191714,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - [355] = 30, - ACTIONS(495), 1, + [355] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4609), 1, + ACTIONS(3009), 29, anon_sym_as, - ACTIONS(4611), 1, - anon_sym_COMMA, - ACTIONS(4613), 1, - anon_sym_LPAREN, - ACTIONS(4621), 1, - anon_sym_LBRACK, - ACTIONS(4623), 1, - anon_sym_COLON, - ACTIONS(4625), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4627), 1, - anon_sym_DASH_DASH, - ACTIONS(4629), 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, - ACTIONS(4631), 1, anon_sym_BANG, - ACTIONS(4635), 1, - anon_sym_LT_DASH, - ACTIONS(4637), 1, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, 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(1740), 1, - sym_argument_list, - STATE(1741), 1, - sym_or_block, - STATE(3353), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4178), 1, - sym_type_parameters, - ACTIONS(4607), 2, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3007), 32, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, - anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1707), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4615), 4, + 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, + [424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2891), 29, + anon_sym_as, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4619), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4617), 7, 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, - ACTIONS(1717), 14, - anon_sym_EQ, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(2889), 32, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_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, @@ -191448,10 +191845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [478] = 3, + anon_sym_map_LBRACK, + [493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 29, + ACTIONS(3261), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -191481,7 +191879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3205), 32, + ACTIONS(3259), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -191514,10 +191912,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_map_LBRACK, - [547] = 3, + [562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 29, + ACTIONS(2891), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -191547,7 +191945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3345), 32, + ACTIONS(2889), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -191580,10 +191978,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_map_LBRACK, - [616] = 3, + [631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 29, + ACTIONS(2895), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -191613,8 +192011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3197), 32, - anon_sym_SEMI, + ACTIONS(2893), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -191624,8 +192021,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, @@ -191644,12 +192043,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, - [685] = 3, + [700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 29, + ACTIONS(3005), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -191679,7 +192077,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3197), 32, + ACTIONS(3003), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -191712,10 +192110,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_map_LBRACK, - [754] = 3, + [769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3239), 29, + ACTIONS(2895), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -191745,7 +192143,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3237), 32, + ACTIONS(2893), 32, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -191755,10 +192154,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, @@ -191777,11 +192174,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, - [823] = 3, + [838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 29, + ACTIONS(3261), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -191811,7 +192209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3245), 32, + ACTIONS(3259), 32, + anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -191821,10 +192220,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, @@ -191843,11 +192240,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, - [892] = 3, + [907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 29, + ACTIONS(3005), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -191877,7 +192275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3345), 32, + ACTIONS(3003), 32, anon_sym_SEMI, anon_sym_DOT, anon_sym_LBRACE, @@ -191910,124 +192308,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [961] = 3, - ACTIONS(3), 1, + [976] = 30, + ACTIONS(495), 1, sym_comment, - ACTIONS(3247), 29, + ACTIONS(4621), 1, anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3245), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, + ACTIONS(4623), 1, anon_sym_COMMA, + ACTIONS(4625), 1, anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4633), 1, anon_sym_LBRACK, + ACTIONS(4635), 1, + anon_sym_COLON, + ACTIONS(4637), 1, anon_sym_PLUS_PLUS, + ACTIONS(4639), 1, anon_sym_DASH_DASH, + ACTIONS(4641), 1, + anon_sym_QMARK, + ACTIONS(4643), 1, + anon_sym_BANG, + ACTIONS(4647), 1, + anon_sym_LT_DASH, + ACTIONS(4649), 1, + anon_sym_LT_LT, + ACTIONS(4651), 1, anon_sym_AMP_AMP, + ACTIONS(4653), 1, anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(4655), 1, + anon_sym_or, + ACTIONS(4657), 1, + anon_sym_is, + ACTIONS(4659), 1, anon_sym_BANGis, + ACTIONS(4661), 1, + anon_sym_in, + ACTIONS(4663), 1, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_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, - [1030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3239), 29, - anon_sym_as, - anon_sym_EQ, + STATE(1752), 1, + sym_or_block, + STATE(1753), 1, + sym_argument_list, + STATE(3359), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4285), 1, + sym_type_parameters, + ACTIONS(4619), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4645), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1709), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4627), 4, anon_sym_PIPE, - anon_sym_fn, 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), 7, 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(3237), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, + ACTIONS(1719), 14, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192041,11 +192401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - anon_sym_map_LBRACK, [1099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 29, + ACTIONS(3009), 29, anon_sym_as, anon_sym_EQ, anon_sym_PIPE, @@ -192075,8 +192434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3205), 32, - anon_sym_SEMI, + ACTIONS(3007), 32, anon_sym_DOT, anon_sym_LBRACE, anon_sym_COMMA, @@ -192086,8 +192444,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, @@ -192106,68 +192466,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, anon_sym_map_LBRACK, - [1168] = 11, + [1168] = 29, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, - anon_sym_LPAREN, ACTIONS(4621), 1, + anon_sym_as, + ACTIONS(4623), 1, + anon_sym_COMMA, + ACTIONS(4625), 1, + anon_sym_LPAREN, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4637), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4639), 1, + anon_sym_DASH_DASH, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + ACTIONS(4647), 1, + anon_sym_LT_DASH, + ACTIONS(4649), 1, + anon_sym_LT_LT, + ACTIONS(4651), 1, + anon_sym_AMP_AMP, + ACTIONS(4653), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4655), 1, + anon_sym_or, + ACTIONS(4657), 1, + anon_sym_is, + ACTIONS(4659), 1, + anon_sym_BANGis, + ACTIONS(4661), 1, + anon_sym_in, + ACTIONS(4663), 1, + anon_sym_BANGin, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(3359), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2041), 49, + ACTIONS(1709), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4629), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1719), 14, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192181,39 +192558,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1252] = 12, + [1288] = 11, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4617), 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(2011), 41, + ACTIONS(1869), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192224,6 +192592,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, @@ -192234,7 +192605,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, @@ -192255,35 +192631,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1338] = 13, + [1372] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 4, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4617), 8, + ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192292,7 +192668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2059), 37, + ACTIONS(1865), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192330,35 +192706,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1426] = 13, + [1460] = 16, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + ACTIONS(4661), 1, + anon_sym_in, + ACTIONS(4663), 1, + anon_sym_BANGin, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 4, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4617), 8, + 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, @@ -192367,20 +192754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2179), 37, + ACTIONS(1881), 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_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -192390,8 +192771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -192405,36 +192784,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1514] = 11, + [1554] = 12, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2011), 49, + ACTIONS(1879), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(1881), 45, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -192478,35 +192858,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1598] = 13, + [1640] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 4, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4617), 8, + ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192515,7 +192895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 37, + ACTIONS(1881), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192553,37 +192933,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1686] = 12, + [1728] = 11, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2045), 4, + ACTIONS(1881), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2011), 45, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -192627,46 +193006,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1772] = 16, + [1812] = 12, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4619), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4617), 8, + ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192675,7 +193038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 29, + ACTIONS(1881), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192683,15 +193046,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + 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, @@ -192705,48 +193080,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1866] = 17, + [1898] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 4, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4619), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4617), 8, + ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192755,7 +193117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 28, + ACTIONS(2067), 37, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192763,14 +193125,23 @@ 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, @@ -192784,84 +193155,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [1962] = 29, + [1986] = 11, ACTIONS(495), 1, sym_comment, - ACTIONS(4609), 1, - anon_sym_as, - ACTIONS(4611), 1, - anon_sym_COMMA, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4625), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4627), 1, - anon_sym_DASH_DASH, - ACTIONS(4629), 1, - anon_sym_QMARK, - ACTIONS(4631), 1, - anon_sym_BANG, - ACTIONS(4635), 1, - anon_sym_LT_DASH, - ACTIONS(4637), 1, - anon_sym_LT_LT, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, + anon_sym_QMARK, 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(1740), 1, - sym_argument_list, - STATE(1741), 1, + anon_sym_BANG, + STATE(1752), 1, sym_or_block, - STATE(3353), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1707), 4, + ACTIONS(1853), 49, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4615), 4, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4619), 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(4617), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + 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, - ACTIONS(1717), 14, - anon_sym_EQ, + 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, @@ -192875,62 +193228,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2082] = 24, + [2070] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(4609), 1, + ACTIONS(4621), 1, anon_sym_as, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4625), 1, + ACTIONS(4637), 1, anon_sym_PLUS_PLUS, - ACTIONS(4627), 1, + ACTIONS(4639), 1, anon_sym_DASH_DASH, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - ACTIONS(4639), 1, + ACTIONS(4651), 1, anon_sym_AMP_AMP, - ACTIONS(4641), 1, + ACTIONS(4653), 1, anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, + ACTIONS(4655), 1, anon_sym_or, - ACTIONS(4645), 1, + ACTIONS(4657), 1, anon_sym_is, - ACTIONS(4647), 1, + ACTIONS(4659), 1, anon_sym_BANGis, - ACTIONS(4649), 1, + ACTIONS(4661), 1, anon_sym_in, - ACTIONS(4651), 1, + ACTIONS(4663), 1, anon_sym_BANGin, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 4, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4619), 6, + 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(4617), 8, + ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -192939,7 +193292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1835), 21, + ACTIONS(1861), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -192961,62 +193314,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2192] = 24, + [2180] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(4609), 1, + ACTIONS(4621), 1, anon_sym_as, - ACTIONS(4613), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4621), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4625), 1, + ACTIONS(4637), 1, anon_sym_PLUS_PLUS, - ACTIONS(4627), 1, + ACTIONS(4639), 1, anon_sym_DASH_DASH, - ACTIONS(4629), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4631), 1, + ACTIONS(4643), 1, anon_sym_BANG, - ACTIONS(4639), 1, + ACTIONS(4651), 1, anon_sym_AMP_AMP, - ACTIONS(4641), 1, + ACTIONS(4653), 1, anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, + ACTIONS(4655), 1, anon_sym_or, - ACTIONS(4645), 1, + ACTIONS(4657), 1, anon_sym_is, - ACTIONS(4647), 1, + ACTIONS(4659), 1, anon_sym_BANGis, - ACTIONS(4649), 1, + ACTIONS(4661), 1, anon_sym_in, - ACTIONS(4651), 1, + ACTIONS(4663), 1, anon_sym_BANGin, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, + STATE(1752), 1, sym_or_block, - STATE(4178), 1, + STATE(1753), 1, + sym_argument_list, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4607), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4633), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4615), 4, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4619), 6, + 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(4617), 8, + ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -193025,88 +193378,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1839), 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, - [2302] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4613), 1, - anon_sym_LPAREN, - ACTIONS(4621), 1, - anon_sym_LBRACK, - ACTIONS(4629), 1, - anon_sym_QMARK, - ACTIONS(4631), 1, - anon_sym_BANG, - STATE(1740), 1, - sym_argument_list, - STATE(1741), 1, - sym_or_block, - STATE(4178), 1, - sym_type_parameters, - ACTIONS(4607), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4633), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1879), 49, + ACTIONS(1849), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, @@ -193120,69 +193400,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2386] = 26, + [2290] = 17, ACTIONS(495), 1, sym_comment, - ACTIONS(4655), 1, - anon_sym_as, - ACTIONS(4657), 1, + ACTIONS(4625), 1, anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(4633), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4669), 1, - anon_sym_DASH_DASH, - ACTIONS(4671), 1, + ACTIONS(4641), 1, anon_sym_QMARK, - ACTIONS(4673), 1, + ACTIONS(4643), 1, anon_sym_BANG, - ACTIONS(4677), 1, + ACTIONS(4651), 1, anon_sym_AMP_AMP, - ACTIONS(4679), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4681), 1, - anon_sym_or, - ACTIONS(4683), 1, - anon_sym_is, - ACTIONS(4685), 1, - anon_sym_BANGis, - ACTIONS(4687), 1, + ACTIONS(4661), 1, anon_sym_in, - ACTIONS(4689), 1, + ACTIONS(4663), 1, anon_sym_BANGin, - STATE(1814), 1, + STATE(1752), 1, sym_or_block, - STATE(1815), 1, + STATE(1753), 1, sym_argument_list, - STATE(3589), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4367), 1, + STATE(4285), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4619), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4645), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1757), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4659), 4, + ACTIONS(4627), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4663), 6, + 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(4661), 8, + ACTIONS(4629), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -193191,73 +193450,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1759), 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, - [2499] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_LBRACK, - ACTIONS(2757), 58, + ACTIONS(1881), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193271,12 +193479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2566] = 3, + [2386] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(2647), 1, anon_sym_LBRACK, - ACTIONS(2865), 58, + ACTIONS(2649), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193335,16 +193543,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2633] = 5, + [2453] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(2513), 1, + ACTIONS(2503), 1, anon_sym_LBRACK, - ACTIONS(4691), 1, + ACTIONS(4665), 1, anon_sym_else, - STATE(1703), 1, + STATE(1727), 1, sym_else_branch, - ACTIONS(2515), 56, + ACTIONS(2505), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193401,16 +193609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2704] = 5, + [2524] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(2633), 1, anon_sym_LBRACK, - ACTIONS(4691), 1, + ACTIONS(4665), 1, anon_sym_else, - STATE(1704), 1, + STATE(1726), 1, sym_else_branch, - ACTIONS(2509), 56, + ACTIONS(2635), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -193467,16 +193675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2775] = 3, + [2595] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - ACTIONS(3323), 57, + ACTIONS(2685), 58, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -193513,6 +193720,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, @@ -193530,46 +193739,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2841] = 16, + [2662] = 26, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4669), 1, + anon_sym_as, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, + ACTIONS(4681), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4683), 1, + anon_sym_DASH_DASH, + ACTIONS(4685), 1, anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, ACTIONS(4687), 1, + anon_sym_BANG, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4695), 1, + anon_sym_or, + ACTIONS(4697), 1, + anon_sym_is, + ACTIONS(4699), 1, + anon_sym_BANGis, + ACTIONS(4701), 1, anon_sym_in, - ACTIONS(4689), 1, + ACTIONS(4703), 1, anon_sym_BANGin, - STATE(1814), 1, + STATE(1841), 1, sym_or_block, - STATE(1815), 1, + STATE(1842), 1, sym_argument_list, - STATE(4367), 1, + STATE(3622), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4667), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4689), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4659), 4, + ACTIONS(1759), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(4673), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4663), 6, + ACTIONS(4677), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4661), 8, + ACTIONS(4675), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -193578,21 +193810,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 27, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, + ACTIONS(1761), 15, 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, @@ -193606,77 +193826,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [2933] = 24, + [2775] = 11, ACTIONS(495), 1, sym_comment, - ACTIONS(4655), 1, - anon_sym_as, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4669), 1, - anon_sym_DASH_DASH, ACTIONS(4671), 1, - anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AMP_AMP, + anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4681), 1, - anon_sym_or, - ACTIONS(4683), 1, - anon_sym_is, + anon_sym_LBRACK, ACTIONS(4685), 1, - anon_sym_BANGis, + anon_sym_QMARK, ACTIONS(4687), 1, - anon_sym_in, - ACTIONS(4689), 1, - anon_sym_BANGin, - STATE(1814), 1, + anon_sym_BANG, + STATE(1841), 1, sym_or_block, - STATE(1815), 1, + STATE(1842), 1, sym_argument_list, - STATE(4367), 1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4667), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4689), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4659), 4, + ACTIONS(1869), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4663), 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(4661), 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(1835), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193690,62 +193897,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3041] = 24, + [2857] = 12, ACTIONS(495), 1, sym_comment, - ACTIONS(4655), 1, - anon_sym_as, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4669), 1, - anon_sym_DASH_DASH, ACTIONS(4671), 1, - anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AMP_AMP, + anon_sym_LPAREN, ACTIONS(4679), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4681), 1, - anon_sym_or, - ACTIONS(4683), 1, - anon_sym_is, + anon_sym_LBRACK, ACTIONS(4685), 1, - anon_sym_BANGis, + anon_sym_QMARK, ACTIONS(4687), 1, - anon_sym_in, - ACTIONS(4689), 1, - anon_sym_BANGin, - STATE(1814), 1, + anon_sym_BANG, + STATE(1841), 1, sym_or_block, - STATE(1815), 1, + STATE(1842), 1, sym_argument_list, - STATE(4367), 1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4667), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4689), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4659), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4663), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4661), 8, + ACTIONS(4675), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -193754,13 +193929,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1839), 19, + ACTIONS(1881), 39, 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_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_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193774,36 +193969,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3149] = 11, + [2941] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(3326), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, - anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, - STATE(1814), 1, - sym_or_block, - STATE(1815), 1, - sym_argument_list, - STATE(4367), 1, - sym_type_parameters, - ACTIONS(4653), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4675), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1879), 47, + ACTIONS(3328), 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, @@ -193817,10 +193997,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, @@ -193828,6 +194013,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, @@ -193845,70 +194032,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3231] = 17, + [3007] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(3330), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, - anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, - ACTIONS(4677), 1, - anon_sym_AMP_AMP, - ACTIONS(4687), 1, - anon_sym_in, - ACTIONS(4689), 1, - anon_sym_BANGin, - STATE(1814), 1, - sym_or_block, - STATE(1815), 1, - sym_argument_list, - STATE(4367), 1, - sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(3332), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4675), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4659), 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(4663), 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(4661), 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(2011), 26, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -193922,62 +194095,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3325] = 13, + [3073] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(3334), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, - anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, - STATE(1814), 1, - sym_or_block, - STATE(1815), 1, - sym_argument_list, - STATE(4367), 1, - sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(3336), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4675), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4659), 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(4661), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2059), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [3139] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3338), 1, + anon_sym_LBRACK, + ACTIONS(3340), 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, @@ -193995,35 +194221,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3411] = 13, + [3205] = 16, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, + ACTIONS(4685), 1, anon_sym_QMARK, - ACTIONS(4673), 1, + ACTIONS(4687), 1, anon_sym_BANG, - STATE(1814), 1, + ACTIONS(4701), 1, + anon_sym_in, + ACTIONS(4703), 1, + anon_sym_BANGin, + STATE(1841), 1, sym_or_block, - STATE(1815), 1, + STATE(1842), 1, sym_argument_list, - STATE(4367), 1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4667), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4689), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4659), 4, + ACTIONS(4673), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4661), 8, + ACTIONS(4677), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4675), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -194032,7 +194269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2179), 35, + ACTIONS(1881), 27, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194040,12 +194277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_RBRACE, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -194053,8 +194284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194068,62 +194297,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3497] = 24, - ACTIONS(495), 1, + [3297] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(4655), 1, + ACTIONS(1707), 1, + anon_sym_SEMI, + ACTIONS(1719), 1, + anon_sym_EQ, + ACTIONS(4707), 1, anon_sym_as, - ACTIONS(4657), 1, + ACTIONS(4709), 1, + anon_sym_LBRACE, + ACTIONS(4711), 1, + anon_sym_COMMA, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4667), 1, + ACTIONS(4725), 1, anon_sym_PLUS_PLUS, - ACTIONS(4669), 1, + ACTIONS(4727), 1, anon_sym_DASH_DASH, - ACTIONS(4671), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4673), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4677), 1, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4735), 1, anon_sym_AMP_AMP, - ACTIONS(4679), 1, + ACTIONS(4737), 1, anon_sym_PIPE_PIPE, - ACTIONS(4681), 1, + ACTIONS(4739), 1, anon_sym_or, - ACTIONS(4687), 1, - anon_sym_in, - ACTIONS(4689), 1, - anon_sym_BANGin, - ACTIONS(4693), 1, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4743), 1, anon_sym_is, - ACTIONS(4695), 1, + ACTIONS(4745), 1, anon_sym_BANGis, - STATE(1814), 1, - sym_or_block, - STATE(1815), 1, + ACTIONS(4747), 1, + anon_sym_in, + ACTIONS(4749), 1, + anon_sym_BANGin, + STATE(1543), 1, + sym_block, + STATE(2123), 1, sym_argument_list, - STATE(4367), 1, + STATE(2125), 1, + sym_or_block, + STATE(3359), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4659), 4, + ACTIONS(4719), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4663), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4721), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4661), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -194132,13 +194375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2029), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3512), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194152,19 +194389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3605] = 5, + [3421] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(3354), 1, anon_sym_LBRACK, - ACTIONS(2677), 1, - anon_sym_COLON, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2669), 55, + ACTIONS(3356), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -194183,6 +194417,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, @@ -194217,53 +194452,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3675] = 4, + [3487] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(3059), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4685), 1, + anon_sym_QMARK, + ACTIONS(4687), 1, + anon_sym_BANG, + STATE(1841), 1, + sym_or_block, + STATE(1842), 1, + sym_argument_list, + STATE(4231), 1, + sym_type_parameters, + ACTIONS(4667), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4689), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4673), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4675), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 35, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_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, @@ -194281,17 +194525,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3743] = 4, + [3573] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 56, + ACTIONS(3257), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -194345,76 +194588,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3811] = 32, + [3639] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, + ACTIONS(1707), 1, anon_sym_SEMI, - ACTIONS(1717), 1, + ACTIONS(1719), 1, anon_sym_EQ, - ACTIONS(4701), 1, + ACTIONS(4707), 1, anon_sym_as, - ACTIONS(4703), 1, - anon_sym_LBRACE, - ACTIONS(4705), 1, + ACTIONS(4711), 1, anon_sym_COMMA, - ACTIONS(4707), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, + ACTIONS(4725), 1, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, + ACTIONS(4727), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4735), 1, anon_sym_AMP_AMP, - ACTIONS(4731), 1, + ACTIONS(4737), 1, anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, + ACTIONS(4739), 1, anon_sym_or, - ACTIONS(4735), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4743), 1, anon_sym_is, - ACTIONS(4739), 1, + ACTIONS(4745), 1, anon_sym_BANGis, - ACTIONS(4741), 1, + ACTIONS(4747), 1, anon_sym_in, - ACTIONS(4743), 1, + ACTIONS(4749), 1, anon_sym_BANGin, - STATE(2119), 1, + ACTIONS(4751), 1, + anon_sym_LBRACE, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(3353), 1, + STATE(3359), 1, aux_sym_strictly_expression_list_repeat1, - STATE(3814), 1, + STATE(3802), 1, sym_block, - STATE(4365), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4713), 2, + ACTIONS(4719), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4709), 4, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 4, + ACTIONS(4721), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4711), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -194423,7 +194666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3504), 13, + ACTIONS(3512), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194437,128 +194680,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [3935] = 4, + [3763] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(2853), 1, - anon_sym_LBRACK, - ACTIONS(4745), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(4669), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4671), 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(4679), 1, + anon_sym_LBRACK, + ACTIONS(4681), 1, anon_sym_PLUS_PLUS, + ACTIONS(4683), 1, anon_sym_DASH_DASH, + ACTIONS(4685), 1, anon_sym_QMARK, + ACTIONS(4687), 1, anon_sym_BANG, - 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(4691), 1, anon_sym_AMP_AMP, + ACTIONS(4693), 1, anon_sym_PIPE_PIPE, + ACTIONS(4695), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(4701), 1, anon_sym_in, + ACTIONS(4703), 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, - [4003] = 11, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, - anon_sym_LBRACK, - ACTIONS(4671), 1, - anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, - STATE(1814), 1, + ACTIONS(4753), 1, + anon_sym_is, + ACTIONS(4755), 1, + anon_sym_BANGis, + STATE(1841), 1, sym_or_block, - STATE(1815), 1, + STATE(1842), 1, sym_argument_list, - STATE(4367), 1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4667), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4689), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2011), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4673), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4677), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(4675), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1933), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -194572,44 +194764,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4085] = 13, + [3871] = 11, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, + ACTIONS(4685), 1, anon_sym_QMARK, - ACTIONS(4673), 1, + ACTIONS(4687), 1, anon_sym_BANG, - STATE(1814), 1, + STATE(1841), 1, sym_or_block, - STATE(1815), 1, + STATE(1842), 1, sym_argument_list, - STATE(4367), 1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4667), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4689), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4659), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4661), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2011), 35, + ACTIONS(1881), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -194617,6 +194795,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, @@ -194625,6 +194809,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, @@ -194645,61 +194835,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4171] = 12, + [3953] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, - anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(2905), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, - anon_sym_QMARK, - ACTIONS(4673), 1, - anon_sym_BANG, - STATE(1814), 1, - sym_or_block, - STATE(1815), 1, - sym_argument_list, - STATE(4367), 1, - sym_type_parameters, - ACTIONS(4653), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4675), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4661), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2011), 39, + ACTIONS(2907), 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, @@ -194717,17 +194898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4255] = 4, + [4019] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(3179), 1, anon_sym_LBRACK, - STATE(1765), 1, - sym_type_parameters, - ACTIONS(2761), 56, + ACTIONS(3181), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -194781,17 +194961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4323] = 4, + [4085] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2669), 56, + ACTIONS(3177), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -194845,186 +195024,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4391] = 11, + [4151] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4671), 1, anon_sym_LPAREN, - ACTIONS(4665), 1, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(4671), 1, + ACTIONS(4685), 1, anon_sym_QMARK, - ACTIONS(4673), 1, + ACTIONS(4687), 1, anon_sym_BANG, - STATE(1814), 1, + STATE(1841), 1, sym_or_block, - STATE(1815), 1, + STATE(1842), 1, sym_argument_list, - STATE(4367), 1, + STATE(4231), 1, sym_type_parameters, - ACTIONS(4653), 2, + ACTIONS(4667), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4675), 2, + ACTIONS(4689), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2041), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(4673), 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_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, - anon_sym_LT_LT, - anon_sym_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, - [4473] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3329), 1, - anon_sym_LBRACK, - ACTIONS(3331), 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, + ACTIONS(4675), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_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, - [4539] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3317), 1, - anon_sym_LBRACK, - ACTIONS(3319), 57, + ACTIONS(2067), 35, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -195042,12 +195097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4605] = 3, + [4237] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - ACTIONS(3327), 57, + ACTIONS(2985), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195105,12 +195160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4671] = 3, + [4303] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(2761), 57, + ACTIONS(2981), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195168,10 +195223,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4737] = 3, + [4369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4749), 24, + ACTIONS(4759), 24, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, @@ -195196,7 +195251,7 @@ static const uint16_t ts_small_parse_table[] = { sym___c_single_quote, sym___r_double_quote, sym___r_single_quote, - ACTIONS(4747), 34, + ACTIONS(4757), 34, anon_sym_DOT, anon_sym_fn, anon_sym_struct, @@ -195231,16 +195286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLARfor, anon_sym_for, anon_sym_asm, - [4803] = 3, + [4435] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(2732), 1, anon_sym_LBRACK, - ACTIONS(3401), 57, + ACTIONS(3412), 1, + anon_sym_LBRACE, + ACTIONS(2727), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195294,16 +195350,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4869] = 3, + [4503] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(3359), 57, + ACTIONS(4761), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195357,16 +195414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [4935] = 3, + [4571] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(2732), 1, anon_sym_LBRACK, - ACTIONS(3425), 57, + ACTIONS(2735), 1, + anon_sym_COLON, + ACTIONS(3412), 1, + anon_sym_LBRACE, + ACTIONS(2727), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195385,7 +195445,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, @@ -195420,12 +195479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5001] = 3, + [4641] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(3376), 1, anon_sym_LBRACK, - ACTIONS(3379), 57, + ACTIONS(3378), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195483,12 +195542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5067] = 3, + [4707] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3011), 1, anon_sym_LBRACK, - ACTIONS(3383), 57, + ACTIONS(3013), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195546,16 +195605,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5133] = 3, + [4773] = 17, ACTIONS(495), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(3387), 57, + ACTIONS(4685), 1, + anon_sym_QMARK, + ACTIONS(4687), 1, + anon_sym_BANG, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4701), 1, + anon_sym_in, + ACTIONS(4703), 1, + anon_sym_BANGin, + STATE(1841), 1, + sym_or_block, + STATE(1842), 1, + sym_argument_list, + STATE(4231), 1, + sym_type_parameters, + ACTIONS(4667), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4689), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4673), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4677), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4675), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 26, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [4867] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2647), 1, + anon_sym_LBRACK, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(2649), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195609,12 +195746,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5199] = 3, + [4935] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(4669), 1, + anon_sym_as, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(3391), 57, + ACTIONS(4681), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4683), 1, + anon_sym_DASH_DASH, + ACTIONS(4685), 1, + anon_sym_QMARK, + ACTIONS(4687), 1, + anon_sym_BANG, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4695), 1, + anon_sym_or, + ACTIONS(4697), 1, + anon_sym_is, + ACTIONS(4699), 1, + anon_sym_BANGis, + ACTIONS(4701), 1, + anon_sym_in, + ACTIONS(4703), 1, + anon_sym_BANGin, + STATE(1841), 1, + sym_or_block, + STATE(1842), 1, + sym_argument_list, + STATE(4231), 1, + sym_type_parameters, + ACTIONS(4667), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4689), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4673), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4677), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4675), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1849), 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, + [5043] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_LBRACK, + ACTIONS(2715), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195672,12 +195893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5265] = 3, + [5109] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3394), 1, anon_sym_LBRACK, - ACTIONS(3413), 57, + ACTIONS(3396), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195735,14 +195956,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5331] = 4, + [5175] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(2757), 56, + STATE(1710), 1, + sym_type_parameters, + ACTIONS(2715), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195799,12 +196020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5399] = 3, + [5243] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3273), 1, anon_sym_LBRACK, - ACTIONS(3211), 57, + ACTIONS(3275), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -195862,21 +196083,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5465] = 3, + [5309] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4679), 1, anon_sym_LBRACK, - ACTIONS(3215), 57, + ACTIONS(4685), 1, + anon_sym_QMARK, + ACTIONS(4687), 1, + anon_sym_BANG, + STATE(1841), 1, + sym_or_block, + STATE(1842), 1, + sym_argument_list, + STATE(4231), 1, + sym_type_parameters, + ACTIONS(4667), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4689), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4673), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4675), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1865), 35, 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_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [5395] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4669), 1, + anon_sym_as, + ACTIONS(4671), 1, + anon_sym_LPAREN, + ACTIONS(4679), 1, + anon_sym_LBRACK, + ACTIONS(4681), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4683), 1, + anon_sym_DASH_DASH, + ACTIONS(4685), 1, + anon_sym_QMARK, + ACTIONS(4687), 1, + anon_sym_BANG, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4695), 1, + anon_sym_or, + ACTIONS(4697), 1, + anon_sym_is, + ACTIONS(4699), 1, + anon_sym_BANGis, + ACTIONS(4701), 1, + anon_sym_in, + ACTIONS(4703), 1, + anon_sym_BANGin, + STATE(1841), 1, + sym_or_block, + STATE(1842), 1, + sym_argument_list, + STATE(4231), 1, + sym_type_parameters, + ACTIONS(4667), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4689), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4673), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4677), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4675), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1861), 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, + [5503] = 11, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4671), 1, anon_sym_LPAREN, + ACTIONS(4679), 1, + anon_sym_LBRACK, + ACTIONS(4685), 1, + anon_sym_QMARK, + ACTIONS(4687), 1, + anon_sym_BANG, + STATE(1841), 1, + sym_or_block, + STATE(1842), 1, + sym_argument_list, + STATE(4231), 1, + sym_type_parameters, + ACTIONS(4667), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4689), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1853), 47, + 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, @@ -195890,15 +196283,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, @@ -195906,8 +196294,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, @@ -195925,16 +196311,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5531] = 3, + [5585] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(2732), 1, anon_sym_LBRACK, - ACTIONS(3219), 57, + ACTIONS(3412), 1, + anon_sym_LBRACE, + ACTIONS(2727), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -195988,12 +196375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5597] = 3, + [5653] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3191), 1, anon_sym_LBRACK, - ACTIONS(3235), 57, + ACTIONS(3193), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196051,12 +196438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5663] = 3, + [5719] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3203), 1, anon_sym_LBRACK, - ACTIONS(3251), 57, + ACTIONS(3205), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196114,14 +196501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5729] = 4, + [5785] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2669), 56, + ACTIONS(4763), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196178,16 +196565,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5797] = 3, + [5853] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(3199), 1, anon_sym_LBRACK, - ACTIONS(3303), 57, + ACTIONS(3201), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -196241,12 +196629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5863] = 3, + [5921] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3211), 1, anon_sym_LBRACK, - ACTIONS(3307), 57, + ACTIONS(3213), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196304,85 +196692,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [5929] = 32, - ACTIONS(3), 1, + [5987] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(1705), 1, + ACTIONS(3243), 1, + anon_sym_LBRACK, + ACTIONS(3245), 57, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - ACTIONS(1717), 1, - anon_sym_EQ, - ACTIONS(4701), 1, + anon_sym_DOT, anon_sym_as, - ACTIONS(4705), 1, anon_sym_COMMA, - ACTIONS(4707), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 1, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_COLON, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, anon_sym_or, - ACTIONS(4735), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, anon_sym_is, - ACTIONS(4739), 1, anon_sym_BANGis, - ACTIONS(4741), 1, anon_sym_in, - ACTIONS(4743), 1, anon_sym_BANGin, - ACTIONS(4751), 1, - anon_sym_LBRACE, - STATE(1509), 1, - sym_block, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(3353), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4711), 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(3504), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -196399,9 +196758,9 @@ static const uint16_t ts_small_parse_table[] = { [6053] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(2913), 1, anon_sym_LBRACK, - ACTIONS(3311), 57, + ACTIONS(2915), 57, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196462,9 +196821,9 @@ static const uint16_t ts_small_parse_table[] = { [6119] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3363), 56, + ACTIONS(3141), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196524,9 +196883,9 @@ static const uint16_t ts_small_parse_table[] = { [6184] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(3133), 56, + ACTIONS(3382), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196586,9 +196945,9 @@ static const uint16_t ts_small_parse_table[] = { [6249] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(3402), 1, anon_sym_LBRACK, - ACTIONS(3153), 56, + ACTIONS(3404), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196648,9 +197007,9 @@ static const uint16_t ts_small_parse_table[] = { [6314] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3157), 56, + ACTIONS(3444), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196710,9 +197069,9 @@ static const uint16_t ts_small_parse_table[] = { [6379] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3165), 56, + ACTIONS(3133), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196772,9 +197131,9 @@ static const uint16_t ts_small_parse_table[] = { [6444] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(3097), 1, anon_sym_LBRACK, - ACTIONS(3169), 56, + ACTIONS(3099), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196834,9 +197193,9 @@ static const uint16_t ts_small_parse_table[] = { [6509] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3173), 56, + ACTIONS(3253), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196896,9 +197255,9 @@ static const uint16_t ts_small_parse_table[] = { [6574] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3426), 1, anon_sym_LBRACK, - ACTIONS(3177), 56, + ACTIONS(3428), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -196958,9 +197317,9 @@ static const uint16_t ts_small_parse_table[] = { [6639] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - ACTIONS(3183), 56, + ACTIONS(2899), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197020,9 +197379,9 @@ static const uint16_t ts_small_parse_table[] = { [6704] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3368), 1, anon_sym_LBRACK, - ACTIONS(3191), 56, + ACTIONS(3370), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197079,19 +197438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6769] = 3, + [6769] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(2865), 56, + ACTIONS(2649), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2651), 52, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -197122,8 +197484,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, @@ -197141,16 +197501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6834] = 5, + [6836] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2513), 1, + ACTIONS(2901), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_else, - STATE(1842), 1, - sym_else_branch, - ACTIONS(2515), 54, + ACTIONS(2903), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197172,6 +197528,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, @@ -197179,6 +197536,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, @@ -197205,22 +197563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6903] = 4, + [6901] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2909), 1, anon_sym_LBRACK, - ACTIONS(2757), 4, + ACTIONS(2911), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2867), 52, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -197235,6 +197590,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, @@ -197242,6 +197598,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, @@ -197268,12 +197625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [6970] = 3, + [6966] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(3195), 56, + ACTIONS(2989), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197330,12 +197687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7035] = 3, + [7031] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(3295), 56, + ACTIONS(2993), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197392,12 +197749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7100] = 3, + [7096] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(2995), 1, anon_sym_LBRACK, - ACTIONS(3129), 56, + ACTIONS(2997), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197454,12 +197811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7165] = 3, + [7161] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(2999), 1, anon_sym_LBRACK, - ACTIONS(3223), 56, + ACTIONS(3001), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197516,12 +197873,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7230] = 3, + [7226] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3085), 1, + ACTIONS(3350), 1, anon_sym_LBRACK, - ACTIONS(3087), 56, + ACTIONS(3352), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197578,12 +197935,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7295] = 3, + [7291] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(3227), 56, + ACTIONS(4765), 1, + anon_sym_BANG, + ACTIONS(3269), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197609,7 +197968,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, @@ -197640,12 +197998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7360] = 3, + [7358] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3229), 1, + ACTIONS(3047), 1, anon_sym_LBRACK, - ACTIONS(3231), 56, + ACTIONS(3049), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197702,22 +198060,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7425] = 4, + [7423] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(3051), 1, anon_sym_LBRACK, - ACTIONS(3101), 6, + ACTIONS(3053), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(3103), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -197732,6 +198087,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, @@ -197739,6 +198095,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, @@ -197765,22 +198122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7492] = 4, + [7488] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3091), 6, + ACTIONS(3057), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(3093), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -197795,6 +198149,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, @@ -197802,6 +198157,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, @@ -197828,12 +198184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7559] = 3, + [7553] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3255), 56, + ACTIONS(3061), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197890,12 +198246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7624] = 3, + [7618] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(3081), 1, anon_sym_LBRACK, - ACTIONS(3259), 56, + ACTIONS(3083), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -197952,12 +198308,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7689] = 3, + [7683] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - ACTIONS(3299), 56, + ACTIONS(3017), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198014,12 +198370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7754] = 3, + [7748] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(3089), 1, anon_sym_LBRACK, - ACTIONS(3429), 56, + ACTIONS(3091), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198076,12 +198432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7819] = 3, + [7813] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3093), 1, anon_sym_LBRACK, - ACTIONS(3433), 56, + ACTIONS(3095), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198138,17 +198494,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7884] = 4, + [7878] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3101), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, - anon_sym_DOT, - ACTIONS(3437), 55, + ACTIONS(3103), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -198201,12 +198556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [7951] = 3, + [7943] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(3444), 56, + ACTIONS(3129), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198263,20 +198618,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8016] = 4, + [8008] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(3143), 1, anon_sym_LBRACK, - ACTIONS(2757), 4, + ACTIONS(3145), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2867), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -198326,12 +198680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8083] = 3, + [8073] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3171), 1, anon_sym_LBRACK, - ACTIONS(3397), 56, + ACTIONS(3173), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198388,12 +198742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8148] = 3, + [8138] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3183), 1, anon_sym_LBRACK, - ACTIONS(3367), 56, + ACTIONS(3185), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198450,12 +198804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8213] = 3, + [8203] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3195), 1, anon_sym_LBRACK, - ACTIONS(3149), 56, + ACTIONS(3197), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198512,19 +198866,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8278] = 3, + [8268] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3222), 1, anon_sym_LBRACK, - ACTIONS(3351), 56, + ACTIONS(3217), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(3219), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -198539,7 +198896,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, @@ -198547,7 +198903,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, @@ -198574,19 +198929,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8343] = 3, + [8335] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - ACTIONS(3291), 56, + ACTIONS(3227), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_LT_DASH, + ACTIONS(3229), 50, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -198601,7 +198959,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, @@ -198609,7 +198966,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, @@ -198636,12 +198992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8408] = 3, + [8402] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(3287), 56, + ACTIONS(3237), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198698,37 +199054,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8473] = 4, + [8467] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(2503), 1, anon_sym_LBRACK, - ACTIONS(3101), 21, + ACTIONS(4767), 1, + anon_sym_else, + STATE(1878), 1, + sym_else_branch, + ACTIONS(2505), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(3103), 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, @@ -198761,20 +199105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [8540] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_LBRACK, - ACTIONS(3091), 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, @@ -198788,10 +199118,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(3093), 35, + [8536] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3239), 1, + anon_sym_LBRACK, + ACTIONS(3241), 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, @@ -198804,6 +199145,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, @@ -198811,6 +199153,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, @@ -198824,12 +199167,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [8607] = 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, + [8601] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3342), 1, anon_sym_LBRACK, - ACTIONS(3283), 56, + ACTIONS(3344), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198886,12 +199242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8672] = 3, + [8666] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(2633), 1, anon_sym_LBRACK, - ACTIONS(3279), 56, + ACTIONS(4767), 1, + anon_sym_else, + STATE(1877), 1, + sym_else_branch, + ACTIONS(2635), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -198913,7 +199273,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, @@ -198921,7 +199280,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, @@ -198948,12 +199306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8737] = 3, + [8735] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(3277), 1, anon_sym_LBRACK, - ACTIONS(3275), 56, + ACTIONS(3279), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199010,12 +199368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8802] = 3, + [8800] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3293), 1, anon_sym_LBRACK, - ACTIONS(3271), 56, + ACTIONS(3295), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199072,12 +199430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8867] = 3, + [8865] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3187), 1, anon_sym_LBRACK, - ACTIONS(3267), 56, + ACTIONS(3189), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199134,12 +199492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8932] = 3, + [8930] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3297), 1, anon_sym_LBRACK, - ACTIONS(3263), 56, + ACTIONS(3299), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199196,12 +199554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [8997] = 3, + [8995] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3301), 1, anon_sym_LBRACK, - ACTIONS(3243), 56, + ACTIONS(3303), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199258,12 +199616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9062] = 3, + [9060] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3305), 1, anon_sym_LBRACK, - ACTIONS(2757), 56, + ACTIONS(3307), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199285,6 +199643,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, @@ -199292,6 +199651,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, @@ -199301,8 +199661,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, @@ -199320,12 +199678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9127] = 3, + [9125] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3316), 1, anon_sym_LBRACK, - ACTIONS(3335), 56, + ACTIONS(3318), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199382,12 +199740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9192] = 3, + [9190] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(3203), 56, + ACTIONS(3265), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199444,12 +199802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9257] = 3, + [9255] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3320), 1, anon_sym_LBRACK, - ACTIONS(3187), 56, + ACTIONS(3322), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199506,12 +199864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9322] = 3, + [9320] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3339), 56, + ACTIONS(3027), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199568,12 +199926,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9387] = 3, + [9385] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3418), 1, anon_sym_LBRACK, - ACTIONS(3161), 56, + ACTIONS(3420), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199630,14 +199988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9452] = 4, + [9450] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(3450), 1, anon_sym_LBRACK, - ACTIONS(4755), 1, - anon_sym_BANG, - ACTIONS(3063), 55, + ACTIONS(3452), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199663,6 +200019,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, @@ -199693,12 +200050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9519] = 3, + [9515] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3434), 1, anon_sym_LBRACK, - ACTIONS(3343), 56, + ACTIONS(3436), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199755,12 +200112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9584] = 3, + [9580] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3390), 1, anon_sym_LBRACK, - ACTIONS(3355), 56, + ACTIONS(3392), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199817,12 +200174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9649] = 3, + [9645] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(3360), 1, anon_sym_LBRACK, - ACTIONS(3315), 56, + ACTIONS(3362), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -199879,17 +200236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9714] = 4, + [9710] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(2907), 1, + ACTIONS(3364), 1, anon_sym_LBRACK, - ACTIONS(2909), 55, + ACTIONS(3366), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -199942,12 +200298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9781] = 3, + [9775] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - ACTIONS(3371), 56, + ACTIONS(3374), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200004,19 +200360,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9846] = 3, + [9840] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2667), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(2669), 56, + ACTIONS(2649), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(2651), 52, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, @@ -200066,12 +200423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9911] = 3, + [9907] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - ACTIONS(3375), 56, + ACTIONS(2727), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200128,12 +200485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [9976] = 3, + [9972] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(3085), 1, anon_sym_LBRACK, - ACTIONS(2909), 56, + ACTIONS(3087), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200190,12 +200547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10041] = 3, + [10037] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(3406), 1, anon_sym_LBRACK, - ACTIONS(2991), 56, + ACTIONS(3408), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200252,12 +200609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10106] = 3, + [10102] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(3446), 1, anon_sym_LBRACK, - ACTIONS(2981), 56, + ACTIONS(3448), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200314,12 +200671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10171] = 3, + [10167] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2911), 1, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(2913), 56, + ACTIONS(3412), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200376,12 +200733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10236] = 3, + [10232] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(3414), 1, anon_sym_LBRACK, - ACTIONS(2917), 56, + ACTIONS(3416), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200438,12 +200795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10301] = 3, + [10297] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(3386), 1, anon_sym_LBRACK, - ACTIONS(2921), 56, + ACTIONS(3388), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200500,12 +200857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10366] = 3, + [10362] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3422), 1, anon_sym_LBRACK, - ACTIONS(2931), 56, + ACTIONS(3424), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200562,12 +200919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10431] = 3, + [10427] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(3430), 1, anon_sym_LBRACK, - ACTIONS(2935), 56, + ACTIONS(3432), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200624,12 +200981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10496] = 3, + [10492] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - ACTIONS(3137), 56, + ACTIONS(2685), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200651,7 +201008,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, @@ -200659,7 +201015,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, @@ -200669,6 +201024,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, @@ -200686,12 +201043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10561] = 3, + [10557] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(2647), 1, anon_sym_LBRACK, - ACTIONS(2939), 56, + ACTIONS(2649), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200713,7 +201070,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, @@ -200721,7 +201077,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, @@ -200731,6 +201086,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, @@ -200748,16 +201105,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10626] = 3, + [10622] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2729), 1, + anon_sym_DOT, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(2867), 56, + ACTIONS(3412), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -200810,12 +201168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10691] = 3, + [10689] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(3398), 1, anon_sym_LBRACK, - ACTIONS(2943), 56, + ACTIONS(3400), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200872,16 +201230,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [10756] = 3, + [10754] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(3309), 1, anon_sym_LBRACK, - ACTIONS(2947), 56, + ACTIONS(3313), 1, + anon_sym_DOT, + ACTIONS(3311), 55, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -200937,9 +201296,9 @@ static const uint16_t ts_small_parse_table[] = { [10821] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(3207), 1, anon_sym_LBRACK, - ACTIONS(2951), 56, + ACTIONS(3209), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -200999,9 +201358,9 @@ static const uint16_t ts_small_parse_table[] = { [10886] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3289), 1, anon_sym_LBRACK, - ACTIONS(3405), 56, + ACTIONS(3291), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201061,9 +201420,9 @@ static const uint16_t ts_small_parse_table[] = { [10951] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(3421), 56, + ACTIONS(2651), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201123,9 +201482,9 @@ static const uint16_t ts_small_parse_table[] = { [11016] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3285), 1, anon_sym_LBRACK, - ACTIONS(3417), 56, + ACTIONS(3287), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201185,9 +201544,9 @@ static const uint16_t ts_small_parse_table[] = { [11081] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2953), 1, + ACTIONS(3346), 1, anon_sym_LBRACK, - ACTIONS(2955), 56, + ACTIONS(3348), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201247,9 +201606,9 @@ static const uint16_t ts_small_parse_table[] = { [11146] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(2977), 56, + ACTIONS(3249), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201306,25 +201665,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11211] = 5, + [11211] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(3222), 1, anon_sym_LBRACK, - ACTIONS(4753), 1, - anon_sym_else, - STATE(1879), 1, - sym_else_branch, - ACTIONS(2509), 54, + ACTIONS(3217), 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(3219), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -201357,25 +201728,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, - [11280] = 3, + [11278] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3438), 1, anon_sym_LBRACK, - ACTIONS(3141), 56, + ACTIONS(3440), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201432,12 +201790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11345] = 3, + [11343] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - ACTIONS(3145), 56, + ACTIONS(3283), 56, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -201494,21 +201852,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11410] = 3, + [11408] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - ACTIONS(3409), 56, + ACTIONS(3227), 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(3229), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -201521,7 +201895,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, @@ -201529,7 +201902,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, @@ -201543,85 +201915,66 @@ 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, - [11475] = 30, + [11475] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, - anon_sym_LBRACE, - ACTIONS(1717), 1, + ACTIONS(1861), 1, anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, + ACTIONS(4725), 1, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, + ACTIONS(4727), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4735), 1, anon_sym_AMP_AMP, - ACTIONS(4731), 1, + ACTIONS(4737), 1, anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, + ACTIONS(4739), 1, anon_sym_or, - ACTIONS(4735), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4743), 1, anon_sym_is, - ACTIONS(4739), 1, + ACTIONS(4745), 1, anon_sym_BANGis, - ACTIONS(4741), 1, + ACTIONS(4747), 1, anon_sym_in, - ACTIONS(4743), 1, + ACTIONS(4749), 1, anon_sym_BANGin, - ACTIONS(4757), 1, - anon_sym_COMMA, - STATE(2119), 1, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(3353), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4365), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4713), 2, + ACTIONS(4719), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4709), 4, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 4, + ACTIONS(4721), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4711), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201630,7 +201983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3504), 13, + ACTIONS(1859), 16, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -201644,31 +202000,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11593] = 13, + [11587] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - STATE(2063), 1, + STATE(2123), 1, sym_argument_list, - STATE(2064), 1, + STATE(2125), 1, sym_or_block, - STATE(4085), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1879), 15, + ACTIONS(1853), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -201684,7 +202040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1877), 30, + ACTIONS(1851), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201692,10 +202049,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, @@ -201715,39 +202070,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11677] = 14, + anon_sym_COLON_EQ, + [11671] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4735), 1, + anon_sym_AMP_AMP, + ACTIONS(4737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - STATE(2063), 1, + ACTIONS(4743), 1, + anon_sym_is, + ACTIONS(4745), 1, + anon_sym_BANGis, + ACTIONS(4747), 1, + anon_sym_in, + ACTIONS(4749), 1, + anon_sym_BANGin, + STATE(2123), 1, sym_argument_list, - STATE(2064), 1, + STATE(2125), 1, sym_or_block, - STATE(4085), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2011), 7, - anon_sym_EQ, + ACTIONS(4719), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4721), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4717), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1847), 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, + [11783] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1757), 1, + anon_sym_SEMI, + ACTIONS(1761), 1, + anon_sym_EQ, + ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4743), 1, + anon_sym_is, + ACTIONS(4745), 1, + anon_sym_BANGis, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4066), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(4769), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, - ACTIONS(4773), 8, + ACTIONS(4775), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4771), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -201756,25 +202228,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 30, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3554), 14, 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, @@ -201787,49 +202242,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [11763] = 14, + anon_sym_COLON_EQ, + [11899] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4735), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - STATE(2119), 1, + STATE(2074), 1, sym_argument_list, - STATE(2130), 1, + STATE(2075), 1, sym_or_block, - STATE(4365), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2011), 7, + ACTIONS(1881), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4711), 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(2009), 30, - anon_sym_SEMI, + ACTIONS(1941), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -201837,8 +202291,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, @@ -201858,65 +202314,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11849] = 13, + [11983] = 29, ACTIONS(3), 1, sym_comment, + ACTIONS(1757), 1, + anon_sym_LBRACE, + ACTIONS(1761), 1, + anon_sym_EQ, ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, ACTIONS(4723), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4725), 1, - anon_sym_BANG, + anon_sym_PLUS_PLUS, ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, anon_sym_LBRACK2, ACTIONS(4735), 1, + anon_sym_AMP_AMP, + ACTIONS(4737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - STATE(2119), 1, + ACTIONS(4743), 1, + anon_sym_is, + ACTIONS(4745), 1, + anon_sym_BANGis, + ACTIONS(4747), 1, + anon_sym_in, + ACTIONS(4749), 1, + anon_sym_BANGin, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(4365), 1, + STATE(3953), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2011), 15, - anon_sym_EQ, + ACTIONS(4719), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4721), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_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(2009), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3554), 14, 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, @@ -201930,49 +202401,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [11933] = 15, + [12099] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4735), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - STATE(2119), 1, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(4365), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2011), 3, + ACTIONS(1869), 15, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4711), 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(2009), 30, + ACTIONS(1867), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -202003,70 +202472,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12021] = 19, + [12183] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, - anon_sym_EQ, - ACTIONS(4707), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4735), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_in, - ACTIONS(4743), 1, - anon_sym_BANGin, - STATE(2119), 1, + STATE(2074), 1, sym_argument_list, - STATE(2130), 1, + STATE(2075), 1, sym_or_block, - STATE(4365), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 4, + ACTIONS(1853), 15, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4711), 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(2009), 24, - anon_sym_SEMI, + ACTIONS(1851), 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, @@ -202079,32 +202543,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12117] = 13, - ACTIONS(3), 1, + [12267] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(2871), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4799), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2041), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -202114,26 +202568,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2039), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -202151,66 +202605,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12201] = 27, + [12333] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(1861), 1, anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, - anon_sym_DASH_DASH, - ACTIONS(4723), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4797), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4811), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4813), 1, + anon_sym_DASH_DASH, + ACTIONS(4815), 1, anon_sym_AMP_AMP, - ACTIONS(4731), 1, + ACTIONS(4817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, + ACTIONS(4819), 1, anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4821), 1, anon_sym_is, - ACTIONS(4739), 1, + ACTIONS(4823), 1, anon_sym_BANGis, - ACTIONS(4741), 1, + ACTIONS(4825), 1, anon_sym_in, - ACTIONS(4743), 1, + ACTIONS(4827), 1, anon_sym_BANGin, - STATE(2119), 1, + STATE(2074), 1, sym_argument_list, - STATE(2130), 1, + STATE(2075), 1, sym_or_block, - STATE(4365), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4713), 2, + ACTIONS(4807), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4709), 4, + ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 4, + ACTIONS(4809), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4711), 8, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202219,10 +202673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1833), 16, - anon_sym_SEMI, + ACTIONS(1859), 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, @@ -202235,71 +202690,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, - [12313] = 29, + [12445] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_LBRACE, - ACTIONS(1759), 1, + ACTIONS(1849), 1, anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, - anon_sym_DASH_DASH, - ACTIONS(4723), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, + ACTIONS(4797), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4811), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4813), 1, + anon_sym_DASH_DASH, + ACTIONS(4815), 1, anon_sym_AMP_AMP, - ACTIONS(4731), 1, + ACTIONS(4817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, + ACTIONS(4819), 1, anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, + ACTIONS(4821), 1, anon_sym_is, - ACTIONS(4739), 1, + ACTIONS(4823), 1, anon_sym_BANGis, - ACTIONS(4741), 1, + ACTIONS(4825), 1, anon_sym_in, - ACTIONS(4743), 1, + ACTIONS(4827), 1, anon_sym_BANGin, - STATE(2119), 1, + STATE(2074), 1, sym_argument_list, - STATE(2130), 1, + STATE(2075), 1, sym_or_block, - STATE(3950), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4365), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4713), 2, + ACTIONS(4807), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4709), 4, + ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 4, + ACTIONS(4809), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4711), 8, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202308,8 +202758,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3556), 14, + ACTIONS(1847), 16, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202322,79 +202775,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12429] = 27, - ACTIONS(3), 1, + [12557] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(1839), 1, - anon_sym_EQ, - ACTIONS(4701), 1, + ACTIONS(2732), 1, + anon_sym_LBRACK, + ACTIONS(3412), 1, + anon_sym_LBRACE, + ACTIONS(2727), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, - ACTIONS(4707), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 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(4721), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4729), 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(4731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, anon_sym_or, - ACTIONS(4735), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, anon_sym_is, - ACTIONS(4739), 1, anon_sym_BANGis, - ACTIONS(4741), 1, anon_sym_in, - ACTIONS(4743), 1, anon_sym_BANGin, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4711), 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(1837), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202408,31 +202837,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12541] = 13, + [12623] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4735), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - STATE(2119), 1, + STATE(2074), 1, sym_argument_list, - STATE(2130), 1, + STATE(2075), 1, sym_or_block, - STATE(4365), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(1879), 15, + ACTIONS(1869), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -202448,8 +202877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1877), 30, - anon_sym_SEMI, + ACTIONS(1867), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202457,8 +202885,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, @@ -202478,15 +202908,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, - [12625] = 4, + [12707] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(3199), 1, anon_sym_LBRACK, - ACTIONS(4775), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 54, + ACTIONS(3201), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202541,14 +202970,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12691] = 4, + [12773] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(2757), 54, + STATE(1906), 1, + sym_type_parameters, + ACTIONS(2715), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -202603,180 +203032,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [12757] = 20, + [12839] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, + ACTIONS(1707), 1, + anon_sym_LBRACE, + ACTIONS(1719), 1, anon_sym_EQ, ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_in, - ACTIONS(4743), 1, - anon_sym_BANGin, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4715), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4711), 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(2009), 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, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12855] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2679), 1, anon_sym_LBRACK, - ACTIONS(4777), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 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, + ACTIONS(4725), 1, anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, anon_sym_DASH_DASH, + ACTIONS(4729), 1, anon_sym_QMARK, + ACTIONS(4731), 1, anon_sym_BANG, + ACTIONS(4733), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(4735), 1, anon_sym_AMP_AMP, + ACTIONS(4737), 1, anon_sym_PIPE_PIPE, + ACTIONS(4739), 1, anon_sym_or, - anon_sym_QMARK_DOT, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, + ACTIONS(4743), 1, anon_sym_is, + ACTIONS(4745), 1, anon_sym_BANGis, + ACTIONS(4747), 1, anon_sym_in, + ACTIONS(4749), 1, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12921] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4763), 1, - anon_sym_LBRACK, - ACTIONS(4765), 1, - anon_sym_QMARK, - ACTIONS(4767), 1, - anon_sym_BANG, - ACTIONS(4769), 1, - anon_sym_LBRACK2, - ACTIONS(4771), 1, - anon_sym_POUND_LBRACK, - STATE(2063), 1, + ACTIONS(4829), 1, + anon_sym_COMMA, + STATE(2123), 1, sym_argument_list, - STATE(2064), 1, + STATE(2125), 1, sym_or_block, - STATE(4085), 1, + STATE(3359), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2059), 3, - anon_sym_EQ, + ACTIONS(4719), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4779), 4, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4773), 8, + ACTIONS(4721), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202785,25 +203106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2057), 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, + ACTIONS(3512), 13, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -202816,40 +203119,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13009] = 15, + anon_sym_COLON_EQ, + [12957] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - STATE(2063), 1, + STATE(2123), 1, sym_argument_list, - STATE(2064), 1, + STATE(2125), 1, sym_or_block, - STATE(4085), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2179), 3, + ACTIONS(1881), 7, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4779), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4773), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -202858,7 +203161,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2177), 30, + ACTIONS(1941), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202866,10 +203170,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, @@ -202889,31 +203191,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13097] = 13, + anon_sym_COLON_EQ, + [13043] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - STATE(2063), 1, + STATE(2123), 1, sym_argument_list, - STATE(2064), 1, + STATE(2125), 1, sym_or_block, - STATE(4085), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2011), 15, + ACTIONS(1881), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -202929,7 +203232,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 30, + ACTIONS(1941), 30, + anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -202937,10 +203241,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, @@ -202960,14 +203262,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13181] = 4, + anon_sym_COLON_EQ, + [13127] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(2647), 1, anon_sym_LBRACK, - STATE(1903), 1, - sym_type_parameters, - ACTIONS(2761), 54, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(2649), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203022,51 +203325,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13247] = 4, - ACTIONS(495), 1, + [13193] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(3059), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1881), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_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(1941), 30, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -203084,66 +203398,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13313] = 27, + [13281] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(1881), 1, anon_sym_EQ, - ACTIONS(4761), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - ACTIONS(4781), 1, - anon_sym_as, - ACTIONS(4787), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4789), 1, - anon_sym_DASH_DASH, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4795), 1, - anon_sym_or, - ACTIONS(4797), 1, - anon_sym_is, - ACTIONS(4799), 1, - anon_sym_BANGis, - ACTIONS(4801), 1, + ACTIONS(4747), 1, anon_sym_in, - ACTIONS(4803), 1, + ACTIONS(4749), 1, anon_sym_BANGin, - STATE(2063), 1, + STATE(2123), 1, sym_argument_list, - STATE(2064), 1, + STATE(2125), 1, sym_or_block, - STATE(4085), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4783), 2, + ACTIONS(4719), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4779), 4, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4785), 4, + ACTIONS(4721), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4773), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203152,11 +203450,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1837), 16, + ACTIONS(1941), 24, + anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, + 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, @@ -203169,66 +203474,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13425] = 27, + anon_sym_COLON_EQ, + [13377] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(1881), 1, anon_sym_EQ, - ACTIONS(4761), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4781), 1, - anon_sym_as, - ACTIONS(4787), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4789), 1, - anon_sym_DASH_DASH, - ACTIONS(4791), 1, + ACTIONS(4735), 1, anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4795), 1, - anon_sym_or, - ACTIONS(4797), 1, - anon_sym_is, - ACTIONS(4799), 1, - anon_sym_BANGis, - ACTIONS(4801), 1, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4747), 1, anon_sym_in, - ACTIONS(4803), 1, + ACTIONS(4749), 1, anon_sym_BANGin, - STATE(2063), 1, + STATE(2123), 1, sym_argument_list, - STATE(2064), 1, + STATE(2125), 1, sym_or_block, - STATE(4085), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4783), 2, + ACTIONS(4719), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4779), 4, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4785), 4, + ACTIONS(4721), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4773), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203237,11 +203529,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1833), 16, + ACTIONS(1941), 23, + anon_sym_SEMI, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, + 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, @@ -203254,70 +203552,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13537] = 29, + anon_sym_COLON_EQ, + [13475] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, - anon_sym_SEMI, - ACTIONS(1759), 1, - anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, - anon_sym_DASH_DASH, ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(4735), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_is, - ACTIONS(4739), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_AMP_AMP, - ACTIONS(4815), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - STATE(2119), 1, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(4013), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4365), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4809), 2, + ACTIONS(1865), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 4, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4811), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4807), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203326,8 +203595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3556), 14, + ACTIONS(1863), 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, @@ -203341,47 +203626,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13653] = 13, + [13563] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - STATE(2063), 1, + STATE(2074), 1, sym_argument_list, - STATE(2064), 1, + STATE(2075), 1, sym_or_block, - STATE(4085), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2041), 15, + ACTIONS(2067), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_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(2039), 30, + ACTIONS(2065), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -203412,51 +203699,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [13737] = 4, - ACTIONS(495), 1, + [13651] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2669), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(4793), 1, + anon_sym_BANG, + ACTIONS(4795), 1, + anon_sym_LBRACK2, + ACTIONS(4797), 1, + anon_sym_POUND_LBRACK, + STATE(2074), 1, + sym_argument_list, + STATE(2075), 1, + sym_or_block, + STATE(4215), 1, + sym_type_parameters, + ACTIONS(4785), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1865), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_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(1863), 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -203473,41 +203772,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13803] = 15, + [13739] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(4735), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - STATE(2119), 1, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(4365), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2179), 3, + ACTIONS(2067), 3, anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4709), 4, + ACTIONS(4715), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4711), 8, + ACTIONS(4717), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203516,7 +203814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2177), 30, + ACTIONS(2065), 30, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -203547,40 +203845,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [13891] = 15, + [13827] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LBRACK, + ACTIONS(4831), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 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, + [13893] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4727), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4735), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - STATE(2119), 1, + STATE(2074), 1, sym_argument_list, - STATE(2130), 1, + STATE(2075), 1, sym_or_block, - STATE(4365), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2059), 3, + ACTIONS(1881), 7, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_CARET, - ACTIONS(4711), 8, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203589,8 +203948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2057), 30, - anon_sym_SEMI, + ACTIONS(1941), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -203598,8 +203956,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, @@ -203619,53 +203979,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, [13979] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, + ACTIONS(1881), 1, anon_sym_EQ, - ACTIONS(4761), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - ACTIONS(4791), 1, + ACTIONS(4815), 1, anon_sym_AMP_AMP, - ACTIONS(4801), 1, + ACTIONS(4825), 1, anon_sym_in, - ACTIONS(4803), 1, + ACTIONS(4827), 1, anon_sym_BANGin, - STATE(2063), 1, + STATE(2074), 1, sym_argument_list, - STATE(2064), 1, + STATE(2075), 1, sym_or_block, - STATE(4085), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4783), 2, + ACTIONS(4807), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4779), 4, + ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4785), 4, + ACTIONS(4809), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4773), 8, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203674,7 +204033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 23, + ACTIONS(1941), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -203698,50 +204057,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14077] = 19, + [14077] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, - anon_sym_EQ, - ACTIONS(4761), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_in, - ACTIONS(4803), 1, - anon_sym_BANGin, - STATE(2063), 1, + STATE(2074), 1, sym_argument_list, - STATE(2064), 1, + STATE(2075), 1, sym_or_block, - STATE(4085), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4783), 2, + ACTIONS(1881), 3, + anon_sym_EQ, anon_sym_LT, anon_sym_GT, - ACTIONS(4779), 4, + ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4785), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4773), 8, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203750,10 +204099,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 24, + ACTIONS(1941), 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, @@ -203763,6 +204116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203775,40 +204130,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [14173] = 15, + [14165] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(1881), 1, + anon_sym_EQ, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, + ACTIONS(4791), 1, anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - STATE(2063), 1, + ACTIONS(4825), 1, + anon_sym_in, + ACTIONS(4827), 1, + anon_sym_BANGin, + STATE(2074), 1, sym_argument_list, - STATE(2064), 1, + STATE(2075), 1, sym_or_block, - STATE(4085), 1, + STATE(4215), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(2011), 3, - anon_sym_EQ, + ACTIONS(4807), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4779), 4, + ACTIONS(4803), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4773), 8, + ACTIONS(4809), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4805), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -203817,14 +204182,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 30, + ACTIONS(1941), 24, 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, @@ -203834,8 +204195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -203851,9 +204210,9 @@ static const uint16_t ts_small_parse_table[] = { [14261] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3387), 54, + ACTIONS(3444), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203911,9 +204270,9 @@ static const uint16_t ts_small_parse_table[] = { [14324] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2667), 1, + ACTIONS(3422), 1, anon_sym_LBRACK, - ACTIONS(2669), 54, + ACTIONS(3424), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -203968,12 +204327,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14387] = 3, + [14387] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4833), 1, + anon_sym_else, + STATE(1963), 1, + sym_else_branch, + ACTIONS(2635), 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(2633), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + 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, + [14454] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(2909), 1, anon_sym_LBRACK, - ACTIONS(3243), 54, + ACTIONS(2911), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204028,12 +204449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14450] = 3, + [14517] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(2901), 1, anon_sym_LBRACK, - ACTIONS(3263), 54, + ACTIONS(2903), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204088,12 +204509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14513] = 3, + [14580] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - ACTIONS(3267), 54, + ACTIONS(2899), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204148,12 +204569,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14576] = 3, + [14643] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3426), 1, anon_sym_LBRACK, - ACTIONS(3177), 54, + ACTIONS(3428), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204208,12 +204629,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14639] = 3, + [14706] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3097), 1, anon_sym_LBRACK, - ACTIONS(3195), 54, + ACTIONS(3099), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204268,12 +204689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14702] = 3, + [14769] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3183), 54, + ACTIONS(3133), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204328,12 +204749,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14765] = 3, + [14832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 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(2647), 37, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [14895] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3402), 1, anon_sym_LBRACK, - ACTIONS(3203), 54, + ACTIONS(3404), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204388,12 +204869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14828] = 3, + [14958] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3143), 1, anon_sym_LBRACK, - ACTIONS(3271), 54, + ACTIONS(3145), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204448,12 +204929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14891] = 3, + [15021] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(3191), 54, + ACTIONS(2989), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204508,12 +204989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [14954] = 3, + [15084] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(3275), 54, + ACTIONS(2993), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204568,12 +205049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15017] = 3, + [15147] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(2995), 1, anon_sym_LBRACK, - ACTIONS(3279), 54, + ACTIONS(2997), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204628,14 +205109,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15080] = 5, + [15210] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3267), 1, + anon_sym_LBRACK, + ACTIONS(4835), 1, + anon_sym_BANG, + ACTIONS(3269), 53, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [15275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4821), 1, - anon_sym_else, - STATE(2014), 1, - sym_else_branch, - ACTIONS(2509), 18, + ACTIONS(2685), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -204654,7 +205192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2507), 35, + ACTIONS(2683), 37, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -204674,6 +205212,127 @@ 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_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [15338] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_LBRACK, + ACTIONS(3001), 54, + anon_sym_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, + [15401] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3025), 1, + anon_sym_LBRACK, + ACTIONS(3027), 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, @@ -204690,22 +205349,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [15147] = 3, + anon_sym_COLON_EQ, + [15464] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3259), 1, anon_sym_LBRACK, - ACTIONS(3283), 54, + ACTIONS(3261), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -204717,6 +205379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -204737,6 +205403,84 @@ 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, + [15527] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1933), 1, + anon_sym_EQ, + ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4735), 1, + anon_sym_AMP_AMP, + ACTIONS(4737), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4747), 1, + anon_sym_in, + ACTIONS(4749), 1, + anon_sym_BANGin, + ACTIONS(4837), 1, + anon_sym_is, + ACTIONS(4839), 1, + anon_sym_BANGis, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4719), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4715), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4721), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4717), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1931), 15, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -204750,10 +205494,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15210] = 3, - ACTIONS(3), 1, + [15638] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2757), 18, + ACTIONS(3251), 1, + anon_sym_LBRACK, + ACTIONS(3253), 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, @@ -204763,6 +205517,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, @@ -204772,27 +205532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2755), 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, @@ -204810,66 +205554,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15273] = 27, + [15701] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, + ACTIONS(1933), 1, anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, + ACTIONS(4725), 1, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, + ACTIONS(4727), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, anon_sym_or, - ACTIONS(4735), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_is, - ACTIONS(4739), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, + ACTIONS(4777), 1, anon_sym_AMP_AMP, - ACTIONS(4815), 1, + ACTIONS(4779), 1, anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, + ACTIONS(4781), 1, anon_sym_in, - ACTIONS(4819), 1, + ACTIONS(4783), 1, anon_sym_BANGin, - STATE(2119), 1, + ACTIONS(4837), 1, + anon_sym_is, + ACTIONS(4839), 1, + anon_sym_BANGis, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(4365), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4809), 2, + ACTIONS(4773), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 4, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4811), 4, + ACTIONS(4775), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4807), 8, + ACTIONS(4771), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -204878,7 +205622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(1837), 15, + ACTIONS(1931), 15, anon_sym_SEMI, anon_sym_COMMA, anon_sym_STAR_EQ, @@ -204894,12 +205638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15384] = 3, + [15812] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(3287), 54, + ACTIONS(2651), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -204954,12 +205698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15447] = 3, + [15875] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(3291), 54, + ACTIONS(3265), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205014,16 +205758,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15510] = 3, + [15938] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(2729), 1, + anon_sym_DOT, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(3295), 54, + ACTIONS(3412), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -205074,12 +205819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15573] = 3, + [16003] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3418), 1, anon_sym_LBRACK, - ACTIONS(3351), 54, + ACTIONS(3420), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205134,12 +205879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15636] = 3, + [16066] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3450), 1, anon_sym_LBRACK, - ACTIONS(3363), 54, + ACTIONS(3452), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205194,133 +205939,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15699] = 15, - ACTIONS(3), 1, + [16129] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(3434), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(3436), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2179), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4807), 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(2177), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15786] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2059), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4807), 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(2057), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -205338,12 +205999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15873] = 3, + [16192] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3390), 1, anon_sym_LBRACK, - ACTIONS(3367), 54, + ACTIONS(3392), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205398,12 +206059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15936] = 3, + [16255] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3386), 1, anon_sym_LBRACK, - ACTIONS(3397), 54, + ACTIONS(3388), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205458,76 +206119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [15999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4823), 1, - anon_sym_else, - STATE(1996), 1, - sym_else_branch, - ACTIONS(2515), 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(2513), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16066] = 5, - ACTIONS(3), 1, + [16318] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4823), 1, - anon_sym_else, - STATE(1992), 1, - sym_else_branch, - ACTIONS(2509), 18, + ACTIONS(3350), 1, + anon_sym_LBRACK, + ACTIONS(3352), 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, @@ -205537,6 +206142,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, @@ -205546,20 +206157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2507), 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, @@ -205582,77 +206179,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16133] = 27, - ACTIONS(3), 1, + [16381] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(1835), 1, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3227), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_EQ, - ACTIONS(4701), 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, + ACTIONS(3229), 35, + anon_sym_DOT, anon_sym_as, - ACTIONS(4707), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, - anon_sym_DASH_DASH, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_is, - ACTIONS(4739), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_AMP_AMP, - ACTIONS(4815), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4809), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4811), 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(4807), 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(1833), 15, - 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, + [16446] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3222), 1, + anon_sym_LBRACK, + ACTIONS(3217), 19, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -205666,12 +206265,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16244] = 3, + ACTIONS(3219), 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, + [16511] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3346), 1, anon_sym_LBRACK, - ACTIONS(3223), 54, + ACTIONS(3348), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205726,12 +206361,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16307] = 3, + [16574] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - ACTIONS(3444), 54, + ACTIONS(3283), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205786,12 +206421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16370] = 3, + [16637] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(3438), 1, anon_sym_LBRACK, - ACTIONS(3169), 54, + ACTIONS(3440), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205846,12 +206481,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16433] = 3, + [16700] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3207), 1, anon_sym_LBRACK, - ACTIONS(3433), 54, + ACTIONS(3209), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -205906,70 +206541,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16496] = 20, - ACTIONS(3), 1, + [16763] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2011), 1, - anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(3446), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4813), 1, - anon_sym_AMP_AMP, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(3448), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4809), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 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(4811), 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(4807), 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(2009), 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, @@ -205983,12 +206601,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16593] = 3, + [16826] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(3406), 1, anon_sym_LBRACK, - ACTIONS(3429), 54, + ACTIONS(3408), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206043,12 +206661,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16656] = 3, + [16889] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3187), 1, anon_sym_LBRACK, - ACTIONS(3299), 54, + ACTIONS(3189), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206103,19 +206721,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16719] = 7, - ACTIONS(3), 1, + [16952] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4825), 1, - anon_sym_COMMA, - ACTIONS(4827), 1, - anon_sym_COLON_EQ, - STATE(3923), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2674), 2, - anon_sym_LBRACE, + ACTIONS(3015), 1, anon_sym_LBRACK, - ACTIONS(2669), 19, + ACTIONS(3017), 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, @@ -206125,7 +206744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -206135,17 +206759,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2667), 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, @@ -206167,137 +206780,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [16790] = 19, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [17015] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2011), 1, - anon_sym_EQ, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(3007), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(3009), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4809), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4811), 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(4807), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16885] = 15, - ACTIONS(3), 1, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [17078] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(3398), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(3400), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2011), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4807), 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(2009), 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, @@ -206315,60 +206901,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [16972] = 14, - ACTIONS(3), 1, + [17141] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(3342), 1, anon_sym_LBRACK, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(3344), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2011), 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(4807), 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(2009), 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, @@ -206386,20 +206961,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17057] = 3, - ACTIONS(495), 1, + [17204] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - anon_sym_LBRACK, - ACTIONS(3087), 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(2649), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -206409,12 +206974,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, @@ -206424,11 +206983,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2647), 37, + anon_sym_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, @@ -206445,13 +207021,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, - [17120] = 3, + [17267] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(3289), 1, anon_sym_LBRACK, - ACTIONS(3211), 54, + ACTIONS(3291), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206506,12 +207081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17183] = 3, + [17330] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3285), 1, anon_sym_LBRACK, - ACTIONS(3129), 54, + ACTIONS(3287), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206566,22 +207141,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17246] = 3, + [17393] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3003), 1, anon_sym_LBRACK, - ACTIONS(3215), 54, + ACTIONS(3005), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206593,6 +207170,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -206613,25 +207194,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, - [17309] = 3, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [17456] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(2867), 54, + ACTIONS(3382), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206686,12 +207261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17372] = 3, + [17519] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(3187), 54, + ACTIONS(3249), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206746,24 +207321,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17435] = 3, + [17582] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3345), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - ACTIONS(3347), 54, + ACTIONS(3229), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -206775,10 +207348,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, @@ -206799,19 +207368,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, - [17498] = 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, + [17645] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3047), 1, anon_sym_LBRACK, - ACTIONS(3161), 54, + ACTIONS(3049), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206866,10 +207441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17561] = 3, + [17708] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(3222), 1, anon_sym_LBRACK, ACTIONS(3219), 54, anon_sym_LF, @@ -206926,12 +207501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17624] = 3, + [17771] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3430), 1, anon_sym_LBRACK, - ACTIONS(3421), 54, + ACTIONS(3432), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -206986,12 +207561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17687] = 3, + [17834] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3051), 1, anon_sym_LBRACK, - ACTIONS(3417), 54, + ACTIONS(3053), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207046,20 +207621,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17750] = 3, - ACTIONS(495), 1, + [17897] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3407), 1, - anon_sym_LBRACK, - ACTIONS(3409), 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(4841), 1, + anon_sym_else, + STATE(2098), 1, + sym_else_branch, + ACTIONS(2635), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207069,12 +207638,68 @@ static const uint16_t ts_small_parse_table[] = { 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(2633), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + 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, + [17964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4841), 1, + anon_sym_else, + STATE(2097), 1, + sym_else_branch, + ACTIONS(2505), 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, @@ -207084,6 +207709,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2503), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -207105,13 +207745,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, - [17813] = 3, + [18031] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - ACTIONS(3405), 54, + ACTIONS(3374), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207166,12 +207805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17876] = 3, + [18094] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3375), 54, + ACTIONS(3057), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207226,12 +207865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [17939] = 3, + [18157] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3371), 54, + ACTIONS(3061), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207286,12 +207925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18002] = 3, + [18220] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3081), 1, anon_sym_LBRACK, - ACTIONS(3355), 54, + ACTIONS(3083), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207346,12 +207985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18065] = 3, + [18283] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3085), 1, anon_sym_LBRACK, - ACTIONS(3343), 54, + ACTIONS(3087), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207406,12 +208045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18128] = 3, + [18346] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3089), 1, anon_sym_LBRACK, - ACTIONS(3235), 54, + ACTIONS(3091), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207466,14 +208105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18191] = 4, + [18409] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(3093), 1, anon_sym_LBRACK, - ACTIONS(4829), 1, - anon_sym_BANG, - ACTIONS(3063), 53, + ACTIONS(3095), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207498,6 +208135,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, @@ -207527,12 +208165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18256] = 3, + [18472] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3101), 1, anon_sym_LBRACK, - ACTIONS(3339), 54, + ACTIONS(3103), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207587,12 +208225,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18319] = 3, + [18535] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(2905), 1, anon_sym_LBRACK, - ACTIONS(3335), 54, + ACTIONS(2907), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207647,12 +208285,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18382] = 3, + [18598] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4833), 1, + anon_sym_else, + STATE(1968), 1, + sym_else_branch, + ACTIONS(2505), 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(2503), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + 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, + [18665] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3313), 1, + ACTIONS(2913), 1, anon_sym_LBRACK, - ACTIONS(3315), 54, + ACTIONS(2915), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207707,12 +208407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18445] = 3, + [18728] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(3251), 54, + ACTIONS(2981), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207767,12 +208467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18508] = 3, + [18791] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - ACTIONS(3133), 54, + ACTIONS(2985), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207827,12 +208527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18571] = 3, + [18854] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2909), 54, + ACTIONS(3129), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -207887,10 +208587,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18634] = 3, - ACTIONS(3), 1, + [18917] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2865), 18, + 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, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -207900,6 +208610,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, @@ -207909,28 +208625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2863), 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, @@ -207947,17 +208646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [18697] = 4, + anon_sym_COLON_EQ, + [18980] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(2907), 1, + ACTIONS(3414), 1, anon_sym_LBRACK, - ACTIONS(2909), 53, + ACTIONS(3416), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -208008,12 +208707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18762] = 3, + [19043] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(3165), 54, + ACTIONS(3412), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208068,12 +208767,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18825] = 3, + [19106] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3173), 54, + ACTIONS(3141), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208128,12 +208827,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18888] = 3, + [19169] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - ACTIONS(2991), 54, + ACTIONS(2727), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208188,24 +208887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [18951] = 3, - ACTIONS(495), 1, + [19232] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(3197), 1, - anon_sym_LBRACK, - ACTIONS(3199), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(4843), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4845), 1, + anon_sym_COLON_EQ, + STATE(3917), 1, + aux_sym_identifier_list_repeat1, + ACTIONS(2732), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2727), 19, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -208213,16 +208909,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_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, @@ -208232,6 +208919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2725), 31, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -208241,19 +208939,24 @@ 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, - [19014] = 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, + [19303] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(2981), 54, + ACTIONS(3177), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208308,12 +209011,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19077] = 3, + [19366] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2911), 1, + ACTIONS(3179), 1, anon_sym_LBRACK, - ACTIONS(2913), 54, + ACTIONS(3181), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208368,53 +209071,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19140] = 3, - ACTIONS(495), 1, + [19429] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(2915), 1, - anon_sym_LBRACK, - ACTIONS(2917), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1861), 1, + anon_sym_EQ, + ACTIONS(4707), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4713), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4743), 1, + anon_sym_is, + ACTIONS(4745), 1, + anon_sym_BANGis, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4775), 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(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(1859), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208428,12 +209155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19203] = 3, + [19540] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(3364), 1, anon_sym_LBRACK, - ACTIONS(2921), 54, + ACTIONS(3366), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208488,72 +209215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19266] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3205), 1, - anon_sym_LBRACK, - ACTIONS(3207), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - 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, - [19329] = 3, + [19603] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3191), 1, anon_sym_LBRACK, - ACTIONS(3303), 54, + ACTIONS(3193), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208608,53 +209275,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19392] = 3, - ACTIONS(495), 1, + [19666] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3257), 1, - anon_sym_LBRACK, - ACTIONS(3259), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1849), 1, + anon_sym_EQ, + ACTIONS(4707), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4713), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4743), 1, + anon_sym_is, + ACTIONS(4745), 1, + anon_sym_BANGis, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4775), 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(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(1847), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -208668,12 +209359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19455] = 3, + [19777] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(3171), 1, anon_sym_LBRACK, - ACTIONS(3255), 54, + ACTIONS(3173), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208728,49 +209419,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19518] = 3, - ACTIONS(495), 1, + [19840] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(3307), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(2067), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4771), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2065), 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, @@ -208788,12 +209491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19581] = 3, + [19927] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3203), 1, anon_sym_LBRACK, - ACTIONS(2931), 54, + ACTIONS(3205), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208848,12 +209551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19644] = 3, + [19990] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3211), 1, anon_sym_LBRACK, - ACTIONS(3311), 54, + ACTIONS(3213), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208908,12 +209611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19707] = 3, + [20053] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3319), 54, + ACTIONS(3245), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -208968,12 +209671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19770] = 3, + [20116] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(3323), 54, + ACTIONS(3257), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209028,12 +209731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19833] = 3, + [20179] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3183), 1, anon_sym_LBRACK, - ACTIONS(3327), 54, + ACTIONS(3185), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209088,12 +209791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19896] = 3, + [20242] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3273), 1, anon_sym_LBRACK, - ACTIONS(3331), 54, + ACTIONS(3275), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209148,12 +209851,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [19959] = 3, + [20305] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3368), 1, anon_sym_LBRACK, - ACTIONS(3359), 54, + ACTIONS(3370), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209208,35 +209911,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20022] = 4, + [20368] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3195), 1, anon_sym_LBRACK, - ACTIONS(3091), 19, + ACTIONS(3197), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(3093), 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, @@ -209269,12 +209958,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [20087] = 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, + [20431] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(2935), 54, + ACTIONS(3237), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209329,35 +210031,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20150] = 4, + [20494] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(3326), 1, anon_sym_LBRACK, - ACTIONS(3101), 19, + ACTIONS(3328), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(3103), 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, @@ -209390,12 +210078,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [20215] = 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, + [20557] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(2939), 54, + ACTIONS(3241), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209450,16 +210151,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20278] = 5, - ACTIONS(3), 1, + [20620] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4821), 1, - anon_sym_else, - STATE(2015), 1, - sym_else_branch, - ACTIONS(2515), 18, - anon_sym_EQ, + ACTIONS(2893), 1, + anon_sym_LBRACK, + ACTIONS(2895), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209467,6 +210176,16 @@ 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_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, @@ -209476,21 +210195,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2513), 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, @@ -209500,24 +210204,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, - [20345] = 3, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [20683] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(3330), 1, anon_sym_LBRACK, - ACTIONS(3137), 54, + ACTIONS(3332), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209572,161 +210271,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20408] = 27, - ACTIONS(3), 1, + [20746] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(2029), 1, - anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(3334), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, - anon_sym_DASH_DASH, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4813), 1, - anon_sym_AMP_AMP, - ACTIONS(4815), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - ACTIONS(4831), 1, - anon_sym_is, - ACTIONS(4833), 1, - anon_sym_BANGis, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(3336), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4809), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 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(4811), 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(4807), 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(2027), 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, - [20519] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 1, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, anon_sym_QMARK, - ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4727), 1, anon_sym_LBRACK2, - ACTIONS(4729), 1, - anon_sym_AMP_AMP, - ACTIONS(4731), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4741), 1, - anon_sym_in, - ACTIONS(4743), 1, - anon_sym_BANGin, - ACTIONS(4831), 1, - anon_sym_is, - ACTIONS(4833), 1, - anon_sym_BANGis, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(4715), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4711), 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(2027), 15, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -209740,22 +210331,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20630] = 3, + [20809] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(2889), 1, anon_sym_LBRACK, - ACTIONS(3227), 54, + ACTIONS(2891), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_EQ, + anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -209767,6 +210360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -209787,25 +210384,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, - [20693] = 3, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_AT_LBRACK, + [20872] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(3277), 1, anon_sym_LBRACK, - ACTIONS(3379), 54, + ACTIONS(3279), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209860,12 +210451,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20756] = 3, + [20935] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3293), 1, anon_sym_LBRACK, - ACTIONS(3383), 54, + ACTIONS(3295), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209920,12 +210511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20819] = 3, + [20998] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3338), 1, anon_sym_LBRACK, - ACTIONS(3391), 54, + ACTIONS(3340), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -209980,12 +210571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20882] = 3, + [21061] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3297), 1, anon_sym_LBRACK, - ACTIONS(3157), 54, + ACTIONS(3299), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210040,12 +210631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [20945] = 3, + [21124] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(3301), 1, anon_sym_LBRACK, - ACTIONS(2943), 54, + ACTIONS(3303), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210100,12 +210691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21008] = 3, + [21187] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(3305), 1, anon_sym_LBRACK, - ACTIONS(2947), 54, + ACTIONS(3307), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210160,49 +210751,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21071] = 3, - ACTIONS(495), 1, + [21250] = 15, + ACTIONS(3), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(3103), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_QMARK_DOT, + ACTIONS(1865), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4771), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1863), 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, @@ -210220,12 +210823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21134] = 3, + [21337] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3316), 1, anon_sym_LBRACK, - ACTIONS(3401), 54, + ACTIONS(3318), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210280,12 +210883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21197] = 3, + [21400] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(3320), 1, anon_sym_LBRACK, - ACTIONS(2951), 54, + ACTIONS(3322), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210340,12 +210943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21260] = 3, + [21463] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3360), 1, anon_sym_LBRACK, - ACTIONS(3413), 54, + ACTIONS(3362), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210400,12 +211003,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21323] = 3, + [21526] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2953), 1, + ACTIONS(3354), 1, anon_sym_LBRACK, - ACTIONS(2955), 54, + ACTIONS(3356), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210460,12 +211063,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21386] = 3, + [21589] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(3376), 1, anon_sym_LBRACK, - ACTIONS(2977), 54, + ACTIONS(3378), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210520,109 +211123,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21449] = 3, - ACTIONS(495), 1, + [21652] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3245), 1, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(3247), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(1881), 7, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, + ACTIONS(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_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, - [21512] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2759), 1, - anon_sym_LBRACK, - ACTIONS(2761), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1941), 29, + anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, @@ -210640,12 +211194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21575] = 3, + [21737] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(3425), 54, + ACTIONS(2715), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210700,50 +211254,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21638] = 3, + [21800] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 18, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(1881), 3, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4771), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2755), 37, - anon_sym_DOT, + ACTIONS(1941), 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, @@ -210760,12 +211325,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [21701] = 3, + anon_sym_COLON_EQ, + [21887] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3229), 1, + ACTIONS(3394), 1, anon_sym_LBRACK, - ACTIONS(3231), 54, + ACTIONS(3396), 54, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -210820,10 +211386,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21764] = 3, + [21950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 18, + ACTIONS(2685), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -210842,7 +211408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2863), 37, + ACTIONS(2683), 37, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -210880,54 +211446,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21827] = 4, - ACTIONS(495), 1, + [22013] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(1881), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, anon_sym_DOT, - ACTIONS(3437), 53, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4775), 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(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1941), 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, @@ -210941,24 +211522,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [21892] = 3, + [22108] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3237), 1, + ACTIONS(3309), 1, anon_sym_LBRACK, - ACTIONS(3239), 54, + ACTIONS(3313), 1, + anon_sym_DOT, + ACTIONS(3311), 53, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -210970,10 +211550,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, @@ -210994,60 +211570,83 @@ 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, - [21955] = 3, - ACTIONS(495), 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, + [22173] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(1881), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(3141), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4775), 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(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1941), 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, @@ -211061,20 +211660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22018] = 3, - ACTIONS(495), 1, + [22270] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 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(2070), 1, + sym_type_parameters, + ACTIONS(2715), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211084,12 +211675,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, @@ -211099,6 +211684,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2713), 35, + anon_sym_SEMI, + anon_sym_DOT, + 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, @@ -211121,53 +211720,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22081] = 3, - ACTIONS(495), 1, + [22334] = 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(1761), 1, + anon_sym_EQ, + ACTIONS(4707), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4713), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4743), 1, + anon_sym_is, + ACTIONS(4745), 1, + anon_sym_BANGis, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4775), 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(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(3554), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211181,53 +211803,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22144] = 3, - ACTIONS(495), 1, + [22444] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, + ACTIONS(1933), 1, + anon_sym_EQ, + ACTIONS(4707), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4713), 1, anon_sym_LPAREN, - anon_sym_EQ, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, + anon_sym_QMARK, + ACTIONS(4731), 1, + anon_sym_BANG, + ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + ACTIONS(4847), 1, + anon_sym_is, + ACTIONS(4849), 1, + anon_sym_BANGis, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_CARET, + ACTIONS(4775), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1931), 14, + anon_sym_COMMA, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [22554] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1933), 1, + anon_sym_EQ, + ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, + anon_sym_LPAREN, + ACTIONS(4723), 1, + anon_sym_LBRACK, + ACTIONS(4725), 1, anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, anon_sym_DASH_DASH, + ACTIONS(4729), 1, anon_sym_QMARK, + ACTIONS(4731), 1, anon_sym_BANG, + ACTIONS(4733), 1, anon_sym_LBRACK2, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4777), 1, + anon_sym_AMP_AMP, + ACTIONS(4779), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4781), 1, + anon_sym_in, + ACTIONS(4783), 1, + anon_sym_BANGin, + ACTIONS(4851), 1, + anon_sym_is, + ACTIONS(4853), 1, + anon_sym_BANGis, + STATE(2123), 1, + sym_argument_list, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, + sym_type_parameters, + ACTIONS(4705), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4773), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4769), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4775), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4771), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + ACTIONS(1931), 14, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211241,20 +211969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22207] = 3, - ACTIONS(495), 1, + [22664] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 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(4855), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211264,12 +211984,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, @@ -211279,6 +211993,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(2871), 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, @@ -211300,13 +212029,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, - [22270] = 4, + [22728] = 4, ACTIONS(3), 1, sym_comment, - STATE(2121), 1, - sym_type_parameters, - ACTIONS(2761), 18, + ACTIONS(4857), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211325,8 +212053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2759), 35, - anon_sym_SEMI, + ACTIONS(2641), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211337,8 +212064,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, @@ -211360,67 +212089,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, - [22334] = 27, + [22792] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(1933), 1, anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4717), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, + ACTIONS(4725), 1, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, + ACTIONS(4727), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(4725), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, ACTIONS(4733), 1, + anon_sym_LBRACK2, + ACTIONS(4739), 1, anon_sym_or, - ACTIONS(4735), 1, + ACTIONS(4741), 1, anon_sym_POUND_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4777), 1, anon_sym_AMP_AMP, - ACTIONS(4815), 1, + ACTIONS(4779), 1, anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, + ACTIONS(4781), 1, anon_sym_in, - ACTIONS(4819), 1, + ACTIONS(4783), 1, anon_sym_BANGin, - ACTIONS(4835), 1, + ACTIONS(4859), 1, anon_sym_is, - ACTIONS(4837), 1, + ACTIONS(4861), 1, anon_sym_BANGis, - STATE(2119), 1, + STATE(2123), 1, sym_argument_list, - STATE(2130), 1, + STATE(2125), 1, sym_or_block, - STATE(4365), 1, + STATE(4315), 1, sym_type_parameters, - ACTIONS(4699), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4809), 2, + ACTIONS(4773), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4805), 4, + ACTIONS(4769), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4811), 4, + ACTIONS(4775), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4807), 8, + ACTIONS(4771), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -211429,7 +212157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2027), 14, + ACTIONS(1931), 14, anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -211444,12 +212172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22444] = 4, + [22902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, + ACTIONS(4863), 1, anon_sym_DOLLARelse, - ACTIONS(2855), 18, + ACTIONS(2643), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211468,7 +212196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2853), 35, + ACTIONS(2641), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -211504,76 +212232,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22508] = 27, - ACTIONS(3), 1, + [22966] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(1759), 1, - anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, + ACTIONS(3772), 54, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, - anon_sym_DASH_DASH, - ACTIONS(4723), 1, + anon_sym_RPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_mut, anon_sym_QMARK, - ACTIONS(4725), 1, anon_sym_BANG, - ACTIONS(4727), 1, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, - anon_sym_is, - ACTIONS(4739), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_AMP_AMP, - ACTIONS(4815), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [23026] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4867), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4865), 49, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4809), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4811), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4807), 8, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_DOT_DOT_DOT, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3556), 14, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [23088] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4871), 1, anon_sym_COMMA, + ACTIONS(4873), 1, + anon_sym_EQ, + STATE(3357), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4869), 13, + anon_sym_LBRACE, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -211586,13 +212372,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22618] = 4, + ACTIONS(3287), 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(3285), 21, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LT_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [23158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 18, + STATE(1970), 1, + sym_type_parameters, + ACTIONS(2715), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211611,7 +212436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2679), 35, + ACTIONS(2713), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211647,76 +212472,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22682] = 27, + [23222] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2029), 1, + ACTIONS(4875), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 18, anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, - anon_sym_LBRACK, - ACTIONS(4719), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, - anon_sym_DASH_DASH, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4813), 1, - anon_sym_AMP_AMP, - ACTIONS(4815), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - ACTIONS(4843), 1, - anon_sym_is, - ACTIONS(4845), 1, - anon_sym_BANGis, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4809), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4811), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4807), 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(2027), 14, + ACTIONS(2871), 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, @@ -211730,30 +212532,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [22792] = 7, + [23286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, - anon_sym_COMMA, - ACTIONS(4851), 1, + ACTIONS(3141), 18, anon_sym_EQ, - STATE(3351), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4847), 13, - anon_sym_LBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(3429), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -211771,9 +212554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3427), 21, + ACTIONS(3139), 35, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -211793,12 +212578,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [22862] = 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, + [23347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 18, + ACTIONS(3053), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211817,7 +212612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2853), 35, + ACTIONS(3051), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211828,10 +212624,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, @@ -211853,12 +212647,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [22926] = 4, + anon_sym_COLON_EQ, + [23408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 18, + ACTIONS(3177), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211877,8 +212670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2679), 35, - anon_sym_SEMI, + ACTIONS(3175), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -211889,8 +212681,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, @@ -211912,71 +212706,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, - [22990] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3726), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [23050] = 4, + [23469] = 3, ACTIONS(3), 1, sym_comment, - STATE(2104), 1, - sym_type_parameters, - ACTIONS(2761), 18, + ACTIONS(3396), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -211995,7 +212728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2759), 35, + ACTIONS(3394), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212006,10 +212740,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, @@ -212031,135 +212763,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23114] = 3, - ACTIONS(495), 1, + anon_sym_COLON_EQ, + [23530] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4859), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4857), 49, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_fn, + ACTIONS(3057), 18, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_mut, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [23176] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2029), 1, - anon_sym_EQ, - ACTIONS(4701), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3055), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - ACTIONS(4707), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4717), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4719), 1, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4733), 1, - anon_sym_or, - ACTIONS(4735), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4813), 1, anon_sym_AMP_AMP, - ACTIONS(4815), 1, anon_sym_PIPE_PIPE, - ACTIONS(4817), 1, - anon_sym_in, - ACTIONS(4819), 1, - anon_sym_BANGin, - ACTIONS(4861), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(4863), 1, anon_sym_BANGis, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4809), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4805), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4811), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4807), 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(2027), 14, - anon_sym_COMMA, + anon_sym_in, + anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -212173,10 +212822,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23286] = 3, + [23591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 18, + ACTIONS(3291), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212195,7 +212844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2975), 35, + ACTIONS(3289), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212231,10 +212880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23347] = 3, + [23652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 18, + ACTIONS(3287), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212253,7 +212902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3329), 35, + ACTIONS(3285), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212289,10 +212938,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23408] = 3, + [23713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 18, + ACTIONS(3061), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212311,7 +212960,8 @@ 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(3059), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212322,10 +212972,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, @@ -212347,16 +212995,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23469] = 5, + anon_sym_COLON_EQ, + [23774] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3181), 18, anon_sym_EQ, - ACTIONS(3089), 16, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(3179), 35, + anon_sym_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, @@ -212369,7 +213054,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - ACTIONS(3093), 17, + [23835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3201), 18, + anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -212387,9 +213076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3096), 19, + ACTIONS(3199), 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, @@ -212407,10 +213099,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [23534] = 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, + [23896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 18, + ACTIONS(3083), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212429,7 +213134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3181), 35, + ACTIONS(3081), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212440,10 +213146,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, @@ -212465,10 +213169,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [23595] = 3, + anon_sym_COLON_EQ, + [23957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 18, + ACTIONS(3193), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212487,8 +213192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3213), 35, - anon_sym_SEMI, + ACTIONS(3191), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212499,8 +213203,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, @@ -212522,11 +213228,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, - [23656] = 3, + [24018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 18, + ACTIONS(3205), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212545,8 +213250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3233), 35, - anon_sym_SEMI, + ACTIONS(3203), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212557,8 +213261,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, @@ -212580,11 +213286,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, - [23717] = 3, + [24079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 18, + ACTIONS(3087), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212603,7 +213308,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, + ACTIONS(3085), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212639,10 +213344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23778] = 3, + [24140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 18, + ACTIONS(3213), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212661,8 +213366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3442), 35, - anon_sym_SEMI, + ACTIONS(3211), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212673,8 +213377,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, @@ -212696,11 +213402,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, - [23839] = 3, + [24201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 18, + ACTIONS(3091), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212719,7 +213424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3257), 35, + ACTIONS(3089), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -212755,10 +213460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [23900] = 3, + [24262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 18, + ACTIONS(3245), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212777,8 +213482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3253), 35, - anon_sym_SEMI, + ACTIONS(3243), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212789,8 +213493,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, @@ -212812,11 +213518,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, - [23961] = 3, + [24323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 18, + ACTIONS(3257), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212835,7 +213540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3189), 35, + ACTIONS(3255), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212871,10 +213576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24022] = 3, + [24384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 18, + ACTIONS(3412), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212893,7 +213598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3057), 35, + ACTIONS(3410), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212929,10 +213634,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24083] = 3, + [24445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3235), 18, + ACTIONS(3275), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -212951,7 +213656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3233), 35, + ACTIONS(3273), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -212987,10 +213692,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24144] = 3, + [24506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 18, + ACTIONS(3095), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213009,7 +213714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3399), 35, + ACTIONS(3093), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213020,10 +213726,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, @@ -213045,10 +213749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24205] = 3, + anon_sym_COLON_EQ, + [24567] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 18, + ACTIONS(2651), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213067,7 +213772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3057), 35, + ACTIONS(2653), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213103,10 +213808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24266] = 3, + [24628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 18, + ACTIONS(3370), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213125,7 +213830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3253), 35, + ACTIONS(3368), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213161,10 +213866,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24327] = 3, + [24689] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 18, + ACTIONS(3103), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213183,7 +213888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3257), 35, + ACTIONS(3101), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213194,10 +213900,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, @@ -213219,10 +213923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24388] = 3, + anon_sym_COLON_EQ, + [24750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 18, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(3311), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213241,7 +213948,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3431), 35, + ACTIONS(3309), 34, + 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_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, + [24813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3129), 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(3127), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213277,10 +214041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24449] = 3, + [24874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 18, + ACTIONS(3416), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213299,7 +214063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2989), 35, + ACTIONS(3414), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213335,10 +214099,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24510] = 3, + [24935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 18, + ACTIONS(3141), 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(3139), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [24996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3328), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213357,7 +214179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3217), 35, + ACTIONS(3326), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213393,10 +214215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24571] = 3, + [25057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 18, + ACTIONS(3332), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213415,8 +214237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3427), 35, - anon_sym_SEMI, + ACTIONS(3330), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213427,8 +214248,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, @@ -213450,11 +214273,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, - [24632] = 3, + [25118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 18, + ACTIONS(3145), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213473,7 +214295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3209), 35, + ACTIONS(3143), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213509,10 +214331,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24693] = 3, + [25179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 18, + ACTIONS(3173), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213531,7 +214353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3297), 35, + ACTIONS(3171), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213567,10 +214389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24754] = 3, + [25240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 18, + ACTIONS(3185), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213589,7 +214411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3333), 35, + ACTIONS(3183), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213600,10 +214423,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, @@ -213625,10 +214446,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24815] = 3, + anon_sym_COLON_EQ, + [25301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 18, + ACTIONS(3336), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213647,7 +214469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3249), 35, + ACTIONS(3334), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213683,10 +214505,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24876] = 3, + [25362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 18, + ACTIONS(3197), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213705,7 +214527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3229), 35, + ACTIONS(3195), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213741,10 +214563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [24937] = 3, + [25423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 18, + ACTIONS(3340), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213763,7 +214585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2667), 35, + ACTIONS(3338), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213799,10 +214621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [24998] = 3, + [25484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 18, + ACTIONS(3356), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213821,7 +214643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3431), 35, + ACTIONS(3354), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213857,10 +214679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25059] = 3, + [25545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 18, + ACTIONS(3378), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213879,7 +214701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3427), 35, + ACTIONS(3376), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -213915,10 +214737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25120] = 3, + [25606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 18, + ACTIONS(3237), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213937,7 +214759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3423), 35, + ACTIONS(3235), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -213973,10 +214795,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25181] = 3, + [25667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 18, + ACTIONS(3241), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -213995,7 +214817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2759), 35, + ACTIONS(3239), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214031,10 +214853,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25242] = 3, + [25728] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, + anon_sym_LBRACE, + ACTIONS(2649), 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(2647), 34, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + 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, + [25791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 18, + ACTIONS(3279), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214053,7 +214934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3225), 35, + ACTIONS(3277), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214089,10 +214970,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25303] = 3, + [25852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 18, + ACTIONS(3295), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214111,7 +214992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3221), 35, + ACTIONS(3293), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214147,10 +215028,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25364] = 3, + [25913] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2727), 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(2725), 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, + [25976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 18, + ACTIONS(3299), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214169,7 +215109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3193), 35, + ACTIONS(3297), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214205,10 +215145,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25425] = 3, + [26037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 18, + ACTIONS(3303), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214227,7 +215167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3131), 35, + ACTIONS(3301), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214238,10 +215179,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, @@ -214263,10 +215202,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25486] = 3, + anon_sym_COLON_EQ, + [26098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 18, + ACTIONS(3307), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214285,7 +215225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3189), 35, + ACTIONS(3305), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214321,10 +215261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25547] = 3, + [26159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 18, + ACTIONS(3318), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214343,7 +215283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3181), 35, + ACTIONS(3316), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214379,10 +215319,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25608] = 3, + [26220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 18, + ACTIONS(3322), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214401,7 +215341,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(3320), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214437,10 +215377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25669] = 3, + [26281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 18, + ACTIONS(2903), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214459,7 +215399,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(2901), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214470,10 +215411,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, @@ -214495,10 +215434,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25730] = 3, + anon_sym_COLON_EQ, + [26342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 18, + ACTIONS(2727), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214517,7 +215457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2759), 35, + ACTIONS(2725), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214553,12 +215493,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25791] = 4, + [26403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_LBRACE, - ACTIONS(2757), 18, + ACTIONS(3362), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214577,10 +215515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2755), 34, + ACTIONS(3360), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214612,10 +215551,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25854] = 3, + [26464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 18, + ACTIONS(3366), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214634,7 +215573,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(3364), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214645,10 +215585,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, @@ -214670,16 +215608,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [25915] = 5, + anon_sym_COLON_EQ, + [26525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 2, + ACTIONS(3374), 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(3372), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4865), 2, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_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, - ACTIONS(2669), 18, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [26586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3382), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214698,15 +215689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2667), 31, + ACTIONS(3380), 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, @@ -214716,6 +215710,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, @@ -214730,10 +215725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [25980] = 3, + [26647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 18, + ACTIONS(3378), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214752,7 +215747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3313), 35, + ACTIONS(3376), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214788,10 +215783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26041] = 3, + [26708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 18, + ACTIONS(3215), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3219), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214810,10 +215808,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3337), 35, + ACTIONS(3222), 33, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [26771] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3225), 2, + anon_sym_SEMI, anon_sym_LBRACE, + ACTIONS(3229), 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(3232), 33, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -214821,10 +215877,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, @@ -214846,10 +215900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26102] = 3, + anon_sym_COLON_EQ, + [26834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 18, + ACTIONS(2715), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214868,7 +215923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2907), 35, + ACTIONS(2713), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -214904,10 +215959,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26163] = 3, + [26895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 18, + ACTIONS(3017), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214926,7 +215981,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(3015), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -214962,13 +216017,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26224] = 4, + [26956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 2, + ACTIONS(3001), 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(2999), 35, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(3103), 18, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [27017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -214987,9 +216097,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3106), 33, + ACTIONS(2995), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215021,13 +216133,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26287] = 4, + [27078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3089), 2, + ACTIONS(2993), 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(2991), 35, anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(3093), 18, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [27139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2989), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215046,9 +216213,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3096), 33, + ACTIONS(2987), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, @@ -215080,10 +216249,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26350] = 3, + [27200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 18, + ACTIONS(2732), 1, + anon_sym_LBRACK, + ACTIONS(3410), 1, + anon_sym_LBRACE, + ACTIONS(2727), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215102,18 +216275,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3333), 35, + ACTIONS(2725), 33, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -215138,10 +216309,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26411] = 3, + [27265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 18, + ACTIONS(3356), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215160,7 +216331,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, + ACTIONS(3354), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215196,29 +216367,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26472] = 5, + [27326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(3189), 18, anon_sym_EQ, - ACTIONS(3099), 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(3103), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -215236,49 +216389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3106), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [26537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3303), 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(3301), 35, + ACTIONS(3187), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215314,10 +216425,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26598] = 3, + [27387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 18, + ACTIONS(3408), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215336,8 +216447,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, - anon_sym_SEMI, + ACTIONS(3406), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215348,8 +216458,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, @@ -215371,11 +216483,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, - [26659] = 3, + [27448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 18, + ACTIONS(2649), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215394,7 +216505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3395), 35, + ACTIONS(2647), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215430,10 +216541,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26720] = 3, + [27509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 18, + ACTIONS(3396), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215452,7 +216563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3341), 35, + ACTIONS(3394), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215488,10 +216599,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26781] = 3, + [27570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 18, + ACTIONS(3013), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215510,8 +216621,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(3011), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215522,8 +216632,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, @@ -215545,11 +216657,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, - [26842] = 3, + [27631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 18, + ACTIONS(2727), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215568,7 +216679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3337), 35, + ACTIONS(2725), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215604,10 +216715,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [26903] = 3, + [27692] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 18, + ACTIONS(3448), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215626,7 +216737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3305), 35, + ACTIONS(3446), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215662,10 +216773,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [26964] = 3, + [27753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 18, + ACTIONS(3340), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215684,7 +216795,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(3338), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215720,10 +216831,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27025] = 3, + [27814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 18, + ACTIONS(3348), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215742,7 +216853,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, + ACTIONS(3346), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215778,10 +216889,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27086] = 3, + [27875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 18, + ACTIONS(2899), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215800,7 +216911,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(2897), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215836,10 +216947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27147] = 3, + [27936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 18, + ACTIONS(3249), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215858,7 +216969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3353), 35, + ACTIONS(3247), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215894,10 +217005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27208] = 3, + [27997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 18, + ACTIONS(3428), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215916,7 +217027,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(3426), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -215952,10 +217063,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27269] = 3, + [28058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 18, + ACTIONS(3099), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -215974,7 +217085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 35, + ACTIONS(3097), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -215985,10 +217097,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, @@ -216010,68 +217120,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 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(3369), 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, - [27391] = 3, + anon_sym_COLON_EQ, + [28119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 18, + ACTIONS(3237), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216090,7 +217143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3317), 35, + ACTIONS(3235), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216126,10 +217179,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27452] = 3, + [28180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 18, + ACTIONS(3374), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216148,7 +217201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3297), 35, + ACTIONS(3372), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216184,10 +217237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27513] = 3, + [28241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 18, + ACTIONS(3366), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216206,7 +217259,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(3364), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216242,10 +217295,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27574] = 3, + [28302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 18, + ACTIONS(3133), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216264,7 +217317,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3167), 35, + ACTIONS(3131), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216275,10 +217329,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, @@ -216300,10 +217352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27635] = 3, + anon_sym_COLON_EQ, + [28363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 18, + ACTIONS(3444), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216322,7 +217375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3341), 35, + ACTIONS(3442), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216358,10 +217411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27696] = 3, + [28424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 18, + ACTIONS(3336), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216380,7 +217433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3365), 35, + ACTIONS(3334), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216416,10 +217469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27757] = 3, + [28485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 18, + ACTIONS(3404), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216438,7 +217491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3361), 35, + ACTIONS(3402), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216474,10 +217527,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27818] = 3, + [28546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 18, + ACTIONS(3332), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216496,7 +217549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3349), 35, + ACTIONS(3330), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216532,10 +217585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [27879] = 3, + [28607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 18, + ACTIONS(3344), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216554,7 +217607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3193), 35, + ACTIONS(3342), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216590,10 +217643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [27940] = 3, + [28668] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 18, + ACTIONS(3432), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216612,7 +217665,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3213), 35, + ACTIONS(3430), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216623,66 +217677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_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, - [28001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2669), 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(2667), 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, @@ -216707,10 +217701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28064] = 3, + [28729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 18, + ACTIONS(3049), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216729,7 +217723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3353), 35, + ACTIONS(3047), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -216765,10 +217759,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28125] = 3, + [28790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 18, + ACTIONS(3322), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216787,7 +217781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3442), 35, + ACTIONS(3320), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216823,68 +217817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3371), 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(3369), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - 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, - [28247] = 3, + [28851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 18, + ACTIONS(2985), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -216903,65 +217839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3373), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28308] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3323), 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(3321), 35, + ACTIONS(2983), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -216997,10 +217875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28369] = 3, + [28912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 18, + ACTIONS(3249), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217019,7 +217897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3139), 35, + ACTIONS(3247), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217055,10 +217933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28430] = 3, + [28973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 18, + ACTIONS(3318), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217077,8 +217955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3293), 35, - anon_sym_SEMI, + ACTIONS(3316), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217089,8 +217966,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, @@ -217112,11 +217991,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, - [28491] = 3, + [29034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 18, + ACTIONS(3328), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217135,7 +218013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3131), 35, + ACTIONS(3326), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217171,12 +218049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [28552] = 4, + [29095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(3437), 18, + ACTIONS(3307), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217195,8 +218071,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3435), 34, - anon_sym_SEMI, + ACTIONS(3305), 35, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217206,8 +218082,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, @@ -217229,11 +218107,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, - [28615] = 3, + [29156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 18, + ACTIONS(2911), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217252,7 +218129,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(2909), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217263,10 +218141,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, @@ -217288,10 +218164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28676] = 3, + anon_sym_COLON_EQ, + [29217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 18, + ACTIONS(2981), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217310,8 +218187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3289), 35, - anon_sym_SEMI, + ACTIONS(2979), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217322,8 +218198,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, @@ -217345,11 +218223,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, - [28737] = 3, + [29278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 18, + ACTIONS(3145), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217368,8 +218245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3106), 35, - anon_sym_SEMI, + ACTIONS(3143), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217380,8 +218256,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, @@ -217403,11 +218281,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, - [28798] = 3, + [29339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 18, + ACTIONS(2915), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217426,8 +218303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3403), 35, - anon_sym_SEMI, + ACTIONS(2913), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217438,8 +218314,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, @@ -217461,11 +218339,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, - [28859] = 3, + [29400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 18, + ACTIONS(3400), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217484,8 +218361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2975), 35, - anon_sym_SEMI, + ACTIONS(3398), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217496,8 +218372,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, @@ -217519,11 +218397,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, - [28920] = 3, + [29461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 18, + ACTIONS(3303), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217542,7 +218419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3395), 35, + ACTIONS(3301), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217578,10 +218455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [28981] = 3, + [29522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 18, + ACTIONS(3299), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217600,7 +218477,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, + ACTIONS(3297), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217636,10 +218513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29042] = 3, + [29583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 18, + ACTIONS(3295), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217658,8 +218535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3407), 35, - anon_sym_SEMI, + ACTIONS(3293), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217670,8 +218546,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, @@ -217693,8 +218571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29103] = 3, + [29644] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(3287), 18, @@ -217752,10 +218629,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29164] = 3, + [29705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 18, + ACTIONS(3291), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217774,7 +218651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3415), 35, + ACTIONS(3289), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217810,10 +218687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29225] = 3, + [29766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 18, + ACTIONS(3424), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217832,8 +218709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2953), 35, - anon_sym_SEMI, + ACTIONS(3422), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -217844,8 +218720,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, @@ -217867,11 +218745,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, - [29286] = 3, + [29827] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 18, + ACTIONS(2907), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217890,7 +218767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2949), 35, + ACTIONS(2905), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217926,10 +218803,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29347] = 3, + [29888] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 18, + ACTIONS(3344), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -217948,7 +218825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2945), 35, + ACTIONS(3342), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -217984,10 +218861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29408] = 3, + [29949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 18, + ACTIONS(2907), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218006,8 +218883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3419), 35, - anon_sym_SEMI, + ACTIONS(2905), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218018,8 +218894,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, @@ -218041,11 +218919,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, - [29469] = 3, + [30010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 18, + ACTIONS(3432), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218064,8 +218941,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, - anon_sym_SEMI, + ACTIONS(3430), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218076,8 +218952,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, @@ -218099,11 +218977,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, - [29530] = 3, + [30071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 18, + ACTIONS(3241), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218122,8 +218999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3096), 35, - anon_sym_SEMI, + ACTIONS(3239), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218134,8 +219010,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, @@ -218157,69 +219035,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, - [29591] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4872), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4870), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [29652] = 3, + [30132] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 18, + ACTIONS(3209), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218238,7 +219057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3293), 35, + ACTIONS(3207), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218274,10 +219093,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29713] = 3, + [30193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 18, + ACTIONS(3440), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218296,7 +219115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3289), 35, + ACTIONS(3438), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218332,10 +219151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29774] = 3, + [30254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 18, + ACTIONS(3283), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218354,7 +219173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3285), 35, + ACTIONS(3281), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218390,10 +219209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29835] = 3, + [30315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 18, + ACTIONS(3400), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218412,7 +219231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3407), 35, + ACTIONS(3398), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218423,10 +219243,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, @@ -218448,10 +219266,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [29896] = 3, + anon_sym_COLON_EQ, + [30376] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 18, + ACTIONS(4880), 1, + anon_sym_BANG, + ACTIONS(3269), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218462,7 +219283,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, @@ -218470,7 +219290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3185), 35, + ACTIONS(3267), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218506,10 +219326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [29957] = 3, + [30439] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 18, + ACTIONS(2732), 1, + anon_sym_DOT, + ACTIONS(3412), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218528,9 +219350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3281), 35, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(3410), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -218540,8 +219360,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, @@ -218563,11 +219385,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, - [30018] = 3, + [30502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 18, + ACTIONS(3348), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218586,7 +219407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3281), 35, + ACTIONS(3346), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218622,10 +219443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30079] = 3, + [30563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 18, + ACTIONS(3352), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218644,7 +219465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3277), 35, + ACTIONS(3350), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218680,10 +219501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30140] = 3, + [30624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 18, + ACTIONS(3388), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218702,7 +219523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3273), 35, + ACTIONS(3386), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218738,10 +219559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30201] = 3, + [30685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 18, + ACTIONS(3392), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218760,7 +219581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3269), 35, + ACTIONS(3390), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218796,12 +219617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30262] = 4, + [30746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4874), 1, - anon_sym_BANG, - ACTIONS(3063), 17, + ACTIONS(3370), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218812,6 +219631,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, @@ -218819,7 +219639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3061), 35, + ACTIONS(3368), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -218855,10 +219675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30325] = 3, + [30807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 18, + ACTIONS(3420), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218877,8 +219697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3085), 35, - anon_sym_SEMI, + ACTIONS(3418), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218889,8 +219708,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, @@ -218912,11 +219733,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, - [30386] = 3, + [30868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 18, + ACTIONS(3201), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218935,7 +219755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3373), 35, + ACTIONS(3199), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -218971,10 +219791,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30447] = 3, + [30929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 18, + ACTIONS(3424), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -218993,7 +219813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2907), 35, + ACTIONS(3422), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219029,10 +219849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30508] = 3, + [30990] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 18, + ACTIONS(3436), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219051,7 +219871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3265), 35, + ACTIONS(3434), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219087,10 +219907,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30569] = 3, + [31051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 18, + ACTIONS(3452), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219109,7 +219929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3261), 35, + ACTIONS(3450), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219145,10 +219965,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [30630] = 3, + [31112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 18, + ACTIONS(2732), 1, + anon_sym_DOT, + ACTIONS(3412), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219167,9 +219989,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3411), 35, + ACTIONS(3410), 34, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -219203,10 +220024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30691] = 3, + [31175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 18, + ACTIONS(2915), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219225,7 +220046,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(2913), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219261,10 +220082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30752] = 3, + [31236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 18, + ACTIONS(2732), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(2727), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219283,20 +220107,19 @@ 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(2725), 33, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -219318,11 +220141,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, - [30813] = 3, + [31299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 18, + ACTIONS(2715), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219341,7 +220163,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(2713), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219377,10 +220199,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [30874] = 3, + [31360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 18, + ACTIONS(3129), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219399,8 +220221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3277), 35, - anon_sym_SEMI, + ACTIONS(3127), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219411,8 +220232,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, @@ -219434,11 +220257,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, - [30935] = 3, + [31421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 18, + ACTIONS(3103), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219457,8 +220279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3301), 35, - anon_sym_SEMI, + ACTIONS(3101), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219469,8 +220290,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, @@ -219492,11 +220315,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, - [30996] = 3, + [31482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 18, + ACTIONS(3253), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219515,7 +220337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3185), 35, + ACTIONS(3251), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219551,10 +220373,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31057] = 3, + [31543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 18, + ACTIONS(3265), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219573,8 +220395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3273), 35, - anon_sym_SEMI, + ACTIONS(3263), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219585,8 +220406,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, @@ -219608,11 +220431,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, - [31118] = 3, + [31604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 18, + ACTIONS(2649), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219631,8 +220453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2919), 35, - anon_sym_SEMI, + ACTIONS(2647), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219643,8 +220464,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, @@ -219666,11 +220489,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, - [31179] = 3, + [31665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 18, + ACTIONS(3027), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219689,7 +220511,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, + ACTIONS(3025), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219725,10 +220547,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31240] = 3, + [31726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 18, + ACTIONS(3229), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219747,7 +220569,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2755), 35, + ACTIONS(3232), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -219758,10 +220581,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, @@ -219783,10 +220604,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31301] = 3, + anon_sym_COLON_EQ, + [31787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 18, + ACTIONS(3189), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219805,7 +220627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3305), 35, + ACTIONS(3187), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219841,10 +220663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31362] = 3, + [31848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 18, + ACTIONS(3408), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219863,7 +220685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3309), 35, + ACTIONS(3406), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219899,10 +220721,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31423] = 3, + [31909] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 18, + ACTIONS(3448), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219921,7 +220743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3269), 35, + ACTIONS(3446), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -219957,10 +220779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31484] = 3, + [31970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 18, + ACTIONS(3209), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -219979,7 +220801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3317), 35, + ACTIONS(3207), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220015,10 +220837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31545] = 3, + [32031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 18, + ACTIONS(3440), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220037,7 +220859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3321), 35, + ACTIONS(3438), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220073,13 +220895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31606] = 4, + [32092] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2669), 18, + ACTIONS(3283), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220098,19 +220917,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2667), 33, + ACTIONS(3281), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -220132,10 +220952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31669] = 3, + anon_sym_COLON_EQ, + [32153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 18, + ACTIONS(3219), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220154,7 +220975,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3357), 35, + ACTIONS(3222), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220165,10 +220987,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, @@ -220190,14 +221010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31730] = 5, + anon_sym_COLON_EQ, + [32214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, - anon_sym_LBRACK, - ACTIONS(2907), 1, - anon_sym_LBRACE, - ACTIONS(2669), 18, + ACTIONS(3352), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220216,16 +221033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2667), 33, + ACTIONS(3350), 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, @@ -220250,12 +221069,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31795] = 4, + [32275] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, - anon_sym_DOT, - ACTIONS(2909), 18, + ACTIONS(2732), 2, + anon_sym_LBRACE, + anon_sym_LBRACK, + ACTIONS(4882), 2, + anon_sym_COMMA, + anon_sym_in, + ACTIONS(2727), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220274,17 +221097,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2907), 34, + ACTIONS(2725), 31, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -220294,7 +221115,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -220309,12 +221129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [31858] = 4, + [32340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4876), 1, + ACTIONS(4884), 1, anon_sym_BANG, - ACTIONS(3063), 17, + ACTIONS(3269), 17, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220332,7 +221152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3061), 35, + ACTIONS(3267), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220368,10 +221188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [31921] = 3, + [32403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 18, + ACTIONS(3095), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220390,8 +221210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3325), 35, - anon_sym_SEMI, + ACTIONS(3093), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220402,8 +221221,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, @@ -220425,11 +221246,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, - [31982] = 3, + [32464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 18, + ACTIONS(3091), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220448,8 +221268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3329), 35, - anon_sym_SEMI, + ACTIONS(3089), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220460,8 +221279,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, @@ -220483,13 +221304,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, - [32043] = 4, + [32525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, - anon_sym_DOT, - ACTIONS(2909), 18, + ACTIONS(2981), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220508,7 +221326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2907), 34, + ACTIONS(2979), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -220518,10 +221338,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, @@ -220543,12 +221361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32106] = 4, + anon_sym_COLON_EQ, + [32586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2653), 1, anon_sym_LBRACE, - ACTIONS(3059), 18, + ACTIONS(3201), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220567,7 +221386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3057), 34, + ACTIONS(3199), 34, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220602,68 +221421,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32169] = 3, - ACTIONS(495), 1, + [32649] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4880), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4878), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, + ACTIONS(2985), 18, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, anon_sym_LBRACK2, - anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [32230] = 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2983), 35, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + anon_sym_COLON_EQ, + [32710] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 18, + ACTIONS(2651), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220682,8 +221501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3357), 35, - anon_sym_SEMI, + ACTIONS(2653), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220694,8 +221512,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, @@ -220717,11 +221537,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, - [32291] = 3, + [32771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 18, + ACTIONS(3061), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220740,8 +221559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2915), 35, - anon_sym_SEMI, + ACTIONS(3059), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220752,8 +221570,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, @@ -220775,11 +221595,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, - [32352] = 3, + [32832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 18, + ACTIONS(3275), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220798,7 +221617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2911), 35, + ACTIONS(3273), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -220834,10 +221653,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32413] = 3, + [32893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 18, + ACTIONS(3133), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220856,7 +221675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2911), 35, + ACTIONS(3131), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220892,10 +221711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32474] = 3, + [32954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 18, + ACTIONS(3099), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220914,7 +221733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2915), 35, + ACTIONS(3097), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -220950,10 +221769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32535] = 3, + [33015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 18, + ACTIONS(3428), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -220972,7 +221791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2919), 35, + ACTIONS(3426), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221008,10 +221827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32596] = 3, + [33076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 18, + ACTIONS(2899), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221030,7 +221849,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(2897), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221066,10 +221885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32657] = 3, + [33137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 18, + ACTIONS(2903), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221088,7 +221907,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, + ACTIONS(2901), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221124,10 +221943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32718] = 3, + [33198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 18, + ACTIONS(2911), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221146,7 +221965,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(2909), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221182,10 +222001,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32779] = 3, + [33259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 18, + ACTIONS(3257), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221204,7 +222023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2869), 35, + ACTIONS(3255), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221215,10 +222035,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, @@ -221240,10 +222058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [32840] = 3, + anon_sym_COLON_EQ, + [33320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 18, + ACTIONS(3388), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221262,7 +222081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3249), 35, + ACTIONS(3386), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221298,10 +222117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32901] = 3, + [33381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 18, + ACTIONS(3245), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221320,7 +222139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2979), 35, + ACTIONS(3243), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -221356,10 +222175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [32962] = 3, + [33442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 18, + ACTIONS(3213), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221378,7 +222197,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3201), 35, + ACTIONS(3211), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221389,10 +222209,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, @@ -221414,10 +222232,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33023] = 3, + anon_sym_COLON_EQ, + [33503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 18, + ACTIONS(3205), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221436,7 +222255,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3135), 35, + ACTIONS(3203), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221447,10 +222267,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, @@ -221472,10 +222290,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33084] = 3, + anon_sym_COLON_EQ, + [33564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 18, + ACTIONS(2989), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221494,7 +222313,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(2987), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221530,10 +222349,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33145] = 3, + [33625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 18, + ACTIONS(2993), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221552,7 +222371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2945), 35, + ACTIONS(2991), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221588,10 +222407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33206] = 3, + [33686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 18, + ACTIONS(2997), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221610,7 +222429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2949), 35, + ACTIONS(2995), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221646,10 +222465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33267] = 3, + [33747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 18, + ACTIONS(3193), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221668,7 +222487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3377), 35, + ACTIONS(3191), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221679,10 +222499,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, @@ -221704,10 +222522,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33328] = 3, + anon_sym_COLON_EQ, + [33808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 18, + ACTIONS(3027), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221726,7 +222545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3381), 35, + ACTIONS(3025), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221737,10 +222557,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, @@ -221762,10 +222580,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33389] = 3, + anon_sym_COLON_EQ, + [33869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 18, + ACTIONS(3001), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221784,7 +222603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2953), 35, + ACTIONS(2999), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221820,10 +222639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33450] = 3, + [33930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 18, + ACTIONS(3392), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221842,7 +222661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3241), 35, + ACTIONS(3390), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221853,10 +222673,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, @@ -221878,12 +222696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33511] = 4, + anon_sym_COLON_EQ, + [33991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(3437), 18, + ACTIONS(3436), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221902,7 +222719,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3435), 34, + ACTIONS(3434), 35, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -221912,10 +222731,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, @@ -221937,10 +222754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33574] = 3, + anon_sym_COLON_EQ, + [34052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 18, + ACTIONS(3057), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -221959,8 +222777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3201), 35, - anon_sym_SEMI, + ACTIONS(3055), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -221971,8 +222788,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, @@ -221994,11 +222813,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, - [33635] = 3, + [34113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 18, + ACTIONS(3452), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222017,7 +222835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3209), 35, + ACTIONS(3450), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222028,10 +222847,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, @@ -222053,10 +222870,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33696] = 3, + anon_sym_COLON_EQ, + [34174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 18, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(3311), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222075,8 +222895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3385), 35, - anon_sym_DOT, + ACTIONS(3309), 34, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -222111,10 +222930,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33757] = 3, + [34237] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4888), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4886), 48, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_struct, + anon_sym_mut, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_go, + anon_sym_spawn, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_float_literal, + sym_rune_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_map_LBRACK, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + [34298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 18, + ACTIONS(3049), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222133,7 +223010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3325), 35, + ACTIONS(3047), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222169,10 +223046,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33818] = 3, + [34359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 18, + ACTIONS(3053), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222191,7 +223068,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(3051), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222227,10 +223104,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33879] = 3, + [34420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 18, + ACTIONS(3013), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222249,7 +223126,8 @@ 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(3011), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222260,10 +223138,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, @@ -222285,10 +223161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [33940] = 3, + anon_sym_COLON_EQ, + [34481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 18, + ACTIONS(3017), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222307,8 +223184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3265), 35, - anon_sym_SEMI, + ACTIONS(3015), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222319,8 +223195,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, @@ -222342,11 +223220,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, - [34001] = 3, + [34542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 18, + ACTIONS(3420), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222365,7 +223242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3411), 35, + ACTIONS(3418), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222376,10 +223254,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, @@ -222401,10 +223277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34062] = 3, + anon_sym_COLON_EQ, + [34603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 18, + ACTIONS(3083), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222423,8 +223300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3135), 35, - anon_sym_SEMI, + ACTIONS(3081), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222435,8 +223311,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, @@ -222458,11 +223336,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, - [34123] = 3, + [34664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 18, + ACTIONS(3181), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222481,7 +223358,8 @@ 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(3179), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222492,10 +223370,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, @@ -222517,10 +223393,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34184] = 3, + anon_sym_COLON_EQ, + [34725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 18, + ACTIONS(3087), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222539,8 +223416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3217), 35, - anon_sym_SEMI, + ACTIONS(3085), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222551,8 +223427,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, @@ -222574,11 +223452,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, - [34245] = 3, + [34786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 18, + ACTIONS(3416), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222597,7 +223474,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(3414), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222608,10 +223486,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, @@ -222633,10 +223509,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34306] = 3, + anon_sym_COLON_EQ, + [34847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 18, + ACTIONS(3412), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222655,7 +223532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3377), 35, + ACTIONS(3410), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222691,10 +223568,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34367] = 3, + [34908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 18, + ACTIONS(3253), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222713,7 +223590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3381), 35, + ACTIONS(3251), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222749,10 +223626,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34428] = 3, + [34969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 18, + ACTIONS(3382), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222771,8 +223648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3385), 35, - anon_sym_SEMI, + ACTIONS(3380), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222783,8 +223659,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, @@ -222806,11 +223684,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, - [34489] = 3, + [35030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 18, + ACTIONS(3177), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222829,7 +223706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3389), 35, + ACTIONS(3175), 35, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -222865,10 +223742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [34550] = 3, + [35091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 18, + ACTIONS(3362), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222887,8 +223764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2869), 35, - anon_sym_SEMI, + ACTIONS(3360), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222899,8 +223775,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, @@ -222922,11 +223800,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, - [34611] = 3, + [35152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 18, + ACTIONS(3404), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -222945,8 +223822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3261), 35, - anon_sym_SEMI, + ACTIONS(3402), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -222957,8 +223833,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, @@ -222980,12 +223858,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, - [34672] = 3, + [35213] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 18, + ACTIONS(3217), 1, anon_sym_EQ, + ACTIONS(3215), 16, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_LT_DASH, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + ACTIONS(3219), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223003,21 +223898,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3221), 35, + ACTIONS(3222), 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, @@ -223027,22 +223918,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, - [34733] = 3, + [35278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 18, + ACTIONS(3173), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223061,7 +223940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3225), 35, + ACTIONS(3171), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223097,10 +223976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34794] = 3, + [35339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 18, + ACTIONS(3185), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223119,7 +223998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3349), 35, + ACTIONS(3183), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223155,11 +224034,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34855] = 3, + [35400] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 18, + ACTIONS(3227), 1, anon_sym_EQ, + ACTIONS(3225), 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(3229), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223177,7 +224074,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3229), 35, + ACTIONS(3232), 19, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [35465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3197), 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(3195), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223213,12 +224152,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [34916] = 5, + [35526] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3101), 1, + ACTIONS(3217), 1, anon_sym_EQ, - ACTIONS(3099), 16, + ACTIONS(3215), 16, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -223235,7 +224174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(3103), 17, + ACTIONS(3219), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223253,7 +224192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3106), 19, + ACTIONS(3222), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -223273,12 +224212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [34981] = 5, + [35591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, + ACTIONS(3227), 1, anon_sym_EQ, - ACTIONS(3089), 16, + ACTIONS(3225), 16, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -223295,7 +224234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - ACTIONS(3093), 17, + ACTIONS(3229), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223313,7 +224252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3096), 19, + ACTIONS(3232), 19, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -223333,10 +224272,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [35046] = 3, + [35656] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 18, + ACTIONS(3444), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223355,8 +224294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2667), 35, - anon_sym_SEMI, + ACTIONS(3442), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223367,8 +224305,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, @@ -223390,11 +224330,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, - [35107] = 3, + [35717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 18, + ACTIONS(3279), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223413,7 +224352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3389), 35, + ACTIONS(3277), 35, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223449,10 +224388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35168] = 3, + [35778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 18, + ACTIONS(3265), 18, anon_sym_EQ, anon_sym_PIPE, anon_sym_PLUS, @@ -223471,7 +224410,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3415), 35, + ACTIONS(3263), 35, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -223482,10 +224422,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, @@ -223507,243 +224445,324 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35229] = 3, + anon_sym_COLON_EQ, + [35839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 18, - anon_sym_EQ, + ACTIONS(3005), 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_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(3003), 28, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_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, - ACTIONS(3313), 35, + 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, + [35899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3261), 24, anon_sym_DOT, anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_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(3259), 28, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35290] = 3, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [35959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 18, - anon_sym_EQ, + ACTIONS(2891), 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(2755), 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(2889), 28, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [35351] = 3, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 18, - anon_sym_EQ, + ACTIONS(2895), 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(3403), 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(2893), 28, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35412] = 3, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 18, - anon_sym_EQ, + ACTIONS(3009), 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(3419), 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(3007), 28, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_LBRACK, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35473] = 3, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + anon_sym_map_LBRACK, + anon_sym_DOT_DOT, + [36139] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(3363), 18, - anon_sym_EQ, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1881), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223752,39 +224771,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3361), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [36214] = 11, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1853), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_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_LBRACK, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [36289] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4904), 1, + anon_sym_EQ, + ACTIONS(4902), 14, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, @@ -223797,11 +224879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [35534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3425), 18, - anon_sym_EQ, + ACTIONS(3287), 17, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223819,21 +224897,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3423), 35, + ACTIONS(3285), 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, @@ -223843,23 +224917,38 @@ 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, - [35595] = 3, - ACTIONS(3), 1, + [36352] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(3367), 18, - anon_sym_EQ, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1869), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -223868,30 +224957,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3365), 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + sym_identifier, + anon_sym_AT_LBRACK, + [36427] = 5, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2633), 1, + anon_sym_LBRACK, + ACTIONS(4906), 1, + anon_sym_else, + STATE(2208), 1, + sym_else_branch, + ACTIONS(2635), 47, + anon_sym_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___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_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -223901,54 +225036,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35656] = 3, + sym_identifier, + anon_sym_AT_LBRACK, + [36489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 18, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4908), 1, + anon_sym_COLON, + ACTIONS(4910), 1, + anon_sym_static, + ACTIONS(4912), 1, + anon_sym_volatile, + ACTIONS(4601), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3399), 35, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4599), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [36553] = 5, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2503), 1, + anon_sym_LBRACK, + ACTIONS(4906), 1, + anon_sym_else, + STATE(2207), 1, + sym_else_branch, + ACTIONS(2505), 47, + 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___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_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, @@ -223958,113 +225151,402 @@ 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, - [35717] = 3, + sym_identifier, + anon_sym_AT_LBRACK, + [36615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 18, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4916), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3085), 35, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4914), 26, anon_sym_DOT, - anon_sym_as, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [36672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2683), 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(2685), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [36729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4910), 1, + anon_sym_static, + ACTIONS(4912), 1, + anon_sym_volatile, + ACTIONS(4601), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4599), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [36790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1486), 24, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4918), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [36847] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2647), 1, + anon_sym_LBRACK, + ACTIONS(2649), 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_LBRACK, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LT_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_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, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35778] = 3, - ACTIONS(3), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [36904] = 27, + ACTIONS(495), 1, sym_comment, - ACTIONS(2991), 18, - anon_sym_EQ, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4900), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4922), 1, + anon_sym_as, + ACTIONS(4930), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4932), 1, + anon_sym_DASH_DASH, + ACTIONS(4934), 1, + anon_sym_LBRACK2, + ACTIONS(4936), 1, + anon_sym_AMP_AMP, + ACTIONS(4938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4940), 1, + anon_sym_or, + ACTIONS(4942), 1, + anon_sym_is, + ACTIONS(4944), 1, + anon_sym_BANGis, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_BANGin, + ACTIONS(4950), 1, + anon_sym_AT_LBRACK, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(3472), 1, + sym_attribute, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4928), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4920), 8, + 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(4926), 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(2989), 35, + [37009] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_LBRACK, + ACTIONS(4952), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_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_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224074,383 +225556,729 @@ 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, - [35839] = 3, + sym_identifier, + anon_sym_AT_LBRACK, + [37068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 18, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(4956), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3241), 35, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4954), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [37125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4960), 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(4958), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [37182] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2647), 1, + anon_sym_LBRACK, + ACTIONS(2649), 48, + 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___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_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, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35900] = 3, - ACTIONS(3), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [37239] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3247), 24, + ACTIONS(2683), 1, + anon_sym_LBRACK, + ACTIONS(2685), 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_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_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_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3245), 28, + anon_sym_AT_LBRACK, + [37296] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_LBRACK, + STATE(2220), 1, + sym_type_parameters, + ACTIONS(2715), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [35960] = 3, + sym_identifier, + anon_sym_AT_LBRACK, + [37355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, + ACTIONS(2647), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, + anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(2649), 26, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_else, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, sym_identifier, anon_sym_shared, anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3345), 28, + [37412] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2683), 1, + anon_sym_LBRACK, + ACTIONS(2685), 48, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_DOLLARelse, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36020] = 3, + sym_identifier, + anon_sym_AT_LBRACK, + [37469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, + ACTIONS(4910), 1, + anon_sym_static, + ACTIONS(4912), 1, + anon_sym_volatile, + ACTIONS(4962), 1, + sym_identifier, + ACTIONS(4601), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, + anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, + anon_sym_json_DOTdecode, anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4599), 24, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, anon_sym_shared, anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3197), 28, + [37532] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2871), 1, + anon_sym_LBRACK, + ACTIONS(4964), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36080] = 3, - ACTIONS(3), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [37591] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(3207), 24, + ACTIONS(2732), 1, + anon_sym_LBRACK, + ACTIONS(3412), 1, + anon_sym_LBRACE, + ACTIONS(2727), 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_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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3205), 28, + anon_sym_AT_LBRACK, + [37650] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2995), 1, + anon_sym_LBRACK, + ACTIONS(2997), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36140] = 3, - ACTIONS(3), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [37706] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3239), 24, + ACTIONS(3097), 1, + anon_sym_LBRACK, + ACTIONS(3099), 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_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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, + anon_sym_BANGis, anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3237), 28, + anon_sym_AT_LBRACK, + [37762] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2713), 1, + anon_sym_LBRACK, + ACTIONS(2715), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym___global, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, + anon_sym_is, anon_sym_BANGis, + anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36200] = 5, - ACTIONS(3), 1, + sym_identifier, + anon_sym_AT_LBRACK, + [37818] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4884), 1, - anon_sym_EQ, - ACTIONS(4882), 14, - anon_sym_LBRACE, + ACTIONS(3301), 1, + anon_sym_LBRACK, + ACTIONS(3303), 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_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_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(3429), 17, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -224459,6 +226287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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, @@ -224468,17 +226305,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(3427), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -224488,37 +226314,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [36263] = 11, + sym_identifier, + anon_sym_AT_LBRACK, + [37874] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(3297), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2041), 40, + ACTIONS(3299), 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, @@ -224537,6 +226349,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -224546,43 +226361,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36338] = 11, + [37930] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(3293), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2011), 40, + ACTIONS(3295), 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, @@ -224601,6 +226402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -224610,43 +226414,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36413] = 11, + [37986] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(3277), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1879), 40, + ACTIONS(3279), 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, @@ -224665,6 +226455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -224674,22 +226467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36488] = 5, + [38042] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2507), 1, + ACTIONS(3376), 1, anon_sym_LBRACK, - ACTIONS(4898), 1, - anon_sym_else, - STATE(2268), 1, - sym_else_branch, - ACTIONS(2509), 47, + ACTIONS(3378), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224737,74 +226528,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36550] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4900), 1, - anon_sym_COLON, - ACTIONS(4902), 1, - anon_sym_static, - ACTIONS(4904), 1, - anon_sym_volatile, - ACTIONS(4599), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4597), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [36614] = 5, + [38098] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2513), 1, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(4898), 1, - anon_sym_else, - STATE(2269), 1, - sym_else_branch, - ACTIONS(2515), 47, + ACTIONS(3241), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -224852,233 +226581,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36676] = 3, - ACTIONS(3), 1, + [38154] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4908), 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(4906), 26, + ACTIONS(3235), 1, + anon_sym_LBRACK, + ACTIONS(3237), 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_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [36733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1486), 24, - 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_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4910), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_pub, anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [36790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + 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(2757), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [36847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - anon_sym_static, - ACTIONS(4904), 1, - anon_sym_volatile, - ACTIONS(4912), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - ACTIONS(4599), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4597), 24, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [36910] = 4, + anon_sym_AT_LBRACK, + [38210] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(3195), 1, anon_sym_LBRACK, - STATE(2209), 1, - sym_type_parameters, - ACTIONS(2761), 47, + ACTIONS(3197), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225126,68 +226687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [36969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4902), 1, - anon_sym_static, - ACTIONS(4904), 1, - anon_sym_volatile, - ACTIONS(4599), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4597), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37030] = 3, + [38266] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(3342), 1, anon_sym_LBRACK, - ACTIONS(2865), 48, + ACTIONS(3344), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225229,181 +226734,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37087] = 3, - ACTIONS(3), 1, + [38322] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4916), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4914), 26, + ACTIONS(3354), 1, + anon_sym_LBRACK, + ACTIONS(3356), 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_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37144] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2863), 23, - anon_sym_LBRACE, + 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_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(2865), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, + anon_sym_SLASH, + anon_sym_PERCENT, + 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, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4920), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, + 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(4918), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37258] = 3, + anon_sym_AT_LBRACK, + [38378] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3183), 1, anon_sym_LBRACK, - ACTIONS(2757), 48, + ACTIONS(3185), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225445,21 +226840,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_else, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37315] = 4, + [38434] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(3171), 1, anon_sym_LBRACK, - ACTIONS(4922), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 47, + ACTIONS(3173), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225507,24 +226899,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37374] = 4, + [38490] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2853), 1, + ACTIONS(3222), 1, anon_sym_LBRACK, - ACTIONS(4924), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 47, + ACTIONS(3217), 12, 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_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + ACTIONS(3219), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -225537,9 +226933,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -225560,26 +226953,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37433] = 4, + [38548] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - ACTIONS(2909), 1, - anon_sym_LBRACE, - ACTIONS(2669), 47, + ACTIONS(3227), 12, 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_DOT_DOT_DOT, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + anon_sym_AT_LBRACK, + ACTIONS(3229), 35, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -225592,9 +226987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_QMARK, @@ -225615,14 +227007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37492] = 3, + [38606] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2863), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(2865), 48, + ACTIONS(3141), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225664,19 +227054,18 @@ 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, - [37549] = 3, + [38662] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(3127), 1, anon_sym_LBRACK, - ACTIONS(2757), 48, + ACTIONS(3129), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225718,97 +227107,71 @@ 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, - [37606] = 27, - ACTIONS(495), 1, + [38718] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(3007), 24, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4890), 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(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4896), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4928), 1, - anon_sym_as, - ACTIONS(4936), 1, anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, anon_sym_DASH_DASH, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4942), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4944), 1, anon_sym_PIPE_PIPE, - ACTIONS(4946), 1, - anon_sym_or, - ACTIONS(4948), 1, - anon_sym_is, - ACTIONS(4950), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_BANGis, - ACTIONS(4952), 1, - anon_sym_in, - ACTIONS(4954), 1, anon_sym_BANGin, - ACTIONS(4956), 1, - anon_sym_AT_LBRACK, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(3463), 1, - sym_attribute, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, + anon_sym_map_LBRACK, + ACTIONS(3009), 24, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4930), 4, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4934), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4926), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - ACTIONS(4932), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [37711] = 3, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [38774] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(3338), 1, anon_sym_LBRACK, - ACTIONS(3275), 47, + ACTIONS(3340), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225856,12 +227219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37767] = 3, + [38830] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3334), 1, anon_sym_LBRACK, - ACTIONS(3339), 47, + ACTIONS(3336), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225909,12 +227272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37823] = 3, + [38886] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3330), 1, anon_sym_LBRACK, - ACTIONS(3363), 47, + ACTIONS(3332), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -225962,145 +227325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [37879] = 16, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4952), 1, - anon_sym_in, - ACTIONS(4954), 1, - anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4930), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4934), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4932), 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(2011), 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, - [37961] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4942), 1, - anon_sym_AMP_AMP, - ACTIONS(4952), 1, - anon_sym_in, - ACTIONS(4954), 1, - anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4930), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4934), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4932), 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(2011), 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, - [38045] = 3, + [38942] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3326), 1, anon_sym_LBRACK, - ACTIONS(3367), 47, + ACTIONS(3328), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226148,75 +227378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38101] = 13, + [38998] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4930), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4932), 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(2059), 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, - [38177] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3289), 1, + ACTIONS(3101), 1, anon_sym_LBRACK, - ACTIONS(3291), 47, + ACTIONS(3103), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226264,12 +227431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38233] = 3, + [39054] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3093), 1, anon_sym_LBRACK, - ACTIONS(3295), 47, + ACTIONS(3095), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226317,12 +227484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38289] = 3, + [39110] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3089), 1, anon_sym_LBRACK, - ACTIONS(3391), 47, + ACTIONS(3091), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226370,12 +227537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38345] = 3, + [39166] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(3085), 1, anon_sym_LBRACK, - ACTIONS(3387), 47, + ACTIONS(3087), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226423,12 +227590,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38401] = 3, + [39222] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3259), 24, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_BANGis, + anon_sym_BANGin, + anon_sym_map_LBRACK, + ACTIONS(3261), 24, + anon_sym_DOT, + anon_sym_as, + anon_sym_PIPE, + anon_sym_fn, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_or, + anon_sym_is, + anon_sym_in, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [39278] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3398), 1, anon_sym_LBRACK, - ACTIONS(3383), 47, + ACTIONS(3400), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226476,17 +227696,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38457] = 3, + [39334] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(3309), 1, anon_sym_LBRACK, - ACTIONS(3379), 47, + ACTIONS(3313), 1, + anon_sym_DOT, + ACTIONS(3311), 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, @@ -226529,12 +227750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38513] = 3, + [39392] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3289), 1, anon_sym_LBRACK, - ACTIONS(3287), 47, + ACTIONS(3291), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226582,12 +227803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38569] = 3, + [39448] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3081), 1, anon_sym_LBRACK, - ACTIONS(3351), 47, + ACTIONS(3083), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226635,12 +227856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38625] = 3, + [39504] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3425), 47, + ACTIONS(3061), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226688,12 +227909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38681] = 3, + [39560] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(3285), 1, anon_sym_LBRACK, - ACTIONS(2761), 47, + ACTIONS(3287), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226741,12 +227962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38737] = 3, + [39616] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3397), 47, + ACTIONS(3057), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226794,18 +228015,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38793] = 4, + [39672] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2671), 1, - anon_sym_DOT, - ACTIONS(2907), 1, + ACTIONS(3143), 1, anon_sym_LBRACK, - ACTIONS(2909), 46, + ACTIONS(3145), 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, @@ -226848,12 +228068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38851] = 3, + [39728] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3187), 1, anon_sym_LBRACK, - ACTIONS(3444), 47, + ACTIONS(3189), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226901,12 +228121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38907] = 3, + [39784] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3368), 1, anon_sym_LBRACK, - ACTIONS(3283), 47, + ACTIONS(3370), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -226954,12 +228174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [38963] = 3, + [39840] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3277), 1, + ACTIONS(3051), 1, anon_sym_LBRACK, - ACTIONS(3279), 47, + ACTIONS(3053), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227007,89 +228227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39019] = 27, + [39896] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DOT, - ACTIONS(2907), 1, + ACTIONS(2905), 1, anon_sym_LBRACK, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3450), 1, - anon_sym_fn, - ACTIONS(3452), 1, - anon_sym_STAR, - ACTIONS(3454), 1, - anon_sym_struct, - ACTIONS(3456), 1, - anon_sym_QMARK, - ACTIONS(3458), 1, - anon_sym_BANG, - ACTIONS(3460), 1, - anon_sym_LBRACK2, - ACTIONS(3462), 1, - anon_sym_AMP, - ACTIONS(3464), 1, - anon_sym_shared, - ACTIONS(3466), 1, - anon_sym_map_LBRACK, - ACTIONS(3468), 1, - anon_sym_chan, - ACTIONS(3470), 1, - anon_sym_thread, - ACTIONS(3472), 1, - anon_sym_atomic, - ACTIONS(4958), 1, - anon_sym_LPAREN, - ACTIONS(4960), 1, - anon_sym_LT2, - STATE(3414), 1, - sym_plain_type, - STATE(3427), 1, - sym_signature, - STATE(3794), 1, - sym_generic_parameters, - STATE(4418), 1, - sym_reference_expression, - STATE(2475), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3386), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3419), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2909), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3420), 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, - [39123] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3411), 1, - anon_sym_LBRACK, - ACTIONS(3413), 47, + ACTIONS(2907), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227137,155 +228280,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39179] = 24, + [39952] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(3047), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4928), 1, - anon_sym_as, - ACTIONS(4936), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, - anon_sym_DASH_DASH, - ACTIONS(4942), 1, - anon_sym_AMP_AMP, - ACTIONS(4944), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4946), 1, - anon_sym_or, - ACTIONS(4948), 1, - anon_sym_is, - ACTIONS(4950), 1, - anon_sym_BANGis, - ACTIONS(4952), 1, - anon_sym_in, - ACTIONS(4954), 1, - anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4930), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4934), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4932), 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(1839), 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, - [39277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1900), 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(4962), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [39333] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3096), 1, - anon_sym_LBRACK, - ACTIONS(3091), 12, + ACTIONS(3049), 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(3093), 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, @@ -227298,6 +228308,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, @@ -227318,66 +228331,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [39391] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3106), 1, - anon_sym_LBRACK, - ACTIONS(3101), 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(3103), 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, - [39449] = 3, + [40008] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(3401), 47, + ACTIONS(3249), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227425,12 +228386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39505] = 3, + [40064] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(3406), 1, anon_sym_LBRACK, - ACTIONS(3137), 47, + ACTIONS(3408), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227478,17 +228439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39561] = 3, + [40120] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(2729), 1, + anon_sym_DOT, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(3271), 47, + ACTIONS(3412), 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, @@ -227531,12 +228493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39617] = 3, + [40178] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3273), 1, anon_sym_LBRACK, - ACTIONS(3267), 47, + ACTIONS(3275), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227584,116 +228546,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 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(3199), 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, - [39729] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3205), 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(3207), 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, - [39785] = 3, + [40234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3237), 24, + ACTIONS(2893), 24, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -227718,7 +228574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_BANGin, anon_sym_map_LBRACK, - ACTIONS(3239), 24, + ACTIONS(2895), 24, anon_sym_DOT, anon_sym_as, anon_sym_PIPE, @@ -227743,65 +228599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_DOT_DOT, - [39841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3245), 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(3247), 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, - [39897] = 3, + [40290] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - ACTIONS(3359), 47, + ACTIONS(3017), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -227849,18 +228652,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [39953] = 4, + [40346] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, - anon_sym_DOT, - ACTIONS(3437), 46, + ACTIONS(3257), 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, @@ -227903,65 +228705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3345), 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(3347), 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, - [40067] = 3, + [40402] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3331), 47, + ACTIONS(3245), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228009,12 +228758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40123] = 3, + [40458] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(3211), 1, anon_sym_LBRACK, - ACTIONS(3327), 47, + ACTIONS(3213), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228062,12 +228811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40179] = 3, + [40514] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3203), 1, anon_sym_LBRACK, - ACTIONS(3323), 47, + ACTIONS(3205), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228115,12 +228864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40235] = 3, + [40570] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3191), 1, anon_sym_LBRACK, - ACTIONS(3319), 47, + ACTIONS(3193), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228168,12 +228917,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40291] = 3, + [40626] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(2999), 1, anon_sym_LBRACK, - ACTIONS(3311), 47, + ACTIONS(3001), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228221,12 +228970,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40347] = 3, + [40682] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3179), 1, anon_sym_LBRACK, - ACTIONS(3433), 47, + ACTIONS(3181), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228274,12 +229023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40403] = 3, + [40738] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3446), 1, anon_sym_LBRACK, - ACTIONS(3307), 47, + ACTIONS(3448), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228327,12 +229076,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40459] = 3, + [40794] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(3429), 47, + ACTIONS(3177), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228380,12 +229129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40515] = 3, + [40850] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3430), 1, anon_sym_LBRACK, - ACTIONS(3303), 47, + ACTIONS(3432), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228433,128 +229182,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40571] = 13, + [40906] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(2991), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, + ACTIONS(2993), 47, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4930), 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(4932), 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(2179), 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, - [40647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2540), 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(4964), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [40703] = 3, + [40962] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3380), 1, anon_sym_LBRACK, - ACTIONS(3263), 47, + ACTIONS(3382), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228602,65 +229288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2070), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4966), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [40815] = 3, + [41018] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(3195), 47, + ACTIONS(2989), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228708,12 +229341,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40871] = 3, + [41074] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(3243), 47, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4922), 1, + anon_sym_as, + ACTIONS(4930), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4932), 1, + anon_sym_DASH_DASH, + ACTIONS(4936), 1, + anon_sym_AMP_AMP, + ACTIONS(4938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4940), 1, + anon_sym_or, + ACTIONS(4942), 1, + anon_sym_is, + ACTIONS(4944), 1, + anon_sym_BANGis, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_BANGin, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4928), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1861), 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, + [41172] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3305), 1, + anon_sym_LBRACK, + ACTIONS(3307), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228761,12 +229468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40927] = 3, + [41228] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(2909), 1, anon_sym_LBRACK, - ACTIONS(3299), 47, + ACTIONS(2911), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228814,12 +229521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [40983] = 3, + [41284] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(2901), 1, anon_sym_LBRACK, - ACTIONS(3203), 47, + ACTIONS(2903), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228867,12 +229574,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41039] = 3, + [41340] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4968), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4966), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [41396] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - ACTIONS(2867), 47, + ACTIONS(2899), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228920,12 +229680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41095] = 3, + [41452] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3426), 1, anon_sym_LBRACK, - ACTIONS(3187), 47, + ACTIONS(3428), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -228973,12 +229733,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41151] = 3, + [41508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2538), 23, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4970), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [41564] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3316), 1, anon_sym_LBRACK, - ACTIONS(3161), 47, + ACTIONS(3318), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229026,75 +229839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41207] = 13, + [41620] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(3320), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4930), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4932), 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(2011), 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, - [41283] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3085), 1, - anon_sym_LBRACK, - ACTIONS(3087), 47, + ACTIONS(3322), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229142,128 +229892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41339] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4932), 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(2011), 29, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41413] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4972), 1, - anon_sym_volatile, - ACTIONS(4970), 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(4968), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [41471] = 3, + [41676] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3419), 1, + ACTIONS(3207), 1, anon_sym_LBRACK, - ACTIONS(3421), 47, + ACTIONS(3209), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229311,12 +229945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41527] = 3, + [41732] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3394), 1, anon_sym_LBRACK, - ACTIONS(3417), 47, + ACTIONS(3396), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229364,12 +229998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41583] = 3, + [41788] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(3409), 47, + ACTIONS(3133), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229417,12 +230051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41639] = 3, + [41844] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - ACTIONS(3405), 47, + ACTIONS(2727), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229470,12 +230104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41695] = 3, + [41900] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3375), 47, + ACTIONS(3444), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229523,12 +230157,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41751] = 3, + [41956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1952), 23, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4972), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [42012] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(3402), 1, anon_sym_LBRACK, - ACTIONS(3371), 47, + ACTIONS(3404), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229576,12 +230263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41807] = 3, + [42068] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3438), 1, anon_sym_LBRACK, - ACTIONS(3355), 47, + ACTIONS(3440), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229629,12 +230316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41863] = 3, + [42124] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - ACTIONS(3343), 47, + ACTIONS(3283), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229682,86 +230369,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [41919] = 24, - ACTIONS(495), 1, + [42180] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(3003), 24, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4890), 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(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4928), 1, - anon_sym_as, - ACTIONS(4936), 1, anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, anon_sym_DASH_DASH, - ACTIONS(4942), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4944), 1, anon_sym_PIPE_PIPE, - ACTIONS(4946), 1, - anon_sym_or, - ACTIONS(4948), 1, - anon_sym_is, - ACTIONS(4950), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_BANGis, - ACTIONS(4952), 1, - anon_sym_in, - ACTIONS(4954), 1, anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, + anon_sym_map_LBRACK, + ACTIONS(3005), 24, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4930), 4, + anon_sym_as, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4934), 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(4932), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_struct, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1835), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, + anon_sym_or, + anon_sym_is, + anon_sym_in, sym_identifier, - anon_sym_AT_LBRACK, - [42017] = 3, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [42236] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(3335), 47, + ACTIONS(4974), 1, + anon_sym_BANG, + ACTIONS(3269), 46, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229790,7 +230458,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, @@ -229809,65 +230476,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42073] = 3, - ACTIONS(495), 1, + [42294] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_LBRACK, - ACTIONS(3315), 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, + ACTIONS(4980), 1, + anon_sym_volatile, + ACTIONS(4978), 22, + anon_sym_LBRACE, 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_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4976), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, sym_identifier, - anon_sym_AT_LBRACK, - [42129] = 3, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [42352] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3259), 47, + ACTIONS(3027), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229915,12 +230583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42185] = 3, + [42408] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2907), 1, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(2909), 47, + ACTIONS(3412), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -229968,12 +230636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42241] = 3, + [42464] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(3414), 1, anon_sym_LBRACK, - ACTIONS(3133), 47, + ACTIONS(3416), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230021,65 +230689,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42297] = 3, + [42520] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(3255), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4922), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4930), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4932), 1, + anon_sym_DASH_DASH, + ACTIONS(4936), 1, + anon_sym_AMP_AMP, + ACTIONS(4938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4940), 1, + anon_sym_or, + ACTIONS(4942), 1, + anon_sym_is, + ACTIONS(4944), 1, + anon_sym_BANGis, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_BANGin, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_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(1849), 9, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, sym_identifier, anon_sym_AT_LBRACK, - [42353] = 3, + [42618] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3011), 1, anon_sym_LBRACK, - ACTIONS(3251), 47, + ACTIONS(3013), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230127,12 +230816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42409] = 3, + [42674] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3229), 1, + ACTIONS(3360), 1, anon_sym_LBRACK, - ACTIONS(3231), 47, + ACTIONS(3362), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230180,65 +230869,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42465] = 3, + [42730] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(2667), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(2669), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2067), 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, - [42521] = 3, + [42806] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3227), 47, + ACTIONS(3253), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230286,12 +230985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42577] = 3, + [42862] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(3223), 47, + ACTIONS(2651), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230339,65 +231038,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42633] = 3, + [42918] = 16, ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(3191), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_BANGin, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1881), 17, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42689] = 3, + [43000] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3263), 1, anon_sym_LBRACK, - ACTIONS(3183), 47, + ACTIONS(3265), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230445,12 +231157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42745] = 3, + [43056] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(2983), 1, anon_sym_LBRACK, - ACTIONS(3235), 47, + ACTIONS(2985), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230498,12 +231210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42801] = 3, + [43112] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3364), 1, anon_sym_LBRACK, - ACTIONS(3177), 47, + ACTIONS(3366), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230551,12 +231263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42857] = 3, + [43168] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(3219), 47, + ACTIONS(2981), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230604,118 +231316,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [42913] = 3, + [43224] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(3173), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_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, - [42969] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACK, - ACTIONS(3169), 47, + ACTIONS(1865), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43025] = 3, + [43300] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3418), 1, anon_sym_LBRACK, - ACTIONS(3165), 47, + ACTIONS(3420), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230763,12 +231432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43081] = 3, + [43356] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3450), 1, anon_sym_LBRACK, - ACTIONS(3157), 47, + ACTIONS(3452), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230816,12 +231485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43137] = 3, + [43412] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(3434), 1, anon_sym_LBRACK, - ACTIONS(3153), 47, + ACTIONS(3436), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230869,65 +231538,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43193] = 3, + [43468] = 17, ACTIONS(495), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(3149), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4936), 1, + anon_sym_AMP_AMP, + ACTIONS(4946), 1, + anon_sym_in, + ACTIONS(4948), 1, + anon_sym_BANGin, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1881), 16, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43249] = 3, + [43552] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3346), 1, anon_sym_LBRACK, - ACTIONS(3145), 47, + ACTIONS(3348), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -230975,118 +231658,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43305] = 3, - ACTIONS(495), 1, + [43608] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3139), 1, - anon_sym_LBRACK, - ACTIONS(3141), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2889), 24, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, anon_sym_BANGis, - anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43361] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3213), 1, - anon_sym_LBRACK, - ACTIONS(3215), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_map_LBRACK, + ACTIONS(2891), 24, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, + anon_sym_fn, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_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_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_AMP_AMP, - anon_sym_PIPE_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, - [43417] = 3, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + anon_sym_DOT_DOT, + [43664] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - ACTIONS(2977), 47, + ACTIONS(3374), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231134,12 +231764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43473] = 3, + [43720] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2953), 1, + ACTIONS(2913), 1, anon_sym_LBRACK, - ACTIONS(2955), 47, + ACTIONS(2915), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231187,12 +231817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43529] = 3, + [43776] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3127), 1, + ACTIONS(3390), 1, anon_sym_LBRACK, - ACTIONS(3129), 47, + ACTIONS(3392), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231240,12 +231870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43585] = 3, + [43832] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2949), 1, + ACTIONS(3386), 1, anon_sym_LBRACK, - ACTIONS(2951), 47, + ACTIONS(3388), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231293,12 +231923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43641] = 3, + [43888] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(3422), 1, anon_sym_LBRACK, - ACTIONS(2947), 47, + ACTIONS(3424), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231346,65 +231976,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43697] = 3, + [43944] = 27, ACTIONS(495), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(2727), 1, + anon_sym_DOT, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(2943), 47, + ACTIONS(3454), 1, + sym_identifier, + ACTIONS(3458), 1, + anon_sym_fn, + ACTIONS(3460), 1, + anon_sym_STAR, + ACTIONS(3462), 1, + anon_sym_struct, + ACTIONS(3464), 1, + anon_sym_QMARK, + ACTIONS(3466), 1, + anon_sym_BANG, + ACTIONS(3468), 1, + anon_sym_LBRACK2, + ACTIONS(3470), 1, + anon_sym_AMP, + ACTIONS(3472), 1, + anon_sym_shared, + ACTIONS(3474), 1, + anon_sym_map_LBRACK, + ACTIONS(3476), 1, + anon_sym_chan, + ACTIONS(3478), 1, + anon_sym_thread, + ACTIONS(3480), 1, + anon_sym_atomic, + ACTIONS(4982), 1, + anon_sym_LPAREN, + ACTIONS(4984), 1, + anon_sym_LT2, + STATE(3419), 1, + sym_plain_type, + STATE(3442), 1, + sym_signature, + STATE(3785), 1, + sym_generic_parameters, + STATE(4436), 1, + sym_reference_expression, + STATE(2481), 2, + sym_parameter_list, + sym_type_parameter_list, + STATE(3380), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3437), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(3412), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + STATE(3444), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [44048] = 12, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4926), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 29, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_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, - [43753] = 3, + [44122] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2937), 1, + ACTIONS(3350), 1, anon_sym_LBRACK, - ACTIONS(2939), 47, + ACTIONS(3352), 47, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231452,81 +232168,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [43809] = 3, + [44178] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(2935), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_RBRACE, + anon_sym___global, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_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, - [43865] = 3, + [44254] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(3209), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(3211), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4988), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -231534,52 +232283,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [43921] = 3, + [44329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4992), 22, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4990), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [44384] = 17, ACTIONS(495), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(2931), 47, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4996), 1, + anon_sym_AMP_AMP, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(5000), 1, + anon_sym_BANGin, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4986), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4994), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4988), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 15, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + sym_identifier, + [44467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 22, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym___global, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_json_DOTdecode, + anon_sym_LBRACK2, + anon_sym_TILDE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_DASH, + sym_float_literal, + sym_rune_literal, + anon_sym_map_LBRACK, + sym___double_quote, + sym___single_quote, + sym___c_double_quote, + sym___c_single_quote, + sym___r_double_quote, + sym___r_single_quote, + ACTIONS(4976), 25, + anon_sym_DOT, + anon_sym_fn, + anon_sym_struct, + anon_sym_mut, + anon_sym_go, + anon_sym_spawn, + sym_none, + sym_true, + sym_false, + sym_nil, + anon_sym_if, + anon_sym_DOLLARif, + anon_sym_match, + anon_sym_select, + anon_sym_lock, + anon_sym_rlock, + anon_sym_unsafe, + anon_sym_sql, + sym_int_literal, + sym_pseudo_compile_time_identifier, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + [44522] = 13, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4988), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1865), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -231587,52 +232515,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [43977] = 3, + [44597] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(2921), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4988), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2067), 24, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -231640,52 +232577,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [44033] = 3, + [44672] = 12, ACTIONS(495), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(2917), 47, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4988), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 28, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -231693,149 +232637,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [44089] = 3, - ACTIONS(495), 1, + [44745] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(2911), 1, - anon_sym_LBRACK, - ACTIONS(2913), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym___global, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1881), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1941), 27, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44145] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [44822] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(2981), 47, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4922), 1, + anon_sym_as, + ACTIONS(4930), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4932), 1, + anon_sym_DASH_DASH, + ACTIONS(4940), 1, + anon_sym_or, + ACTIONS(4942), 1, + anon_sym_is, + ACTIONS(4944), 1, + anon_sym_BANGis, + ACTIONS(4996), 1, + anon_sym_AMP_AMP, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(5000), 1, + anon_sym_BANGin, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4986), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(4994), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3762), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(4988), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [44919] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4892), 1, anon_sym_LPAREN, - anon_sym___global, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, + anon_sym_QMARK, + ACTIONS(4898), 1, + anon_sym_BANG, + ACTIONS(4922), 1, + anon_sym_as, + ACTIONS(4930), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4932), 1, + anon_sym_DASH_DASH, + ACTIONS(4940), 1, + anon_sym_or, + ACTIONS(4942), 1, + anon_sym_is, + ACTIONS(4944), 1, + anon_sym_BANGis, + ACTIONS(4996), 1, + anon_sym_AMP_AMP, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(5000), 1, + anon_sym_BANGin, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(4994), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(3764), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + sym_identifier, + ACTIONS(4988), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [45016] = 16, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4892), 1, + anon_sym_LPAREN, + ACTIONS(4894), 1, + anon_sym_LBRACK, + ACTIONS(4896), 1, anon_sym_QMARK, + ACTIONS(4898), 1, anon_sym_BANG, + ACTIONS(4998), 1, + anon_sym_in, + ACTIONS(5000), 1, + anon_sym_BANGin, + STATE(2281), 1, + sym_or_block, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, + sym_type_parameters, + ACTIONS(4890), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4900), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(4986), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, + ACTIONS(4994), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4988), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1881), 16, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, sym_identifier, - anon_sym_AT_LBRACK, - [44201] = 3, + [45097] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(3199), 1, anon_sym_LBRACK, - ACTIONS(2991), 47, + ACTIONS(2651), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3201), 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, @@ -231851,7 +232951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_pub, anon_sym_mut, anon_sym_PLUS_PLUS, @@ -231876,116 +232975,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, sym_identifier, anon_sym_AT_LBRACK, - [44257] = 4, - ACTIONS(495), 1, + [45154] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(3061), 1, - anon_sym_LBRACK, - ACTIONS(4974), 1, - anon_sym_BANG, - ACTIONS(3063), 46, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym___global, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1869), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1867), 27, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_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, - [44315] = 24, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45231] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(4892), 1, anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, + ACTIONS(4896), 1, anon_sym_QMARK, - ACTIONS(4894), 1, + ACTIONS(4898), 1, anon_sym_BANG, - ACTIONS(4928), 1, + ACTIONS(4922), 1, anon_sym_as, - ACTIONS(4936), 1, + ACTIONS(4930), 1, anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, + ACTIONS(4932), 1, anon_sym_DASH_DASH, - ACTIONS(4946), 1, + ACTIONS(4940), 1, anon_sym_or, - ACTIONS(4948), 1, + ACTIONS(4942), 1, anon_sym_is, - ACTIONS(4950), 1, + ACTIONS(4944), 1, anon_sym_BANGis, - ACTIONS(4982), 1, + ACTIONS(4996), 1, anon_sym_AMP_AMP, - ACTIONS(4984), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4986), 1, + ACTIONS(4998), 1, anon_sym_in, - ACTIONS(4988), 1, + ACTIONS(5000), 1, anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + STATE(2281), 1, sym_or_block, - STATE(4205), 1, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, sym_type_parameters, - ACTIONS(4886), 2, + ACTIONS(4890), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4896), 2, + ACTIONS(4900), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, + ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4980), 6, + ACTIONS(4994), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3762), 8, + ACTIONS(1849), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -231994,7 +233102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(4978), 8, + ACTIONS(4988), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232003,135 +233111,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44412] = 24, - ACTIONS(495), 1, + [45328] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(4894), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(4928), 1, - anon_sym_as, - ACTIONS(4936), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, - anon_sym_DASH_DASH, - ACTIONS(4946), 1, - anon_sym_or, - ACTIONS(4948), 1, - anon_sym_is, - ACTIONS(4950), 1, - anon_sym_BANGis, - ACTIONS(4982), 1, - anon_sym_AMP_AMP, - ACTIONS(4984), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4986), 1, - anon_sym_in, - ACTIONS(4988), 1, - anon_sym_BANGin, - STATE(2211), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2439), 1, sym_argument_list, - STATE(2230), 1, + STATE(2440), 1, sym_or_block, - STATE(4205), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, + ACTIONS(1853), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4980), 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(3766), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_COLON, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1851), 27, anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4978), 8, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44509] = 24, + 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, + [45405] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(4892), 1, anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, + ACTIONS(4896), 1, anon_sym_QMARK, - ACTIONS(4894), 1, + ACTIONS(4898), 1, anon_sym_BANG, - ACTIONS(4928), 1, + ACTIONS(4922), 1, anon_sym_as, - ACTIONS(4936), 1, + ACTIONS(4930), 1, anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, + ACTIONS(4932), 1, anon_sym_DASH_DASH, - ACTIONS(4946), 1, + ACTIONS(4940), 1, anon_sym_or, - ACTIONS(4948), 1, + ACTIONS(4942), 1, anon_sym_is, - ACTIONS(4950), 1, + ACTIONS(4944), 1, anon_sym_BANGis, - ACTIONS(4982), 1, + ACTIONS(4996), 1, anon_sym_AMP_AMP, - ACTIONS(4984), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4986), 1, + ACTIONS(4998), 1, anon_sym_in, - ACTIONS(4988), 1, + ACTIONS(5000), 1, anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, + ACTIONS(5018), 1, + anon_sym_PIPE_PIPE, + STATE(2281), 1, sym_or_block, - STATE(4205), 1, + STATE(2282), 1, + sym_argument_list, + STATE(4180), 1, sym_type_parameters, - ACTIONS(4886), 2, + ACTIONS(4890), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4896), 2, + ACTIONS(4900), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, + ACTIONS(4986), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4980), 6, + ACTIONS(4994), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1839), 8, + ACTIONS(1861), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -232140,7 +233238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_DOT, sym_identifier, - ACTIONS(4978), 8, + ACTIONS(4988), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232149,236 +233247,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [44606] = 12, - ACTIONS(495), 1, + [45502] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(2685), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2683), 34, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4890), 1, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LBRACK, - ACTIONS(4892), 1, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2649), 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(4894), 1, anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4978), 8, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(2647), 34, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 28, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45612] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2647), 1, + anon_sym_LBRACK, + ACTIONS(2651), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2649), 44, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - 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, - [44679] = 13, - ACTIONS(495), 1, + anon_sym_AT_LBRACK, + [45669] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, + ACTIONS(5020), 1, + anon_sym_else, + STATE(2329), 1, + sym_else_branch, + ACTIONS(2505), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4978), 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(2011), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2503), 31, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_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, - [44754] = 16, - ACTIONS(495), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45727] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4986), 1, - anon_sym_in, - ACTIONS(4988), 1, - anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, + ACTIONS(5020), 1, + anon_sym_else, + STATE(2327), 1, + sym_else_branch, + ACTIONS(2635), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4980), 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(4978), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2011), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(2633), 31, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - sym_identifier, - [44835] = 17, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [45785] = 27, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(4892), 1, anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(4894), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, + ACTIONS(4896), 1, anon_sym_QMARK, - ACTIONS(4894), 1, + ACTIONS(4898), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4900), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4922), 1, + anon_sym_as, + ACTIONS(4930), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4932), 1, + anon_sym_DASH_DASH, + ACTIONS(4934), 1, + anon_sym_LBRACK2, + ACTIONS(4936), 1, anon_sym_AMP_AMP, - ACTIONS(4986), 1, + ACTIONS(4938), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4940), 1, + anon_sym_or, + ACTIONS(4942), 1, + anon_sym_is, + ACTIONS(4944), 1, + anon_sym_BANGis, + ACTIONS(4946), 1, anon_sym_in, - ACTIONS(4988), 1, + ACTIONS(4948), 1, anon_sym_BANGin, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, + ACTIONS(4950), 1, + anon_sym_AT_LBRACK, + STATE(2281), 1, sym_or_block, - STATE(4205), 1, + STATE(2282), 1, + sym_argument_list, + STATE(3647), 1, + sym_attribute, + STATE(4180), 1, sym_type_parameters, - ACTIONS(4886), 2, + ACTIONS(4890), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, + ACTIONS(4924), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4980), 6, + ACTIONS(5022), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(4928), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4978), 8, + ACTIONS(4926), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232387,67 +233585,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 15, + [45887] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(3199), 1, + anon_sym_LBRACK, + ACTIONS(3201), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - [44918] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4888), 1, anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4978), 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(2059), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -232457,59 +233617,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - [44993] = 13, + [45942] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(2647), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4896), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4978), 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(2179), 24, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(2649), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_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, @@ -232519,183 +233668,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, sym_identifier, - [45068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4970), 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(4968), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [45123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4990), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_pseudo_compile_time_identifier, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [45178] = 24, + [45997] = 26, ACTIONS(495), 1, sym_comment, - ACTIONS(4888), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5028), 1, + anon_sym_COMMA, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4890), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4928), 1, - anon_sym_as, - ACTIONS(4936), 1, + ACTIONS(5040), 1, anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, + ACTIONS(5042), 1, anon_sym_DASH_DASH, - ACTIONS(4946), 1, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5050), 1, + anon_sym_AMP_AMP, + ACTIONS(5052), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5054), 1, anon_sym_or, - ACTIONS(4948), 1, + ACTIONS(5056), 1, anon_sym_is, - ACTIONS(4950), 1, + ACTIONS(5058), 1, anon_sym_BANGis, - ACTIONS(4982), 1, - anon_sym_AMP_AMP, - ACTIONS(4984), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4986), 1, + ACTIONS(5060), 1, anon_sym_in, - ACTIONS(4988), 1, + ACTIONS(5062), 1, anon_sym_BANGin, - STATE(2211), 1, + STATE(2595), 1, sym_argument_list, - STATE(2230), 1, + STATE(2596), 1, sym_or_block, - STATE(4205), 1, + STATE(3518), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4386), 1, sym_type_parameters, - ACTIONS(4886), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4896), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(4976), 4, + ACTIONS(1719), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(4980), 6, + ACTIONS(5036), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(1835), 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(4978), 8, + ACTIONS(5034), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -232704,10 +233760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [45275] = 3, + [46096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 13, + ACTIONS(5064), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -232721,12 +233779,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2755), 34, + ACTIONS(2641), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, @@ -232748,92 +233805,135 @@ 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, - [45330] = 3, - ACTIONS(3), 1, + [46151] = 11, + ACTIONS(495), 1, sym_comment, - ACTIONS(2865), 13, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1853), 34, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, + anon_sym_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, + anon_sym_LT_LT, + anon_sym_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, + [46220] = 11, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, anon_sym_QMARK, + ACTIONS(5046), 1, anon_sym_BANG, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2863), 34, + anon_sym_POUND_LBRACK, + ACTIONS(1869), 34, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_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_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [45385] = 14, + [46289] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, + STATE(2446), 1, sym_type_parameters, - ACTIONS(1879), 9, + ACTIONS(2715), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -232841,13 +233941,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(1877), 27, + ACTIONS(2713), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -232855,6 +233959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -232865,38 +233970,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45462] = 14, + [46344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5066), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 13, anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2041), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -232904,13 +233992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2039), 27, + ACTIONS(2871), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -232918,6 +234010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -232928,29 +234021,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45539] = 4, + [46399] = 11, ACTIONS(495), 1, sym_comment, - ACTIONS(3057), 1, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(2867), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3059), 44, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(1881), 34, 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, @@ -232963,13 +234072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, @@ -232979,54 +234083,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45596] = 4, - ACTIONS(495), 1, + [46468] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_LBRACK, - ACTIONS(2867), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2757), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3432), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3430), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -233038,34 +234134,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45653] = 14, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [46520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(3091), 13, anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2011), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -233073,13 +234148,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2009), 27, + ACTIONS(3089), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -233087,6 +234166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -233097,20 +234177,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45730] = 5, + [46572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, - anon_sym_else, - STATE(2358), 1, - sym_else_branch, - ACTIONS(2509), 13, + ACTIONS(3249), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233124,7 +234202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2507), 31, + ACTIONS(3247), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233156,14 +234234,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45788] = 5, + [46624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5010), 1, - anon_sym_else, - STATE(2361), 1, - sym_else_branch, - ACTIONS(2515), 13, + ACTIONS(3095), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233177,7 +234251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2513), 31, + ACTIONS(3093), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233209,87 +234283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [45846] = 27, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4888), 1, - anon_sym_LPAREN, - ACTIONS(4890), 1, - anon_sym_LBRACK, - ACTIONS(4892), 1, - anon_sym_QMARK, - ACTIONS(4894), 1, - anon_sym_BANG, - ACTIONS(4896), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4928), 1, - anon_sym_as, - ACTIONS(4936), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4938), 1, - anon_sym_DASH_DASH, - ACTIONS(4940), 1, - anon_sym_LBRACK2, - ACTIONS(4942), 1, - anon_sym_AMP_AMP, - ACTIONS(4944), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4946), 1, - anon_sym_or, - ACTIONS(4948), 1, - anon_sym_is, - ACTIONS(4950), 1, - anon_sym_BANGis, - ACTIONS(4952), 1, - anon_sym_in, - ACTIONS(4954), 1, - anon_sym_BANGin, - ACTIONS(4956), 1, - anon_sym_AT_LBRACK, - STATE(2211), 1, - sym_argument_list, - STATE(2230), 1, - sym_or_block, - STATE(3646), 1, - sym_attribute, - STATE(4205), 1, - sym_type_parameters, - ACTIONS(4886), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4930), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5012), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4934), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4932), 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, - [45948] = 4, + [46676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5014), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 13, + ACTIONS(3291), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233303,7 +234300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2853), 31, + ACTIONS(3289), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233335,12 +234332,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46003] = 4, + [46728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 13, + ACTIONS(3287), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233354,7 +234349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2679), 31, + ACTIONS(3285), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233386,129 +234381,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46058] = 11, + [46780] = 16, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5044), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5046), 1, anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(5076), 1, + anon_sym_BANGin, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2011), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5068), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + anon_sym_CARET, + ACTIONS(5072), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5070), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1881), 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, - anon_sym_in, - anon_sym_BANGin, - [46127] = 26, + [46858] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5030), 1, anon_sym_as, - ACTIONS(5032), 1, - anon_sym_COMMA, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, ACTIONS(5040), 1, anon_sym_PLUS_PLUS, ACTIONS(5042), 1, anon_sym_DASH_DASH, ACTIONS(5044), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5050), 1, + anon_sym_AMP_AMP, + ACTIONS(5052), 1, anon_sym_PIPE_PIPE, - ACTIONS(5048), 1, + ACTIONS(5054), 1, anon_sym_or, - ACTIONS(5050), 1, + ACTIONS(5056), 1, anon_sym_is, - ACTIONS(5052), 1, + ACTIONS(5058), 1, anon_sym_BANGis, - ACTIONS(5054), 1, + ACTIONS(5060), 1, anon_sym_in, - ACTIONS(5056), 1, + ACTIONS(5062), 1, anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + STATE(2595), 1, sym_argument_list, - STATE(3544), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(1717), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5034), 4, + ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5038), 6, + ACTIONS(1861), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5036), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5036), 8, + ACTIONS(5034), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -233517,45 +234513,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [46226] = 4, - ACTIONS(495), 1, + [46952] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_LBRACK, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(2757), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3087), 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(3085), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -233567,104 +234560,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [46281] = 11, - ACTIONS(495), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47004] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(3313), 1, + anon_sym_DOT, + ACTIONS(3311), 12, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5026), 1, anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1879), 34, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3309), 31, anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [46350] = 4, - ACTIONS(495), 1, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47058] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(3057), 1, - anon_sym_LBRACK, - ACTIONS(3059), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(3013), 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(3011), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -233676,71 +234659,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - sym_identifier, - [46405] = 11, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47110] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5040), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, + anon_sym_DASH_DASH, + ACTIONS(5044), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5046), 1, anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5050), 1, + anon_sym_AMP_AMP, + ACTIONS(5052), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5054), 1, + anon_sym_or, + ACTIONS(5056), 1, + anon_sym_is, + ACTIONS(5058), 1, + anon_sym_BANGis, + ACTIONS(5060), 1, + anon_sym_in, + ACTIONS(5062), 1, + anon_sym_BANGin, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(2041), 34, + ACTIONS(5032), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1849), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(5036), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [47204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 13, + 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_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3101), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [46474] = 4, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [47256] = 3, ACTIONS(3), 1, sym_comment, - STATE(2405), 1, - sym_type_parameters, - ACTIONS(2761), 13, + ACTIONS(3416), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233754,7 +234797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 31, + ACTIONS(3414), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233786,10 +234829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46529] = 3, + [47308] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 13, + ACTIONS(3344), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233803,7 +234846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3217), 31, + ACTIONS(3342), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233835,10 +234878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46581] = 3, + [47360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 13, + ACTIONS(3083), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233852,7 +234895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3357), 31, + ACTIONS(3081), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233884,10 +234927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46633] = 3, + [47412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 13, + ACTIONS(3061), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233901,7 +234944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3407), 31, + ACTIONS(3059), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233933,10 +234976,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46685] = 3, + [47464] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 13, + ACTIONS(3245), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233950,7 +234993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3415), 31, + ACTIONS(3243), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -233982,10 +235025,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46737] = 3, + [47516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 13, + ACTIONS(3412), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -233999,7 +235042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3419), 31, + ACTIONS(3410), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234031,10 +235074,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46789] = 3, + [47568] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 13, + ACTIONS(3257), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234048,7 +235091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3249), 31, + ACTIONS(3255), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234080,10 +235123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46841] = 3, + [47620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 13, + ACTIONS(3378), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234097,7 +235140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3131), 31, + ACTIONS(3376), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234129,10 +235172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46893] = 3, + [47672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 13, + ACTIONS(3129), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234146,7 +235189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2907), 31, + ACTIONS(3127), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234178,80 +235221,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [46945] = 24, - ACTIONS(495), 1, + [47724] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5030), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5040), 1, + ACTIONS(5080), 1, + anon_sym_LBRACE, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5044), 1, + ACTIONS(5098), 1, + anon_sym_CARET, + ACTIONS(5100), 1, anon_sym_AMP_AMP, - ACTIONS(5046), 1, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5048), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5054), 1, - anon_sym_in, - ACTIONS(5056), 1, - anon_sym_BANGin, - ACTIONS(5058), 1, + ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5060), 1, + ACTIONS(5108), 1, anon_sym_BANGis, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, + anon_sym_BANGin, + STATE(1289), 1, + sym_block, + STATE(2439), 1, sym_argument_list, - STATE(4298), 1, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(2029), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5038), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5088), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5036), 8, + ACTIONS(5086), 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, - [47039] = 3, + [47834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 13, + ACTIONS(3053), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234265,7 +235316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3373), 31, + ACTIONS(3051), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234297,10 +235348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47091] = 3, + [47886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 13, + ACTIONS(3049), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234314,7 +235365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3369), 31, + ACTIONS(3047), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234346,10 +235397,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47143] = 3, + [47938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 13, + ACTIONS(3141), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234363,7 +235414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3353), 31, + ACTIONS(3139), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234395,117 +235446,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47195] = 3, + [47990] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(2863), 1, - anon_sym_LBRACK, - ACTIONS(2865), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5026), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47247] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5030), 1, - anon_sym_as, ACTIONS(5040), 1, anon_sym_PLUS_PLUS, ACTIONS(5042), 1, anon_sym_DASH_DASH, ACTIONS(5044), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(5046), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5048), 1, + anon_sym_BANG, + ACTIONS(5054), 1, anon_sym_or, - ACTIONS(5050), 1, + ACTIONS(5056), 1, anon_sym_is, - ACTIONS(5052), 1, + ACTIONS(5058), 1, anon_sym_BANGis, - ACTIONS(5054), 1, + ACTIONS(5074), 1, anon_sym_in, - ACTIONS(5056), 1, + ACTIONS(5076), 1, anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5114), 1, + anon_sym_AMP_AMP, + ACTIONS(5116), 1, + anon_sym_PIPE_PIPE, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, + ACTIONS(5068), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(1759), 5, + ACTIONS(1849), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_RBRACE, - ACTIONS(5038), 6, + ACTIONS(5072), 6, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5036), 8, + ACTIONS(5070), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -234514,10 +235516,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [47341] = 3, + [48084] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3145), 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(3143), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [48136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 13, + ACTIONS(2985), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234531,7 +235582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3341), 31, + ACTIONS(2983), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234563,10 +235614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47393] = 3, + [48188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 13, + ACTIONS(3017), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234580,7 +235631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3337), 31, + ACTIONS(3015), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234612,10 +235663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47445] = 3, + [48240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 13, + ACTIONS(2727), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234629,7 +235680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3333), 31, + ACTIONS(2725), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234661,10 +235712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47497] = 3, + [48292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 13, + ACTIONS(2981), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234678,7 +235729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3313), 31, + ACTIONS(2979), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234710,10 +235761,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47549] = 3, + [48344] = 13, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5068), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5070), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2067), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [48416] = 13, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5068), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5070), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1865), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [48488] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5040), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, + anon_sym_DASH_DASH, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5054), 1, + anon_sym_or, + ACTIONS(5056), 1, + anon_sym_is, + ACTIONS(5058), 1, + anon_sym_BANGis, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(5076), 1, + anon_sym_BANGin, + ACTIONS(5114), 1, + anon_sym_AMP_AMP, + ACTIONS(5116), 1, + anon_sym_PIPE_PIPE, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5068), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(1861), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + ACTIONS(5072), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5070), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [48582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 13, + ACTIONS(3173), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234727,7 +235966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3257), 31, + ACTIONS(3171), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234759,10 +235998,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47601] = 3, + [48634] = 17, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(5076), 1, + anon_sym_BANGin, + ACTIONS(5114), 1, + anon_sym_AMP_AMP, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5068), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5072), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5070), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_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, + [48714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 13, + ACTIONS(5118), 1, + anon_sym_BANG, + ACTIONS(3269), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234772,11 +236076,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(3253), 31, + ACTIONS(3267), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234808,18 +236111,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47653] = 5, + [48768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_COLON, - ACTIONS(3089), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(3093), 12, + ACTIONS(3185), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234827,15 +236122,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3096), 26, + ACTIONS(3183), 31, + anon_sym_SEMI, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -234843,6 +236142,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, @@ -234859,61 +236159,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [47709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 1, - anon_sym_COLON, - ACTIONS(3099), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_DOT_DOT, - ACTIONS(3103), 12, + [48820] = 13, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5068), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5070), 8, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3106), 26, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_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, - [47765] = 3, + [48892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 13, + ACTIONS(3197), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -234927,7 +236236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3423), 31, + ACTIONS(3195), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -234959,59 +236268,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47817] = 3, - ACTIONS(3), 1, + [48944] = 12, + ACTIONS(495), 1, sym_comment, - ACTIONS(3231), 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(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, anon_sym_QMARK, + ACTIONS(5046), 1, anon_sym_BANG, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5070), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3229), 31, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 25, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, + [49014] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47869] = 3, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5098), 1, + anon_sym_CARET, + ACTIONS(5100), 1, + anon_sym_AMP_AMP, + ACTIONS(5102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, + anon_sym_BANGin, + ACTIONS(5120), 1, + anon_sym_LBRACE, + STATE(992), 1, + sym_block, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5088), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3227), 13, + ACTIONS(2915), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235025,7 +236421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3225), 31, + ACTIONS(2913), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235057,10 +236453,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47921] = 3, + [49176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 13, + ACTIONS(3275), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235074,7 +236470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3301), 31, + ACTIONS(3273), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235106,10 +236502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [47973] = 3, + [49228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 13, + ACTIONS(3424), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235123,7 +236519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3305), 31, + ACTIONS(3422), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235155,59 +236551,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48025] = 3, + [49280] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 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(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3221), 31, - anon_sym_SEMI, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5098), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48077] = 3, + ACTIONS(5122), 1, + anon_sym_LBRACE, + STATE(2162), 1, + sym_block, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5088), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 13, + ACTIONS(3213), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235221,7 +236646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3193), 31, + ACTIONS(3211), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235253,10 +236678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48129] = 3, + [49442] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 13, + ACTIONS(3217), 1, + anon_sym_COLON, + ACTIONS(3215), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3219), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235264,19 +236697,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(3309), 31, - anon_sym_SEMI, + ACTIONS(3222), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -235284,7 +236713,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, @@ -235301,11 +236729,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48181] = 3, + [49498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 13, + ACTIONS(3205), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235319,7 +236746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3189), 31, + ACTIONS(3203), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235351,10 +236778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48233] = 3, + [49550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 13, + ACTIONS(3227), 1, + anon_sym_COLON, + ACTIONS(3225), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_DOT_DOT, + ACTIONS(3229), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235362,19 +236797,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(3181), 31, - anon_sym_SEMI, + ACTIONS(3232), 26, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -235382,7 +236813,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, @@ -235399,62 +236829,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48285] = 3, + [49606] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 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(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3175), 31, - anon_sym_SEMI, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5098), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48337] = 4, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(2315), 1, + sym_block, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5088), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [49716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(3237), 13, anon_sym_DOT, - ACTIONS(2909), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -235467,7 +236924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2907), 31, + ACTIONS(3235), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235499,10 +236956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48391] = 3, + [49768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 13, + ACTIONS(3241), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235516,7 +236973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3171), 31, + ACTIONS(3239), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235548,10 +237005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48443] = 3, + [49820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 13, + ACTIONS(3279), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235565,7 +237022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3317), 31, + ACTIONS(3277), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235597,10 +237054,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48495] = 3, + [49872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 13, + ACTIONS(3295), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235614,7 +237071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3321), 31, + ACTIONS(3293), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235646,10 +237103,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48547] = 3, + [49924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 13, + ACTIONS(3299), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235663,7 +237120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3167), 31, + ACTIONS(3297), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235695,10 +237152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48599] = 3, + [49976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 13, + ACTIONS(3303), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235712,7 +237169,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3261), 31, + ACTIONS(3301), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235744,10 +237201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48651] = 3, + [50028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 13, + ACTIONS(3193), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235761,7 +237218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3163), 31, + ACTIONS(3191), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235793,10 +237250,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48703] = 3, + [50080] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 13, + ACTIONS(2907), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -235810,7 +237267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3325), 31, + ACTIONS(2905), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -235842,50 +237299,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [48755] = 13, + [50132] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(2633), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5126), 1, + anon_sym_else, + STATE(2523), 1, + sym_else_branch, + ACTIONS(2635), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5036), 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(2179), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, anon_sym_EQ_EQ, @@ -235894,108 +237332,64 @@ static const uint16_t ts_small_parse_table[] = { 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, - [48827] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, anon_sym_QMARK, - ACTIONS(5026), 1, anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, - ACTIONS(5036), 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(2059), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [48899] = 3, - ACTIONS(3), 1, + [50188] = 5, + ACTIONS(495), 1, sym_comment, - ACTIONS(3157), 13, + ACTIONS(2503), 1, + anon_sym_LBRACK, + ACTIONS(5126), 1, + anon_sym_else, + STATE(2516), 1, + sym_else_branch, + ACTIONS(2505), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3155), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - 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, @@ -236007,12 +237401,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, - [48951] = 3, + [50244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3331), 13, + ACTIONS(3307), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236026,7 +237418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3329), 31, + ACTIONS(3305), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236058,10 +237450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49003] = 3, + [50296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 13, + ACTIONS(2651), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236075,7 +237467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3151), 31, + ACTIONS(2653), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236107,10 +237499,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49055] = 3, + [50348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 13, + ACTIONS(3318), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236124,7 +237516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 31, + ACTIONS(3316), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236156,143 +237548,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49107] = 17, - ACTIONS(495), 1, + [50400] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5054), 1, - anon_sym_in, - ACTIONS(5056), 1, - anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5038), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5036), 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(2011), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(5078), 1, anon_sym_as, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5098), 1, + anon_sym_CARET, + ACTIONS(5100), 1, + anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - [49187] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5030), 1, - anon_sym_as, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_is, - ACTIONS(5052), 1, - anon_sym_BANGis, - ACTIONS(5068), 1, - anon_sym_AMP_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5072), 1, + ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5074), 1, + ACTIONS(5112), 1, anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5128), 1, + anon_sym_LBRACE, + STATE(1816), 1, + sym_block, + STATE(2439), 1, sym_argument_list, - STATE(4298), 1, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5062), 4, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1839), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5066), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5088), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5064), 8, + ACTIONS(5086), 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, - [49281] = 3, + [50510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3145), 13, + ACTIONS(3322), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236306,7 +237643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3143), 31, + ACTIONS(3320), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236338,131 +237675,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49333] = 16, - ACTIONS(495), 1, + [50562] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5054), 1, - anon_sym_in, - ACTIONS(5056), 1, - anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(3181), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5038), 6, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3179), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5036), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [49411] = 13, - ACTIONS(495), 1, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [50614] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5010), 1, anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5098), 1, + anon_sym_CARET, + ACTIONS(5100), 1, + anon_sym_AMP_AMP, + ACTIONS(5102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, + anon_sym_BANGin, + STATE(1654), 1, + sym_block, + STATE(2439), 1, sym_argument_list, - STATE(4298), 1, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5036), 8, - anon_sym_STAR, + ACTIONS(5088), 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(2011), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5092), 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, - [49483] = 3, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [50724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 13, + ACTIONS(3177), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236476,7 +237819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3139), 31, + ACTIONS(3175), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236508,30 +237851,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49535] = 12, + [50776] = 12, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5044), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5046), 1, anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5036), 8, + ACTIONS(5034), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -236540,7 +237883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 25, + ACTIONS(1881), 25, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -236566,10 +237909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [49605] = 3, + [50846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 13, + ACTIONS(3400), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236583,7 +237926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2975), 31, + ACTIONS(3398), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -236615,376 +237958,225 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [49657] = 24, - ACTIONS(495), 1, + [50898] = 32, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5030), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5040), 1, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5048), 1, + ACTIONS(5098), 1, + anon_sym_CARET, + ACTIONS(5100), 1, + anon_sym_AMP_AMP, + ACTIONS(5102), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5050), 1, + ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5052), 1, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5068), 1, - anon_sym_AMP_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5072), 1, + ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5074), 1, + ACTIONS(5112), 1, anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5130), 1, + anon_sym_LBRACE, + STATE(389), 1, + sym_block, + STATE(2439), 1, sym_argument_list, - STATE(4298), 1, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5062), 4, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1835), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(5066), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5088), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5064), 8, + ACTIONS(5086), 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, - [49751] = 32, + [51008] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_COLON_EQ, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, ACTIONS(5078), 1, - anon_sym_LBRACE, - ACTIONS(5080), 1, + anon_sym_as, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5096), 1, - anon_sym_CARET, + anon_sym_DASH_DASH, ACTIONS(5098), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_or, + anon_sym_PIPE_PIPE, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(5108), 1, - anon_sym_in, + anon_sym_BANGis, ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - STATE(1902), 1, + ACTIONS(5132), 1, + anon_sym_LBRACE, + STATE(1870), 1, sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(3999), 1, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [49861] = 25, + [51118] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5030), 1, - anon_sym_as, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, ACTIONS(5044), 1, - anon_sym_AMP_AMP, + anon_sym_QMARK, ACTIONS(5046), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_is, - ACTIONS(5052), 1, - anon_sym_BANGis, - ACTIONS(5054), 1, - anon_sym_in, - ACTIONS(5056), 1, - anon_sym_BANGin, - ACTIONS(5112), 1, - anon_sym_COMMA, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + anon_sym_BANG, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3548), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(5034), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5038), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5036), 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, - [49957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3235), 13, + ACTIONS(5024), 2, 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(3233), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3405), 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, + ACTIONS(5048), 2, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3403), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2955), 13, - anon_sym_DOT, + ACTIONS(5032), 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_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5034), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(2953), 31, - anon_sym_SEMI, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50113] = 3, + [51190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 13, + ACTIONS(3362), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -236998,7 +238190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2949), 31, + ACTIONS(3360), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237030,10 +238222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50165] = 3, + [51242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 13, + ACTIONS(3366), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237047,7 +238239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2869), 31, + ACTIONS(3364), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237079,186 +238271,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50217] = 32, - ACTIONS(3), 1, + [51294] = 16, + ACTIONS(495), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5044), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5046), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5060), 1, + anon_sym_in, + ACTIONS(5062), 1, + anon_sym_BANGin, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, anon_sym_LBRACK2, - ACTIONS(5008), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5032), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5036), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5034), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1881), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5092), 1, + anon_sym_RBRACE, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5100), 1, anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5108), 1, + [51372] = 17, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5050), 1, + anon_sym_AMP_AMP, + ACTIONS(5060), 1, anon_sym_in, - ACTIONS(5110), 1, + ACTIONS(5062), 1, anon_sym_BANGin, - ACTIONS(5114), 1, - anon_sym_LBRACE, - STATE(1287), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2595), 1, sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, + anon_sym_CARET, + ACTIONS(5036), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5034), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [50327] = 3, + ACTIONS(1881), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [51452] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 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(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2945), 31, - anon_sym_SEMI, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5082), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5098), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50379] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2943), 13, + ACTIONS(5134), 1, + anon_sym_LBRACE, + STATE(2386), 1, + sym_block, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2941), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50431] = 3, + [51562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 13, + ACTIONS(3396), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237272,7 +238491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2937), 31, + ACTIONS(3394), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237304,10 +238523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50483] = 3, + [51614] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 13, + ACTIONS(3374), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237321,7 +238540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2933), 31, + ACTIONS(3372), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237353,10 +238572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50535] = 3, + [51666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2931), 13, + ACTIONS(3356), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237370,7 +238589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2929), 31, + ACTIONS(3354), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237402,10 +238621,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50587] = 3, + [51718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 13, + ACTIONS(3001), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237419,7 +238638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2919), 31, + ACTIONS(2999), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237451,10 +238670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50639] = 3, + [51770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 13, + ACTIONS(3382), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237468,7 +238687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2667), 31, + ACTIONS(3380), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237500,10 +238719,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50691] = 3, + [51822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 13, + ACTIONS(3057), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237517,7 +238736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2915), 31, + ACTIONS(3055), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237549,35 +238768,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [50743] = 13, + [51874] = 13, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5044), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5046), 1, anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5062), 4, + ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5064), 8, + ACTIONS(5034), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, @@ -237586,237 +238805,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2179), 21, + ACTIONS(2067), 21, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [50815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 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(2911), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50867] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, anon_sym_as, - ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5108), 1, - anon_sym_in, - ACTIONS(5110), 1, - anon_sym_BANGin, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(2313), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + anon_sym_RBRACE, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [50977] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5092), 1, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5100), 1, anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5108), 1, anon_sym_in, - ACTIONS(5110), 1, anon_sym_BANGin, - ACTIONS(5118), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(2552), 1, - sym_block, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [51087] = 3, + [51946] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 13, + ACTIONS(2715), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237830,7 +238844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2979), 31, + ACTIONS(2713), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237862,10 +238876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51139] = 3, + [51998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 13, + ACTIONS(2997), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -237879,7 +238893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2989), 31, + ACTIONS(2995), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -237911,112 +238925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51191] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2507), 1, - anon_sym_LBRACK, - ACTIONS(5120), 1, - anon_sym_else, - STATE(2563), 1, - sym_else_branch, - ACTIONS(2509), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51247] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2513), 1, - anon_sym_LBRACK, - ACTIONS(5120), 1, - anon_sym_else, - STATE(2574), 1, - sym_else_branch, - ACTIONS(2515), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51303] = 3, + [52050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 13, + ACTIONS(2993), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238030,7 +238942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3213), 31, + ACTIONS(2991), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238062,10 +238974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51355] = 3, + [52102] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 13, + ACTIONS(2989), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238079,7 +238991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3135), 31, + ACTIONS(2987), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238111,90 +239023,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51407] = 32, + [52154] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_COLON_EQ, - ACTIONS(4703), 1, - anon_sym_LBRACE, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5080), 1, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5096), 1, - anon_sym_CARET, + anon_sym_DASH_DASH, ACTIONS(5098), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_or, + anon_sym_PIPE_PIPE, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(5108), 1, - anon_sym_in, + anon_sym_BANGis, ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - STATE(1652), 1, + ACTIONS(5136), 1, + anon_sym_LBRACE, + STATE(1150), 1, sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(3999), 1, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51517] = 3, + [52264] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(2683), 1, anon_sym_LBRACK, - ACTIONS(2757), 43, + ACTIONS(2685), 43, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -238238,197 +239150,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [51569] = 4, - ACTIONS(3), 1, + [52316] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(5122), 1, - anon_sym_BANG, - ACTIONS(3063), 12, - 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_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3061), 31, - anon_sym_SEMI, + ACTIONS(5026), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5030), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5038), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5040), 1, anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5050), 1, anon_sym_AMP_AMP, + ACTIONS(5052), 1, anon_sym_PIPE_PIPE, + ACTIONS(5054), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5056), 1, anon_sym_is, + ACTIONS(5058), 1, anon_sym_BANGis, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51623] = 13, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5062), 4, + ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_CARET, - ACTIONS(5064), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2059), 21, + ACTIONS(1761), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51695] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5108), 1, - anon_sym_in, - ACTIONS(5110), 1, - anon_sym_BANGin, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2162), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + anon_sym_RBRACE, + ACTIONS(5036), 6, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5034), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51805] = 3, + [52410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 13, + ACTIONS(3189), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238442,7 +239237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3127), 31, + ACTIONS(3187), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238474,88 +239269,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [51857] = 32, - ACTIONS(3), 1, + [52462] = 25, + ACTIONS(495), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5092), 1, + ACTIONS(5040), 1, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, + ACTIONS(5042), 1, anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5050), 1, anon_sym_AMP_AMP, - ACTIONS(5100), 1, + ACTIONS(5052), 1, anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, + ACTIONS(5054), 1, anon_sym_or, - ACTIONS(5104), 1, + ACTIONS(5056), 1, anon_sym_is, - ACTIONS(5106), 1, + ACTIONS(5058), 1, anon_sym_BANGis, - ACTIONS(5108), 1, + ACTIONS(5060), 1, anon_sym_in, - ACTIONS(5110), 1, + ACTIONS(5062), 1, anon_sym_BANGin, - ACTIONS(5126), 1, - anon_sym_LBRACE, - STATE(1709), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5138), 1, + anon_sym_COMMA, + STATE(2595), 1, sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3562), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, + anon_sym_CARET, + ACTIONS(5036), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5034), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [51967] = 3, + [52558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 13, + ACTIONS(3408), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238569,7 +239357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3159), 31, + ACTIONS(3406), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238601,10 +239389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52019] = 3, + [52610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 13, + ACTIONS(3448), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238618,7 +239406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3185), 31, + ACTIONS(3446), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238650,10 +239438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52071] = 3, + [52662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 13, + ACTIONS(3209), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238667,7 +239455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3201), 31, + ACTIONS(3207), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238699,10 +239487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52123] = 3, + [52714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 13, + ACTIONS(3440), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238716,7 +239504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3241), 31, + ACTIONS(3438), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238748,10 +239536,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52175] = 3, + [52766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 13, + ACTIONS(2911), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -238765,7 +239553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3209), 31, + ACTIONS(2909), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -238797,278 +239585,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52227] = 32, - ACTIONS(3), 1, + [52818] = 13, + ACTIONS(495), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5044), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5046), 1, anon_sym_BANG, - ACTIONS(5004), 1, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, anon_sym_LBRACK2, - ACTIONS(5008), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5032), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5034), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1865), 21, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_as, - ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5092), 1, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5100), 1, anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5108), 1, anon_sym_in, - ACTIONS(5110), 1, anon_sym_BANGin, - ACTIONS(5128), 1, - anon_sym_LBRACE, - STATE(992), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + [52890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3283), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(3281), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, + 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, - [52337] = 17, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5068), 1, anon_sym_AMP_AMP, - ACTIONS(5072), 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(5074), 1, anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [52942] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2647), 1, + anon_sym_LBRACK, + ACTIONS(2649), 43, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5062), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5066), 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(5064), 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(2011), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_else, + anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, - [52417] = 32, + anon_sym_in, + anon_sym_BANGin, + [52994] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_COLON_EQ, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5080), 1, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5096), 1, - anon_sym_CARET, + anon_sym_DASH_DASH, ACTIONS(5098), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_or, + anon_sym_PIPE_PIPE, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(5108), 1, - anon_sym_in, + anon_sym_BANGis, ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - ACTIONS(5130), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(2837), 1, + STATE(2440), 1, + sym_or_block, + STATE(2620), 1, sym_block, - STATE(3999), 1, + STATE(3896), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [52527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3367), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3365), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5086), 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_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, - [52579] = 3, + [53104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 13, + ACTIONS(2903), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239082,7 +239837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 31, + ACTIONS(2901), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239114,10 +239869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52631] = 3, + [53156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 13, + ACTIONS(3348), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239131,7 +239886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3265), 31, + ACTIONS(3346), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239163,10 +239918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52683] = 3, + [53208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 13, + ACTIONS(3352), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239180,7 +239935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3269), 31, + ACTIONS(3350), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239212,10 +239967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52735] = 3, + [53260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 13, + ACTIONS(2899), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239229,7 +239984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 31, + ACTIONS(2897), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239261,10 +240016,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52787] = 3, + [53312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 13, + ACTIONS(3388), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239278,7 +240033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3377), 31, + ACTIONS(3386), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239310,10 +240065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52839] = 3, + [53364] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 13, + ACTIONS(3392), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239327,7 +240082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3427), 31, + ACTIONS(3390), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239359,10 +240114,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52891] = 3, + [53416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 13, + ACTIONS(3428), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239376,7 +240131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3381), 31, + ACTIONS(3426), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239408,10 +240163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52943] = 3, + [53468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 13, + ACTIONS(3340), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239425,7 +240180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3277), 31, + ACTIONS(3338), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239457,72 +240212,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [52995] = 16, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5072), 1, - anon_sym_in, - ACTIONS(5074), 1, - anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5062), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5066), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5064), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2011), 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, - [53073] = 3, + [53520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 13, + ACTIONS(3436), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239536,7 +240229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3385), 31, + ACTIONS(3434), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239568,10 +240261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53125] = 3, + [53572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 13, + ACTIONS(3452), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239585,7 +240278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3431), 31, + ACTIONS(3450), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239617,12 +240310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53177] = 4, + [53624] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3099), 13, anon_sym_DOT, - ACTIONS(3437), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -239635,7 +240327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 31, + ACTIONS(3097), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239667,10 +240359,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53231] = 3, + [53676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 13, + ACTIONS(3420), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239684,7 +240376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2759), 31, + ACTIONS(3418), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239716,10 +240408,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53283] = 3, + [53728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 13, + ACTIONS(3133), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239733,7 +240425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3442), 31, + ACTIONS(3131), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239765,88 +240457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53335] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5108), 1, - anon_sym_in, - ACTIONS(5110), 1, - anon_sym_BANGin, - ACTIONS(5132), 1, - anon_sym_LBRACE, - STATE(1837), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53445] = 3, + [53780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 13, + ACTIONS(3444), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239860,7 +240474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3389), 31, + ACTIONS(3442), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239892,10 +240506,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53497] = 3, + [53832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 13, + ACTIONS(3265), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239909,7 +240523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3281), 31, + ACTIONS(3263), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239941,10 +240555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53549] = 3, + [53884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 13, + ACTIONS(3370), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -239958,7 +240572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3285), 31, + ACTIONS(3368), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -239990,228 +240604,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53601] = 24, - ACTIONS(495), 1, + [53936] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5030), 1, - anon_sym_as, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_is, - ACTIONS(5052), 1, - anon_sym_BANGis, - ACTIONS(5054), 1, - anon_sym_in, - ACTIONS(5056), 1, - anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(3404), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1839), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5038), 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(5036), 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, - [53695] = 24, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, + anon_sym_COLON, anon_sym_QMARK, - ACTIONS(5026), 1, anon_sym_BANG, - ACTIONS(5030), 1, - anon_sym_as, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5044), 1, - anon_sym_AMP_AMP, - ACTIONS(5046), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_is, - ACTIONS(5052), 1, - anon_sym_BANGis, - ACTIONS(5054), 1, - anon_sym_in, - ACTIONS(5056), 1, - anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5034), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1835), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3402), 31, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5038), 6, - 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, - ACTIONS(5036), 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, - [53789] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5092), 1, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5096), 1, anon_sym_CARET, - ACTIONS(5098), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5100), 1, anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, anon_sym_or, - ACTIONS(5104), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5108), 1, anon_sym_in, - ACTIONS(5110), 1, anon_sym_BANGin, - ACTIONS(5134), 1, - anon_sym_LBRACE, - STATE(1151), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53899] = 3, + anon_sym_COLON_EQ, + anon_sym_DOT_DOT, + [53988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 13, + ACTIONS(3253), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240225,7 +240670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3085), 31, + ACTIONS(3251), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240257,10 +240702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [53951] = 3, + [54040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 13, + ACTIONS(3027), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240274,7 +240719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3289), 31, + ACTIONS(3025), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240306,11 +240751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54003] = 3, + [54092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 13, + ACTIONS(2729), 1, anon_sym_DOT, + ACTIONS(3412), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -240323,7 +240769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3293), 31, + ACTIONS(3410), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240355,303 +240801,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54055] = 13, + [54146] = 24, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, ACTIONS(5026), 1, - anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(5062), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5064), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2011), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5040), 1, anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, anon_sym_DASH_DASH, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5050), 1, anon_sym_AMP_AMP, + ACTIONS(5052), 1, anon_sym_PIPE_PIPE, + ACTIONS(5054), 1, anon_sym_or, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_BANGin, - [54127] = 12, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5142), 1, + anon_sym_is, + ACTIONS(5144), 1, + anon_sym_BANGis, + STATE(2595), 1, sym_argument_list, - STATE(4298), 1, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5018), 2, + ACTIONS(5024), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(5048), 2, anon_sym_LBRACK2, anon_sym_POUND_LBRACK, - ACTIONS(5064), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2011), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(5032), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [54197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3413), 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(3411), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(1933), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5036), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5034), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [54240] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5082), 1, + anon_sym_COMMA, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5098), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [54249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3351), 13, + ACTIONS(5146), 1, + anon_sym_LBRACE, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(2672), 1, + sym_block, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3349), 31, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [54301] = 32, + [54350] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, + ACTIONS(3512), 1, anon_sym_COLON_EQ, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5080), 1, + ACTIONS(5082), 1, anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5096), 1, - anon_sym_CARET, + anon_sym_DASH_DASH, ACTIONS(5098), 1, - anon_sym_AMP_AMP, + anon_sym_CARET, ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, ACTIONS(5102), 1, - anon_sym_or, + anon_sym_PIPE_PIPE, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(5108), 1, - anon_sym_in, + anon_sym_BANGis, ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - ACTIONS(5136), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2403), 1, + STATE(1740), 1, sym_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(3999), 1, + STATE(2440), 1, + sym_or_block, + STATE(3896), 1, aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [54411] = 3, + [54460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 13, + ACTIONS(3336), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240665,7 +241044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3361), 31, + ACTIONS(3334), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240697,10 +241076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54463] = 3, + [54512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 13, + ACTIONS(3332), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240714,7 +241093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3395), 31, + ACTIONS(3330), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240746,88 +241125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54515] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5108), 1, - anon_sym_in, - ACTIONS(5110), 1, - anon_sym_BANGin, - ACTIONS(5138), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54625] = 3, + [54564] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 13, + ACTIONS(3328), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -240841,7 +241142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3399), 31, + ACTIONS(3326), 31, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, @@ -240873,14 +241174,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGin, anon_sym_COLON_EQ, anon_sym_DOT_DOT, - [54677] = 4, + [54616] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2679), 1, + ACTIONS(2732), 1, anon_sym_LBRACK, - ACTIONS(5140), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 41, + ACTIONS(3412), 1, + anon_sym_LBRACE, + ACTIONS(2727), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -240922,293 +241223,289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [54730] = 18, + [54669] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(2732), 2, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(5154), 1, - anon_sym_QMARK, - ACTIONS(5156), 1, - anon_sym_BANG, - ACTIONS(5158), 1, - anon_sym_LBRACK2, - ACTIONS(5160), 1, - anon_sym_CARET, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, - sym_or_block, - STATE(4263), 1, - sym_type_parameters, - ACTIONS(2179), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5146), 3, + ACTIONS(3410), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2727), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 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(5148), 5, + ACTIONS(2725), 27, + anon_sym_SEMI, + 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(2177), 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_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, - [54811] = 18, - ACTIONS(3), 1, + anon_sym_DOT_DOT, + [54724] = 24, + ACTIONS(495), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5038), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5040), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, + anon_sym_DASH_DASH, + ACTIONS(5044), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5046), 1, anon_sym_BANG, - ACTIONS(5158), 1, - anon_sym_LBRACK2, - ACTIONS(5160), 1, - anon_sym_CARET, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - STATE(2809), 1, + ACTIONS(5054), 1, + anon_sym_or, + ACTIONS(5056), 1, + anon_sym_is, + ACTIONS(5058), 1, + anon_sym_BANGis, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(5076), 1, + anon_sym_BANGin, + ACTIONS(5114), 1, + anon_sym_AMP_AMP, + ACTIONS(5116), 1, + anon_sym_PIPE_PIPE, + STATE(2595), 1, sym_argument_list, - STATE(2814), 1, + STATE(2596), 1, sym_or_block, - STATE(4263), 1, + STATE(4386), 1, sym_type_parameters, - ACTIONS(2059), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5146), 3, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3584), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5068), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5148), 5, + anon_sym_CARET, + ACTIONS(5072), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5070), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2057), 17, + [54817] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5026), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5040), 1, anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5054), 1, anon_sym_or, + ACTIONS(5056), 1, anon_sym_is, + ACTIONS(5058), 1, anon_sym_BANGis, + ACTIONS(5074), 1, anon_sym_in, + ACTIONS(5076), 1, anon_sym_BANGin, - [54892] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, - anon_sym_LBRACK, - ACTIONS(5154), 1, - anon_sym_QMARK, - ACTIONS(5156), 1, - anon_sym_BANG, - ACTIONS(5158), 1, - anon_sym_LBRACK2, - ACTIONS(5160), 1, - anon_sym_CARET, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5170), 1, + ACTIONS(5114), 1, anon_sym_AMP_AMP, - ACTIONS(5172), 1, - anon_sym_in, - ACTIONS(5174), 1, - anon_sym_BANGin, - STATE(2809), 1, + ACTIONS(5116), 1, + anon_sym_PIPE_PIPE, + STATE(2595), 1, sym_argument_list, - STATE(2814), 1, + STATE(2596), 1, sym_or_block, - STATE(4263), 1, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5166), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5146), 3, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3588), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5068), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5168), 4, + anon_sym_CARET, + ACTIONS(5072), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5148), 5, + ACTIONS(5070), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 10, + [54910] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5026), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5040), 1, anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5054), 1, anon_sym_or, + ACTIONS(5056), 1, anon_sym_is, + ACTIONS(5058), 1, anon_sym_BANGis, - [54983] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2011), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, - anon_sym_LBRACK, - ACTIONS(5154), 1, - anon_sym_QMARK, - ACTIONS(5156), 1, - anon_sym_BANG, - ACTIONS(5158), 1, - anon_sym_LBRACK2, - ACTIONS(5160), 1, - anon_sym_CARET, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5172), 1, + ACTIONS(5074), 1, anon_sym_in, - ACTIONS(5174), 1, + ACTIONS(5076), 1, anon_sym_BANGin, - STATE(2809), 1, + ACTIONS(5114), 1, + anon_sym_AMP_AMP, + ACTIONS(5116), 1, + anon_sym_PIPE_PIPE, + STATE(2595), 1, sym_argument_list, - STATE(2814), 1, + STATE(2596), 1, sym_or_block, - STATE(4263), 1, + STATE(4386), 1, sym_type_parameters, - ACTIONS(5166), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5146), 3, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3596), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + ACTIONS(5068), 4, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5168), 4, + anon_sym_CARET, + ACTIONS(5072), 6, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5148), 5, + ACTIONS(5070), 8, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [55072] = 14, + [55003] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, ACTIONS(5152), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5154), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5156), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, anon_sym_LBRACK2, ACTIONS(5162), 1, anon_sym_QMARK_DOT, ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, + STATE(2801), 1, sym_or_block, - STATE(4263), 1, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, sym_type_parameters, - ACTIONS(1879), 9, + ACTIONS(1869), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -241218,7 +241515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(1877), 23, + ACTIONS(1867), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241242,52 +241539,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55145] = 18, + [55076] = 24, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5026), 1, + anon_sym_as, + ACTIONS(5030), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_LBRACK, + ACTIONS(5040), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5042), 1, + anon_sym_DASH_DASH, + ACTIONS(5044), 1, + anon_sym_QMARK, + ACTIONS(5046), 1, + anon_sym_BANG, + ACTIONS(5054), 1, + anon_sym_or, + ACTIONS(5056), 1, + anon_sym_is, + ACTIONS(5058), 1, + anon_sym_BANGis, + ACTIONS(5074), 1, + anon_sym_in, + ACTIONS(5076), 1, + anon_sym_BANGin, + ACTIONS(5114), 1, + anon_sym_AMP_AMP, + ACTIONS(5116), 1, + anon_sym_PIPE_PIPE, + STATE(2595), 1, + sym_argument_list, + STATE(2596), 1, + sym_or_block, + STATE(4386), 1, + sym_type_parameters, + ACTIONS(5024), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5048), 2, + anon_sym_LBRACK2, + anon_sym_POUND_LBRACK, + ACTIONS(3592), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + ACTIONS(5068), 4, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + ACTIONS(5072), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5070), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [55169] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, ACTIONS(5152), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5154), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5156), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5158), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5160), 1, - anon_sym_CARET, + anon_sym_LBRACK2, ACTIONS(5162), 1, anon_sym_QMARK_DOT, ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, + ACTIONS(5172), 1, + anon_sym_CARET, + STATE(2801), 1, sym_or_block, - STATE(4263), 1, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, sym_type_parameters, - ACTIONS(2011), 3, + ACTIONS(1881), 3, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, - ACTIONS(5146), 3, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 3, + ACTIONS(5170), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5148), 5, + ACTIONS(5168), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 17, + ACTIONS(1941), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241305,49 +241671,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55226] = 16, + [55250] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, ACTIONS(5152), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5154), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5156), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, anon_sym_LBRACK2, ACTIONS(5162), 1, anon_sym_QMARK_DOT, ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, + STATE(2801), 1, sym_or_block, - STATE(4263), 1, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, sym_type_parameters, - ACTIONS(5150), 3, + ACTIONS(5170), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5148), 5, + ACTIONS(5168), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2011), 6, + ACTIONS(1881), 6, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, anon_sym_GT, anon_sym_DOT_DOT, - ACTIONS(2009), 18, + ACTIONS(1941), 18, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241366,112 +241732,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55303] = 23, - ACTIONS(495), 1, + [55327] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DOT, - ACTIONS(2907), 1, + ACTIONS(2732), 2, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3448), 1, - anon_sym_LPAREN, - ACTIONS(3450), 1, - anon_sym_fn, - ACTIONS(3452), 1, - anon_sym_STAR, - ACTIONS(3454), 1, - anon_sym_struct, - ACTIONS(3456), 1, + ACTIONS(2727), 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(3458), 1, anon_sym_BANG, - ACTIONS(3460), 1, anon_sym_LBRACK2, - ACTIONS(3462), 1, anon_sym_AMP, - ACTIONS(3464), 1, - anon_sym_shared, - ACTIONS(3466), 1, - anon_sym_map_LBRACK, - ACTIONS(3468), 1, - anon_sym_chan, - ACTIONS(3470), 1, - anon_sym_thread, - ACTIONS(3472), 1, - anon_sym_atomic, - STATE(3414), 1, - sym_plain_type, - STATE(4418), 1, - sym_reference_expression, - STATE(3386), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3419), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(2909), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3420), 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, - [55394] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2853), 1, - anon_sym_LBRACK, - ACTIONS(5176), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2725), 28, anon_sym_SEMI, - anon_sym_DOT, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_RBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -241483,534 +241780,599 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55447] = 4, + anon_sym_COLON_EQ, + [55380] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2669), 13, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2667), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(1881), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1941), 19, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [55500] = 4, - ACTIONS(495), 1, + anon_sym_DOT_DOT, + [55457] = 18, + ACTIONS(3), 1, sym_comment, - ACTIONS(3057), 1, - anon_sym_LBRACK, - ACTIONS(2867), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3059), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5180), 1, + anon_sym_CARET, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5174), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1941), 18, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55553] = 30, + anon_sym_DOT_DOT, + [55538] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5160), 1, - anon_sym_CARET, - ACTIONS(5162), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5170), 1, - anon_sym_AMP_AMP, - ACTIONS(5172), 1, - anon_sym_in, - ACTIONS(5174), 1, - anon_sym_BANGin, - ACTIONS(5178), 1, - anon_sym_as, ACTIONS(5180), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5182), 1, - anon_sym_DASH_DASH, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(5186), 1, - anon_sym_or, + anon_sym_in, ACTIONS(5188), 1, - anon_sym_is, - ACTIONS(5190), 1, - anon_sym_BANGis, - STATE(2809), 1, + anon_sym_BANGin, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5166), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1837), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5146), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5168), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5148), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55658] = 30, + ACTIONS(1941), 12, + anon_sym_SEMI, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_DOT_DOT, + [55625] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1835), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5160), 1, - anon_sym_CARET, - ACTIONS(5162), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5170), 1, - anon_sym_AMP_AMP, - ACTIONS(5172), 1, - anon_sym_in, - ACTIONS(5174), 1, - anon_sym_BANGin, - ACTIONS(5178), 1, - anon_sym_as, ACTIONS(5180), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5182), 1, - anon_sym_DASH_DASH, - ACTIONS(5184), 1, - anon_sym_PIPE_PIPE, + anon_sym_CARET, ACTIONS(5186), 1, - anon_sym_or, + anon_sym_in, ACTIONS(5188), 1, - anon_sym_is, + anon_sym_BANGin, ACTIONS(5190), 1, - anon_sym_BANGis, - STATE(2809), 1, + anon_sym_AMP_AMP, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5166), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(5146), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5150), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5168), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5148), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [55763] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_LBRACK, - ACTIONS(2867), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2757), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(1941), 11, anon_sym_SEMI, - anon_sym_DOT, 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, + [55714] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5180), 1, + anon_sym_CARET, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1865), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5174), 5, anon_sym_STAR, - anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1863), 18, + anon_sym_SEMI, + anon_sym_as, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [55816] = 4, + anon_sym_DOT_DOT, + [55795] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2757), 12, + ACTIONS(5002), 1, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2755), 29, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1847), 4, anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [55869] = 24, - ACTIONS(495), 1, + [55898] = 29, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5030), 1, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5040), 1, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5048), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5050), 1, + ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5052), 1, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5068), 1, - anon_sym_AMP_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5072), 1, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5074), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + STATE(2439), 1, sym_argument_list, - STATE(4298), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3564), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5062), 4, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5066), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1859), 4, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + anon_sym_DOT_DOT, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5064), 8, + ACTIONS(5174), 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, - [55962] = 14, + [56001] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(1881), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, ACTIONS(5152), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5154), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5156), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, anon_sym_LBRACK2, ACTIONS(5162), 1, anon_sym_QMARK_DOT, ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, + ACTIONS(5172), 1, + anon_sym_CARET, + ACTIONS(5198), 1, + anon_sym_AMP_AMP, + ACTIONS(5200), 1, + anon_sym_in, + ACTIONS(5202), 1, + anon_sym_BANGin, + STATE(2801), 1, sym_or_block, - STATE(4263), 1, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, sym_type_parameters, - ACTIONS(2041), 9, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5170), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2039), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5196), 4, 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(5168), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1941), 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, - anon_sym_in, - anon_sym_BANGin, - [56035] = 21, + [56092] = 23, ACTIONS(495), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(2727), 1, + anon_sym_DOT, + ACTIONS(3410), 1, + anon_sym_LBRACK, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3456), 1, anon_sym_LPAREN, - ACTIONS(3450), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3460), 1, anon_sym_STAR, - ACTIONS(3454), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3456), 1, + ACTIONS(3464), 1, anon_sym_QMARK, - ACTIONS(3458), 1, + ACTIONS(3466), 1, anon_sym_BANG, - ACTIONS(3460), 1, + ACTIONS(3468), 1, anon_sym_LBRACK2, - ACTIONS(3462), 1, + ACTIONS(3470), 1, anon_sym_AMP, - ACTIONS(3464), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3474), 1, anon_sym_map_LBRACK, - ACTIONS(3468), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3480), 1, anon_sym_atomic, - STATE(3423), 1, + STATE(3419), 1, sym_plain_type, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(563), 9, + ACTIONS(3412), 7, 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(3420), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -242023,99 +242385,113 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [56122] = 4, + [56183] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3059), 12, + ACTIONS(5150), 1, anon_sym_DOT, + ACTIONS(5152), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_QMARK, + ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5172), 1, + anon_sym_CARET, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(1865), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5170), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3057), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(5168), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1863), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_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_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_DOT_DOT, - [56175] = 21, + [56264] = 21, ACTIONS(495), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3456), 1, anon_sym_LPAREN, - ACTIONS(3450), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3460), 1, anon_sym_STAR, - ACTIONS(3454), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3456), 1, + ACTIONS(3464), 1, anon_sym_QMARK, - ACTIONS(3458), 1, + ACTIONS(3466), 1, anon_sym_BANG, - ACTIONS(3460), 1, + ACTIONS(3468), 1, anon_sym_LBRACK2, - ACTIONS(3462), 1, + ACTIONS(3470), 1, anon_sym_AMP, - ACTIONS(3464), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3474), 1, anon_sym_map_LBRACK, - ACTIONS(3468), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3480), 1, anon_sym_atomic, - STATE(3431), 1, + STATE(3435), 1, sym_plain_type, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(597), 9, + ACTIONS(623), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242125,7 +242501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, anon_sym_AT_LBRACK, - STATE(3420), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -242138,514 +242514,329 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [56262] = 24, - ACTIONS(495), 1, + [56351] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(1849), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5030), 1, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5172), 1, + anon_sym_CARET, + ACTIONS(5198), 1, + anon_sym_AMP_AMP, + ACTIONS(5200), 1, + anon_sym_in, + ACTIONS(5202), 1, + anon_sym_BANGin, + ACTIONS(5204), 1, anon_sym_as, - ACTIONS(5040), 1, + ACTIONS(5206), 1, anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, + ACTIONS(5208), 1, anon_sym_DASH_DASH, - ACTIONS(5048), 1, + ACTIONS(5210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5212), 1, anon_sym_or, - ACTIONS(5050), 1, + ACTIONS(5214), 1, anon_sym_is, - ACTIONS(5052), 1, + ACTIONS(5216), 1, anon_sym_BANGis, - ACTIONS(5068), 1, - anon_sym_AMP_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5072), 1, - anon_sym_in, - ACTIONS(5074), 1, - anon_sym_BANGin, - STATE(2537), 1, + STATE(2801), 1, sym_or_block, - STATE(2539), 1, + STATE(2802), 1, sym_argument_list, - STATE(4298), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3584), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(5062), 4, + ACTIONS(5194), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1847), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5066), 6, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5170), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5064), 8, + ACTIONS(5168), 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, - [56355] = 21, + [56456] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(1861), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5162), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, + ACTIONS(5172), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5198), 1, + anon_sym_AMP_AMP, + ACTIONS(5200), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5202), 1, anon_sym_BANGin, - STATE(2362), 1, + ACTIONS(5204), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5212), 1, + anon_sym_or, + ACTIONS(5214), 1, + anon_sym_is, + ACTIONS(5216), 1, + anon_sym_BANGis, + STATE(2801), 1, sym_or_block, - STATE(2423), 1, + STATE(2802), 1, sym_argument_list, - STATE(4072), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(1859), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5170), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5196), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5168), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 12, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_DOT_DOT, - [56442] = 18, + [56561] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5162), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, + ACTIONS(5172), 1, anon_sym_CARET, - STATE(2362), 1, + STATE(2801), 1, sym_or_block, - STATE(2423), 1, + STATE(2802), 1, sym_argument_list, - STATE(4072), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(2011), 2, + ACTIONS(2067), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + anon_sym_DOT_DOT, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5170), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5194), 5, + ACTIONS(5168), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 18, - anon_sym_SEMI, + ACTIONS(2065), 17, anon_sym_as, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [56523] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2674), 1, - anon_sym_LBRACK, - ACTIONS(2909), 1, anon_sym_LBRACE, - ACTIONS(2669), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_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, - [56576] = 24, + [56642] = 21, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, + ACTIONS(3454), 1, + sym_identifier, + ACTIONS(3456), 1, anon_sym_LPAREN, - ACTIONS(5022), 1, - anon_sym_LBRACK, - ACTIONS(5024), 1, + ACTIONS(3458), 1, + anon_sym_fn, + ACTIONS(3460), 1, + anon_sym_STAR, + ACTIONS(3462), 1, + anon_sym_struct, + ACTIONS(3464), 1, anon_sym_QMARK, - ACTIONS(5026), 1, + ACTIONS(3466), 1, anon_sym_BANG, - ACTIONS(5030), 1, - anon_sym_as, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_is, - ACTIONS(5052), 1, - anon_sym_BANGis, - ACTIONS(5068), 1, - anon_sym_AMP_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5072), 1, - anon_sym_in, - ACTIONS(5074), 1, - anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, + ACTIONS(3468), 1, anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3588), 4, + ACTIONS(3470), 1, + anon_sym_AMP, + ACTIONS(3472), 1, + anon_sym_shared, + ACTIONS(3474), 1, + anon_sym_map_LBRACK, + ACTIONS(3476), 1, + anon_sym_chan, + ACTIONS(3478), 1, + anon_sym_thread, + ACTIONS(3480), 1, + anon_sym_atomic, + STATE(3423), 1, + sym_plain_type, + STATE(4436), 1, + sym_reference_expression, + STATE(3380), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3437), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + ACTIONS(619), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(5062), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5066), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5064), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56669] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1833), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5200), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56772] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(1837), 4, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(5200), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56875] = 21, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_AT_LBRACK, + STATE(3444), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [56729] = 21, ACTIONS(495), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3448), 1, + ACTIONS(3456), 1, anon_sym_LPAREN, - ACTIONS(3450), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3452), 1, + ACTIONS(3460), 1, anon_sym_STAR, - ACTIONS(3454), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3456), 1, + ACTIONS(3464), 1, anon_sym_QMARK, - ACTIONS(3458), 1, + ACTIONS(3466), 1, anon_sym_BANG, - ACTIONS(3460), 1, + ACTIONS(3468), 1, anon_sym_LBRACK2, - ACTIONS(3462), 1, + ACTIONS(3470), 1, anon_sym_AMP, - ACTIONS(3464), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3466), 1, + ACTIONS(3474), 1, anon_sym_map_LBRACK, - ACTIONS(3468), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3480), 1, anon_sym_atomic, - STATE(3439), 1, + STATE(3422), 1, sym_plain_type, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(593), 9, + ACTIONS(585), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -242655,7 +242846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, anon_sym_AT_LBRACK, - STATE(3420), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -242668,48 +242859,110 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [56962] = 16, + [56816] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5162), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - STATE(2362), 1, + STATE(2801), 1, sym_or_block, - STATE(2423), 1, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(1853), 9, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(1851), 23, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [56889] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5180), 1, + anon_sym_CARET, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5196), 3, + ACTIONS(2067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2011), 5, + ACTIONS(5178), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 19, + ACTIONS(2065), 18, anon_sym_SEMI, anon_sym_as, anon_sym_EQ_EQ, @@ -242720,7 +242973,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, @@ -242729,44 +242981,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [57039] = 4, - ACTIONS(495), 1, + [56970] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(2759), 1, - anon_sym_LBRACK, - STATE(2534), 1, - sym_type_parameters, - ACTIONS(2761), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(2653), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(3201), 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(3199), 29, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -242778,16 +243029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57092] = 5, + anon_sym_DOT_DOT, + [57023] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(2907), 2, + ACTIONS(2653), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(2669), 12, + ACTIONS(2649), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -242800,16 +243049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2667), 27, + ACTIONS(2647), 29, anon_sym_SEMI, anon_sym_as, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_COLON, anon_sym_PLUS_PLUS, @@ -242828,128 +243079,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_DOT_DOT, - [57147] = 24, + [57076] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(5020), 1, - anon_sym_LPAREN, - ACTIONS(5022), 1, + ACTIONS(2641), 1, anon_sym_LBRACK, - ACTIONS(5024), 1, - anon_sym_QMARK, - ACTIONS(5026), 1, - anon_sym_BANG, - ACTIONS(5030), 1, - anon_sym_as, - ACTIONS(5040), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5042), 1, - anon_sym_DASH_DASH, - ACTIONS(5048), 1, - anon_sym_or, - ACTIONS(5050), 1, - anon_sym_is, - ACTIONS(5052), 1, - anon_sym_BANGis, - ACTIONS(5068), 1, - anon_sym_AMP_AMP, - ACTIONS(5070), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5072), 1, - anon_sym_in, - ACTIONS(5074), 1, - anon_sym_BANGin, - STATE(2537), 1, - sym_or_block, - STATE(2539), 1, - sym_argument_list, - STATE(4298), 1, - sym_type_parameters, - ACTIONS(5018), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5028), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3578), 4, + ACTIONS(5218), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5062), 4, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - ACTIONS(5066), 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(5064), 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, - [57240] = 18, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [57129] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(1881), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5162), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, + ACTIONS(5172), 1, anon_sym_CARET, - STATE(2362), 1, + ACTIONS(5200), 1, + anon_sym_in, + ACTIONS(5202), 1, + anon_sym_BANGin, + STATE(2801), 1, sym_or_block, - STATE(2423), 1, + STATE(2802), 1, sym_argument_list, - STATE(4072), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(2179), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5166), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5170), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5194), 5, + ACTIONS(5196), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5168), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2177), 18, - anon_sym_SEMI, + ACTIONS(1941), 11, anon_sym_as, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_AMP_AMP, @@ -242957,211 +243195,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [57321] = 14, - ACTIONS(3), 1, + [57218] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, - anon_sym_QMARK, - ACTIONS(5156), 1, - anon_sym_BANG, - ACTIONS(5158), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, - sym_or_block, - STATE(4263), 1, + STATE(2597), 1, sym_type_parameters, - ACTIONS(2011), 9, + ACTIONS(2715), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2009), 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, - [57394] = 18, - ACTIONS(3), 1, + [57271] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(2647), 1, + anon_sym_LBRACK, + ACTIONS(2651), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2649), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4996), 1, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, - anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2059), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5194), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2057), 18, - anon_sym_SEMI, - anon_sym_as, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [57475] = 22, - ACTIONS(3), 1, + [57324] = 4, + ACTIONS(495), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(2871), 1, + anon_sym_LBRACK, + ACTIONS(5220), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4996), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5200), 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(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 11, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_DOT_DOT, - [57564] = 3, + anon_sym_in, + anon_sym_BANGin, + [57377] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2979), 1, + ACTIONS(3199), 1, anon_sym_LBRACK, - ACTIONS(2981), 41, + ACTIONS(2651), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3201), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, @@ -243196,28 +243391,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57614] = 3, + [57430] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 13, + ACTIONS(5150), 1, anon_sym_DOT, + ACTIONS(5152), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_QMARK, + ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(1881), 9, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2755), 29, + ACTIONS(1941), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, anon_sym_EQ_EQ, @@ -243225,7 +243437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -243235,20 +243446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57664] = 3, + [57503] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(3360), 1, anon_sym_LBRACK, - ACTIONS(3283), 41, + ACTIONS(3362), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243290,12 +243497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57714] = 3, + [57553] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3285), 1, + ACTIONS(3267), 1, anon_sym_LBRACK, - ACTIONS(3287), 41, + ACTIONS(5222), 1, + anon_sym_BANG, + ACTIONS(3269), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243320,7 +243529,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, @@ -243337,12 +243545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57764] = 3, + [57605] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3289), 1, + ACTIONS(3342), 1, anon_sym_LBRACK, - ACTIONS(3291), 41, + ACTIONS(3344), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243384,12 +243592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57814] = 3, + [57655] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3011), 1, anon_sym_LBRACK, - ACTIONS(3295), 41, + ACTIONS(3013), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243431,12 +243639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57864] = 3, + [57705] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3377), 1, + ACTIONS(3047), 1, anon_sym_LBRACK, - ACTIONS(3379), 41, + ACTIONS(3049), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243478,12 +243686,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57914] = 3, + [57755] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3381), 1, + ACTIONS(3051), 1, anon_sym_LBRACK, - ACTIONS(3383), 41, + ACTIONS(3053), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243525,17 +243733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [57964] = 3, + [57805] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3385), 1, + ACTIONS(2729), 1, + anon_sym_DOT, + ACTIONS(3410), 1, anon_sym_LBRACK, - ACTIONS(3387), 41, + ACTIONS(3412), 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, @@ -243572,12 +243781,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58014] = 3, + [57857] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3389), 1, + ACTIONS(3055), 1, anon_sym_LBRACK, - ACTIONS(3391), 41, + ACTIONS(3057), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243619,12 +243828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58064] = 3, + [57907] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3349), 1, + ACTIONS(3059), 1, anon_sym_LBRACK, - ACTIONS(3351), 41, + ACTIONS(3061), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243666,73 +243875,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58114] = 17, + [57957] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(3227), 1, + anon_sym_DOT_DOT, + ACTIONS(3225), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(3229), 12, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5096), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3232), 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, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2179), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 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(5082), 3, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [58011] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3217), 1, + anon_sym_DOT_DOT, + ACTIONS(3215), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_EQ, + ACTIONS(3219), 12, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 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(5084), 5, + ACTIONS(3222), 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, - ACTIONS(2177), 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, + [58065] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2983), 1, + anon_sym_LBRACK, + ACTIONS(2985), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [58192] = 3, + [58115] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3185), 1, + ACTIONS(3081), 1, anon_sym_LBRACK, - ACTIONS(3187), 41, + ACTIONS(3083), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243774,12 +244067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58242] = 3, + [58165] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3257), 1, + ACTIONS(2979), 1, anon_sym_LBRACK, - ACTIONS(3259), 41, + ACTIONS(2981), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243821,12 +244114,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58292] = 3, + [58215] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3357), 1, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(3199), 1, anon_sym_LBRACK, - ACTIONS(3359), 41, + ACTIONS(3201), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [58267] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3376), 1, + anon_sym_LBRACK, + ACTIONS(3378), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243868,12 +244209,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58342] = 3, + [58317] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, + anon_sym_SEMI, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5224), 1, + anon_sym_COMMA, + ACTIONS(5236), 1, + anon_sym_CARET, + ACTIONS(5238), 1, + anon_sym_AMP_AMP, + ACTIONS(5240), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5242), 1, + anon_sym_in, + ACTIONS(5244), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4017), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5226), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5228), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [58421] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3361), 1, + ACTIONS(3354), 1, anon_sym_LBRACK, - ACTIONS(3363), 41, + ACTIONS(3356), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243915,12 +244330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58392] = 3, + [58471] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3365), 1, + ACTIONS(3085), 1, anon_sym_LBRACK, - ACTIONS(3367), 41, + ACTIONS(3087), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -243962,12 +244377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58442] = 3, + [58521] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3253), 1, + ACTIONS(3203), 1, anon_sym_LBRACK, - ACTIONS(3255), 41, + ACTIONS(3205), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244009,12 +244424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58492] = 3, + [58571] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3159), 1, + ACTIONS(3398), 1, anon_sym_LBRACK, - ACTIONS(3161), 41, + ACTIONS(3400), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244056,42 +244471,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58542] = 3, - ACTIONS(495), 1, + [58621] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3209), 1, - anon_sym_LBRACK, - ACTIONS(3211), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2649), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2647), 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_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -244099,16 +244512,18 @@ 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, - [58592] = 3, + [58671] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3093), 1, anon_sym_LBRACK, - ACTIONS(3397), 41, + ACTIONS(3095), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244150,42 +244565,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58642] = 3, - ACTIONS(495), 1, + [58721] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3229), 1, - anon_sym_LBRACK, - ACTIONS(3231), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(2685), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2683), 29, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -244193,16 +244606,18 @@ 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, - [58692] = 3, + [58771] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3399), 1, + ACTIONS(3101), 1, anon_sym_LBRACK, - ACTIONS(3401), 41, + ACTIONS(3103), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244244,7 +244659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58742] = 3, + [58821] = 3, ACTIONS(495), 1, sym_comment, ACTIONS(3127), 1, @@ -244291,12 +244706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58792] = 3, + [58871] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3225), 1, + ACTIONS(3139), 1, anon_sym_LBRACK, - ACTIONS(3227), 41, + ACTIONS(3141), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244338,12 +244753,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58842] = 3, + [58921] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3329), 1, + ACTIONS(2913), 1, anon_sym_LBRACK, - ACTIONS(3331), 41, + ACTIONS(2915), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244385,12 +244800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58892] = 3, + [58971] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3171), 1, anon_sym_LBRACK, - ACTIONS(3223), 41, + ACTIONS(3173), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244432,86 +244847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [58942] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_LBRACE, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5108), 1, - anon_sym_in, - ACTIONS(5110), 1, - anon_sym_BANGin, - ACTIONS(5212), 1, - anon_sym_COMMA, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3961), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [59046] = 3, + [59021] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3411), 1, + ACTIONS(3089), 1, anon_sym_LBRACK, - ACTIONS(3413), 41, + ACTIONS(3091), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244553,12 +244894,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59096] = 3, + [59071] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3213), 1, + ACTIONS(3422), 1, anon_sym_LBRACK, - ACTIONS(3215), 41, + ACTIONS(3424), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244600,12 +244941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59146] = 3, + [59121] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3442), 1, + ACTIONS(3195), 1, anon_sym_LBRACK, - ACTIONS(3444), 41, + ACTIONS(3197), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244647,156 +244988,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59196] = 28, - ACTIONS(3), 1, + [59171] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(3235), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5224), 1, - anon_sym_CARET, - ACTIONS(5226), 1, - anon_sym_AMP_AMP, - ACTIONS(5228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5230), 1, - anon_sym_in, - ACTIONS(5232), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5220), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1833), 3, + ACTIONS(3237), 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_COLON_EQ, - ACTIONS(5214), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5218), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5222), 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(5216), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [59296] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5224), 1, anon_sym_CARET, - ACTIONS(5226), 1, - anon_sym_AMP_AMP, - ACTIONS(5228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5230), 1, - anon_sym_in, - ACTIONS(5232), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5220), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(1837), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5214), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5218), 3, - anon_sym_SLASH, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5222), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5216), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [59396] = 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, + [59221] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2759), 1, + ACTIONS(3187), 1, anon_sym_LBRACK, - ACTIONS(2761), 41, + ACTIONS(3189), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244838,86 +245082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59446] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3504), 1, - anon_sym_SEMI, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5224), 1, - anon_sym_CARET, - ACTIONS(5226), 1, - anon_sym_AMP_AMP, - ACTIONS(5228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5230), 1, - anon_sym_in, - ACTIONS(5232), 1, - anon_sym_BANGin, - ACTIONS(5234), 1, - anon_sym_COMMA, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(3845), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5220), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5214), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5218), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5222), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5216), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [59550] = 3, + [59271] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3431), 1, + ACTIONS(3239), 1, anon_sym_LBRACK, - ACTIONS(3433), 41, + ACTIONS(3241), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -244959,12 +245129,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59600] = 3, + [59321] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3325), 1, + ACTIONS(2905), 1, anon_sym_LBRACK, - ACTIONS(3327), 41, + ACTIONS(2907), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245006,12 +245176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59650] = 3, + [59371] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(3406), 1, anon_sym_LBRACK, - ACTIONS(3323), 41, + ACTIONS(3408), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245053,12 +245223,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59700] = 3, + [59421] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3427), 1, + ACTIONS(3277), 1, anon_sym_LBRACK, - ACTIONS(3429), 41, + ACTIONS(3279), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245100,12 +245270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59750] = 3, + [59471] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3293), 1, anon_sym_LBRACK, - ACTIONS(3243), 41, + ACTIONS(3295), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245147,21 +245317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59800] = 4, + [59521] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3096), 1, + ACTIONS(3297), 1, anon_sym_LBRACK, - ACTIONS(3091), 6, + ACTIONS(3299), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3093), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -245195,21 +245364,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59852] = 4, + [59571] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3106), 1, + ACTIONS(3446), 1, anon_sym_LBRACK, - ACTIONS(3101), 6, + ACTIONS(3448), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3103), 35, anon_sym_DOT, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -245243,12 +245411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59904] = 3, + [59621] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(3338), 1, anon_sym_LBRACK, - ACTIONS(3137), 41, + ACTIONS(3340), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245290,12 +245458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [59954] = 3, + [59671] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(3301), 1, anon_sym_LBRACK, - ACTIONS(3319), 41, + ACTIONS(3303), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245337,12 +245505,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60004] = 3, + [59721] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3297), 1, + ACTIONS(3334), 1, anon_sym_LBRACK, - ACTIONS(3299), 41, + ACTIONS(3336), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245384,12 +245552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60054] = 3, + [59771] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3261), 1, + ACTIONS(3330), 1, anon_sym_LBRACK, - ACTIONS(3263), 41, + ACTIONS(3332), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245431,12 +245599,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60104] = 3, + [59821] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(3305), 1, anon_sym_LBRACK, - ACTIONS(3311), 41, + ACTIONS(3307), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245478,12 +245646,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60154] = 3, + [59871] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3265), 1, + ACTIONS(3316), 1, anon_sym_LBRACK, - ACTIONS(3267), 41, + ACTIONS(3318), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245525,73 +245693,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60204] = 17, - ACTIONS(3), 1, + [59921] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(3320), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5096), 1, - anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2011), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(3322), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5082), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5084), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2009), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [60282] = 3, + [59971] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3269), 1, + ACTIONS(3430), 1, anon_sym_LBRACK, - ACTIONS(3271), 41, + ACTIONS(3432), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245633,12 +245787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60332] = 3, + [60021] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3193), 1, + ACTIONS(3364), 1, anon_sym_LBRACK, - ACTIONS(3195), 41, + ACTIONS(3366), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245680,12 +245834,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60382] = 3, + [60071] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3326), 1, anon_sym_LBRACK, - ACTIONS(3307), 41, + ACTIONS(3328), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245727,73 +245881,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60432] = 17, - ACTIONS(3), 1, + [60121] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(3207), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5096), 1, - anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2059), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(3209), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5082), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5084), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2057), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [60510] = 3, + [60171] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3189), 1, + ACTIONS(3438), 1, anon_sym_LBRACK, - ACTIONS(3191), 41, + ACTIONS(3440), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245835,12 +245975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60560] = 3, + [60221] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(3372), 1, anon_sym_LBRACK, - ACTIONS(3425), 41, + ACTIONS(3374), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245882,12 +246022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60610] = 3, + [60271] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3181), 1, + ACTIONS(3442), 1, anon_sym_LBRACK, - ACTIONS(3183), 41, + ACTIONS(3444), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -245929,44 +246069,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60660] = 5, - ACTIONS(3), 1, + [60321] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_else, - STATE(2693), 1, - sym_else_branch, - ACTIONS(2509), 13, + ACTIONS(3402), 1, + anon_sym_LBRACK, + ACTIONS(3404), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, + anon_sym_CARET, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2507), 27, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [60371] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3380), 1, + anon_sym_LBRACK, + ACTIONS(3382), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -245978,163 +246163,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60714] = 31, + [60421] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(5150), 1, anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, ACTIONS(5152), 1, - anon_sym_LBRACK, + anon_sym_LPAREN, ACTIONS(5154), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(5156), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, anon_sym_LBRACK2, ACTIONS(5162), 1, anon_sym_QMARK_DOT, ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - ACTIONS(5178), 1, - anon_sym_as, - ACTIONS(5180), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5182), 1, - anon_sym_DASH_DASH, - ACTIONS(5186), 1, - anon_sym_or, - ACTIONS(5188), 1, - anon_sym_is, - ACTIONS(5190), 1, - anon_sym_BANGis, - ACTIONS(5238), 1, - anon_sym_LBRACE, - ACTIONS(5250), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5254), 1, - anon_sym_AMP_AMP, - ACTIONS(5256), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5258), 1, - anon_sym_in, - ACTIONS(5260), 1, - anon_sym_BANGin, - ACTIONS(5262), 1, - anon_sym_DOT_DOT, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, + STATE(2801), 1, sym_or_block, - STATE(4263), 1, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, sym_type_parameters, - ACTIONS(5246), 2, + ACTIONS(2067), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(5240), 3, + anon_sym_DOT_DOT, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5244), 3, + ACTIONS(5250), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5248), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5242), 5, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [60820] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1835), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, - anon_sym_LBRACK, - ACTIONS(5154), 1, - anon_sym_QMARK, - ACTIONS(5156), 1, - anon_sym_BANG, - ACTIONS(5158), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5178), 1, + ACTIONS(2065), 16, anon_sym_as, - ACTIONS(5180), 1, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, - ACTIONS(5182), 1, anon_sym_DASH_DASH, - ACTIONS(5186), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5188), 1, anon_sym_is, - ACTIONS(5190), 1, anon_sym_BANGis, - ACTIONS(5252), 1, - anon_sym_CARET, - ACTIONS(5254), 1, - anon_sym_AMP_AMP, - ACTIONS(5256), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5258), 1, anon_sym_in, - ACTIONS(5260), 1, anon_sym_BANGin, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, - sym_or_block, - STATE(4263), 1, - sym_type_parameters, - ACTIONS(1833), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5246), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5240), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5244), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5248), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5242), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [60924] = 4, + [60501] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3061), 1, + ACTIONS(3131), 1, anon_sym_LBRACK, - ACTIONS(5264), 1, - anon_sym_BANG, - ACTIONS(3063), 40, + ACTIONS(3133), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246159,6 +246255,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, @@ -246175,205 +246272,329 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [60976] = 5, + [60551] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5236), 1, - anon_sym_else, - STATE(2689), 1, - sym_else_branch, - ACTIONS(2515), 13, + ACTIONS(5150), 1, anon_sym_DOT, + ACTIONS(5152), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_QMARK, + ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5252), 1, + anon_sym_CARET, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(1865), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5250), 3, anon_sym_SLASH, - anon_sym_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(2513), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1863), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_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, - [61030] = 28, + [60631] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(1881), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5096), 1, + ACTIONS(5252), 1, anon_sym_CARET, - ACTIONS(5098), 1, + ACTIONS(5258), 1, anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5108), 1, + ACTIONS(5260), 1, anon_sym_in, - ACTIONS(5110), 1, + ACTIONS(5262), 1, anon_sym_BANGin, - STATE(2362), 1, + STATE(2801), 1, sym_or_block, - STATE(2423), 1, + STATE(2802), 1, sym_argument_list, - STATE(4072), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5254), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(1837), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5082), 3, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5250), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5256), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61130] = 28, + ACTIONS(1941), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [60721] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(1881), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5260), 1, + anon_sym_in, + ACTIONS(5262), 1, + anon_sym_BANGin, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(5254), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5246), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1941), 10, anon_sym_as, - ACTIONS(5092), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5100), 1, anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5108), 1, - anon_sym_in, - ACTIONS(5110), 1, - anon_sym_BANGin, - STATE(2362), 1, + [60809] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_QMARK, + ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5252), 1, + anon_sym_CARET, + STATE(2801), 1, sym_or_block, - STATE(2423), 1, + STATE(2802), 1, sym_argument_list, - STATE(4072), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(1881), 3, anon_sym_LT, anon_sym_GT, - ACTIONS(1833), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5082), 3, + anon_sym_DOT_DOT, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5250), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1941), 16, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + 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, + [60889] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_QMARK, + ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5248), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [61230] = 3, + ACTIONS(1881), 6, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_DOT_DOT, + ACTIONS(1941), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [60965] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(3281), 1, anon_sym_LBRACK, - ACTIONS(2991), 41, + ACTIONS(3283), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246415,12 +246636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61280] = 3, + [61015] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3175), 1, + ACTIONS(3015), 1, anon_sym_LBRACK, - ACTIONS(3177), 41, + ACTIONS(3017), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246462,213 +246683,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61330] = 28, - ACTIONS(3), 1, + [61065] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(3414), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5224), 1, - anon_sym_CARET, - ACTIONS(5226), 1, - anon_sym_AMP_AMP, - ACTIONS(5228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5230), 1, - anon_sym_in, - ACTIONS(5232), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5220), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3556), 3, + ACTIONS(3416), 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_COLON_EQ, - ACTIONS(5214), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5218), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5222), 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(5216), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [61430] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5096), 1, anon_sym_CARET, - ACTIONS(5108), 1, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5110), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + [61115] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3410), 1, + anon_sym_LBRACK, + ACTIONS(3412), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 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(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [61514] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5108), 1, anon_sym_in, - ACTIONS(5110), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + [61165] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2999), 1, + anon_sym_LBRACK, + ACTIONS(3001), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5090), 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(5084), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_COLON_EQ, - [61600] = 3, + anon_sym_in, + anon_sym_BANGin, + [61215] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3201), 1, + ACTIONS(3346), 1, anon_sym_LBRACK, - ACTIONS(3203), 41, + ACTIONS(3348), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246710,12 +246871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61650] = 3, + [61265] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2933), 1, + ACTIONS(3175), 1, anon_sym_LBRACK, - ACTIONS(2935), 41, + ACTIONS(3177), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246757,17 +246918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61700] = 4, + [61315] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(3057), 1, + ACTIONS(3350), 1, anon_sym_LBRACK, - ACTIONS(3059), 40, + ACTIONS(3352), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -246805,12 +246965,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61752] = 3, + [61365] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5236), 1, + anon_sym_CARET, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(2067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5226), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5228), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2065), 17, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [61443] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3386), 1, anon_sym_LBRACK, - ACTIONS(3173), 41, + ACTIONS(3388), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246852,12 +247073,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61802] = 3, + [61493] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2911), 1, + ACTIONS(3179), 1, anon_sym_LBRACK, - ACTIONS(2913), 41, + ACTIONS(3181), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246899,12 +247120,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61852] = 3, + [61543] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5236), 1, + anon_sym_CARET, + ACTIONS(5238), 1, + anon_sym_AMP_AMP, + ACTIONS(5240), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5242), 1, + anon_sym_in, + ACTIONS(5244), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1847), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5226), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5228), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [61643] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5236), 1, + anon_sym_CARET, + ACTIONS(5238), 1, + anon_sym_AMP_AMP, + ACTIONS(5240), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5242), 1, + anon_sym_in, + ACTIONS(5244), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1859), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5226), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5228), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [61743] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2915), 1, + ACTIONS(3191), 1, anon_sym_LBRACK, - ACTIONS(2917), 41, + ACTIONS(3193), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246946,12 +247311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61902] = 3, + [61793] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2919), 1, + ACTIONS(2713), 1, anon_sym_LBRACK, - ACTIONS(2921), 41, + ACTIONS(2715), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -246993,18 +247358,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [61952] = 4, - ACTIONS(495), 1, + [61843] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(2671), 1, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5236), 1, + anon_sym_CARET, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1865), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, anon_sym_DOT, - ACTIONS(2907), 1, + anon_sym_QMARK_DOT, + ACTIONS(5226), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5228), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1863), 17, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_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, + [61921] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3394), 1, anon_sym_LBRACK, - ACTIONS(2909), 40, + ACTIONS(3396), 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, @@ -247029,121 +247454,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [61971] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5236), 1, + anon_sym_CARET, + ACTIONS(5238), 1, + anon_sym_AMP_AMP, + ACTIONS(5242), 1, + anon_sym_in, + ACTIONS(5244), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5226), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5228), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, + ACTIONS(1941), 10, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62004] = 15, + anon_sym_COLON_EQ, + [62057] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5236), 1, + anon_sym_CARET, + ACTIONS(5242), 1, + anon_sym_in, + ACTIONS(5244), 1, + anon_sym_BANGin, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5218), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2011), 5, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5226), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5216), 5, + ACTIONS(5230), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 18, + ACTIONS(1941), 11, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, anon_sym_COLON_EQ, - [62078] = 17, + [62141] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5236), 1, anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2011), 2, + ACTIONS(1881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5214), 3, + ACTIONS(5226), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5218), 3, + ACTIONS(5230), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5216), 5, + ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 17, + ACTIONS(1941), 17, anon_sym_SEMI, anon_sym_as, anon_sym_COMMA, @@ -247161,91 +247656,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [62156] = 30, + [62219] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1839), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5178), 1, - anon_sym_as, - ACTIONS(5180), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5182), 1, - anon_sym_DASH_DASH, - ACTIONS(5186), 1, - anon_sym_or, - ACTIONS(5188), 1, - anon_sym_is, - ACTIONS(5190), 1, - anon_sym_BANGis, - ACTIONS(5252), 1, - anon_sym_CARET, - ACTIONS(5254), 1, - anon_sym_AMP_AMP, - ACTIONS(5256), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5258), 1, - anon_sym_in, - ACTIONS(5260), 1, - anon_sym_BANGin, - STATE(2809), 1, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(1837), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(5246), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5240), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5244), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5230), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5248), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5242), 5, + ACTIONS(1881), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [62260] = 3, + ACTIONS(1941), 18, + anon_sym_SEMI, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_COLON_EQ, + [62293] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2929), 1, + ACTIONS(3309), 1, anon_sym_LBRACK, - ACTIONS(2931), 41, + ACTIONS(3313), 1, + anon_sym_DOT, + ACTIONS(3311), 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, @@ -247282,18 +247763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62310] = 4, + [62345] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3435), 1, + ACTIONS(3211), 1, anon_sym_LBRACK, - ACTIONS(3439), 1, - anon_sym_DOT, - ACTIONS(3437), 40, + ACTIONS(3213), 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, @@ -247330,12 +247810,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62362] = 3, + [62395] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_QMARK, + ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5204), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5212), 1, + anon_sym_or, + ACTIONS(5214), 1, + anon_sym_is, + ACTIONS(5216), 1, + anon_sym_BANGis, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5258), 1, + anon_sym_AMP_AMP, + ACTIONS(5260), 1, + anon_sym_in, + ACTIONS(5262), 1, + anon_sym_BANGin, + ACTIONS(5264), 1, + anon_sym_LBRACE, + ACTIONS(5266), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5270), 1, + anon_sym_DOT_DOT, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(5254), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5246), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5250), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [62501] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3301), 1, + ACTIONS(3183), 1, anon_sym_LBRACK, - ACTIONS(3303), 41, + ACTIONS(3185), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247377,12 +247932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62412] = 3, + [62551] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3167), 1, + ACTIONS(3289), 1, anon_sym_LBRACK, - ACTIONS(3169), 41, + ACTIONS(3291), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247424,44 +247979,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62462] = 5, - ACTIONS(3), 1, + [62601] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3091), 1, - anon_sym_DOT_DOT, - ACTIONS(3089), 5, + ACTIONS(2995), 1, + anon_sym_LBRACK, + ACTIONS(2997), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(3093), 12, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3096), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -247473,59 +248026,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62516] = 18, + [62651] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5098), 1, anon_sym_CARET, - STATE(2809), 1, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2179), 3, + ACTIONS(2067), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5240), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5244), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5242), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2177), 16, + ACTIONS(2065), 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, @@ -247535,44 +248086,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62596] = 5, - ACTIONS(3), 1, + anon_sym_COLON_EQ, + [62729] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(3101), 1, - anon_sym_DOT_DOT, - ACTIONS(3099), 5, + ACTIONS(2991), 1, + anon_sym_LBRACK, + ACTIONS(2993), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(3103), 12, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3106), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -247584,59 +248134,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62650] = 18, + [62779] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5098), 1, anon_sym_CARET, - STATE(2809), 1, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2059), 3, + ACTIONS(1865), 2, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5240), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5244), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5242), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2057), 16, + ACTIONS(1863), 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, @@ -247646,237 +248194,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [62730] = 20, + anon_sym_COLON_EQ, + [62857] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5230), 1, + ACTIONS(5100), 1, + anon_sym_AMP_AMP, + ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5232), 1, + ACTIONS(5112), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5220), 2, + ACTIONS(5090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 3, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5218), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5222), 4, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5216), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 11, - anon_sym_SEMI, + ACTIONS(1941), 10, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, anon_sym_COLON_EQ, - [62814] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3277), 1, - anon_sym_LBRACK, - ACTIONS(3279), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62864] = 23, + [62943] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5254), 1, - anon_sym_AMP_AMP, - ACTIONS(5258), 1, + ACTIONS(5110), 1, anon_sym_in, - ACTIONS(5260), 1, + ACTIONS(5112), 1, anon_sym_BANGin, - STATE(2809), 1, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5246), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5240), 3, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5244), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5248), 4, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5242), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [62954] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2865), 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(2863), 29, + ACTIONS(1941), 11, 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, - [63004] = 3, + anon_sym_COLON_EQ, + [63027] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2869), 1, + ACTIONS(3285), 1, anon_sym_LBRACK, - ACTIONS(2867), 41, + ACTIONS(3287), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -247918,192 +248371,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63054] = 22, + [63077] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2011), 1, - anon_sym_DOT_DOT, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, + ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5258), 1, - anon_sym_in, - ACTIONS(5260), 1, - anon_sym_BANGin, - STATE(2809), 1, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5246), 2, + ACTIONS(1881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5240), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5244), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5248), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5242), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 10, + ACTIONS(1941), 17, 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, - [63142] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5224), 1, - anon_sym_CARET, - ACTIONS(5226), 1, - anon_sym_AMP_AMP, - ACTIONS(5230), 1, - anon_sym_in, - ACTIONS(5232), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5220), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5214), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5218), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5222), 4, + anon_sym_COMMA, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5216), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2009), 10, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, anon_sym_is, anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, anon_sym_COLON_EQ, - [63228] = 18, + [63155] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, - anon_sym_DOT, - ACTIONS(5144), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(5152), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5154), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5156), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5158), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5252), 1, - anon_sym_CARET, - STATE(2809), 1, + STATE(2439), 1, sym_argument_list, - STATE(2814), 1, + STATE(2440), 1, sym_or_block, - STATE(4263), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2011), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(5240), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5244), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5242), 5, + ACTIONS(1881), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 16, + ACTIONS(1941), 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, @@ -248111,12 +248490,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63308] = 3, + anon_sym_COLON_EQ, + [63229] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2667), 1, + ACTIONS(3390), 1, anon_sym_LBRACK, - ACTIONS(2669), 41, + ACTIONS(3392), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248158,106 +248538,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63358] = 3, - ACTIONS(495), 1, + [63279] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2939), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1861), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5152), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, anon_sym_QMARK, + ACTIONS(5158), 1, anon_sym_BANG, + ACTIONS(5160), 1, anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, + ACTIONS(5162), 1, anon_sym_QMARK_DOT, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, + ACTIONS(5204), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5212), 1, + anon_sym_or, + ACTIONS(5214), 1, anon_sym_is, + ACTIONS(5216), 1, anon_sym_BANGis, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5258), 1, + anon_sym_AMP_AMP, + ACTIONS(5260), 1, anon_sym_in, + ACTIONS(5262), 1, anon_sym_BANGin, - [63408] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3419), 1, - anon_sym_LBRACK, - ACTIONS(3421), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(1859), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5254), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5250), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5248), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63458] = 3, + [63383] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3415), 1, + ACTIONS(3434), 1, anon_sym_LBRACK, - ACTIONS(3417), 41, + ACTIONS(3436), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248299,12 +248659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63508] = 3, + [63433] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3407), 1, + ACTIONS(3450), 1, anon_sym_LBRACK, - ACTIONS(3409), 41, + ACTIONS(3452), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248346,12 +248706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63558] = 3, + [63483] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3403), 1, + ACTIONS(3368), 1, anon_sym_LBRACK, - ACTIONS(3405), 41, + ACTIONS(3370), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248393,16 +248753,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63608] = 3, + [63533] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(2941), 1, + ACTIONS(2647), 1, anon_sym_LBRACK, - ACTIONS(2943), 41, + ACTIONS(2651), 1, + anon_sym_LBRACE, + ACTIONS(2649), 40, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, anon_sym_DOT, anon_sym_as, anon_sym_COMMA, @@ -248440,12 +248801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63658] = 3, + [63585] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2945), 1, + ACTIONS(3143), 1, anon_sym_LBRACK, - ACTIONS(2947), 41, + ACTIONS(3145), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248487,154 +248848,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63708] = 3, - ACTIONS(495), 1, + [63635] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3085), 1, - anon_sym_LBRACK, - ACTIONS(3087), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5098), 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(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - [63758] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_LBRACK, - ACTIONS(2951), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1847), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COLON_EQ, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [63735] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5098), 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(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - [63808] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_LBRACK, - ACTIONS(2867), 1, - anon_sym_LBRACE, - ACTIONS(2757), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1859), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COLON_EQ, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5086), 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, - [63860] = 3, + [63835] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2953), 1, + ACTIONS(3418), 1, anon_sym_LBRACK, - ACTIONS(2955), 41, + ACTIONS(3420), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248676,106 +249039,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [63910] = 3, - ACTIONS(495), 1, + [63885] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(2907), 1, - anon_sym_LBRACK, - ACTIONS(2909), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3512), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5098), 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(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - [63960] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3273), 1, - anon_sym_LBRACK, - ACTIONS(3275), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, + ACTIONS(5272), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(3869), 1, + aux_sym_strictly_expression_list_repeat1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5086), 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, - [64010] = 3, + [63989] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3373), 1, + ACTIONS(2987), 1, anon_sym_LBRACK, - ACTIONS(3375), 41, + ACTIONS(2989), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248817,12 +249160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64060] = 3, + [64039] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(2909), 1, anon_sym_LBRACK, - ACTIONS(3133), 41, + ACTIONS(2911), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248864,71 +249207,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64110] = 15, + [64089] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5236), 1, + anon_sym_CARET, + ACTIONS(5238), 1, + anon_sym_AMP_AMP, + ACTIONS(5240), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5242), 1, + anon_sym_in, + ACTIONS(5244), 1, + anon_sym_BANGin, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5086), 3, + ACTIONS(5232), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3554), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5226), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5230), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2011), 5, + ACTIONS(5234), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5228), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [64189] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3263), 1, + anon_sym_LBRACK, + ACTIONS(3265), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5084), 5, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2009), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [64184] = 3, + [64239] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(2975), 1, + ACTIONS(2901), 1, anon_sym_LBRACK, - ACTIONS(2977), 41, + ACTIONS(2903), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -248970,12 +249373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64234] = 3, + [64289] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3369), 1, + ACTIONS(2653), 1, anon_sym_LBRACK, - ACTIONS(3371), 41, + ACTIONS(2651), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249017,12 +249420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64284] = 3, + [64339] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3353), 1, + ACTIONS(3251), 1, anon_sym_LBRACK, - ACTIONS(3355), 41, + ACTIONS(3253), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249064,72 +249467,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64334] = 16, - ACTIONS(3), 1, + [64389] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(5142), 1, + ACTIONS(3273), 1, + anon_sym_LBRACK, + ACTIONS(3275), 41, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5144), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5152), 1, - anon_sym_LBRACK, - ACTIONS(5154), 1, - anon_sym_QMARK, - ACTIONS(5156), 1, - anon_sym_BANG, - ACTIONS(5158), 1, - anon_sym_LBRACK2, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, - sym_or_block, - STATE(4263), 1, - sym_type_parameters, - ACTIONS(5244), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5242), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2011), 6, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2009), 17, - anon_sym_as, - anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64410] = 3, + [64439] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(2897), 1, anon_sym_LBRACK, - ACTIONS(3251), 41, + ACTIONS(2899), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249171,12 +249561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64460] = 3, + [64489] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3247), 1, anon_sym_LBRACK, - ACTIONS(3165), 41, + ACTIONS(3249), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249218,20 +249608,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64510] = 3, + [64539] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3217), 1, + ACTIONS(3232), 1, anon_sym_LBRACK, - ACTIONS(3219), 41, + ACTIONS(3227), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3229), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -249265,12 +249656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64560] = 3, + [64591] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3139), 1, + ACTIONS(3426), 1, anon_sym_LBRACK, - ACTIONS(3141), 41, + ACTIONS(3428), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249312,12 +249703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64610] = 3, + [64641] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3341), 1, + ACTIONS(2725), 1, anon_sym_LBRACK, - ACTIONS(3343), 41, + ACTIONS(2727), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249359,20 +249750,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64660] = 3, + [64691] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(3337), 1, + ACTIONS(3222), 1, anon_sym_LBRACK, - ACTIONS(3339), 41, + ACTIONS(3217), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3219), 35, + anon_sym_DOT, + anon_sym_as, anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, @@ -249406,12 +249798,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64710] = 3, + [64743] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3143), 1, + ACTIONS(3025), 1, anon_sym_LBRACK, - ACTIONS(3145), 41, + ACTIONS(3027), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249453,12 +249845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64760] = 3, + [64793] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3147), 1, + ACTIONS(3255), 1, anon_sym_LBRACK, - ACTIONS(3149), 41, + ACTIONS(3257), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249500,103 +249892,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64810] = 17, + [64843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5224), 1, - anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2059), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5274), 1, + anon_sym_else, + STATE(2682), 1, + sym_else_branch, + ACTIONS(2635), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5214), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5218), 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(5216), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2057), 17, - anon_sym_SEMI, + anon_sym_DOT_DOT, + ACTIONS(2633), 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, - [64888] = 3, - ACTIONS(495), 1, + [64897] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(5274), 1, + anon_sym_else, + STATE(2683), 1, + sym_else_branch, + ACTIONS(2505), 13, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, anon_sym_SLASH, - anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2503), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -249608,12 +249990,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64938] = 3, + [64951] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3233), 1, + ACTIONS(3243), 1, anon_sym_LBRACK, - ACTIONS(3235), 41, + ACTIONS(3245), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249655,12 +250037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [64988] = 3, + [65001] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(3155), 1, + ACTIONS(3097), 1, anon_sym_LBRACK, - ACTIONS(3157), 41, + ACTIONS(3099), 41, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -249702,89 +250084,551 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65038] = 3, - ACTIONS(495), 1, + [65051] = 30, + ACTIONS(3), 1, sym_comment, - ACTIONS(3313), 1, - anon_sym_LBRACK, - ACTIONS(3315), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(1849), 1, + anon_sym_DOT_DOT, + ACTIONS(5150), 1, anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5152), 1, anon_sym_LPAREN, + ACTIONS(5154), 1, + anon_sym_LBRACK, + ACTIONS(5156), 1, + anon_sym_QMARK, + ACTIONS(5158), 1, + anon_sym_BANG, + ACTIONS(5160), 1, + anon_sym_LBRACK2, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5204), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5212), 1, + anon_sym_or, + ACTIONS(5214), 1, + anon_sym_is, + ACTIONS(5216), 1, + anon_sym_BANGis, + ACTIONS(5252), 1, + anon_sym_CARET, + ACTIONS(5258), 1, + anon_sym_AMP_AMP, + ACTIONS(5260), 1, + anon_sym_in, + ACTIONS(5262), 1, + anon_sym_BANGin, + ACTIONS(5268), 1, + anon_sym_PIPE_PIPE, + STATE(2801), 1, + sym_or_block, + STATE(2802), 1, + sym_argument_list, + STATE(4133), 1, + sym_type_parameters, + ACTIONS(1847), 2, + anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT, + ACTIONS(5254), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5246), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5250), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5256), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5248), 5, + anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65155] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5276), 1, + anon_sym_RBRACK, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65258] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + ACTIONS(5280), 1, + anon_sym_RBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65361] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + ACTIONS(5282), 1, + anon_sym_RBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + [65464] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5098), 1, + anon_sym_CARET, + ACTIONS(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(3554), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5014), 2, + anon_sym_DOT, anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5088), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5086), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65563] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5294), 1, + anon_sym_QMARK, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, + ACTIONS(5304), 1, anon_sym_BANGin, - [65088] = 3, - ACTIONS(495), 1, + STATE(1696), 1, + sym_block, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65664] = 29, + ACTIONS(3), 1, sym_comment, - ACTIONS(3333), 1, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(3335), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5146), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5306), 1, + anon_sym_QMARK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(2870), 1, + sym_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5288), 3, anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65765] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5310), 1, + anon_sym_QMARK, + ACTIONS(5308), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3311), 10, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3309), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_CARET, - anon_sym_AMP, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -249796,671 +250640,1050 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [65138] = 17, + anon_sym_COLON_EQ, + [65820] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5154), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5156), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5158), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5160), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5162), 1, + anon_sym_QMARK_DOT, + ACTIONS(5164), 1, anon_sym_POUND_LBRACK, - ACTIONS(5224), 1, + ACTIONS(5172), 1, anon_sym_CARET, - STATE(2362), 1, + ACTIONS(5198), 1, + anon_sym_AMP_AMP, + ACTIONS(5200), 1, + anon_sym_in, + ACTIONS(5202), 1, + anon_sym_BANGin, + ACTIONS(5204), 1, + anon_sym_as, + ACTIONS(5206), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5208), 1, + anon_sym_DASH_DASH, + ACTIONS(5210), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5212), 1, + anon_sym_or, + ACTIONS(5214), 1, + anon_sym_is, + ACTIONS(5216), 1, + anon_sym_BANGis, + ACTIONS(5312), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5314), 1, + anon_sym_DOT_DOT, + STATE(2801), 1, sym_or_block, - STATE(2423), 1, + STATE(2802), 1, sym_argument_list, - STATE(4072), 1, + STATE(4133), 1, sym_type_parameters, - ACTIONS(2179), 2, + ACTIONS(5194), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5166), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5170), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5196), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5168), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [65923] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5316), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_QMARK, + STATE(2171), 1, + sym_block, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5214), 3, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5218), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5216), 5, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2177), 17, - anon_sym_SEMI, + [66024] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + ACTIONS(5320), 1, + anon_sym_RBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66127] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5322), 1, + anon_sym_LBRACE, + ACTIONS(5324), 1, anon_sym_COMMA, + STATE(3893), 1, + aux_sym_match_expression_list_repeat1, + ACTIONS(3287), 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(3285), 25, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [65216] = 29, + [66182] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, - anon_sym_LBRACE, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5276), 1, - anon_sym_QMARK, - ACTIONS(5278), 1, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(1665), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5326), 1, + anon_sym_QMARK, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(2487), 1, + sym_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66283] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + ACTIONS(5328), 1, + anon_sym_RBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66386] = 30, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + ACTIONS(5330), 1, + anon_sym_RBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [66489] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3232), 1, + anon_sym_LBRACK, + ACTIONS(3229), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, + anon_sym_SLASH, anon_sym_PERCENT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65317] = 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, + [66538] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5288), 1, - anon_sym_RBRACK, - ACTIONS(5290), 1, + ACTIONS(5278), 1, anon_sym_DOT_DOT, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5332), 1, + anon_sym_RBRACK, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65420] = 29, + [66641] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(4789), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(4793), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(4795), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(4797), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(4801), 1, anon_sym_as, - ACTIONS(5092), 1, + ACTIONS(4811), 1, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, + ACTIONS(4813), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(4815), 1, + anon_sym_AMP_AMP, + ACTIONS(4817), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4819), 1, anon_sym_or, - ACTIONS(5104), 1, + ACTIONS(4821), 1, anon_sym_is, - ACTIONS(5106), 1, + ACTIONS(4823), 1, anon_sym_BANGis, - ACTIONS(5126), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(4825), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(4827), 1, anon_sym_BANGin, - ACTIONS(5292), 1, - anon_sym_QMARK, - STATE(1795), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5336), 1, + anon_sym_COLON, + ACTIONS(5338), 1, + anon_sym_CARET, + ACTIONS(5340), 1, + anon_sym_LT_DASH, + STATE(2074), 1, sym_argument_list, - STATE(4072), 1, + STATE(2075), 1, + sym_or_block, + STATE(4215), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(4785), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(4807), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(4803), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(4805), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(4809), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5334), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65521] = 30, + [66742] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, + ACTIONS(5278), 1, anon_sym_DOT_DOT, - ACTIONS(5294), 1, + ACTIONS(5342), 1, anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65624] = 28, + [66845] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5224), 1, + ACTIONS(5236), 1, anon_sym_CARET, - ACTIONS(5226), 1, + ACTIONS(5238), 1, anon_sym_AMP_AMP, - ACTIONS(5228), 1, + ACTIONS(5240), 1, anon_sym_PIPE_PIPE, - ACTIONS(5230), 1, + ACTIONS(5242), 1, anon_sym_in, - ACTIONS(5232), 1, + ACTIONS(5244), 1, anon_sym_BANGin, - ACTIONS(5296), 1, + ACTIONS(5344), 1, anon_sym_is, - ACTIONS(5298), 1, + ACTIONS(5346), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2027), 2, + ACTIONS(1931), 2, + anon_sym_SEMI, anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5220), 2, + ACTIONS(5232), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 3, + ACTIONS(5226), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5218), 3, + ACTIONS(5230), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5222), 4, + ACTIONS(5234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5216), 5, + ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65723] = 28, + [66944] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5002), 1, + anon_sym_DOT, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5224), 1, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5226), 1, - anon_sym_AMP_AMP, - ACTIONS(5228), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5230), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5232), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5300), 1, - anon_sym_is, - ACTIONS(5302), 1, - anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + ACTIONS(5348), 1, + anon_sym_RBRACK, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2027), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5220), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5214), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5218), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5222), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5216), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65822] = 29, + [67047] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, ACTIONS(5078), 1, - anon_sym_LBRACE, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, + anon_sym_as, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5278), 1, + anon_sym_or, + ACTIONS(5236), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5238), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5240), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5242), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5244), 1, anon_sym_BANGin, - ACTIONS(5304), 1, - anon_sym_QMARK, - STATE(1936), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5350), 1, + anon_sym_is, + ACTIONS(5352), 1, + anon_sym_BANGis, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(1931), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5232), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5226), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5230), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5234), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5228), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [65923] = 3, + [67146] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3059), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3057), 28, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 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(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5098), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - anon_sym_COLON_EQ, - [65972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2757), 13, + ACTIONS(5344), 1, + anon_sym_is, + ACTIONS(5346), 1, + anon_sym_BANGis, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1931), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_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(2755), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5092), 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(5086), 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, - [66021] = 5, + [67245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 1, + ACTIONS(2732), 1, anon_sym_LBRACK, - ACTIONS(2907), 1, + ACTIONS(3410), 1, anon_sym_LBRACE, - ACTIONS(2669), 11, + ACTIONS(2727), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -250472,7 +251695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2667), 28, + ACTIONS(2725), 28, anon_sym_SEMI, anon_sym_DOT, anon_sym_as, @@ -250501,398 +251724,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [66074] = 3, - ACTIONS(495), 1, + [67298] = 28, + ACTIONS(3), 1, sym_comment, - ACTIONS(3096), 1, - anon_sym_LBRACK, - ACTIONS(3093), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5098), 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(5100), 1, anon_sym_AMP_AMP, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5110), 1, anon_sym_in, + ACTIONS(5112), 1, anon_sym_BANGin, - [66123] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3106), 1, - anon_sym_LBRACK, - ACTIONS(3103), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_as, + anon_sym_QMARK_DOT, + ACTIONS(5090), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5354), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, + ACTIONS(5088), 3, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5086), 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, - [66172] = 29, + [67397] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5306), 1, + ACTIONS(5356), 1, anon_sym_LBRACE, - ACTIONS(5308), 1, + ACTIONS(5358), 1, anon_sym_QMARK, - STATE(1298), 1, + STATE(1015), 1, sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66273] = 30, + [67498] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5128), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT_DOT, - ACTIONS(5310), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5360), 1, + anon_sym_QMARK, + STATE(1942), 1, + sym_block, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66376] = 29, + [67599] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5118), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5312), 1, + ACTIONS(5362), 1, + anon_sym_LBRACE, + ACTIONS(5364), 1, anon_sym_QMARK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(2642), 1, + STATE(1310), 1, sym_block, - STATE(4072), 1, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66477] = 30, + [67700] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5142), 1, + STATE(2724), 1, + sym_type_parameters, + ACTIONS(2715), 13, anon_sym_DOT, - ACTIONS(5144), 1, - anon_sym_LPAREN, - ACTIONS(5152), 1, - anon_sym_LBRACK, - ACTIONS(5154), 1, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5156), 1, anon_sym_BANG, - ACTIONS(5158), 1, anon_sym_LBRACK2, - ACTIONS(5160), 1, - anon_sym_CARET, - ACTIONS(5162), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5170), 1, - anon_sym_AMP_AMP, - ACTIONS(5172), 1, - anon_sym_in, - ACTIONS(5174), 1, - anon_sym_BANGin, - ACTIONS(5178), 1, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2713), 27, anon_sym_as, - ACTIONS(5180), 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(5182), 1, anon_sym_DASH_DASH, - ACTIONS(5184), 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, - ACTIONS(5186), 1, anon_sym_or, - ACTIONS(5188), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5190), 1, anon_sym_BANGis, - ACTIONS(5314), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5316), 1, - anon_sym_DOT_DOT, - STATE(2809), 1, - sym_argument_list, - STATE(2814), 1, - sym_or_block, - STATE(4263), 1, - sym_type_parameters, - ACTIONS(5166), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5146), 3, + anon_sym_in, + anon_sym_BANGin, + [67751] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5366), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5150), 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(5168), 4, + anon_sym_DOT_DOT, + ACTIONS(2641), 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(5148), 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, - [66580] = 6, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [67802] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_LBRACE, - ACTIONS(5320), 1, - anon_sym_COMMA, - STATE(3984), 1, - aux_sym_match_expression_list_repeat1, - ACTIONS(3429), 13, + ACTIONS(2649), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -250906,8 +252122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3427), 25, + ACTIONS(2647), 28, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -250932,157 +252150,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66635] = 30, + anon_sym_COLON_EQ, + [67851] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT_DOT, - ACTIONS(5322), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5368), 1, + anon_sym_QMARK, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(2653), 1, + sym_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66738] = 29, + [67952] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5148), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5324), 1, - anon_sym_LBRACE, - ACTIONS(5326), 1, + ACTIONS(5370), 1, anon_sym_QMARK, - STATE(2174), 1, + STATE(1809), 1, sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [66839] = 4, + [68053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 1, + ACTIONS(5372), 1, anon_sym_DOLLARelse, - ACTIONS(2681), 13, + ACTIONS(2873), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -251096,7 +252314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2679), 27, + ACTIONS(2871), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251124,42 +252342,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66890] = 4, - ACTIONS(3), 1, + [68104] = 3, + ACTIONS(495), 1, sym_comment, - STATE(2712), 1, - sym_type_parameters, - ACTIONS(2761), 13, + ACTIONS(3222), 1, + anon_sym_LBRACK, + ACTIONS(3219), 40, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_DOT, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_STAR, anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2759), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, anon_sym_CARET, + anon_sym_AMP, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, anon_sym_AMP_AMP, @@ -251171,100 +252388,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [66941] = 29, + [68153] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4763), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(4765), 1, - anon_sym_QMARK, - ACTIONS(4767), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(4769), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(4781), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(4787), 1, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, - ACTIONS(4789), 1, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(4791), 1, - anon_sym_AMP_AMP, - ACTIONS(4793), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4795), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(4797), 1, + ACTIONS(5106), 1, anon_sym_is, - ACTIONS(4799), 1, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(4801), 1, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(4803), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5332), 1, - anon_sym_COLON, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_LT_DASH, - STATE(2063), 1, + ACTIONS(5374), 1, + anon_sym_LBRACE, + ACTIONS(5376), 1, + anon_sym_QMARK, + STATE(393), 1, + sym_block, + STATE(2439), 1, sym_argument_list, - STATE(2064), 1, + STATE(2440), 1, sym_or_block, - STATE(4085), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4783), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4773), 3, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(4779), 3, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [68254] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5132), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5378), 1, + anon_sym_QMARK, + STATE(1940), 1, + sym_block, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4785), 4, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5330), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67042] = 6, + [68355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(3201), 13, anon_sym_DOT, - ACTIONS(5340), 1, - anon_sym_QMARK, - ACTIONS(5338), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3437), 10, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 27, + anon_sym_DOT_DOT, + ACTIONS(3199), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -251275,6 +252560,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, @@ -251292,805 +252578,711 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_BANGin, anon_sym_COLON_EQ, - [67097] = 29, + [68404] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - ACTIONS(5342), 1, - anon_sym_QMARK, - STATE(2316), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5270), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5274), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5268), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67198] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5014), 1, + anon_sym_QMARK_DOT, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, + anon_sym_DASH_DASH, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5110), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5278), 1, + anon_sym_DOT_DOT, + ACTIONS(5380), 1, + anon_sym_RBRACK, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(3556), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67297] = 30, + [68507] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, + ACTIONS(5278), 1, anon_sym_DOT_DOT, - ACTIONS(5344), 1, + ACTIONS(5382), 1, anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67400] = 30, + [68610] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(5002), 1, anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, + ACTIONS(5014), 1, anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, + ACTIONS(5278), 1, anon_sym_DOT_DOT, - ACTIONS(5346), 1, + ACTIONS(5384), 1, anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67503] = 29, + [68713] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5348), 1, + ACTIONS(5386), 1, + anon_sym_LBRACE, + ACTIONS(5388), 1, anon_sym_QMARK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(2853), 1, + STATE(1157), 1, sym_block, - STATE(4072), 1, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67604] = 29, + [68814] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5350), 1, - anon_sym_LBRACE, - ACTIONS(5352), 1, + ACTIONS(5390), 1, anon_sym_QMARK, - STATE(1008), 1, + STATE(2320), 1, sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67705] = 30, + [68915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, + ACTIONS(3313), 1, anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(3951), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + ACTIONS(3311), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3309), 25, anon_sym_as, - ACTIONS(5092), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 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(5104), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, anon_sym_in, - ACTIONS(5206), 1, anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, anon_sym_DOT_DOT, - ACTIONS(5354), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, + [68967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3448), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 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(5200), 4, + anon_sym_DOT_DOT, + ACTIONS(3446), 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(5194), 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, - [67808] = 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, + [69015] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, + anon_sym_DASH_DASH, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5392), 1, + anon_sym_RPAREN, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5110), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5356), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5082), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [67907] = 30, + [69113] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT_DOT, - ACTIONS(5358), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + ACTIONS(5414), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68010] = 29, + [69211] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5002), 1, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5132), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - ACTIONS(5360), 1, - anon_sym_QMARK, - STATE(1940), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(2067), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68111] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(2065), 15, anon_sym_as, - ACTIONS(5092), 1, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, anon_sym_AMP_AMP, - ACTIONS(5100), 1, anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, anon_sym_or, - ACTIONS(5108), 1, - anon_sym_in, - ACTIONS(5110), 1, - anon_sym_BANGin, - ACTIONS(5300), 1, anon_sym_is, - ACTIONS(5302), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2027), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5088), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5082), 3, + anon_sym_in, + anon_sym_BANGin, + [69287] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5416), 1, + anon_sym_else, + STATE(2897), 1, + sym_else_branch, + ACTIONS(2635), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5086), 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(5090), 4, + ACTIONS(2633), 27, + anon_sym_DOT, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 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, - [68210] = 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [69339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5362), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 13, + ACTIONS(3279), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252104,7 +253296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2853), 27, + ACTIONS(3277), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252132,518 +253324,518 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [68261] = 30, + [69387] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT_DOT, - ACTIONS(5364), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(1865), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68364] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(1863), 15, anon_sym_as, - ACTIONS(5092), 1, + anon_sym_RPAREN, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, anon_sym_in, - ACTIONS(5286), 1, anon_sym_BANGin, - ACTIONS(5366), 1, - anon_sym_LBRACE, - ACTIONS(5368), 1, + [69463] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym_QMARK, - STATE(395), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5420), 1, + anon_sym_RPAREN, + ACTIONS(5422), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(3891), 1, + sym_type_parameter_declaration, + STATE(3892), 1, + sym_parameter_declaration, + STATE(4183), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [69557] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3017), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 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(5274), 4, + anon_sym_DOT_DOT, + ACTIONS(3015), 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(5268), 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, - [68465] = 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, + [69605] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT_DOT, - ACTIONS(5370), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + ACTIONS(5434), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68568] = 30, + [69703] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(5002), 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(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT_DOT, - ACTIONS(5372), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + ACTIONS(5436), 1, + anon_sym_RPAREN, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(3922), 1, + sym_parameter_declaration, + STATE(3925), 1, + sym_type_parameter_declaration, + STATE(4183), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [69797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3057), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 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(5200), 4, + anon_sym_DOT_DOT, + ACTIONS(3055), 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(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68671] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5278), 1, anon_sym_CARET, - ACTIONS(5280), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5282), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, anon_sym_in, - ACTIONS(5286), 1, anon_sym_BANGin, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5376), 1, - anon_sym_QMARK, - STATE(1155), 1, - sym_block, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + [69845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3061), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 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(5274), 4, + anon_sym_DOT_DOT, + ACTIONS(3059), 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(5268), 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, - [68772] = 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, + [69893] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4994), 1, - anon_sym_DOT, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5006), 1, - anon_sym_QMARK_DOT, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5290), 1, - anon_sym_DOT_DOT, - ACTIONS(5378), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5198), 2, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [68875] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(1941), 8, anon_sym_as, - ACTIONS(5092), 1, + anon_sym_RPAREN, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - ACTIONS(5380), 1, - anon_sym_QMARK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(2455), 1, - sym_block, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + [69977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3091), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 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(5274), 4, + anon_sym_DOT_DOT, + ACTIONS(3089), 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(5268), 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, - [68976] = 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, + [70025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3355), 13, + ACTIONS(3095), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252657,7 +253849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3353), 27, + ACTIONS(3093), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252685,78 +253877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69024] = 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5384), 1, - anon_sym_RPAREN, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(4051), 1, - sym_parameter_declaration, - STATE(4052), 1, - sym_type_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [69118] = 3, + [70073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 13, + ACTIONS(3103), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252770,7 +253894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3175), 27, + ACTIONS(3101), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252798,10 +253922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69166] = 3, + [70121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 13, + ACTIONS(3129), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252815,7 +253939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3181), 27, + ACTIONS(3127), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252843,10 +253967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69214] = 3, + [70169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 13, + ACTIONS(3141), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -252860,7 +253984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3189), 27, + ACTIONS(3139), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -252888,358 +254012,352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69262] = 28, + [70217] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5398), 1, - anon_sym_RPAREN, - ACTIONS(5410), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5438), 1, + anon_sym_SEMI, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [70315] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69360] = 28, + ACTIONS(1941), 9, + anon_sym_as, + anon_sym_RPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [70397] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5420), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5440), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69458] = 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - ACTIONS(5422), 1, - anon_sym_RPAREN, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(3838), 1, - sym_parameter_declaration, - STATE(3841), 1, - sym_type_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [69552] = 28, + [70495] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(3582), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5424), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69650] = 28, + [70593] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, - anon_sym_LBRACE, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5442), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [69748] = 3, + [70691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 13, + ACTIONS(3237), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253253,7 +254371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3253), 27, + ACTIONS(3235), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253281,10 +254399,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69796] = 3, + [70739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 13, + ACTIONS(3241), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253298,7 +254416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3257), 27, + ACTIONS(3239), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253326,7 +254444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [69844] = 26, + [70787] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -253339,49 +254457,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5386), 1, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, - ACTIONS(5426), 1, - sym_identifier, - ACTIONS(5428), 1, + ACTIONS(5444), 1, anon_sym_RPAREN, - STATE(3034), 1, + STATE(3017), 1, sym_mutability_modifiers, - STATE(3935), 1, + STATE(4001), 1, sym_parameter_declaration, - STATE(3936), 1, + STATE(4002), 1, sym_type_parameter_declaration, - STATE(4353), 1, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -253394,100 +254512,80 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [69938] = 3, + [70881] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3147), 27, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 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(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 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(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, anon_sym_in, + ACTIONS(5412), 1, anon_sym_BANGin, - [69986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 13, + ACTIONS(5446), 1, + anon_sym_RPAREN, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5398), 3, anon_sym_SLASH, - 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(3151), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5402), 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(5396), 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, - [70034] = 3, + [70979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 13, + ACTIONS(3295), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253501,7 +254599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3333), 27, + ACTIONS(3293), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253529,10 +254627,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70082] = 3, + [71027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 13, + ACTIONS(3299), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253546,7 +254644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3337), 27, + ACTIONS(3297), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253574,10 +254672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70130] = 3, + [71075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 13, + ACTIONS(3303), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253591,7 +254689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3341), 27, + ACTIONS(3301), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253619,10 +254717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70178] = 3, + [71123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 13, + ACTIONS(3307), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253636,7 +254734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2975), 27, + ACTIONS(3305), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253664,10 +254762,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70226] = 3, + [71171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 13, + ACTIONS(3318), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253681,7 +254779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3369), 27, + ACTIONS(3316), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253709,10 +254807,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70274] = 3, + [71219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 13, + ACTIONS(3322), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253726,7 +254824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3373), 27, + ACTIONS(3320), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253754,80 +254852,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70322] = 28, + [71267] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5430), 1, + ACTIONS(5448), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70420] = 3, + [71365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 13, + ACTIONS(3366), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253841,7 +254939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3407), 27, + ACTIONS(3364), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253869,10 +254967,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70468] = 3, + [71413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 13, + ACTIONS(3374), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -253886,7 +254984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3415), 27, + ACTIONS(3372), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -253914,125 +255012,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70516] = 3, + [71461] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 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(3167), 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(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 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, - [70564] = 28, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + ACTIONS(5450), 1, + anon_sym_RPAREN, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(4030), 1, + sym_parameter_declaration, + STATE(4032), 1, + sym_type_parameter_declaration, + STATE(4183), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [71555] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5432), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5452), 1, + anon_sym_RBRACK, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [70662] = 3, + [71653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2943), 13, + ACTIONS(3396), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254046,7 +255167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2941), 27, + ACTIONS(3394), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254074,80 +255195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70710] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - ACTIONS(5434), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70808] = 3, + [71701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3173), 13, + ACTIONS(2715), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254161,7 +255212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3171), 27, + ACTIONS(2713), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254189,10 +255240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70856] = 3, + [71749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3425), 13, + ACTIONS(2727), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254206,7 +255257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3423), 27, + ACTIONS(2725), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254234,10 +255285,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70904] = 3, + [71797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2761), 13, + ACTIONS(3197), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254251,7 +255302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2759), 27, + ACTIONS(3195), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254279,10 +255330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [70952] = 3, + [71845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 13, + ACTIONS(3185), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254296,7 +255347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2667), 27, + ACTIONS(3183), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254324,16 +255375,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71000] = 5, + [71893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(3378), 13, anon_sym_DOT, - ACTIONS(3941), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(3437), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -254345,8 +255391,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + anon_sym_DOT_DOT, + ACTIONS(3376), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -254354,6 +255403,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, @@ -254370,81 +255420,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [71052] = 28, + [71941] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5436), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5454), 1, + anon_sym_SEMI, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71150] = 3, + [72039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 13, + ACTIONS(3173), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254458,7 +255507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2979), 27, + ACTIONS(3171), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254486,331 +255535,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71198] = 3, + [72087] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3413), 13, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5404), 1, + anon_sym_CARET, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5398), 3, 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(3411), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1941), 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, - [71246] = 28, + [72163] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5438), 1, + ACTIONS(5456), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71344] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - ACTIONS(5300), 1, - anon_sym_is, - ACTIONS(5302), 1, - anon_sym_BANGis, - STATE(2362), 1, + STATE(2440), 1, sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [71442] = 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - ACTIONS(5440), 1, - anon_sym_RPAREN, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(4048), 1, - sym_type_parameter_declaration, - STATE(4049), 1, - sym_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [71536] = 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - ACTIONS(5442), 1, - anon_sym_RPAREN, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(3916), 1, - sym_type_parameter_declaration, - STATE(3921), 1, - sym_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [71630] = 3, + [72261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3401), 13, + ACTIONS(3356), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254824,7 +255681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3399), 27, + ACTIONS(3354), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -254852,7 +255709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71678] = 26, + [72309] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -254865,49 +255722,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5382), 1, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, - ACTIONS(5444), 1, + ACTIONS(5458), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3017), 1, sym_mutability_modifiers, - STATE(3864), 1, - sym_parameter_declaration, - STATE(3867), 1, + STATE(3980), 1, sym_type_parameter_declaration, - STATE(4353), 1, + STATE(3981), 1, + sym_parameter_declaration, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -254920,49 +255777,49 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [71772] = 15, + [72403] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2011), 5, + ACTIONS(1881), 5, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 16, + ACTIONS(1941), 16, anon_sym_as, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, @@ -254977,10 +255834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71844] = 3, + [72475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3391), 13, + ACTIONS(3340), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -254994,7 +255851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3389), 27, + ACTIONS(3338), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255022,10 +255879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71892] = 3, + [72523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 13, + ACTIONS(3336), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255039,7 +255896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3385), 27, + ACTIONS(3334), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255067,10 +255924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71940] = 3, + [72571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3383), 13, + ACTIONS(3332), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255084,7 +255941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3381), 27, + ACTIONS(3330), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255112,10 +255969,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [71988] = 3, + [72619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3379), 13, + ACTIONS(3328), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255129,7 +255986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3377), 27, + ACTIONS(3326), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255157,10 +256014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72036] = 3, + [72667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 13, + ACTIONS(3370), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255174,7 +256031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3135), 27, + ACTIONS(3368), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255202,69 +256059,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72084] = 17, + [72715] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5278), 1, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5460), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2011), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5266), 3, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5268), 5, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 15, + [72813] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5104), 1, anon_sym_or, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, anon_sym_in, + ACTIONS(5412), 1, anon_sym_BANGin, - [72160] = 3, + ACTIONS(5462), 1, + anon_sym_RPAREN, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5394), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5398), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5396), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [72911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 13, + ACTIONS(3275), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255278,7 +256216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2989), 27, + ACTIONS(3273), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255306,10 +256244,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72208] = 3, + [72959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3359), 13, + ACTIONS(3257), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255323,7 +256261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3357), 27, + ACTIONS(3255), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255351,80 +256289,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72256] = 28, + [73007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - ACTIONS(5356), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5270), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5274), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5268), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72354] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3331), 13, + ACTIONS(3245), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255438,7 +256306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3329), 27, + ACTIONS(3243), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255466,10 +256334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72402] = 3, + [73055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3327), 13, + ACTIONS(3213), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255483,7 +256351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3325), 27, + ACTIONS(3211), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255511,10 +256379,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72450] = 3, + [73103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3323), 13, + ACTIONS(3205), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255528,7 +256396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3321), 27, + ACTIONS(3203), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255556,10 +256424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72498] = 3, + [73151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3319), 13, + ACTIONS(3193), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255573,7 +256441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3317), 27, + ACTIONS(3191), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255601,10 +256469,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72546] = 3, + [73199] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3311), 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(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + ACTIONS(5464), 1, + anon_sym_RPAREN, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(3856), 1, + sym_parameter_declaration, + STATE(3857), 1, + sym_type_parameter_declaration, + STATE(4183), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [73293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3181), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255618,7 +256554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3309), 27, + ACTIONS(3179), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255646,72 +256582,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72594] = 20, + [73341] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(45), 1, anon_sym_QMARK, - ACTIONS(5002), 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(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5270), 3, - anon_sym_SLASH, + ACTIONS(5430), 1, anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5274), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5268), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2009), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [72676] = 3, + ACTIONS(5432), 1, + anon_sym_shared, + ACTIONS(5466), 1, + anon_sym_RPAREN, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(3873), 1, + sym_type_parameter_declaration, + STATE(3874), 1, + sym_parameter_declaration, + STATE(4183), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [73435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3307), 13, + ACTIONS(3177), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255725,7 +256667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3305), 27, + ACTIONS(3175), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255753,13 +256695,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72724] = 4, + [73483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3059), 11, + ACTIONS(5416), 1, + anon_sym_else, + STATE(2895), 1, + sym_else_branch, + ACTIONS(2505), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -255771,7 +256714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3057), 27, + ACTIONS(2503), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -255799,10 +256742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72774] = 3, + [73535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3303), 13, + ACTIONS(3087), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -255816,7 +256759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3301), 27, + ACTIONS(3085), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -255844,283 +256787,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [72822] = 28, + [73583] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5446), 1, + ACTIONS(5468), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [72920] = 28, + [73681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - ACTIONS(5448), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(3362), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 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(5408), 4, + anon_sym_DOT_DOT, + ACTIONS(3360), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73018] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 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(5104), 1, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, anon_sym_in, - ACTIONS(5206), 1, anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5450), 1, - anon_sym_SEMI, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + [73729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3412), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5200), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73116] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5270), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + anon_sym_DOT_DOT, + ACTIONS(3410), 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(5268), 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(2009), 8, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - [73200] = 3, + anon_sym_in, + anon_sym_BANGin, + [73777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 13, + ACTIONS(3416), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256134,7 +256964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2907), 27, + ACTIONS(3414), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256162,10 +256992,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73248] = 3, + [73825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3133), 13, + ACTIONS(3013), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256179,7 +257009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3131), 27, + ACTIONS(3011), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256207,10 +257037,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73296] = 3, + [73873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3251), 13, + ACTIONS(3083), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256224,7 +257054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3249), 27, + ACTIONS(3081), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256252,10 +257082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73344] = 3, + [73921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2913), 13, + ACTIONS(3404), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256269,7 +257099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2911), 27, + ACTIONS(3402), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256297,78 +257127,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73392] = 26, + [73969] = 3, 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - ACTIONS(5452), 1, - anon_sym_RPAREN, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(3895), 1, - sym_parameter_declaration, - STATE(3897), 1, - sym_type_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [73486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3235), 13, + ACTIONS(2985), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256382,7 +257144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3233), 27, + ACTIONS(2983), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256410,10 +257172,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73534] = 3, + [74017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3219), 13, + ACTIONS(2981), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256427,7 +257189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3217), 27, + ACTIONS(2979), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256455,10 +257217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73582] = 3, + [74065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 13, + ACTIONS(3145), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256472,7 +257234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3193), 27, + ACTIONS(3143), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256500,10 +257262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73630] = 3, + [74113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3215), 13, + ACTIONS(2915), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256517,7 +257279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3213), 27, + ACTIONS(2913), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256545,10 +257307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73678] = 3, + [74161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 13, + ACTIONS(3424), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256562,7 +257324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3127), 27, + ACTIONS(3422), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256590,12 +257352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73726] = 4, + [74209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_COMMA, - ACTIONS(2757), 13, + ACTIONS(3053), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256609,9 +257369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2755), 26, + ACTIONS(3051), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -256636,10 +257397,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73776] = 3, + [74257] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5470), 1, + anon_sym_LBRACE, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [74355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 13, + ACTIONS(2907), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256653,7 +257484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2869), 27, + ACTIONS(2905), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256681,10 +257512,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73824] = 3, + [74403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3211), 13, + ACTIONS(3049), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256698,7 +257529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3209), 27, + ACTIONS(3047), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256726,83 +257557,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [73872] = 28, + [74451] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5454), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5336), 1, + anon_sym_COLON, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [73970] = 4, + [74549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3429), 13, + ACTIONS(3432), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256816,8 +257644,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3427), 25, + ACTIONS(3430), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -256842,11 +257672,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74020] = 3, + [74597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3087), 13, - anon_sym_DOT, + ACTIONS(2653), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3201), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256858,10 +257690,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3085), 27, + ACTIONS(3199), 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, + [74647] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2653), 1, anon_sym_LBRACE, + ACTIONS(2649), 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(2647), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -256870,7 +257747,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, @@ -256887,10 +257763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74068] = 3, + anon_sym_COLON_EQ, + [74697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 13, + ACTIONS(3001), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -256904,7 +257781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3201), 27, + ACTIONS(2999), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -256932,12 +257809,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74116] = 4, + [74745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_LBRACE, - ACTIONS(2757), 11, + ACTIONS(3444), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256949,10 +257825,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2755), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3442), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -256961,6 +257837,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, @@ -256977,267 +257854,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [74166] = 17, + [74793] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5278), 1, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5404), 1, anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + ACTIONS(5472), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2059), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5266), 3, + ACTIONS(5400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5268), 5, + ACTIONS(5402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2057), 15, + [74891] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2997), 13, + anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(2995), 27, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74242] = 17, + [74939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5278), 1, - anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2179), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(3408), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5266), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 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(5268), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2177), 15, + anon_sym_DOT_DOT, + ACTIONS(3406), 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, - [74318] = 28, + [74987] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5458), 1, + ACTIONS(5474), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74416] = 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - ACTIONS(5460), 1, - anon_sym_RPAREN, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(3927), 1, - sym_parameter_declaration, - STATE(3930), 1, - sym_type_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [74510] = 3, + [75085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 13, + ACTIONS(2993), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257251,7 +258101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3241), 27, + ACTIONS(2991), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257279,151 +258129,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74558] = 28, + [75133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1837), 1, - anon_sym_RPAREN, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(2989), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 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(5408), 4, + anon_sym_DOT_DOT, + ACTIONS(2987), 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(5402), 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, - [74656] = 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, + [75181] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5462), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5476), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74754] = 3, + [75279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3299), 13, - anon_sym_DOT, + ACTIONS(2653), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2649), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257435,11 +258262,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3297), 27, + ACTIONS(2647), 27, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257447,11 +258272,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, @@ -257464,83 +258290,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74802] = 28, + [75329] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(1847), 1, + anon_sym_RPAREN, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5202), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5464), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [74900] = 4, + [75427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2757), 11, + ACTIONS(2911), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257552,9 +258376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2755), 27, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(2909), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257562,12 +258388,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, @@ -257580,12 +258405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [74950] = 4, + [75475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3439), 1, + ACTIONS(2903), 13, anon_sym_DOT, - ACTIONS(3437), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257598,7 +258422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3435), 27, + ACTIONS(2901), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257626,10 +258450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75000] = 3, + [75523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3444), 13, + ACTIONS(2899), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257643,7 +258467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3442), 27, + ACTIONS(2897), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257671,10 +258495,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75048] = 3, + [75571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2917), 13, + ACTIONS(5478), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3287), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257688,10 +258515,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2915), 27, + ACTIONS(3285), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -257716,10 +258541,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75096] = 3, + [75621] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4787), 1, + anon_sym_LPAREN, + ACTIONS(4789), 1, + anon_sym_LBRACK, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(4793), 1, + anon_sym_BANG, + ACTIONS(4795), 1, + anon_sym_LBRACK2, + ACTIONS(4797), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4801), 1, + anon_sym_as, + ACTIONS(4811), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4813), 1, + anon_sym_DASH_DASH, + ACTIONS(4815), 1, + anon_sym_AMP_AMP, + ACTIONS(4817), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4819), 1, + anon_sym_or, + ACTIONS(4821), 1, + anon_sym_is, + ACTIONS(4823), 1, + anon_sym_BANGis, + ACTIONS(4825), 1, + anon_sym_in, + ACTIONS(4827), 1, + anon_sym_BANGin, + ACTIONS(5338), 1, + anon_sym_CARET, + ACTIONS(5340), 1, + anon_sym_LT_DASH, + STATE(2074), 1, + sym_argument_list, + STATE(2075), 1, + sym_or_block, + STATE(4215), 1, + sym_type_parameters, + ACTIONS(4785), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(4807), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(4803), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4805), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(4809), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5334), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [75719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3397), 13, + ACTIONS(3428), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257733,7 +258628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3395), 27, + ACTIONS(3426), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257761,10 +258656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75144] = 3, + [75767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 13, + ACTIONS(3099), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257778,7 +258673,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3349), 27, + ACTIONS(3097), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257806,10 +258701,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75192] = 3, + [75815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 13, + ACTIONS(3133), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -257823,7 +258718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3361), 27, + ACTIONS(3131), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -257851,10 +258746,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75240] = 3, + [75863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2865), 11, + ACTIONS(2649), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257866,7 +258761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2863), 29, + ACTIONS(2647), 29, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -257896,11 +258791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75288] = 3, + [75911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 13, - anon_sym_DOT, + ACTIONS(2653), 1, + anon_sym_LBRACE, + ACTIONS(3201), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -257912,10 +258808,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3365), 27, + ACTIONS(3199), 28, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -257924,7 +258820,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, @@ -257941,80 +258836,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75336] = 28, + anon_sym_COLON_EQ, + [75961] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 1, - anon_sym_RPAREN, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(1881), 5, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1941), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_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, + [76033] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5296), 1, + anon_sym_CARET, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(1881), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(1941), 15, anon_sym_as, - ACTIONS(5092), 1, + anon_sym_LBRACE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [76109] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5480), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75434] = 3, + [76207] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(3295), 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(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + ACTIONS(5482), 1, + anon_sym_RPAREN, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(3902), 1, + sym_parameter_declaration, + STATE(3903), 1, + sym_type_parameter_declaration, + STATE(4183), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [76301] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5484), 1, + anon_sym_BANG, + ACTIONS(3269), 12, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258023,12 +259105,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_QMARK, - anon_sym_BANG, anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3293), 27, + ACTIONS(3267), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258056,125 +259137,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75482] = 3, + [76351] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2947), 13, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + ACTIONS(5486), 1, + anon_sym_RPAREN, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5398), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5396), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [76449] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2945), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, + ACTIONS(1941), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, anon_sym_is, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75530] = 28, + [76531] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5466), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75628] = 3, + ACTIONS(1941), 8, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_is, + anon_sym_BANGis, + [76615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2921), 13, + ACTIONS(3189), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258188,7 +259349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2919), 27, + ACTIONS(3187), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258216,152 +259377,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75676] = 28, + [76663] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5468), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5488), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75774] = 28, + [76761] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - ACTIONS(5470), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(1865), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [75872] = 4, + ACTIONS(1863), 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, + [76837] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5472), 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(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(3063), 12, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + ACTIONS(5490), 1, + anon_sym_RPAREN, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(4006), 1, + sym_type_parameter_declaration, + STATE(4009), 1, + sym_parameter_declaration, + STATE(4183), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [76931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3027), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258370,11 +259586,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(3061), 27, + ACTIONS(3025), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258402,125 +259619,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [75922] = 3, + [76979] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3291), 13, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5296), 1, + anon_sym_CARET, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(2067), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5288), 3, anon_sym_SLASH, - anon_sym_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(3289), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + ACTIONS(2065), 15, + anon_sym_as, + anon_sym_LBRACE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_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, - [75970] = 28, + [77055] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5474), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5492), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76068] = 3, + [77153] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3287), 13, + ACTIONS(3253), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258534,7 +259765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3285), 27, + ACTIONS(3251), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258562,7 +259793,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76116] = 26, + [77201] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1847), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77299] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1859), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [77397] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -258575,49 +259946,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5382), 1, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, - ACTIONS(5476), 1, + ACTIONS(5494), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3017), 1, sym_mutability_modifiers, - STATE(3827), 1, + STATE(4003), 1, sym_type_parameter_declaration, - STATE(4064), 1, + STATE(4074), 1, sym_parameter_declaration, - STATE(4353), 1, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -258630,56 +260001,80 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [76210] = 3, + [77491] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 13, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5354), 1, + anon_sym_LBRACE, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5288), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3431), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5286), 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, - [76258] = 3, + [77589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 13, - anon_sym_DOT, + ACTIONS(2685), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258691,11 +260086,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3427), 27, + ACTIONS(2683), 29, + anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258703,11 +260096,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, @@ -258716,14 +260110,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, - [76306] = 3, + [77637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3283), 13, + ACTIONS(3452), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258737,7 +260133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3281), 27, + ACTIONS(3450), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258765,10 +260161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76354] = 3, + [77685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 11, + ACTIONS(3436), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258780,9 +260177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2755), 29, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3434), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258790,12 +260189,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, @@ -258804,16 +260202,18 @@ 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, - [76402] = 3, + [77733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3161), 13, + ACTIONS(2732), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(2727), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258827,10 +260227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3159), 27, + ACTIONS(2725), 24, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258839,7 +260237,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -258855,10 +260252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76450] = 3, + [77783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2951), 13, + ACTIONS(2653), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3201), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258872,10 +260272,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2949), 27, + ACTIONS(3199), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -258900,10 +260298,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76498] = 3, + [77833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3421), 13, + ACTIONS(3392), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258917,7 +260315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3419), 27, + ACTIONS(3390), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258945,10 +260343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76546] = 3, + [77881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 13, + ACTIONS(3388), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -258962,7 +260360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3277), 27, + ACTIONS(3386), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -258990,80 +260388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76594] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - ACTIONS(5478), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [76692] = 3, + [77929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3405), 13, + ACTIONS(3352), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259077,7 +260405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3403), 27, + ACTIONS(3350), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259105,10 +260433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76740] = 3, + [77977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3275), 13, + ACTIONS(3348), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259122,7 +260450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3273), 27, + ACTIONS(3346), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259150,80 +260478,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76788] = 28, + [78025] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5480), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5496), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [76886] = 3, + [78123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3271), 13, + ACTIONS(2653), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2649), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259237,10 +260568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3269), 27, + ACTIONS(2647), 25, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -259265,66 +260594,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [76934] = 17, + [78173] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5296), 1, anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5298), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5302), 1, + anon_sym_in, + ACTIONS(5304), 1, + anon_sym_BANGin, + ACTIONS(5498), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2179), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 3, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 5, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2177), 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, - [77010] = 26, + [78271] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -259337,49 +260677,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, - ACTIONS(5482), 1, + ACTIONS(5436), 1, anon_sym_RPAREN, - STATE(3036), 1, + ACTIONS(5500), 1, + sym_identifier, + STATE(3041), 1, sym_mutability_modifiers, - STATE(3964), 1, + STATE(3922), 1, sym_parameter_declaration, - STATE(3965), 1, + STATE(3925), 1, sym_type_parameter_declaration, - STATE(4353), 1, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -259392,14 +260732,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [77104] = 4, + [78365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2674), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2669), 13, + ACTIONS(3382), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259413,8 +260749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2667), 24, + ACTIONS(3380), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -259423,6 +260761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_CARET, @@ -259438,13 +260777,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77154] = 4, + [78413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3059), 13, + ACTIONS(3283), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259458,8 +260794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3057), 25, + ACTIONS(3281), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -259484,419 +260822,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77204] = 28, + [78461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5484), 1, - anon_sym_RBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(3440), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5200), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77302] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - ACTIONS(5486), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77400] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5410), 1, - anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(2059), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 5, + anon_sym_DOT_DOT, + ACTIONS(3438), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2057), 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, - [77476] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + anon_sym_DOT_DOT_DOT, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5488), 1, - anon_sym_SEMI, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5200), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77574] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - ACTIONS(5490), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, + anon_sym_or, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77672] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, anon_sym_is, - ACTIONS(5106), 1, anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, anon_sym_in, - ACTIONS(5418), 1, anon_sym_BANGin, - ACTIONS(5492), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77770] = 3, + [78509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3315), 13, + ACTIONS(3291), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -259910,7 +260884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3313), 27, + ACTIONS(3289), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -259938,84 +260912,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77818] = 28, + [78557] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(2732), 2, anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5332), 1, - anon_sym_COLON, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + anon_sym_RBRACK, + ACTIONS(3410), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(2727), 12, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 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(5200), 4, + ACTIONS(2725), 24, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [77916] = 4, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + anon_sym_DOT_DOT, + [78609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2757), 13, + ACTIONS(2729), 1, anon_sym_DOT, + ACTIONS(3412), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -260028,8 +260977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2755), 25, + ACTIONS(3410), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260054,612 +261005,407 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [77966] = 28, + [78659] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1833), 1, - anon_sym_LBRACE, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5502), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78064] = 28, + [78757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(3209), 13, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5274), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5268), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78162] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + anon_sym_DOT_DOT, + ACTIONS(3207), 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(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2009), 8, - anon_sym_as, - anon_sym_RPAREN, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [78246] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5410), 1, anon_sym_CARET, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 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, - [78328] = 28, + anon_sym_in, + anon_sym_BANGin, + [78805] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3586), 1, - anon_sym_LBRACE, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5504), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78426] = 3, + [78903] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(3267), 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(3265), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(1859), 1, + anon_sym_RPAREN, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - 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, - [78474] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 2, + ACTIONS(5006), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(2907), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2669), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2667), 24, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 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, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 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(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, anon_sym_in, + ACTIONS(5412), 1, anon_sym_BANGin, - anon_sym_DOT_DOT, - [78526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 1, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - ACTIONS(2909), 12, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5398), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2907), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5402), 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(5396), 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, - [78576] = 28, + [79001] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5496), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5506), 1, + anon_sym_RBRACK, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [78674] = 17, + [79099] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5410), 1, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5404), 1, anon_sym_CARET, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + ACTIONS(5508), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(2011), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5400), 3, + ACTIONS(5400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5402), 5, + ACTIONS(5402), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - ACTIONS(2009), 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, - [78750] = 3, + [79197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3263), 13, + ACTIONS(2653), 1, + anon_sym_COMMA, + ACTIONS(3201), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260673,10 +261419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3261), 27, + ACTIONS(3199), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -260701,67 +261446,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78798] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2011), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2009), 16, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78870] = 3, + [79247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3231), 13, + ACTIONS(3287), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -260775,7 +261463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3229), 27, + ACTIONS(3285), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -260803,263 +261491,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [78918] = 28, + [79295] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5498), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5510), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79016] = 26, + [79393] = 28, 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - ACTIONS(5460), 1, - anon_sym_RPAREN, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(3910), 1, - sym_plain_type, - STATE(3927), 1, - sym_parameter_declaration, - STATE(3930), 1, - sym_type_parameter_declaration, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [79110] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5500), 1, + ACTIONS(5512), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 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(3225), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, + ACTIONS(5396), 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, - [79256] = 3, + [79491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3223), 13, + ACTIONS(2651), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261073,7 +261648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3221), 27, + ACTIONS(2653), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261101,7 +261676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79304] = 26, + [79539] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -261114,49 +261689,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5382), 1, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, - ACTIONS(5428), 1, + ACTIONS(5514), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3017), 1, sym_mutability_modifiers, - STATE(3935), 1, + STATE(3930), 1, sym_parameter_declaration, - STATE(3936), 1, + STATE(3931), 1, sym_type_parameter_declaration, - STATE(4353), 1, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -261169,77 +261744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [79398] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5410), 1, - anon_sym_CARET, - ACTIONS(5412), 1, - anon_sym_AMP_AMP, - ACTIONS(5414), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, - anon_sym_in, - ACTIONS(5418), 1, - anon_sym_BANGin, - ACTIONS(5502), 1, - anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5406), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5400), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5404), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5408), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5402), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79496] = 26, + [79633] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -261252,49 +261757,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5382), 1, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, - ACTIONS(5504), 1, + ACTIONS(5516), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3017), 1, sym_mutability_modifiers, - STATE(4011), 1, - sym_parameter_declaration, - STATE(4014), 1, + STATE(4010), 1, sym_type_parameter_declaration, - STATE(4353), 1, + STATE(4015), 1, + sym_parameter_declaration, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -261307,10 +261812,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [79590] = 3, + [79727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2955), 13, + ACTIONS(3265), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261324,7 +261829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2953), 27, + ACTIONS(3263), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261352,80 +261857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79638] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5278), 1, - anon_sym_CARET, - ACTIONS(5280), 1, - anon_sym_AMP_AMP, - ACTIONS(5282), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, - anon_sym_in, - ACTIONS(5286), 1, - anon_sym_BANGin, - ACTIONS(5506), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5272), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5266), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5270), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5274), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5268), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79736] = 3, + [79775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3187), 13, + ACTIONS(3400), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261439,7 +261874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3185), 27, + ACTIONS(3398), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -261467,77 +261902,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [79784] = 28, + [79823] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5508), 1, + ACTIONS(5518), 1, anon_sym_LBRACE, - STATE(2362), 1, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, sym_or_block, - STATE(2423), 1, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5290), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5284), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5288), 3, + anon_sym_SLASH, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(5292), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5286), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [79921] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + ACTIONS(5520), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [79882] = 26, + [80019] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -261550,49 +262055,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5382), 1, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, - ACTIONS(5510), 1, + ACTIONS(5522), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3017), 1, sym_mutability_modifiers, - STATE(3979), 1, - sym_parameter_declaration, - STATE(3980), 1, + STATE(4057), 1, sym_type_parameter_declaration, - STATE(4353), 1, + STATE(4059), 1, + sym_parameter_declaration, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -261605,382 +262110,428 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [79976] = 28, + [80113] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5512), 1, + ACTIONS(5524), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80074] = 28, + [80211] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5514), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5526), 1, + anon_sym_RPAREN, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80172] = 5, + [80309] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 1, - anon_sym_else, - STATE(2917), 1, - sym_else_branch, - ACTIONS(2509), 11, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5404), 1, + anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + ACTIONS(5528), 1, + anon_sym_RPAREN, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5400), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5398), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2507), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, + ACTIONS(5396), 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, - [80224] = 28, + [80407] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5518), 1, + ACTIONS(5530), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80322] = 3, + [80505] = 26, ACTIONS(3), 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, + ACTIONS(45), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3163), 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(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(5418), 1, + sym_identifier, + ACTIONS(5422), 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, - [80370] = 28, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + ACTIONS(5532), 1, + anon_sym_RPAREN, + STATE(3017), 1, + sym_mutability_modifiers, + STATE(3842), 1, + sym_parameter_declaration, + STATE(3843), 1, + sym_type_parameter_declaration, + STATE(4053), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [80599] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5520), 1, + ACTIONS(5534), 1, anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80468] = 3, + [80697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3157), 13, + ACTIONS(3420), 13, anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, @@ -261994,7 +262545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(3155), 27, + ACTIONS(3418), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262022,14 +262573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80516] = 5, + [80745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5516), 1, - anon_sym_else, - STATE(2881), 1, - sym_else_branch, - ACTIONS(2515), 11, + ACTIONS(2653), 1, + anon_sym_COMMA, + ACTIONS(2649), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262041,9 +262591,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2513), 27, + anon_sym_DOT_DOT, + ACTIONS(2647), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [80795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3344), 13, anon_sym_DOT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + anon_sym_DOT_DOT, + ACTIONS(3342), 27, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -262051,12 +262647,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, @@ -262069,12 +262664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80568] = 4, + [80843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2869), 1, - anon_sym_LBRACE, - ACTIONS(3059), 11, + ACTIONS(3249), 13, + anon_sym_DOT, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262086,10 +262680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3057), 28, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3247), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, @@ -262098,6 +262692,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, @@ -262114,220 +262709,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_COLON_EQ, - [80618] = 28, + [80891] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(1931), 1, + anon_sym_LBRACE, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5278), 1, + anon_sym_or, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5522), 1, - anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5344), 1, + anon_sym_is, + ACTIONS(5346), 1, + anon_sym_BANGis, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80716] = 28, + [80989] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5524), 1, + ACTIONS(5536), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [80814] = 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(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5382), 1, - sym_identifier, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - ACTIONS(5526), 1, - anon_sym_RPAREN, - STATE(3036), 1, - sym_mutability_modifiers, - STATE(3933), 1, - sym_type_parameter_declaration, - STATE(4040), 1, - sym_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [80908] = 3, + [81087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2939), 13, + ACTIONS(3313), 1, anon_sym_DOT, + ACTIONS(3311), 12, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262340,7 +262867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_GT_GT, anon_sym_DOT_DOT, - ACTIONS(2937), 27, + ACTIONS(3309), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -262368,353 +262895,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [80956] = 28, + [81137] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5410), 1, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5412), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5414), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5416), 1, + ACTIONS(5410), 1, anon_sym_in, - ACTIONS(5418), 1, + ACTIONS(5412), 1, anon_sym_BANGin, - ACTIONS(5528), 1, + ACTIONS(5538), 1, anon_sym_RPAREN, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5406), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5400), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5404), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5408), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5402), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81054] = 28, + [81235] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - ACTIONS(5278), 1, + ACTIONS(5296), 1, anon_sym_CARET, - ACTIONS(5280), 1, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(5282), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(5284), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(5286), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5530), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5272), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5266), 3, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5270), 3, + ACTIONS(5288), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5274), 4, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5268), 5, + ACTIONS(5286), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81152] = 3, + [81333] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(2935), 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(2933), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5004), 1, anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, + ACTIONS(5006), 1, anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81200] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2869), 1, - anon_sym_COMMA, - ACTIONS(3059), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3057), 26, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 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(5104), 1, anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5106), 1, anon_sym_is, + ACTIONS(5108), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81250] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN, - ACTIONS(4763), 1, - anon_sym_LBRACK, - ACTIONS(4765), 1, - anon_sym_QMARK, - ACTIONS(4767), 1, - anon_sym_BANG, - ACTIONS(4769), 1, - anon_sym_LBRACK2, - ACTIONS(4771), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4781), 1, - anon_sym_as, - ACTIONS(4787), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4789), 1, - anon_sym_DASH_DASH, - ACTIONS(4791), 1, + ACTIONS(5296), 1, + anon_sym_CARET, + ACTIONS(5298), 1, anon_sym_AMP_AMP, - ACTIONS(4793), 1, + ACTIONS(5300), 1, anon_sym_PIPE_PIPE, - ACTIONS(4795), 1, - anon_sym_or, - ACTIONS(4797), 1, - anon_sym_is, - ACTIONS(4799), 1, - anon_sym_BANGis, - ACTIONS(4801), 1, + ACTIONS(5302), 1, anon_sym_in, - ACTIONS(4803), 1, + ACTIONS(5304), 1, anon_sym_BANGin, - ACTIONS(5334), 1, - anon_sym_CARET, - ACTIONS(5336), 1, - anon_sym_LT_DASH, - STATE(2063), 1, + ACTIONS(5542), 1, + anon_sym_LBRACE, + STATE(2439), 1, sym_argument_list, - STATE(2064), 1, + STATE(2440), 1, sym_or_block, - STATE(4085), 1, + STATE(4084), 1, sym_type_parameters, - ACTIONS(4759), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4783), 2, + ACTIONS(5290), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(4773), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4779), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4785), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5330), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [81348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 13, - anon_sym_DOT, + ACTIONS(5284), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5288), 3, anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3143), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5292), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5286), 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, - [81396] = 26, + [81431] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -262727,49 +263118,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5382), 1, + ACTIONS(5418), 1, sym_identifier, - ACTIONS(5386), 1, + ACTIONS(5422), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, + ACTIONS(5424), 1, anon_sym_mut, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5396), 1, + ACTIONS(5432), 1, anon_sym_shared, ACTIONS(5532), 1, anon_sym_RPAREN, - STATE(3036), 1, + STATE(3017), 1, sym_mutability_modifiers, - STATE(3881), 1, + STATE(3842), 1, sym_parameter_declaration, - STATE(3882), 1, + STATE(3843), 1, sym_type_parameter_declaration, - STATE(4353), 1, + STATE(4183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -262782,170 +263173,283 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [81490] = 3, + [81525] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3141), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3139), 27, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 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(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5180), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, anon_sym_AMP_AMP, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5544), 1, anon_sym_is, + ACTIONS(5546), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81538] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 13, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_QMARK_DOT, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2929), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81586] = 27, + [81620] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 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(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(575), 1, + anon_sym_LBRACK2, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(2727), 1, + anon_sym_DOT, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5548), 1, + anon_sym_DOT_DOT_DOT, + STATE(4317), 1, + sym_plain_type, + STATE(4320), 1, + sym__plain_type_without_special, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3410), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(5000), 1, + STATE(2406), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [81709] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5534), 1, + ACTIONS(5550), 1, anon_sym_is, - ACTIONS(5536), 1, + ACTIONS(5552), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81681] = 4, + [81804] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(5538), 1, - anon_sym_DOLLARelse, - ACTIONS(2681), 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(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(575), 1, + anon_sym_LBRACK2, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(2727), 1, + anon_sym_DOT, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5554), 1, + anon_sym_DOT_DOT_DOT, + STATE(4154), 1, + sym_plain_type, + STATE(4155), 1, + sym__plain_type_without_special, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(3410), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + STATE(2406), 3, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [81893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2732), 1, + anon_sym_LBRACK, + ACTIONS(3410), 1, + anon_sym_LBRACE, + ACTIONS(5556), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + ACTIONS(2727), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -262957,7 +263461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2679), 27, + ACTIONS(2725), 24, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -262967,12 +263471,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, @@ -262985,710 +263486,619 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [81730] = 27, + [81946] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5540), 1, + ACTIONS(5558), 1, anon_sym_is, - ACTIONS(5542), 1, + ACTIONS(5560), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [81825] = 27, + [82041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5544), 1, - anon_sym_is, - ACTIONS(5546), 1, - anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(3960), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3958), 12, anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 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(5200), 4, + ACTIONS(3962), 25, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [81920] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4701), 1, - anon_sym_as, - ACTIONS(4707), 1, - anon_sym_LPAREN, - ACTIONS(4717), 1, anon_sym_LBRACK, - ACTIONS(4719), 1, anon_sym_PLUS_PLUS, - ACTIONS(4721), 1, anon_sym_DASH_DASH, - ACTIONS(4723), 1, - anon_sym_QMARK, - ACTIONS(4725), 1, - anon_sym_BANG, - ACTIONS(4727), 1, - anon_sym_LBRACK2, - ACTIONS(4729), 1, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(4731), 1, anon_sym_PIPE_PIPE, - ACTIONS(4733), 1, anon_sym_or, - ACTIONS(4735), 1, + anon_sym_QMARK_DOT, anon_sym_POUND_LBRACK, - ACTIONS(4737), 1, anon_sym_is, - ACTIONS(4739), 1, anon_sym_BANGis, - ACTIONS(4741), 1, anon_sym_in, - ACTIONS(4743), 1, anon_sym_BANGin, - ACTIONS(5550), 1, - anon_sym_CARET, - STATE(2119), 1, - sym_argument_list, - STATE(2130), 1, - sym_or_block, - STATE(4365), 1, - sym_type_parameters, - ACTIONS(4699), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4713), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4709), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4711), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4715), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5548), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82015] = 27, + anon_sym_DOT_DOT, + [82090] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5098), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5100), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5102), 1, anon_sym_PIPE_PIPE, - ACTIONS(5552), 1, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5106), 1, anon_sym_is, - ACTIONS(5554), 1, + ACTIONS(5108), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5110), 1, + anon_sym_in, + ACTIONS(5112), 1, + anon_sym_BANGin, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5090), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5084), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5088), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5092), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5086), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82110] = 27, + [82185] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5556), 1, + ACTIONS(5562), 1, anon_sym_is, - ACTIONS(5558), 1, + ACTIONS(5564), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82205] = 27, + [82280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(4869), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, + anon_sym_COMMA, + STATE(3940), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(3287), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(5002), 1, anon_sym_BANG, - ACTIONS(5004), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3285), 25, + anon_sym_DOT, anon_sym_as, - ACTIONS(5092), 1, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5202), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, anon_sym_AMP_AMP, - ACTIONS(5210), 1, anon_sym_PIPE_PIPE, - ACTIONS(5296), 1, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, anon_sym_is, - ACTIONS(5298), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, + anon_sym_in, + anon_sym_BANGin, + [82333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3219), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 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(5200), 4, + ACTIONS(3222), 28, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82300] = 27, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [82380] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(4707), 1, + anon_sym_as, + ACTIONS(4713), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(4723), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(4725), 1, + anon_sym_PLUS_PLUS, + ACTIONS(4727), 1, + anon_sym_DASH_DASH, + ACTIONS(4729), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(4731), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(4733), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(4735), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(4737), 1, anon_sym_PIPE_PIPE, - ACTIONS(5560), 1, + ACTIONS(4739), 1, + anon_sym_or, + ACTIONS(4741), 1, + anon_sym_POUND_LBRACK, + ACTIONS(4743), 1, anon_sym_is, - ACTIONS(5562), 1, + ACTIONS(4745), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(4747), 1, + anon_sym_in, + ACTIONS(4749), 1, + anon_sym_BANGin, + ACTIONS(5570), 1, + anon_sym_CARET, + STATE(2123), 1, sym_argument_list, - STATE(4072), 1, + STATE(2125), 1, + sym_or_block, + STATE(4315), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(4705), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(4719), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(4715), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(4717), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(4721), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5568), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82395] = 3, + [82475] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3093), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3096), 28, - anon_sym_SEMI, - anon_sym_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 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(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5180), 1, anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, anon_sym_AMP_AMP, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5572), 1, anon_sym_is, + ACTIONS(5574), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82442] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2674), 1, - anon_sym_LBRACK, - ACTIONS(2907), 1, - anon_sym_LBRACE, - ACTIONS(5564), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(2669), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2667), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82495] = 27, + [82570] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5106), 1, + anon_sym_is, + ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5404), 1, anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5406), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5408), 1, anon_sym_PIPE_PIPE, - ACTIONS(5566), 1, - anon_sym_is, - ACTIONS(5568), 1, - anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5410), 1, + anon_sym_in, + ACTIONS(5412), 1, + anon_sym_BANGin, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5400), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5394), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5398), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5402), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5396), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82590] = 27, + [82665] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5570), 1, + ACTIONS(5576), 1, anon_sym_is, - ACTIONS(5572), 1, + ACTIONS(5578), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82685] = 23, + [82760] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -263701,45 +264111,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(619), 1, + ACTIONS(575), 1, anon_sym_LBRACK2, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(2669), 1, + ACTIONS(2727), 1, anon_sym_DOT, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5554), 1, anon_sym_DOT_DOT_DOT, - STATE(4144), 1, + STATE(4154), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2907), 3, + ACTIONS(3410), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -263752,10 +264162,12 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [82772] = 3, + [82847] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 11, + ACTIONS(5580), 1, + anon_sym_DOLLARelse, + ACTIONS(2643), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -263767,12 +264179,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3106), 28, - anon_sym_SEMI, + ACTIONS(2641), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -263781,9 +264190,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, @@ -263796,392 +264207,279 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [82819] = 27, + [82896] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5576), 1, + ACTIONS(5582), 1, anon_sym_is, - ACTIONS(5578), 1, + ACTIONS(5584), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [82914] = 27, + [82991] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5580), 1, + ACTIONS(5350), 1, anon_sym_is, - ACTIONS(5582), 1, + ACTIONS(5352), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83009] = 27, + [83086] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5584), 1, - anon_sym_is, ACTIONS(5586), 1, + anon_sym_is, + ACTIONS(5588), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83104] = 27, + [83181] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, - ACTIONS(5102), 1, + ACTIONS(5104), 1, anon_sym_or, - ACTIONS(5202), 1, + ACTIONS(5180), 1, anon_sym_CARET, - ACTIONS(5204), 1, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5206), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - ACTIONS(5208), 1, + ACTIONS(5190), 1, anon_sym_AMP_AMP, - ACTIONS(5210), 1, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - ACTIONS(5588), 1, - anon_sym_is, ACTIONS(5590), 1, + anon_sym_is, + ACTIONS(5592), 1, anon_sym_BANGis, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5198), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5192), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5196), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5200), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83199] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4996), 1, - anon_sym_LPAREN, - ACTIONS(4998), 1, - anon_sym_LBRACK, - ACTIONS(5000), 1, - anon_sym_QMARK, - ACTIONS(5002), 1, - anon_sym_BANG, - ACTIONS(5004), 1, - anon_sym_LBRACK2, - ACTIONS(5008), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, - anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, - ACTIONS(5094), 1, - anon_sym_DASH_DASH, - ACTIONS(5102), 1, - anon_sym_or, - ACTIONS(5104), 1, - anon_sym_is, - ACTIONS(5106), 1, - anon_sym_BANGis, - ACTIONS(5202), 1, - anon_sym_CARET, - ACTIONS(5204), 1, - anon_sym_in, - ACTIONS(5206), 1, - anon_sym_BANGin, - ACTIONS(5208), 1, - anon_sym_AMP_AMP, - ACTIONS(5210), 1, - anon_sym_PIPE_PIPE, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, - sym_argument_list, - STATE(4072), 1, - sym_type_parameters, - ACTIONS(5006), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5198), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5192), 3, + ACTIONS(5178), 3, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5196), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5200), 4, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5194), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5592), 1, - anon_sym_DOLLARelse, - ACTIONS(2855), 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(2853), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_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, - [83343] = 24, + [83276] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -264194,46 +264492,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(619), 1, + ACTIONS(575), 1, anon_sym_LBRACK2, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(2669), 1, + ACTIONS(2727), 1, anon_sym_DOT, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5548), 1, anon_sym_DOT_DOT_DOT, - STATE(4144), 1, + STATE(4317), 1, sym_plain_type, - STATE(4145), 1, - sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(2907), 3, + ACTIONS(3410), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - STATE(2346), 3, + STATE(2406), 4, + sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -264246,14 +264543,12 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [83432] = 4, + [83363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3945), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3943), 12, - anon_sym_DOT, + ACTIONS(5594), 1, + anon_sym_DOLLARelse, + ACTIONS(2873), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264265,7 +264560,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3947), 25, + ACTIONS(2871), 27, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -264275,9 +264571,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, @@ -264290,214 +264588,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - anon_sym_DOT_DOT, - [83481] = 23, + [83412] = 27, 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(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(619), 1, - anon_sym_LBRACK2, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(2669), 1, - anon_sym_DOT, - ACTIONS(3622), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5594), 1, - anon_sym_DOT_DOT_DOT, - STATE(4120), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2907), 3, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [83568] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(619), 1, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(2669), 1, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, + anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, + anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5596), 1, + anon_sym_is, + ACTIONS(5598), 1, + anon_sym_BANGis, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, anon_sym_DOT, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5394), 1, + anon_sym_QMARK_DOT, + ACTIONS(5182), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, - ACTIONS(5594), 1, - anon_sym_DOT_DOT_DOT, - STATE(4119), 1, - sym__plain_type_without_special, - STATE(4120), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(2907), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2346), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [83657] = 27, + anon_sym_GT_GT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83507] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - ACTIONS(4998), 1, + ACTIONS(5006), 1, anon_sym_LBRACK, - ACTIONS(5000), 1, + ACTIONS(5008), 1, anon_sym_QMARK, - ACTIONS(5002), 1, + ACTIONS(5010), 1, anon_sym_BANG, - ACTIONS(5004), 1, + ACTIONS(5012), 1, anon_sym_LBRACK2, - ACTIONS(5008), 1, + ACTIONS(5016), 1, anon_sym_POUND_LBRACK, - ACTIONS(5076), 1, + ACTIONS(5078), 1, anon_sym_as, - ACTIONS(5092), 1, - anon_sym_PLUS_PLUS, ACTIONS(5094), 1, - anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS, ACTIONS(5096), 1, - anon_sym_CARET, - ACTIONS(5098), 1, - anon_sym_AMP_AMP, - ACTIONS(5100), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5102), 1, - anon_sym_or, + anon_sym_DASH_DASH, ACTIONS(5104), 1, - anon_sym_is, + anon_sym_or, ACTIONS(5106), 1, - anon_sym_BANGis, + anon_sym_is, ACTIONS(5108), 1, + anon_sym_BANGis, + ACTIONS(5180), 1, + anon_sym_CARET, + ACTIONS(5186), 1, anon_sym_in, - ACTIONS(5110), 1, + ACTIONS(5188), 1, anon_sym_BANGin, - STATE(2362), 1, - sym_or_block, - STATE(2423), 1, + ACTIONS(5190), 1, + anon_sym_AMP_AMP, + ACTIONS(5192), 1, + anon_sym_PIPE_PIPE, + STATE(2439), 1, sym_argument_list, - STATE(4072), 1, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, sym_type_parameters, - ACTIONS(5006), 2, + ACTIONS(5014), 2, anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5088), 2, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(5082), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5086), 3, + ACTIONS(5176), 3, anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(5090), 4, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5084), 5, + ACTIONS(5174), 5, anon_sym_STAR, anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - [83752] = 6, + [83602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(5596), 1, - anon_sym_COMMA, - STATE(3976), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(3429), 11, + ACTIONS(3229), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264509,9 +264739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3427), 25, + ACTIONS(3232), 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, @@ -264535,141 +264768,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83805] = 3, + [83649] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3339), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, + anon_sym_LBRACK, + ACTIONS(5008), 1, anon_sym_QMARK, + ACTIONS(5010), 1, anon_sym_BANG, + ACTIONS(5012), 1, anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3337), 27, - anon_sym_DOT, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 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_COLON, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5180), 1, anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, anon_sym_AMP_AMP, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5600), 1, anon_sym_is, + ACTIONS(5602), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [83851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3355), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3353), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + [83744] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5004), 1, + anon_sym_LPAREN, + ACTIONS(5006), 1, anon_sym_LBRACK, - anon_sym_COLON, + ACTIONS(5008), 1, + anon_sym_QMARK, + ACTIONS(5010), 1, + anon_sym_BANG, + ACTIONS(5012), 1, + anon_sym_LBRACK2, + ACTIONS(5016), 1, + anon_sym_POUND_LBRACK, + ACTIONS(5078), 1, + anon_sym_as, + ACTIONS(5094), 1, anon_sym_PLUS_PLUS, + ACTIONS(5096), 1, anon_sym_DASH_DASH, + ACTIONS(5104), 1, + anon_sym_or, + ACTIONS(5180), 1, anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, + ACTIONS(5186), 1, + anon_sym_in, + ACTIONS(5188), 1, + anon_sym_BANGin, + ACTIONS(5190), 1, anon_sym_AMP_AMP, + ACTIONS(5192), 1, anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, + ACTIONS(5604), 1, anon_sym_is, + ACTIONS(5606), 1, anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [83897] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + STATE(2439), 1, + sym_argument_list, + STATE(2440), 1, + sym_or_block, + STATE(4084), 1, + sym_type_parameters, + ACTIONS(5014), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + ACTIONS(5182), 2, anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, + ACTIONS(5176), 3, + anon_sym_SLASH, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3167), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, + ACTIONS(5178), 3, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5184), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, + ACTIONS(5174), 5, + anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [83943] = 4, + [83839] = 3, ACTIONS(3), 1, sym_comment, - STATE(2315), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3103), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264681,10 +264919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3101), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -264693,9 +264930,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, @@ -264708,135 +264947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [83991] = 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(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - STATE(2368), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(595), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [84073] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, - anon_sym_map_LBRACK, - ACTIONS(85), 1, - anon_sym_chan, - ACTIONS(87), 1, - anon_sym_thread, - ACTIONS(89), 1, - anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5386), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5388), 1, - anon_sym_mut, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5396), 1, - anon_sym_shared, - STATE(3024), 1, - sym_mutability_modifiers, - STATE(4127), 1, - sym_type_parameter_declaration, - STATE(4353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [84161] = 3, + [83885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2981), 11, + ACTIONS(3265), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264848,7 +264962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2979), 27, + ACTIONS(3263), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264876,10 +264990,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84207] = 3, + [83931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3371), 11, + ACTIONS(3318), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264891,7 +265005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3369), 27, + ACTIONS(3316), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264919,10 +265033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84253] = 3, + [83977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3195), 11, + ACTIONS(3307), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264934,7 +265048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3193), 27, + ACTIONS(3305), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -264962,12 +265076,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84299] = 4, + [84023] = 3, ACTIONS(3), 1, sym_comment, - STATE(1319), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3303), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264979,10 +265091,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3301), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -264991,9 +265102,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, @@ -265006,12 +265119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84347] = 4, + [84069] = 3, ACTIONS(3), 1, sym_comment, - STATE(2175), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3017), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265023,10 +265134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3015), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265035,9 +265145,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, @@ -265050,10 +265162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84395] = 3, + [84115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3335), 11, + ACTIONS(3295), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265065,7 +265177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3333), 27, + ACTIONS(3293), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265093,10 +265205,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84441] = 3, + [84161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2991), 11, + ACTIONS(3241), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265108,7 +265220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2989), 27, + ACTIONS(3239), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265136,13 +265248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84487] = 4, + [84207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(3429), 11, + ACTIONS(3237), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265154,7 +265263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3427), 25, + ACTIONS(3235), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265165,9 +265274,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, @@ -265180,71 +265291,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84535] = 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(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - STATE(2454), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(559), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [84617] = 3, + [84253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3177), 11, + ACTIONS(3141), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265256,7 +265306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3175), 27, + ACTIONS(3139), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265284,10 +265334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84663] = 3, + [84299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3429), 11, + ACTIONS(3129), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265299,7 +265349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3427), 27, + ACTIONS(3127), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265327,12 +265377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84709] = 4, + [84345] = 4, ACTIONS(3), 1, sym_comment, - STATE(1792), 1, + STATE(1791), 1, sym_block, - ACTIONS(3275), 11, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265344,7 +265394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265371,10 +265421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84757] = 3, + [84393] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3153), 11, + STATE(2491), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265386,9 +265438,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3151), 27, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265397,11 +265450,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, @@ -265414,12 +265465,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84803] = 4, + [84441] = 3, ACTIONS(3), 1, sym_comment, - STATE(1006), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3095), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265431,10 +265480,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3093), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265443,9 +265491,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, @@ -265458,10 +265508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84851] = 3, + [84487] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3433), 11, + STATE(432), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265473,9 +265525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3431), 27, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265484,11 +265537,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, @@ -265501,10 +265552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84897] = 3, + [84535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3243), 11, + ACTIONS(3091), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265516,7 +265567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3241), 27, + ACTIONS(3089), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265544,10 +265595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84943] = 3, + [84581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3259), 11, + ACTIONS(3061), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265559,7 +265610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3257), 27, + ACTIONS(3059), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265587,10 +265638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [84989] = 3, + [84627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3367), 11, + ACTIONS(3322), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265602,7 +265653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3365), 27, + ACTIONS(3320), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265630,12 +265681,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85035] = 4, + [84673] = 3, ACTIONS(3), 1, sym_comment, - STATE(2872), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3057), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265647,10 +265696,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3055), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265659,9 +265707,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, @@ -265674,10 +265724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85083] = 3, + [84719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3363), 11, + ACTIONS(3444), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265689,7 +265739,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3361), 27, + ACTIONS(3442), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265717,12 +265767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85129] = 4, + [84765] = 3, ACTIONS(3), 1, sym_comment, - STATE(432), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3366), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265734,10 +265782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3364), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265746,9 +265793,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, @@ -265761,12 +265810,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85177] = 4, + [84811] = 21, ACTIONS(3), 1, sym_comment, - STATE(1934), 1, - sym_block, - ACTIONS(3275), 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(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + STATE(2408), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(621), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [84893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3404), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265778,10 +265886,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3402), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265790,9 +265897,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, @@ -265805,10 +265914,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85225] = 3, + [84939] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5422), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5424), 1, + anon_sym_mut, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + ACTIONS(5432), 1, + anon_sym_shared, + STATE(3019), 1, + sym_mutability_modifiers, + STATE(4183), 1, + sym_plain_type, + STATE(4312), 1, + sym_type_parameter_declaration, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [85027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3351), 11, + ACTIONS(2651), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265820,7 +265993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3349), 27, + ACTIONS(2653), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265848,12 +266021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85271] = 4, + [85073] = 4, ACTIONS(3), 1, sym_comment, - STATE(1667), 1, + STATE(1947), 1, sym_block, - ACTIONS(3275), 11, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265865,7 +266038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -265892,10 +266065,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85319] = 3, + [85121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3149), 11, + ACTIONS(3420), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265907,7 +266080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3147), 27, + ACTIONS(3418), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -265935,12 +266108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85365] = 4, + [85167] = 3, ACTIONS(3), 1, sym_comment, - STATE(1939), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3374), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -265952,10 +266123,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3372), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -265964,9 +266134,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, @@ -265979,132 +266151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85413] = 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(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - STATE(2353), 1, - sym_plain_type, - STATE(4551), 1, - sym_reference_expression, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(591), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [85495] = 21, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3660), 1, - anon_sym_LPAREN, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, - anon_sym_fn, - ACTIONS(5600), 1, - anon_sym_STAR, - ACTIONS(5602), 1, - anon_sym_QMARK, - ACTIONS(5604), 1, - anon_sym_BANG, - ACTIONS(5606), 1, - anon_sym_LBRACK2, - ACTIONS(5608), 1, - anon_sym_AMP, - ACTIONS(5610), 1, - anon_sym_shared, - ACTIONS(5612), 1, - anon_sym_map_LBRACK, - ACTIONS(5614), 1, - anon_sym_chan, - ACTIONS(5616), 1, - anon_sym_thread, - ACTIONS(5618), 1, - anon_sym_atomic, - STATE(1679), 1, - sym_plain_type, - STATE(4418), 1, - sym_reference_expression, - STATE(3386), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(563), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1681), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1677), 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, - [85577] = 3, + [85213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3203), 11, + STATE(1299), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266116,9 +266168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3201), 27, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266127,11 +266180,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, @@ -266144,12 +266195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85623] = 4, + [85261] = 3, ACTIONS(3), 1, sym_comment, - STATE(1158), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3299), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266161,10 +266210,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3297), 27, anon_sym_DOT, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266173,9 +266221,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, @@ -266188,10 +266238,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85671] = 3, + [85307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2867), 11, + ACTIONS(3448), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266203,7 +266253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2869), 27, + ACTIONS(3446), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266231,12 +266281,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85717] = 4, + [85353] = 3, ACTIONS(3), 1, sym_comment, - STATE(2657), 1, - sym_block, - ACTIONS(3275), 11, + ACTIONS(3408), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266248,49 +266296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 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(3171), 27, + ACTIONS(3406), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266318,10 +266324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85811] = 3, + [85399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3255), 11, + STATE(1679), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266333,9 +266341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3253), 27, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266344,11 +266353,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, @@ -266361,10 +266368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85857] = 3, + [85447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3343), 11, + ACTIONS(3145), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266376,7 +266383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3341), 27, + ACTIONS(3143), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266404,10 +266411,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85903] = 3, + [85493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3417), 11, + STATE(2180), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266419,9 +266428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3415), 27, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266430,11 +266440,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, @@ -266447,55 +266455,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [85949] = 21, + [85541] = 21, ACTIONS(495), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3660), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(5608), 1, anon_sym_fn, - ACTIONS(5600), 1, + ACTIONS(5610), 1, anon_sym_STAR, - ACTIONS(5602), 1, + ACTIONS(5612), 1, anon_sym_QMARK, - ACTIONS(5604), 1, + ACTIONS(5614), 1, anon_sym_BANG, - ACTIONS(5606), 1, + ACTIONS(5616), 1, anon_sym_LBRACK2, - ACTIONS(5608), 1, + ACTIONS(5618), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(5612), 1, + ACTIONS(5622), 1, anon_sym_map_LBRACK, - ACTIONS(5614), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(5628), 1, anon_sym_atomic, - STATE(1697), 1, + STATE(1694), 1, sym_plain_type, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(593), 4, + ACTIONS(585), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266508,10 +266516,12 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86031] = 3, + [85623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3409), 11, + STATE(1939), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266523,7 +266533,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3407), 27, + ACTIONS(3386), 26, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [85671] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3189), 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(3187), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266551,55 +266603,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86077] = 21, + [85717] = 21, ACTIONS(495), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3660), 1, + ACTIONS(3668), 1, anon_sym_LPAREN, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(5608), 1, anon_sym_fn, - ACTIONS(5600), 1, + ACTIONS(5610), 1, anon_sym_STAR, - ACTIONS(5602), 1, + ACTIONS(5612), 1, anon_sym_QMARK, - ACTIONS(5604), 1, + ACTIONS(5614), 1, anon_sym_BANG, - ACTIONS(5606), 1, + ACTIONS(5616), 1, anon_sym_LBRACK2, - ACTIONS(5608), 1, + ACTIONS(5618), 1, anon_sym_AMP, - ACTIONS(5610), 1, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(5612), 1, + ACTIONS(5622), 1, anon_sym_map_LBRACK, - ACTIONS(5614), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(5628), 1, anon_sym_atomic, - STATE(1674), 1, + STATE(1667), 1, sym_plain_type, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - ACTIONS(597), 4, + ACTIONS(619), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -266612,10 +266664,10 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [86159] = 3, + [85799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3191), 11, + ACTIONS(3291), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266627,7 +266679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3189), 27, + ACTIONS(3289), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266655,10 +266707,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86205] = 3, + [85845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3183), 11, + STATE(2876), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266670,9 +266724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3181), 27, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266681,11 +266736,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, @@ -266698,10 +266751,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86251] = 3, + [85893] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2977), 11, + ACTIONS(3287), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266713,7 +266766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(2975), 27, + ACTIONS(3285), 27, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266741,10 +266794,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86297] = 3, + [85939] = 21, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3454), 1, + sym_identifier, + ACTIONS(3668), 1, + anon_sym_LPAREN, + ACTIONS(3674), 1, + anon_sym_struct, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5610), 1, + anon_sym_STAR, + ACTIONS(5612), 1, + anon_sym_QMARK, + ACTIONS(5614), 1, + anon_sym_BANG, + ACTIONS(5616), 1, + anon_sym_LBRACK2, + ACTIONS(5618), 1, + anon_sym_AMP, + ACTIONS(5620), 1, + anon_sym_shared, + ACTIONS(5622), 1, + anon_sym_map_LBRACK, + ACTIONS(5624), 1, + anon_sym_chan, + ACTIONS(5626), 1, + anon_sym_thread, + ACTIONS(5628), 1, + anon_sym_atomic, + STATE(1665), 1, + sym_plain_type, + STATE(4436), 1, + sym_reference_expression, + STATE(3380), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(623), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + STATE(1687), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(1686), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [86021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3375), 11, + STATE(1006), 1, + sym_block, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266756,9 +266872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3373), 27, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_STAR, anon_sym_PERCENT, @@ -266767,11 +266884,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, @@ -266784,12 +266899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86343] = 4, + [86069] = 4, ACTIONS(3), 1, sym_comment, - STATE(2464), 1, + STATE(1161), 1, sym_block, - ACTIONS(3275), 11, + ACTIONS(3388), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266801,7 +266916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3273), 26, + ACTIONS(3386), 26, anon_sym_DOT, anon_sym_as, anon_sym_LBRACE, @@ -266828,14 +266943,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86391] = 5, + [86117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + STATE(2324), 1, + sym_block, + ACTIONS(3388), 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(3386), 26, anon_sym_DOT, - ACTIONS(5620), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [86165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + ACTIONS(3287), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266847,7 +267005,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3285), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -266872,14 +267031,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86440] = 5, + [86213] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + STATE(2657), 1, + sym_block, + ACTIONS(3388), 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(3386), 26, anon_sym_DOT, - ACTIONS(5622), 1, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [86261] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + STATE(2345), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(617), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [86343] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + STATE(2384), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + ACTIONS(581), 4, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RPAREN, - ACTIONS(3437), 11, + anon_sym_RBRACK, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [86425] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5630), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266891,7 +267214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -266916,12 +267240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86489] = 4, + [86472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5624), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5632), 1, + anon_sym_RBRACK, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266933,7 +267257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -266959,14 +267283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86536] = 5, + [86519] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5626), 1, + ACTIONS(5634), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -266978,7 +267302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267003,12 +267327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86585] = 4, + [86568] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5628), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5636), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267020,8 +267346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267046,12 +267371,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86632] = 4, + [86617] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5626), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5638), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267063,8 +267390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267089,12 +267415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86679] = 4, + [86666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5630), 1, + ACTIONS(5640), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267106,7 +267432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267132,14 +267458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86726] = 5, + [86713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5624), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5638), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267151,7 +267475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267176,14 +267501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86775] = 5, + [86760] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5630), 1, + ACTIONS(5636), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267195,7 +267518,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267220,14 +267544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86824] = 5, + [86807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5632), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5636), 1, + anon_sym_RBRACK, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267239,7 +267561,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267264,12 +267587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86873] = 4, + [86854] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5632), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5642), 1, + anon_sym_RBRACK, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267281,7 +267604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267307,12 +267630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86920] = 4, + [86901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, + ACTIONS(5642), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267324,7 +267647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267350,14 +267673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [86967] = 5, + [86948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5628), 1, + ACTIONS(5638), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267369,7 +267690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267394,12 +267716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87016] = 4, + [86995] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5630), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5644), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267411,8 +267735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267437,14 +267760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87063] = 5, + [87044] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5634), 1, + ACTIONS(5646), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267456,7 +267777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267481,12 +267803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87112] = 4, + [87091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5646), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267498,7 +267820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267524,14 +267846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87159] = 5, + [87138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5638), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(5648), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267543,7 +267865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267568,14 +267890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87208] = 5, + [87187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5640), 1, + ACTIONS(5648), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267587,7 +267907,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267612,14 +267933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87257] = 5, + [87234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5642), 1, + ACTIONS(5650), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267631,7 +267952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267656,12 +267977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87306] = 4, + [87283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(5652), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267673,7 +267994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267699,12 +268020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87353] = 4, + [87330] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5644), 1, - anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5630), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267716,8 +268039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267742,12 +268064,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87400] = 4, + [87379] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5642), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5652), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267759,8 +268083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267785,12 +268108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87447] = 4, + [87428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 1, + ACTIONS(5650), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267802,7 +268125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267828,12 +268151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87494] = 4, + [87475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5642), 1, + ACTIONS(5650), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267845,7 +268168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267871,12 +268194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87541] = 4, + [87522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5620), 1, + ACTIONS(5644), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267888,7 +268211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -267914,14 +268237,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87588] = 5, + [87569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5646), 1, + ACTIONS(5654), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267933,7 +268256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -267958,14 +268281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87637] = 5, + [87618] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5648), 1, + ACTIONS(5644), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -267977,7 +268298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268002,14 +268324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87686] = 5, + [87665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5650), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(5656), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268021,7 +268341,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268046,14 +268367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87735] = 5, + [87712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5636), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(5634), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268065,7 +268384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268090,12 +268410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87784] = 4, + [87759] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5640), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5658), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268107,8 +268429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268133,14 +268454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87831] = 5, + [87808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5652), 1, + ACTIONS(5658), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268152,7 +268471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268177,12 +268497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87880] = 4, + [87855] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(5660), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268194,7 +268514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268220,12 +268540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87927] = 4, + [87902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5648), 1, - anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(5662), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268237,7 +268557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268263,12 +268583,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [87974] = 4, + [87949] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5652), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5656), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268280,8 +268602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268306,12 +268627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88021] = 4, + [87998] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5654), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5660), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268323,8 +268646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268349,12 +268671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88068] = 4, + [88047] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5622), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5664), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268366,8 +268690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268392,14 +268715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88115] = 5, + [88096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5656), 1, + ACTIONS(5666), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268411,7 +268732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268436,14 +268758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88164] = 5, + [88143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5658), 1, + ACTIONS(5666), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268455,7 +268775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268480,12 +268801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88213] = 4, + [88190] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5660), 1, + ACTIONS(5664), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268497,7 +268818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268523,14 +268844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88260] = 5, + [88237] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5662), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5668), 1, + anon_sym_RBRACK, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268542,7 +268861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268567,12 +268887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88309] = 4, + [88284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(5640), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268584,7 +268904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268610,12 +268930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88356] = 4, + [88331] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5662), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5670), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268627,8 +268949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268653,14 +268974,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88403] = 5, + [88380] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5654), 1, + ACTIONS(5670), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268672,7 +268991,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268697,12 +269017,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88452] = 4, + [88427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5646), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268714,8 +269036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268740,12 +269061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88499] = 4, + [88476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5646), 1, + ACTIONS(5668), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268757,7 +269078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268783,12 +269104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88546] = 4, + [88523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(5672), 1, + anon_sym_RPAREN, + ACTIONS(3287), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268800,7 +269121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3285), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268826,12 +269147,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88593] = 4, + [88570] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5646), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5666), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268843,8 +269166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268869,12 +269191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88640] = 4, + [88619] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5658), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5642), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268886,8 +269210,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 24, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [88668] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, anon_sym_DOT, + ACTIONS(5640), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268912,12 +269279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88687] = 4, + [88717] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5674), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268929,7 +269296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -268955,14 +269322,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88734] = 5, + [88764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5664), 1, + ACTIONS(5674), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -268974,7 +269341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -268999,12 +269366,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88783] = 4, + [88813] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5638), 1, - anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5662), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269016,8 +269385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269042,12 +269410,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88830] = 4, + [88862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5656), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5676), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269059,8 +269429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269085,12 +269454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88877] = 4, + [88911] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5656), 1, + ACTIONS(5678), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269102,7 +269471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269128,12 +269497,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88924] = 4, + [88958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5664), 1, + ACTIONS(5678), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269145,7 +269514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269171,12 +269540,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [88971] = 4, + [89005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5636), 1, + ACTIONS(5654), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269188,7 +269557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269214,12 +269583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89018] = 4, + [89052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5634), 1, + ACTIONS(5632), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269231,7 +269600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269257,12 +269626,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89065] = 4, + [89099] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5658), 1, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5678), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269274,8 +269645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269300,12 +269670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89112] = 4, + [89148] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5666), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5632), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269317,8 +269689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, - anon_sym_DOT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269343,12 +269714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89159] = 4, + [89197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, + ACTIONS(5680), 1, anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269360,7 +269731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3247), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269386,12 +269757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89206] = 4, + [89244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, + ACTIONS(5680), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269403,7 +269774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269429,14 +269800,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89253] = 5, + [89291] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5668), 1, + ACTIONS(5680), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269448,7 +269819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269473,14 +269844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89302] = 5, + [89340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5666), 1, + ACTIONS(5682), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3287), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269492,7 +269861,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3285), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269517,14 +269887,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89351] = 5, + [89387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(5684), 1, + anon_sym_RPAREN, + ACTIONS(3287), 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(3285), 25, anon_sym_DOT, - ACTIONS(5644), 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, + [89434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5674), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269536,7 +269947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269561,14 +269973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89400] = 5, + [89481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5670), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5686), 1, + anon_sym_RBRACK, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269580,7 +269990,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269605,12 +270016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89449] = 4, + [89528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5670), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5686), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269622,7 +270033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269648,14 +270059,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89496] = 5, + [89575] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, + ACTIONS(4877), 1, anon_sym_DOT, - ACTIONS(5660), 1, + ACTIONS(5686), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3309), 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, + [89624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5688), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269667,7 +270122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269692,12 +270147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89545] = 4, + [89673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5628), 1, - anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(5688), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269709,7 +270164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269735,12 +270190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89592] = 4, + [89720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, + ACTIONS(5690), 1, anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269752,7 +270207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269778,12 +270233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89639] = 4, + [89767] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5674), 1, - anon_sym_RBRACK, - ACTIONS(3299), 11, + ACTIONS(4877), 1, + anon_sym_DOT, + ACTIONS(5690), 1, + anon_sym_RPAREN, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269795,8 +270252,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3297), 25, + ACTIONS(3309), 24, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_AMP_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_or, + anon_sym_QMARK_DOT, + anon_sym_POUND_LBRACK, + anon_sym_is, + anon_sym_BANGis, + anon_sym_in, + anon_sym_BANGin, + [89816] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, anon_sym_DOT, + ACTIONS(5668), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_GT_GT, + ACTIONS(3309), 24, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269821,12 +270321,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89686] = 4, + [89865] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5674), 1, + ACTIONS(5654), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269838,7 +270338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 25, + ACTIONS(3309), 25, anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, @@ -269864,14 +270364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89733] = 5, + [89912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5674), 1, + ACTIONS(5676), 1, anon_sym_RBRACK, - ACTIONS(3437), 11, + ACTIONS(3249), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269883,7 +270381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3247), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269908,14 +270407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89782] = 5, + [89959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4867), 1, - anon_sym_DOT, - ACTIONS(5672), 1, - anon_sym_RPAREN, - ACTIONS(3437), 11, + ACTIONS(5676), 1, + anon_sym_RBRACK, + ACTIONS(3311), 11, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -269927,7 +270424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_GT_GT, - ACTIONS(3435), 24, + ACTIONS(3309), 25, + anon_sym_DOT, anon_sym_as, anon_sym_LPAREN, anon_sym_STAR, @@ -269952,46 +270450,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANGis, anon_sym_in, anon_sym_BANGin, - [89831] = 22, + [90006] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5678), 1, + ACTIONS(5694), 1, anon_sym_EQ, - ACTIONS(5680), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5690), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, STATE(1536), 1, sym_plain_type, - STATE(1538), 1, + STATE(1537), 1, sym__global_var_value, - STATE(4557), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1431), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, STATE(1487), 4, @@ -269999,7 +270497,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270012,54 +270510,54 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [89913] = 22, + [90088] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(5608), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5694), 1, + ACTIONS(5710), 1, anon_sym_EQ, - ACTIONS(5696), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(3788), 1, + STATE(3778), 1, sym__global_var_value, - STATE(3791), 1, + STATE(3781), 1, sym_plain_type, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270072,7 +270570,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [89995] = 21, + [90170] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270085,39 +270583,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_DOT_DOT_DOT, - STATE(4144), 1, + ACTIONS(5724), 1, + anon_sym_RPAREN, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270130,7 +270628,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90074] = 21, + [90249] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270143,39 +270641,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5708), 1, + ACTIONS(5726), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270188,52 +270686,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90153] = 21, + [90328] = 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(605), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5698), 1, + anon_sym_QMARK, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5710), 1, - anon_sym_RPAREN, - STATE(4031), 1, + ACTIONS(5706), 1, + anon_sym_map_LBRACK, + STATE(1437), 1, sym_plain_type, - STATE(4551), 1, + STATE(1570), 1, + sym__type_union_list, + STATE(4563), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270246,7 +270744,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90232] = 21, + [90407] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270259,39 +270757,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5712), 1, + ACTIONS(5728), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270304,97 +270802,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90311] = 21, + [90486] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 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(561), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5682), 1, - anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1444), 1, - sym_plain_type, - STATE(1571), 1, - sym__type_union_list, - STATE(4557), 1, - sym_reference_expression, - STATE(1431), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1487), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1490), 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, - [90390] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(2437), 1, + ACTIONS(5730), 1, + anon_sym_RPAREN, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - ACTIONS(4597), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4599), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270407,7 +270860,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90443] = 21, + [90565] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270420,39 +270873,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5714), 1, + ACTIONS(5732), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270465,7 +270918,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90522] = 21, + [90644] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270478,39 +270931,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5716), 1, - anon_sym_RPAREN, - STATE(4031), 1, + ACTIONS(5554), 1, + anon_sym_DOT_DOT_DOT, + STATE(4154), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270523,52 +270976,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90601] = 21, + [90723] = 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(605), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5698), 1, + anon_sym_QMARK, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5718), 1, - anon_sym_RPAREN, - STATE(4031), 1, + ACTIONS(5706), 1, + anon_sym_map_LBRACK, + STATE(1437), 1, sym_plain_type, - STATE(4551), 1, + STATE(1583), 1, + sym__type_union_list, + STATE(4563), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270581,7 +271034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90680] = 21, + [90802] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270594,39 +271047,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5720), 1, - anon_sym_RPAREN, - STATE(4031), 1, + ACTIONS(5734), 1, + sym_identifier, + ACTIONS(5736), 1, + anon_sym_DOT_DOT_DOT, + STATE(4162), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270639,7 +271092,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90759] = 21, + [90881] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270652,39 +271105,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5722), 1, + ACTIONS(5738), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270697,7 +271150,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90838] = 21, + [90960] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270710,39 +271163,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5724), 1, - anon_sym_RPAREN, - STATE(4031), 1, + ACTIONS(5736), 1, + anon_sym_DOT_DOT_DOT, + STATE(4162), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270755,7 +271208,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90917] = 21, + [91039] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270768,39 +271221,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5726), 1, + ACTIONS(5740), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270813,7 +271266,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [90996] = 21, + [91118] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270826,39 +271279,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5728), 1, + ACTIONS(5742), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270871,7 +271324,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91075] = 21, + [91197] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270884,39 +271337,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5730), 1, + ACTIONS(5744), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270929,7 +271382,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91154] = 21, + [91276] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -270942,39 +271395,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5746), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -270987,52 +271440,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91233] = 21, + [91355] = 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(605), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5698), 1, + anon_sym_QMARK, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5734), 1, - anon_sym_RPAREN, - STATE(4031), 1, + ACTIONS(5706), 1, + anon_sym_map_LBRACK, + STATE(1437), 1, sym_plain_type, - STATE(4551), 1, + STATE(1592), 1, + sym__type_union_list, + STATE(4563), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271045,7 +271498,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91312] = 21, + [91434] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271058,39 +271511,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5736), 1, + ACTIONS(5748), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271103,7 +271556,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91391] = 21, + [91513] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271116,39 +271569,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5738), 1, + ACTIONS(5750), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271161,52 +271614,39 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91470] = 21, + [91592] = 8, 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(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - ACTIONS(5594), 1, - anon_sym_DOT_DOT_DOT, - STATE(4120), 1, + STATE(2438), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + ACTIONS(4599), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4601), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271219,7 +271659,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91549] = 21, + [91645] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271232,39 +271672,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5740), 1, + ACTIONS(5752), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271277,7 +271717,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91628] = 21, + [91724] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271290,39 +271730,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_DOT_DOT_DOT, - STATE(4094), 1, + ACTIONS(5754), 1, + anon_sym_RPAREN, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271335,7 +271775,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91707] = 21, + [91803] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271348,39 +271788,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5744), 1, + ACTIONS(5756), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271393,7 +271833,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91786] = 21, + [91882] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271406,39 +271846,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5746), 1, + ACTIONS(5758), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271451,7 +271891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91865] = 21, + [91961] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271464,39 +271904,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5748), 1, + ACTIONS(5760), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271509,110 +271949,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [91944] = 21, + [92040] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, - sym_identifier, - ACTIONS(3634), 1, - anon_sym_fn, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(3648), 1, - anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(5680), 1, - anon_sym_STAR, - ACTIONS(5682), 1, - anon_sym_QMARK, - ACTIONS(5684), 1, - anon_sym_BANG, - ACTIONS(5686), 1, - anon_sym_LBRACK2, - ACTIONS(5688), 1, - anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1444), 1, - sym_plain_type, - STATE(1591), 1, - sym__type_union_list, - STATE(4557), 1, - sym_reference_expression, - STATE(1431), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1487), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1490), 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, - [92023] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3630), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5682), 1, - anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1444), 1, + ACTIONS(5762), 1, + anon_sym_RPAREN, + STATE(4005), 1, sym_plain_type, - STATE(1589), 1, - sym__type_union_list, - STATE(4557), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1431), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271625,7 +272007,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92102] = 21, + [92119] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271638,39 +272020,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5750), 1, + ACTIONS(5764), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271683,7 +272065,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92181] = 21, + [92198] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271696,39 +272078,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5752), 1, + ACTIONS(5766), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271741,7 +272123,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92260] = 21, + [92277] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271754,39 +272136,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5754), 1, + ACTIONS(5768), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271799,7 +272181,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92339] = 21, + [92356] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271812,39 +272194,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5756), 1, + ACTIONS(5770), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271857,7 +272239,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92418] = 21, + [92435] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271870,39 +272252,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5758), 1, - sym_identifier, - STATE(4094), 1, + ACTIONS(5772), 1, + anon_sym_RPAREN, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271915,52 +272297,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92497] = 21, + [92514] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 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(561), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5682), 1, - anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1444), 1, + ACTIONS(5548), 1, + anon_sym_DOT_DOT_DOT, + STATE(4317), 1, sym_plain_type, - STATE(1523), 1, - sym__type_union_list, - STATE(4557), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1431), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -271973,7 +272355,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92576] = 21, + [92593] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -271986,39 +272368,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(611), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5760), 1, - sym_identifier, - STATE(4094), 1, + ACTIONS(5774), 1, + anon_sym_RPAREN, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272031,7 +272413,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92655] = 21, + [92672] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272044,39 +272426,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5762), 1, - anon_sym_RPAREN, - STATE(4031), 1, + ACTIONS(5736), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5776), 1, + sym_identifier, + STATE(4162), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272089,7 +272471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92734] = 21, + [92751] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272102,39 +272484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5764), 1, + ACTIONS(5778), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272147,7 +272529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92813] = 21, + [92830] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272160,39 +272542,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5766), 1, + ACTIONS(5780), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272205,7 +272587,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92892] = 21, + [92909] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -272218,39 +272600,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5768), 1, + ACTIONS(5782), 1, anon_sym_RPAREN, - STATE(4031), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272263,50 +272645,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [92971] = 20, + [92988] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(2633), 1, + STATE(1437), 1, sym_plain_type, - STATE(4423), 1, + STATE(1528), 1, + sym__type_union_list, + STATE(4563), 1, sym_reference_expression, - STATE(2485), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272319,50 +272703,52 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93047] = 20, + [93067] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - sym_identifier, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, - anon_sym_fn, - ACTIONS(3801), 1, - anon_sym_struct, - ACTIONS(3811), 1, - anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5786), 1, - anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2115), 1, + ACTIONS(5784), 1, + anon_sym_RPAREN, + STATE(4005), 1, sym_plain_type, - STATE(4465), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1942), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272375,50 +272761,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93123] = 20, + [93146] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, - sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, ACTIONS(571), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, + anon_sym_fn, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(4013), 1, + anon_sym_map_LBRACK, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, - anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5792), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(735), 1, + STATE(2357), 1, sym_plain_type, - STATE(4482), 1, + STATE(4626), 1, sym_reference_expression, - STATE(414), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272431,50 +272817,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93199] = 20, + [93222] = 20, 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(605), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(4098), 1, + anon_sym_chan, + ACTIONS(4100), 1, + anon_sym_thread, + ACTIONS(4102), 1, + anon_sym_atomic, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5798), 1, + anon_sym_QMARK, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(4031), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2538), 1, sym_plain_type, - STATE(4551), 1, + STATE(4445), 1, sym_reference_expression, - STATE(3543), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272487,22 +272873,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93275] = 20, + [93298] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(3508), 1, anon_sym_atomic, ACTIONS(5808), 1, anon_sym_LPAREN, @@ -272518,19 +272904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(2206), 1, + STATE(1273), 1, sym_plain_type, - STATE(4503), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2167), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272543,25 +272929,27 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93351] = 20, + [93374] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, ACTIONS(5822), 1, anon_sym_STAR, ACTIONS(5824), 1, @@ -272572,21 +272960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5832), 1, - anon_sym_map_LBRACK, - STATE(1690), 1, + STATE(1981), 1, sym_plain_type, - STATE(4437), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272599,50 +272985,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93427] = 20, + [93450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5770), 1, - anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5782), 1, - anon_sym_map_LBRACK, - STATE(2499), 1, + STATE(1977), 1, sym_plain_type, - STATE(4423), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2485), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272655,50 +273041,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93503] = 20, + [93526] = 20, 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(605), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, + anon_sym_chan, + ACTIONS(3810), 1, + anon_sym_thread, + ACTIONS(3812), 1, + anon_sym_atomic, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5830), 1, anon_sym_AMP, - STATE(3909), 1, + STATE(1956), 1, sym_plain_type, - STATE(4551), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272711,50 +273097,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93579] = 20, + [93602] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(2498), 1, + STATE(2236), 1, sym_plain_type, - STATE(4423), 1, + STATE(4525), 1, sym_reference_expression, - STATE(2485), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272767,50 +273153,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93655] = 20, + [93678] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(650), 1, + STATE(1983), 1, sym_plain_type, - STATE(4482), 1, + STATE(4487), 1, sym_reference_expression, - STATE(414), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272823,50 +273209,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93731] = 20, + [93754] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5818), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(2535), 1, + STATE(1226), 1, sym_plain_type, - STATE(4423), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2485), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272879,50 +273265,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93807] = 20, + [93830] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5770), 1, - anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5782), 1, - anon_sym_map_LBRACK, - STATE(2543), 1, + STATE(2045), 1, sym_plain_type, - STATE(4423), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2485), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272935,50 +273321,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93883] = 20, + [93906] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(2207), 1, + STATE(2047), 1, sym_plain_type, - STATE(4503), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2167), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -272991,50 +273377,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [93959] = 20, + [93982] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, - anon_sym_fn, - ACTIONS(3831), 1, - anon_sym_struct, - ACTIONS(3841), 1, - anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5836), 1, - anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2136), 1, + STATE(4028), 1, sym_plain_type, - STATE(4402), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1932), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273047,50 +273433,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94035] = 20, + [94058] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3831), 1, - anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2135), 1, + STATE(2376), 1, sym_plain_type, - STATE(4402), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273103,50 +273489,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94111] = 20, + [94134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, - anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, - anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(2284), 1, + ACTIONS(5852), 1, + anon_sym_AMP, + STATE(1326), 1, sym_plain_type, - STATE(4503), 1, + STATE(4409), 1, sym_reference_expression, - STATE(2167), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273159,50 +273545,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94187] = 20, + [94210] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(2501), 1, + STATE(1913), 1, sym_plain_type, - STATE(4423), 1, + STATE(4508), 1, sym_reference_expression, - STATE(2485), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273215,50 +273601,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94263] = 20, + [94286] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(2573), 1, + STATE(466), 1, sym_plain_type, - STATE(4423), 1, + STATE(4484), 1, sym_reference_expression, - STATE(2485), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273271,50 +273657,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94339] = 20, + [94362] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3742), 1, + anon_sym_struct, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5854), 1, + anon_sym_LPAREN, + ACTIONS(5856), 1, + anon_sym_STAR, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2391), 1, + ACTIONS(5866), 1, + anon_sym_map_LBRACK, + STATE(1912), 1, sym_plain_type, - STATE(4551), 1, + STATE(4508), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273327,50 +273713,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94415] = 20, + [94438] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5690), 1, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1494), 1, + STATE(1909), 1, sym_plain_type, - STATE(4557), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1431), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273383,50 +273769,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94491] = 20, + [94514] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(2281), 1, + STATE(456), 1, sym_plain_type, - STATE(4503), 1, + STATE(4484), 1, sym_reference_expression, - STATE(2167), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273439,50 +273825,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94567] = 20, + [94590] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3742), 1, + anon_sym_struct, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5854), 1, + anon_sym_LPAREN, + ACTIONS(5856), 1, + anon_sym_STAR, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2388), 1, + ACTIONS(5866), 1, + anon_sym_map_LBRACK, + STATE(1900), 1, sym_plain_type, - STATE(4551), 1, + STATE(4508), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273495,50 +273881,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94643] = 20, + [94666] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3989), 1, + ACTIONS(4001), 1, anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2385), 1, + STATE(2431), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273551,7 +273937,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94719] = 20, + [94742] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(3734), 1, @@ -273568,33 +273954,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, ACTIONS(5854), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5856), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5858), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5860), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5862), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5864), 1, + anon_sym_AMP, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1854), 1, + STATE(1893), 1, sym_plain_type, - STATE(4486), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273607,50 +273993,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94795] = 20, + [94818] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 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(561), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(4102), 1, - anon_sym_chan, - ACTIONS(4104), 1, - anon_sym_thread, - ACTIONS(4106), 1, - anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5774), 1, - anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5782), 1, - anon_sym_map_LBRACK, - STATE(2610), 1, - sym_plain_type, - STATE(4423), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2485), 2, + STATE(4712), 1, + sym_plain_type, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273663,50 +274049,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94871] = 20, + [94894] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 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(561), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3652), 1, - anon_sym_chan, - ACTIONS(3654), 1, - anon_sym_thread, - ACTIONS(3656), 1, - anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5682), 1, - anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1456), 1, + STATE(4018), 1, sym_plain_type, - STATE(4557), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1431), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273719,50 +274105,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [94947] = 20, + [94970] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(571), 1, + anon_sym_struct, ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3638), 1, - anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(4013), 1, + anon_sym_map_LBRACK, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(5680), 1, - anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5792), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1491), 1, + STATE(2415), 1, sym_plain_type, - STATE(4557), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1431), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273775,50 +274161,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95023] = 20, + [95046] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, + anon_sym_fn, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, + anon_sym_shared, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(85), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(89), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5786), 1, + anon_sym_QMARK, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4574), 1, + STATE(2414), 1, sym_plain_type, - STATE(3543), 2, + STATE(4626), 1, + sym_reference_expression, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273831,25 +274217,27 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95099] = 20, + [95122] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, ACTIONS(5822), 1, anon_sym_STAR, ACTIONS(5824), 1, @@ -273860,21 +274248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5832), 1, - anon_sym_map_LBRACK, - STATE(1684), 1, + STATE(1976), 1, sym_plain_type, - STATE(4437), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273887,50 +274273,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95175] = 20, + [95198] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3843), 1, - anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(1950), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2658), 1, sym_plain_type, - STATE(4402), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273943,50 +274329,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95251] = 20, + [95274] = 20, 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(605), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3688), 1, + anon_sym_chan, + ACTIONS(3690), 1, + anon_sym_thread, + ACTIONS(3692), 1, + anon_sym_atomic, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5884), 1, + anon_sym_QMARK, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(4525), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1661), 1, sym_plain_type, - STATE(4551), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -273999,50 +274385,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95327] = 20, + [95350] = 20, 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(605), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(4098), 1, + anon_sym_chan, + ACTIONS(4100), 1, + anon_sym_thread, + ACTIONS(4102), 1, + anon_sym_atomic, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5798), 1, + anon_sym_QMARK, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(2431), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2639), 1, sym_plain_type, - STATE(4551), 1, + STATE(4445), 1, sym_reference_expression, - STATE(3543), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274055,50 +274441,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95403] = 20, + [95426] = 20, 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(605), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(607), 1, + anon_sym_chan, + ACTIONS(609), 1, + anon_sym_thread, + ACTIONS(611), 1, + anon_sym_atomic, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(2428), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(467), 1, sym_plain_type, - STATE(4551), 1, + STATE(4484), 1, sym_reference_expression, - STATE(3543), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274111,50 +274497,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95479] = 20, + [95502] = 20, 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(605), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3756), 1, + anon_sym_chan, + ACTIONS(3758), 1, + anon_sym_thread, + ACTIONS(3760), 1, + anon_sym_atomic, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5858), 1, + anon_sym_QMARK, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2426), 1, + ACTIONS(5866), 1, + anon_sym_map_LBRACK, + STATE(1917), 1, sym_plain_type, - STATE(4551), 1, + STATE(4508), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274167,50 +274553,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95555] = 20, + [95578] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 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(561), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3974), 1, - anon_sym_chan, - ACTIONS(3976), 1, - anon_sym_thread, - ACTIONS(3978), 1, - anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5812), 1, - anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(2280), 1, + STATE(3899), 1, sym_plain_type, - STATE(4503), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2167), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274223,50 +274609,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95631] = 20, + [95654] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(1859), 1, + STATE(1018), 1, sym_plain_type, - STATE(4486), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274279,50 +274665,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95707] = 20, + [95730] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, - anon_sym_fn, - ACTIONS(3831), 1, - anon_sym_struct, - ACTIONS(3841), 1, - anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5836), 1, - anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2043), 1, + STATE(3958), 1, sym_plain_type, - STATE(4402), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1932), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274335,50 +274721,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95783] = 20, + [95806] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5866), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5878), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(3434), 1, + STATE(1660), 1, sym_plain_type, - STATE(4418), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274391,50 +274777,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95859] = 20, + [95882] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1931), 1, + STATE(1659), 1, sym_plain_type, - STATE(4486), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274447,50 +274833,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [95935] = 20, + [95958] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(1689), 1, + STATE(1077), 1, sym_plain_type, - STATE(4437), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274503,50 +274889,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96011] = 20, + [96034] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1470), 1, + STATE(1950), 1, sym_plain_type, - STATE(4557), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1431), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274559,50 +274945,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96087] = 20, + [96110] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1887), 1, + STATE(1695), 1, sym_plain_type, - STATE(4486), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274615,50 +275001,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96163] = 20, + [96186] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3989), 1, + ACTIONS(3606), 1, anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3608), 1, + anon_sym_struct, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(3620), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5844), 1, - anon_sym_QMARK, ACTIONS(5846), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5848), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5850), 1, + anon_sym_LBRACK2, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(2428), 1, + STATE(1332), 1, sym_plain_type, - STATE(4551), 1, + STATE(4409), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274671,50 +275057,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96239] = 20, + [96262] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3490), 1, + anon_sym_struct, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5808), 1, + anon_sym_LPAREN, + ACTIONS(5810), 1, + anon_sym_STAR, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5818), 1, anon_sym_AMP, - STATE(2426), 1, + ACTIONS(5820), 1, + anon_sym_map_LBRACK, + STATE(1244), 1, sym_plain_type, - STATE(4551), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274727,50 +275113,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96315] = 20, + [96338] = 20, 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(605), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, + anon_sym_chan, + ACTIONS(3810), 1, + anon_sym_thread, + ACTIONS(3812), 1, + anon_sym_atomic, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5824), 1, + anon_sym_QMARK, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5830), 1, anon_sym_AMP, - STATE(2404), 1, + STATE(1960), 1, sym_plain_type, - STATE(4551), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274783,50 +275169,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96391] = 20, + [96414] = 20, 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(605), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3688), 1, + anon_sym_chan, + ACTIONS(3690), 1, + anon_sym_thread, + ACTIONS(3692), 1, + anon_sym_atomic, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5884), 1, + anon_sym_QMARK, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(3832), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1672), 1, sym_plain_type, - STATE(4551), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274839,7 +275225,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96467] = 20, + [96490] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -274852,37 +275238,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, STATE(4044), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274895,50 +275281,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96543] = 20, + [96566] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1734), 1, + STATE(1662), 1, sym_plain_type, - STATE(4437), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -274951,50 +275337,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96619] = 20, + [96642] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 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(561), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(4102), 1, - anon_sym_chan, - ACTIONS(4104), 1, - anon_sym_thread, - ACTIONS(4106), 1, - anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5774), 1, - anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5782), 1, - anon_sym_map_LBRACK, - STATE(2521), 1, + STATE(4067), 1, sym_plain_type, - STATE(4423), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2485), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275007,50 +275393,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96695] = 20, + [96718] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3794), 1, + anon_sym_struct, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(3806), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5822), 1, + anon_sym_STAR, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5830), 1, anon_sym_AMP, - STATE(2345), 1, + STATE(2109), 1, sym_plain_type, - STATE(4551), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275063,50 +275449,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96771] = 20, + [96794] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3742), 1, + anon_sym_struct, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5854), 1, + anon_sym_LPAREN, + ACTIONS(5856), 1, + anon_sym_STAR, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2344), 1, + ACTIONS(5866), 1, + anon_sym_map_LBRACK, + STATE(1883), 1, sym_plain_type, - STATE(4551), 1, + STATE(4508), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275119,50 +275505,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96847] = 20, + [96870] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(3843), 1, - anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(5854), 1, + anon_sym_LPAREN, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(2123), 1, + ACTIONS(5866), 1, + anon_sym_map_LBRACK, + STATE(1882), 1, sym_plain_type, - STATE(4402), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1932), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275175,50 +275561,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96923] = 20, + [96946] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3843), 1, - anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(5868), 1, + anon_sym_LPAREN, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(2070), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(677), 1, sym_plain_type, - STATE(4402), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1932), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275231,50 +275617,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [96999] = 20, + [97022] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(1735), 1, + STATE(678), 1, sym_plain_type, - STATE(4437), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1671), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275287,50 +275673,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97075] = 20, + [97098] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3843), 1, - anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2044), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1715), 1, sym_plain_type, - STATE(4402), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1932), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275343,50 +275729,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97151] = 20, + [97174] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5866), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5878), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(3435), 1, + STATE(1673), 1, sym_plain_type, - STATE(4418), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275399,50 +275785,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97227] = 20, + [97250] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3674), 1, + anon_sym_struct, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + anon_sym_STAR, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(2359), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1716), 1, sym_plain_type, - STATE(4551), 1, + STATE(4460), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275455,50 +275841,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97303] = 20, + [97326] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1764), 1, + STATE(1676), 1, sym_plain_type, - STATE(4437), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275511,50 +275897,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97379] = 20, + [97402] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3742), 1, - anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(4013), 1, + anon_sym_map_LBRACK, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, - ACTIONS(5854), 1, - anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5792), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_map_LBRACK, - STATE(1915), 1, + STATE(2374), 1, sym_plain_type, - STATE(4486), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1799), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275567,50 +275953,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97455] = 20, + [97478] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, - sym_identifier, ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, + sym_identifier, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(3674), 1, + anon_sym_struct, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1683), 1, + STATE(1700), 1, sym_plain_type, - STATE(4418), 1, + STATE(4460), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275623,50 +276009,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97531] = 20, + [97554] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3989), 1, + ACTIONS(4001), 1, anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2350), 1, + STATE(2454), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275679,50 +276065,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97607] = 20, + [97630] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3831), 1, - anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2128), 1, + STATE(2455), 1, sym_plain_type, - STATE(4402), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275735,50 +276121,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97683] = 20, + [97706] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 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(561), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5856), 1, - anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_map_LBRACK, - STATE(1912), 1, + STATE(4322), 1, sym_plain_type, - STATE(4486), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1799), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275791,50 +276177,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97759] = 20, + [97782] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3831), 1, - anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2076), 1, + STATE(2456), 1, sym_plain_type, - STATE(4402), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275847,50 +276233,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97835] = 20, + [97858] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1899), 1, + STATE(1498), 1, sym_plain_type, - STATE(4486), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275903,7 +276289,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97911] = 20, + [97934] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -275916,37 +276302,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(3954), 1, + STATE(2456), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -275959,50 +276345,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [97987] = 20, + [98010] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_map_LBRACK, - STATE(1913), 1, + STATE(2117), 1, sym_plain_type, - STATE(4486), 1, + STATE(4487), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276015,50 +276401,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98063] = 20, + [98086] = 20, 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(605), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5698), 1, + anon_sym_QMARK, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5704), 1, anon_sym_AMP, - STATE(3902), 1, + ACTIONS(5706), 1, + anon_sym_map_LBRACK, + STATE(1478), 1, sym_plain_type, - STATE(4551), 1, + STATE(4563), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276071,50 +276457,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98139] = 20, + [98162] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(593), 1, + anon_sym_struct, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(1682), 1, + STATE(459), 1, sym_plain_type, - STATE(4418), 1, + STATE(4484), 1, sym_reference_expression, - STATE(3386), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276127,50 +276513,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98215] = 20, + [98238] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5878), 1, - anon_sym_map_LBRACK, - STATE(3416), 1, + STATE(2118), 1, sym_plain_type, - STATE(4418), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276183,50 +276569,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98291] = 20, + [98314] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3825), 1, + ACTIONS(4573), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4591), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5914), 1, anon_sym_AMP, - STATE(2034), 1, + STATE(2721), 1, sym_plain_type, - STATE(4402), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276239,50 +276625,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98367] = 20, + [98390] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5690), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(1451), 1, + STATE(653), 1, sym_plain_type, - STATE(4557), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1431), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276295,50 +276681,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98443] = 20, + [98466] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3989), 1, + ACTIONS(4577), 1, anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(4579), 1, + anon_sym_struct, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(4591), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5914), 1, anon_sym_AMP, - STATE(2437), 1, + STATE(2722), 1, sym_plain_type, - STATE(4551), 1, + STATE(4533), 1, sym_reference_expression, - STATE(2323), 2, + STATE(2652), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2707), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2708), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [98542] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3638), 1, + sym_identifier, + ACTIONS(3642), 1, + anon_sym_fn, + ACTIONS(3646), 1, + anon_sym_struct, + ACTIONS(3656), 1, + anon_sym_shared, + ACTIONS(3660), 1, + anon_sym_chan, + ACTIONS(3662), 1, + anon_sym_thread, + ACTIONS(3664), 1, + anon_sym_atomic, + ACTIONS(5692), 1, + anon_sym_LPAREN, + ACTIONS(5696), 1, + anon_sym_STAR, + ACTIONS(5698), 1, + anon_sym_QMARK, + ACTIONS(5700), 1, + anon_sym_BANG, + ACTIONS(5702), 1, + anon_sym_LBRACK2, + ACTIONS(5704), 1, + anon_sym_AMP, + ACTIONS(5706), 1, + anon_sym_map_LBRACK, + STATE(1508), 1, + sym_plain_type, + STATE(4563), 1, + sym_reference_expression, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276351,7 +276793,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98519] = 20, + [98618] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -276364,37 +276806,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2324), 1, + STATE(4056), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276407,50 +276849,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98595] = 20, + [98694] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1063), 1, + STATE(1506), 1, sym_plain_type, - STATE(4537), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276463,50 +276905,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98671] = 20, + [98770] = 20, 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(605), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3504), 1, + anon_sym_chan, + ACTIONS(3506), 1, + anon_sym_thread, + ACTIONS(3508), 1, + anon_sym_atomic, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5812), 1, + anon_sym_QMARK, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5818), 1, anon_sym_AMP, - STATE(3876), 1, + ACTIONS(5820), 1, + anon_sym_map_LBRACK, + STATE(1175), 1, sym_plain_type, - STATE(4551), 1, + STATE(4466), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276519,50 +276961,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98747] = 20, + [98846] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5808), 1, + anon_sym_LPAREN, + ACTIONS(5810), 1, + anon_sym_STAR, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5818), 1, anon_sym_AMP, - STATE(2845), 1, + ACTIONS(5820), 1, + anon_sym_map_LBRACK, + STATE(1179), 1, sym_plain_type, - STATE(4511), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2643), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276575,50 +277017,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98823] = 20, + [98922] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5804), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5806), 1, anon_sym_map_LBRACK, - STATE(1769), 1, + STATE(2614), 1, sym_plain_type, - STATE(4437), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1671), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276631,50 +277073,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98899] = 20, + [98998] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, + anon_sym_STAR, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(2768), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2617), 1, sym_plain_type, - STATE(4511), 1, + STATE(4445), 1, sym_reference_expression, - STATE(2643), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276687,50 +277129,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [98975] = 20, + [99074] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4561), 1, + ACTIONS(4573), 1, anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(4565), 1, + ACTIONS(4577), 1, anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(4579), 1, + ACTIONS(4591), 1, anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5914), 1, anon_sym_AMP, - STATE(2783), 1, + STATE(2723), 1, sym_plain_type, - STATE(4511), 1, + STATE(4533), 1, sym_reference_expression, - STATE(2643), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276743,50 +277185,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99051] = 20, + [99150] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 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(561), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + STATE(4626), 1, + sym_reference_expression, + STATE(4630), 1, + sym_plain_type, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [99226] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_identifier, + ACTIONS(3486), 1, + anon_sym_fn, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5818), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(1069), 1, + STATE(1194), 1, sym_plain_type, - STATE(4537), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276799,7 +277297,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99127] = 20, + [99302] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -276812,37 +277310,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2349), 1, + STATE(2455), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276855,22 +277353,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99203] = 20, + [99378] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(4102), 1, anon_sym_atomic, ACTIONS(5794), 1, anon_sym_LPAREN, @@ -276886,19 +277384,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5806), 1, anon_sym_map_LBRACK, - STATE(645), 1, + STATE(2521), 1, sym_plain_type, - STATE(4482), 1, + STATE(4445), 1, sym_reference_expression, - STATE(414), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276911,50 +277409,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99279] = 20, + [99454] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, - anon_sym_fn, - ACTIONS(5610), 1, - anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5698), 1, - anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1675), 1, + STATE(4589), 1, sym_plain_type, - STATE(4418), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -276967,50 +277465,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99355] = 20, + [99530] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5818), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(1055), 1, + STATE(1185), 1, sym_plain_type, - STATE(4537), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277023,50 +277521,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99431] = 20, + [99606] = 20, 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(605), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3989), 1, + anon_sym_chan, + ACTIONS(3991), 1, + anon_sym_thread, + ACTIONS(3993), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4606), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2287), 1, sym_plain_type, - STATE(3543), 2, + STATE(4525), 1, + sym_reference_expression, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277079,50 +277577,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99507] = 20, + [99682] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(2533), 1, + STATE(2278), 1, sym_plain_type, - STATE(4423), 1, + STATE(4525), 1, sym_reference_expression, - STATE(2485), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277135,50 +277633,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99583] = 20, + [99758] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(4088), 1, - anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(4013), 1, + anon_sym_map_LBRACK, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5770), 1, - anon_sym_LPAREN, - ACTIONS(5772), 1, - anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5792), 1, anon_sym_AMP, - ACTIONS(5782), 1, - anon_sym_map_LBRACK, - STATE(2532), 1, + STATE(2375), 1, sym_plain_type, - STATE(4423), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2485), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277191,50 +277689,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99659] = 20, + [99834] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(1909), 1, + STATE(2238), 1, sym_plain_type, - STATE(4486), 1, + STATE(4525), 1, sym_reference_expression, - STATE(1799), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277247,50 +277745,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99735] = 20, + [99910] = 20, 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(605), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3989), 1, + anon_sym_chan, + ACTIONS(3991), 1, + anon_sym_thread, + ACTIONS(3993), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4692), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2202), 1, sym_plain_type, - STATE(3543), 2, + STATE(4525), 1, + sym_reference_expression, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277303,50 +277801,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99811] = 20, + [99986] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5916), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5928), 1, anon_sym_map_LBRACK, - STATE(1054), 1, + STATE(3434), 1, sym_plain_type, - STATE(4537), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1005), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277359,7 +277857,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99887] = 20, + [100062] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(3734), 1, @@ -277376,33 +277874,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, ACTIONS(5854), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5856), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5858), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5860), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5862), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5864), 1, + anon_sym_AMP, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1890), 1, + STATE(1847), 1, sym_plain_type, - STATE(4486), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277415,50 +277913,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [99963] = 20, + [100138] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3831), 1, - anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(5786), 1, + anon_sym_QMARK, + ACTIONS(5788), 1, + anon_sym_BANG, + ACTIONS(5790), 1, + anon_sym_LBRACK2, + ACTIONS(5792), 1, + anon_sym_AMP, + STATE(2393), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(2323), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [100214] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3482), 1, + sym_identifier, + ACTIONS(3486), 1, + anon_sym_fn, + ACTIONS(3490), 1, + anon_sym_struct, + ACTIONS(3500), 1, + anon_sym_shared, + ACTIONS(3504), 1, + anon_sym_chan, + ACTIONS(3506), 1, + anon_sym_thread, + ACTIONS(3508), 1, + anon_sym_atomic, + ACTIONS(5808), 1, + anon_sym_LPAREN, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5818), 1, anon_sym_AMP, - STATE(2079), 1, + ACTIONS(5820), 1, + anon_sym_map_LBRACK, + STATE(1228), 1, sym_plain_type, - STATE(4402), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1932), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277471,50 +278025,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100039] = 20, + [100290] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3825), 1, + ACTIONS(4573), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4591), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5914), 1, anon_sym_AMP, - STATE(2067), 1, + STATE(2731), 1, sym_plain_type, - STATE(4402), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277527,50 +278081,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100115] = 20, + [100366] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3825), 1, + ACTIONS(4573), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4591), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5914), 1, anon_sym_AMP, - STATE(2125), 1, + STATE(2734), 1, sym_plain_type, - STATE(4402), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277583,50 +278137,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100191] = 20, + [100442] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, - ACTIONS(5854), 1, - anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5914), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_map_LBRACK, - STATE(1900), 1, + STATE(2504), 1, sym_plain_type, - STATE(4486), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1799), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277639,50 +278193,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100267] = 20, + [100518] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, - sym_identifier, - ACTIONS(3825), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3831), 1, - anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2126), 1, + STATE(2438), 1, sym_plain_type, - STATE(4402), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277695,50 +278249,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100343] = 20, + [100594] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5822), 1, - anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5914), 1, anon_sym_AMP, - ACTIONS(5832), 1, - anon_sym_map_LBRACK, - STATE(1770), 1, + STATE(2720), 1, sym_plain_type, - STATE(4437), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1671), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277751,27 +278305,25 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100419] = 20, + [100670] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(3843), 1, - anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(3993), 1, anon_sym_atomic, + ACTIONS(5832), 1, + anon_sym_LPAREN, ACTIONS(5834), 1, anon_sym_STAR, ACTIONS(5836), 1, @@ -277782,19 +278334,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(5842), 1, anon_sym_AMP, - STATE(2127), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2233), 1, sym_plain_type, - STATE(4402), 1, + STATE(4525), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277807,50 +278361,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100495] = 20, + [100746] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5880), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, - anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1085), 1, + STATE(1395), 1, sym_plain_type, - STATE(4537), 1, + STATE(4409), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277863,50 +278417,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100571] = 20, + [100822] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1104), 1, + STATE(1504), 1, sym_plain_type, - STATE(4537), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277919,50 +278473,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100647] = 20, + [100898] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, ACTIONS(561), 1, sym_identifier, ACTIONS(567), 1, anon_sym_fn, ACTIONS(571), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(585), 1, - anon_sym_chan, - ACTIONS(587), 1, - anon_sym_thread, - ACTIONS(589), 1, - anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5798), 1, - anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(675), 1, + STATE(3990), 1, sym_plain_type, - STATE(4482), 1, + STATE(4626), 1, sym_reference_expression, - STATE(414), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -277975,7 +278529,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100723] = 20, + [100974] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -277988,37 +278542,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(3996), 1, + STATE(2369), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278031,50 +278585,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100799] = 20, + [101050] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5902), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, - anon_sym_STAR, - ACTIONS(5906), 1, - anon_sym_QMARK, ACTIONS(5908), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5910), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5912), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5914), 1, - anon_sym_map_LBRACK, - STATE(1282), 1, + anon_sym_AMP, + STATE(2736), 1, sym_plain_type, - STATE(4444), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1154), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278087,50 +278641,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100875] = 20, + [101126] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1111), 1, + STATE(1892), 1, sym_plain_type, - STATE(4537), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278143,50 +278697,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [100951] = 20, + [101202] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5690), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(1505), 1, + STATE(2205), 1, sym_plain_type, - STATE(4557), 1, + STATE(4525), 1, sym_reference_expression, - STATE(1431), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278199,50 +278753,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101027] = 20, + [101278] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5818), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(1052), 1, + STATE(1199), 1, sym_plain_type, - STATE(4537), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278255,50 +278809,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101103] = 20, + [101354] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(5680), 1, - anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5914), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1492), 1, + STATE(2749), 1, sym_plain_type, - STATE(4557), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1431), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278311,7 +278865,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101179] = 20, + [101430] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -278324,37 +278878,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(3843), 1, + STATE(3999), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278367,50 +278921,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101255] = 20, + [101506] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5818), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(2596), 1, + STATE(1193), 1, sym_plain_type, - STATE(4423), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2485), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278423,50 +278977,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101331] = 20, + [101582] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5770), 1, - anon_sym_LPAREN, - ACTIONS(5772), 1, - anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5914), 1, anon_sym_AMP, - ACTIONS(5782), 1, - anon_sym_map_LBRACK, - STATE(2594), 1, + STATE(2747), 1, sym_plain_type, - STATE(4423), 1, + STATE(4533), 1, sym_reference_expression, - STATE(2485), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278479,50 +279033,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101407] = 20, + [101658] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(2561), 1, + STATE(2204), 1, sym_plain_type, - STATE(4423), 1, + STATE(4525), 1, sym_reference_expression, - STATE(2485), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278535,50 +279089,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101483] = 20, + [101734] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 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(561), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3756), 1, - anon_sym_chan, - ACTIONS(3758), 1, - anon_sym_thread, - ACTIONS(3760), 1, - anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5856), 1, - anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_map_LBRACK, - STATE(1893), 1, + STATE(4288), 1, sym_plain_type, - STATE(4486), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1799), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278591,50 +279145,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101559] = 20, + [101810] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(1108), 1, + STATE(2203), 1, sym_plain_type, - STATE(4537), 1, + STATE(4525), 1, sym_reference_expression, - STATE(1005), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278647,50 +279201,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101635] = 20, + [101886] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5902), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5914), 1, - anon_sym_map_LBRACK, - STATE(1281), 1, + STATE(1997), 1, sym_plain_type, - STATE(4444), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278703,50 +279257,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101711] = 20, + [101962] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5916), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5928), 1, anon_sym_map_LBRACK, - STATE(1098), 1, + STATE(3429), 1, sym_plain_type, - STATE(4537), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1005), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278759,50 +279313,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101787] = 20, + [102038] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5880), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1064), 1, + STATE(2148), 1, sym_plain_type, - STATE(4537), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278815,50 +279369,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101863] = 20, + [102114] = 20, 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(605), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3476), 1, + anon_sym_chan, + ACTIONS(3478), 1, + anon_sym_thread, + ACTIONS(3480), 1, + anon_sym_atomic, + ACTIONS(5916), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5920), 1, + anon_sym_QMARK, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4597), 1, + ACTIONS(5928), 1, + anon_sym_map_LBRACK, + STATE(3441), 1, sym_plain_type, - STATE(3543), 2, + STATE(4436), 1, + sym_reference_expression, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278871,50 +279425,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [101939] = 20, + [102190] = 20, 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(605), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3504), 1, + anon_sym_chan, + ACTIONS(3506), 1, + anon_sym_thread, + ACTIONS(3508), 1, + anon_sym_atomic, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5812), 1, + anon_sym_QMARK, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5818), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4668), 1, + ACTIONS(5820), 1, + anon_sym_map_LBRACK, + STATE(1264), 1, sym_plain_type, - STATE(3543), 2, + STATE(4466), 1, + sym_reference_expression, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278927,50 +279481,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102015] = 20, + [102266] = 20, 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(605), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, + anon_sym_chan, + ACTIONS(4595), 1, + anon_sym_thread, + ACTIONS(4597), 1, + anon_sym_atomic, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5914), 1, anon_sym_AMP, - STATE(3981), 1, + STATE(2762), 1, sym_plain_type, - STATE(4551), 1, + STATE(4533), 1, sym_reference_expression, - STATE(3543), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -278983,50 +279537,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102091] = 20, + [102342] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3843), 1, - anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(5916), 1, + anon_sym_LPAREN, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(1994), 1, + ACTIONS(5928), 1, + anon_sym_map_LBRACK, + STATE(3430), 1, sym_plain_type, - STATE(4402), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1932), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279039,50 +279593,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102167] = 20, + [102418] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5880), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1062), 1, + STATE(2086), 1, sym_plain_type, - STATE(4537), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279095,50 +279649,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102243] = 20, + [102494] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5880), 1, - anon_sym_LPAREN, - ACTIONS(5882), 1, - anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5914), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1058), 1, + STATE(2765), 1, sym_plain_type, - STATE(4537), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1005), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279151,50 +279705,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102319] = 20, + [102570] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5808), 1, + anon_sym_LPAREN, + ACTIONS(5810), 1, + anon_sym_STAR, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5818), 1, anon_sym_AMP, - STATE(1371), 1, + ACTIONS(5820), 1, + anon_sym_map_LBRACK, + STATE(1181), 1, sym_plain_type, - STATE(4398), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1305), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279207,50 +279761,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102395] = 20, + [102646] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3490), 1, + anon_sym_struct, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5808), 1, + anon_sym_LPAREN, + ACTIONS(5810), 1, + anon_sym_STAR, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5818), 1, anon_sym_AMP, - STATE(2431), 1, + ACTIONS(5820), 1, + anon_sym_map_LBRACK, + STATE(1183), 1, sym_plain_type, - STATE(4551), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279263,50 +279817,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102471] = 20, + [102722] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5818), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(1228), 1, + STATE(1184), 1, sym_plain_type, - STATE(4444), 1, + STATE(4466), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279319,50 +279873,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102547] = 20, + [102798] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3592), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5930), 1, + anon_sym_STAR, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(1379), 1, + STATE(2149), 1, sym_plain_type, - STATE(4398), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1305), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279375,50 +279929,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102623] = 20, + [102874] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, + anon_sym_STAR, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(1380), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2537), 1, sym_plain_type, - STATE(4398), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1305), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279431,50 +279985,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102699] = 20, + [102950] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(4577), 1, + anon_sym_STAR, + ACTIONS(4579), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(4591), 1, + anon_sym_map_LBRACK, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5902), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, - anon_sym_STAR, - ACTIONS(5906), 1, - anon_sym_QMARK, ACTIONS(5908), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5910), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5912), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5914), 1, - anon_sym_map_LBRACK, - STATE(1201), 1, + anon_sym_AMP, + STATE(2771), 1, sym_plain_type, - STATE(4444), 1, + STATE(4533), 1, sym_reference_expression, - STATE(1154), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279487,50 +280041,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102775] = 20, + [103026] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3825), 1, + ACTIONS(3602), 1, anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3843), 1, + ACTIONS(3620), 1, anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5834), 1, - anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(1993), 1, + STATE(1382), 1, sym_plain_type, - STATE(4402), 1, + STATE(4409), 1, sym_reference_expression, - STATE(1932), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279543,50 +280097,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102851] = 20, + [103102] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5804), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5806), 1, anon_sym_map_LBRACK, - STATE(1233), 1, + STATE(2507), 1, sym_plain_type, - STATE(4444), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1154), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279599,7 +280153,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [102927] = 20, + [103178] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -279612,37 +280166,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(3870), 1, + STATE(4314), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279655,50 +280209,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103003] = 20, + [103254] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5878), 1, - anon_sym_map_LBRACK, - STATE(3415), 1, + STATE(1390), 1, sym_plain_type, - STATE(4418), 1, + STATE(4409), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279711,50 +280265,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103079] = 20, + [103330] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5878), 1, - anon_sym_map_LBRACK, - STATE(3426), 1, + STATE(1391), 1, sym_plain_type, - STATE(4418), 1, + STATE(4409), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279767,7 +280321,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103155] = 20, + [103406] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -279780,37 +280334,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4015), 1, + STATE(4566), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279823,106 +280377,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103231] = 20, + [103482] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(4084), 1, - anon_sym_fn, - ACTIONS(4088), 1, - anon_sym_struct, - ACTIONS(4098), 1, - anon_sym_shared, - ACTIONS(4102), 1, - anon_sym_chan, - ACTIONS(4104), 1, - anon_sym_thread, - ACTIONS(4106), 1, - anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(3602), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, - anon_sym_STAR, - ACTIONS(5774), 1, - anon_sym_QMARK, - ACTIONS(5776), 1, - anon_sym_BANG, - ACTIONS(5778), 1, - anon_sym_LBRACK2, - ACTIONS(5780), 1, - anon_sym_AMP, - ACTIONS(5782), 1, - anon_sym_map_LBRACK, - STATE(2500), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(2485), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2546), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2525), 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, - [103307] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3476), 1, - sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5902), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, - anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5914), 1, - anon_sym_map_LBRACK, - STATE(1243), 1, + STATE(1325), 1, sym_plain_type, - STATE(4444), 1, + STATE(4409), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279935,50 +280433,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103383] = 20, + [103558] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5902), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5914), 1, - anon_sym_map_LBRACK, - STATE(1222), 1, + STATE(2004), 1, sym_plain_type, - STATE(4444), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -279991,50 +280489,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103459] = 20, + [103634] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5902), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5914), 1, - anon_sym_map_LBRACK, - STATE(1241), 1, + STATE(2005), 1, sym_plain_type, - STATE(4444), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280047,50 +280545,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103535] = 20, + [103710] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(1195), 1, + STATE(813), 1, sym_plain_type, - STATE(4444), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1154), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280103,50 +280601,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103611] = 20, + [103786] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1206), 1, + STATE(1497), 1, sym_plain_type, - STATE(4444), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280159,50 +280657,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103687] = 20, + [103862] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5916), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5928), 1, anon_sym_map_LBRACK, - STATE(1685), 1, + STATE(3439), 1, sym_plain_type, - STATE(4437), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1671), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280215,7 +280713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103763] = 20, + [103938] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -280228,37 +280726,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(3918), 1, - sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(4642), 1, + sym_plain_type, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280271,50 +280769,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103839] = 20, + [104014] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(1695), 1, + STATE(654), 1, sym_plain_type, - STATE(4437), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1671), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280327,50 +280825,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103915] = 20, + [104090] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(644), 1, + STATE(672), 1, sym_plain_type, - STATE(4482), 1, + STATE(4484), 1, sym_reference_expression, - STATE(414), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280383,50 +280881,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [103991] = 20, + [104166] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5866), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5878), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(3428), 1, + STATE(1495), 1, sym_plain_type, - STATE(4418), 1, + STATE(4563), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280439,50 +280937,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104067] = 20, + [104242] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5866), 1, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5804), 1, anon_sym_AMP, - ACTIONS(5878), 1, + ACTIONS(5806), 1, anon_sym_map_LBRACK, - STATE(3425), 1, + STATE(2564), 1, sym_plain_type, - STATE(4418), 1, + STATE(4445), 1, sym_reference_expression, - STATE(3386), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280495,50 +280993,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104143] = 20, + [104318] = 20, 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(605), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3756), 1, + anon_sym_chan, + ACTIONS(3758), 1, + anon_sym_thread, + ACTIONS(3760), 1, + anon_sym_atomic, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5858), 1, + anon_sym_QMARK, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(4493), 1, + ACTIONS(5866), 1, + anon_sym_map_LBRACK, + STATE(1846), 1, sym_plain_type, - STATE(4551), 1, + STATE(4508), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280551,50 +281049,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104219] = 20, + [104394] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3592), 1, + ACTIONS(3602), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3596), 1, + ACTIONS(3606), 1, anon_sym_STAR, - ACTIONS(3598), 1, - anon_sym_struct, ACTIONS(3608), 1, + anon_sym_struct, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(3620), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(1376), 1, + STATE(1377), 1, sym_plain_type, - STATE(4398), 1, + STATE(4409), 1, sym_reference_expression, - STATE(1305), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280607,42 +281105,42 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104295] = 20, + [104470] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5690), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1449), 1, + STATE(1484), 1, sym_plain_type, - STATE(4557), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1431), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, STATE(1487), 4, @@ -280650,7 +281148,7 @@ static const uint16_t ts_small_parse_table[] = { sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280663,50 +281161,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104371] = 20, + [104546] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5804), 1, anon_sym_AMP, - ACTIONS(5690), 1, + ACTIONS(5806), 1, anon_sym_map_LBRACK, - STATE(1468), 1, + STATE(2535), 1, sym_plain_type, - STATE(4557), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1431), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280719,50 +281217,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104447] = 20, + [104622] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5916), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5928), 1, anon_sym_map_LBRACK, - STATE(640), 1, + STATE(3443), 1, sym_plain_type, - STATE(4482), 1, + STATE(4436), 1, sym_reference_expression, - STATE(414), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280775,50 +281273,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104523] = 20, + [104698] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5676), 1, + ACTIONS(5794), 1, anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5804), 1, anon_sym_AMP, - ACTIONS(5690), 1, + ACTIONS(5806), 1, anon_sym_map_LBRACK, - STATE(1506), 1, + STATE(2568), 1, sym_plain_type, - STATE(4557), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1431), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280831,50 +281329,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104599] = 20, + [104774] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(4084), 1, + anon_sym_struct, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, + anon_sym_STAR, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(2404), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2513), 1, sym_plain_type, - STATE(4551), 1, + STATE(4445), 1, sym_reference_expression, - STATE(2323), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280887,50 +281385,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104675] = 20, + [104850] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3480), 1, anon_sym_atomic, ACTIONS(5916), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(5918), 1, - anon_sym_BANG, + anon_sym_STAR, ACTIONS(5920), 1, - anon_sym_LBRACK2, + anon_sym_QMARK, ACTIONS(5922), 1, + anon_sym_BANG, + ACTIONS(5924), 1, + anon_sym_LBRACK2, + ACTIONS(5926), 1, anon_sym_AMP, - STATE(1375), 1, + ACTIONS(5928), 1, + anon_sym_map_LBRACK, + STATE(3424), 1, sym_plain_type, - STATE(4398), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1305), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280943,50 +281441,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104751] = 20, + [104926] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, + anon_sym_STAR, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(1369), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2544), 1, sym_plain_type, - STATE(4398), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1305), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -280999,50 +281497,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104827] = 20, + [105002] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(529), 1, + STATE(1037), 1, sym_plain_type, - STATE(4482), 1, + STATE(4403), 1, sym_reference_expression, - STATE(414), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281055,50 +281553,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104903] = 20, + [105078] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, ACTIONS(561), 1, sym_identifier, ACTIONS(567), 1, anon_sym_fn, ACTIONS(571), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(585), 1, - anon_sym_chan, - ACTIONS(587), 1, - anon_sym_thread, - ACTIONS(589), 1, - anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5798), 1, - anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(528), 1, + STATE(4007), 1, sym_plain_type, - STATE(4482), 1, + STATE(4626), 1, sym_reference_expression, - STATE(414), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281111,50 +281609,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [104979] = 20, + [105154] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(1249), 1, + STATE(1041), 1, sym_plain_type, - STATE(4444), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281167,50 +281665,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105055] = 20, + [105230] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5794), 1, - anon_sym_LPAREN, - ACTIONS(5796), 1, - anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(676), 1, + STATE(1375), 1, sym_plain_type, - STATE(4482), 1, + STATE(4409), 1, sym_reference_expression, - STATE(414), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281223,50 +281721,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105131] = 20, + [105306] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3795), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2108), 1, + STATE(2032), 1, sym_plain_type, - STATE(4465), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1942), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281279,50 +281777,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105207] = 20, + [105382] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3795), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2012), 1, + STATE(2093), 1, sym_plain_type, - STATE(4465), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1942), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281335,50 +281833,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105283] = 20, + [105458] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3462), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3472), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3476), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3478), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3480), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5916), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5920), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5922), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5924), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5926), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5928), 1, anon_sym_map_LBRACK, - STATE(1675), 1, + STATE(3431), 1, sym_plain_type, - STATE(4437), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1671), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(3437), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(3444), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281391,50 +281889,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105359] = 20, + [105534] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5878), 1, - anon_sym_map_LBRACK, - STATE(3418), 1, + STATE(2077), 1, sym_plain_type, - STATE(4418), 1, + STATE(4424), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281447,50 +281945,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105435] = 20, + [105610] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3450), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3454), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3464), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3468), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3470), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3472), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5870), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5872), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5876), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5878), 1, - anon_sym_map_LBRACK, - STATE(3424), 1, + STATE(2099), 1, sym_plain_type, - STATE(4418), 1, + STATE(4424), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3419), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(3420), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281503,50 +282001,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105511] = 20, + [105686] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(4084), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(4088), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(4098), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(4102), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(4104), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(4106), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5770), 1, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(5772), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5774), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5776), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5778), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5780), 1, + ACTIONS(5878), 1, anon_sym_AMP, - ACTIONS(5782), 1, + ACTIONS(5880), 1, anon_sym_map_LBRACK, - STATE(2634), 1, + STATE(923), 1, sym_plain_type, - STATE(4423), 1, + STATE(4484), 1, sym_reference_expression, - STATE(2485), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2546), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2525), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281559,50 +282057,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105587] = 20, + [105762] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5868), 1, + anon_sym_LPAREN, + ACTIONS(5870), 1, + anon_sym_STAR, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(2738), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(925), 1, sym_plain_type, - STATE(4511), 1, + STATE(4484), 1, sym_reference_expression, - STATE(2643), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281615,7 +282113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105663] = 20, + [105838] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -281628,37 +282126,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(3969), 1, + STATE(4480), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281671,50 +282169,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105739] = 20, + [105914] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(4561), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(4579), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5930), 1, + anon_sym_STAR, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2736), 1, + STATE(2140), 1, sym_plain_type, - STATE(4511), 1, + STATE(4424), 1, sym_reference_expression, - STATE(2643), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281727,50 +282225,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105815] = 20, + [105990] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(3458), 1, anon_sym_fn, - ACTIONS(4565), 1, + ACTIONS(3462), 1, + anon_sym_struct, + ACTIONS(3472), 1, + anon_sym_shared, + ACTIONS(3476), 1, + anon_sym_chan, + ACTIONS(3478), 1, + anon_sym_thread, + ACTIONS(3480), 1, + anon_sym_atomic, + ACTIONS(5916), 1, + anon_sym_LPAREN, + ACTIONS(5918), 1, anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(5920), 1, + anon_sym_QMARK, + ACTIONS(5922), 1, + anon_sym_BANG, + ACTIONS(5924), 1, + anon_sym_LBRACK2, + ACTIONS(5926), 1, + anon_sym_AMP, + ACTIONS(5928), 1, + anon_sym_map_LBRACK, + STATE(3445), 1, + sym_plain_type, + STATE(4436), 1, + sym_reference_expression, + STATE(3380), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3437), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(3444), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [106066] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, + anon_sym_fn, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(4579), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2575), 1, + STATE(2395), 1, sym_plain_type, - STATE(4511), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2643), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281783,7 +282337,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105891] = 20, + [106142] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -281796,37 +282350,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2359), 1, + STATE(2454), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281839,50 +282393,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [105967] = 20, + [106218] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3634), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3638), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3648), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3652), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3654), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3656), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5676), 1, - anon_sym_LPAREN, - ACTIONS(5680), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5682), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5684), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5686), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5688), 1, + ACTIONS(5938), 1, anon_sym_AMP, - ACTIONS(5690), 1, - anon_sym_map_LBRACK, - STATE(1481), 1, + STATE(2021), 1, sym_plain_type, - STATE(4557), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1431), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1487), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1490), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281895,50 +282449,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106043] = 20, + [106294] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3989), 1, + ACTIONS(3606), 1, anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(3608), 1, + anon_sym_struct, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(3620), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5844), 1, - anon_sym_QMARK, ACTIONS(5846), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5848), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5850), 1, + anon_sym_LBRACK2, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(2349), 1, + STATE(1399), 1, sym_plain_type, - STATE(4551), 1, + STATE(4409), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -281951,50 +282505,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106119] = 20, + [106370] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - sym_identifier, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, - anon_sym_fn, - ACTIONS(3801), 1, - anon_sym_struct, - ACTIONS(3811), 1, - anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5786), 1, - anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2004), 1, + STATE(4600), 1, sym_plain_type, - STATE(4465), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1942), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282007,50 +282561,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106195] = 20, + [106446] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3795), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2107), 1, + STATE(2134), 1, sym_plain_type, - STATE(4465), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1942), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282063,50 +282617,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106271] = 20, + [106522] = 20, 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(605), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3853), 1, + anon_sym_map_LBRACK, + ACTIONS(3855), 1, + anon_sym_chan, + ACTIONS(3857), 1, + anon_sym_thread, + ACTIONS(3859), 1, + anon_sym_atomic, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5932), 1, + anon_sym_QMARK, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2350), 1, + STATE(2115), 1, sym_plain_type, - STATE(4551), 1, + STATE(4424), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282119,50 +282673,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106347] = 20, + [106598] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3795), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2106), 1, + STATE(2042), 1, sym_plain_type, - STATE(4465), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1942), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282175,7 +282729,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106423] = 20, + [106674] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -282188,37 +282742,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2437), 1, + STATE(4401), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282231,50 +282785,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106499] = 20, + [106750] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3813), 1, - anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5868), 1, + anon_sym_LPAREN, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(2138), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(809), 1, sym_plain_type, - STATE(4465), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1942), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282287,50 +282841,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106575] = 20, + [106826] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, + anon_sym_STAR, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(2577), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2584), 1, sym_plain_type, - STATE(4511), 1, + STATE(4445), 1, sym_reference_expression, - STATE(2643), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282343,50 +282897,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106651] = 20, + [106902] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3823), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(3825), 1, - anon_sym_LPAREN, - ACTIONS(3827), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(3831), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(3841), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(3843), 1, - anon_sym_map_LBRACK, - ACTIONS(3845), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(3847), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(3849), 1, + ACTIONS(4102), 1, anon_sym_atomic, - ACTIONS(5834), 1, + ACTIONS(5794), 1, + anon_sym_LPAREN, + ACTIONS(5796), 1, anon_sym_STAR, - ACTIONS(5836), 1, + ACTIONS(5798), 1, anon_sym_QMARK, - ACTIONS(5838), 1, + ACTIONS(5800), 1, anon_sym_BANG, - ACTIONS(5840), 1, + ACTIONS(5802), 1, anon_sym_LBRACK2, - ACTIONS(5842), 1, + ACTIONS(5804), 1, anon_sym_AMP, - STATE(2047), 1, + ACTIONS(5806), 1, + anon_sym_map_LBRACK, + STATE(2586), 1, sym_plain_type, - STATE(4402), 1, + STATE(4445), 1, sym_reference_expression, - STATE(1932), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1975), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1976), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282399,22 +282953,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106727] = 20, + [106978] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(4076), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(4080), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(4084), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(4094), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(4098), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(4100), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(4102), 1, anon_sym_atomic, ACTIONS(5794), 1, anon_sym_LPAREN, @@ -282430,19 +282984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5806), 1, anon_sym_map_LBRACK, - STATE(808), 1, + STATE(2608), 1, sym_plain_type, - STATE(4482), 1, + STATE(4445), 1, sym_reference_expression, - STATE(414), 2, + STATE(2489), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2574), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2572), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282455,50 +283009,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106803] = 20, + [107054] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, - anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, - anon_sym_struct, - ACTIONS(3608), 1, - anon_sym_shared, - ACTIONS(3610), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5916), 1, - anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(1345), 1, - sym_plain_type, - STATE(4398), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1305), 2, + STATE(4643), 1, + sym_plain_type, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282511,50 +283065,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106879] = 20, + [107130] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5868), 1, + anon_sym_LPAREN, + ACTIONS(5870), 1, + anon_sym_STAR, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(1368), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(452), 1, sym_plain_type, - STATE(4398), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1305), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282567,50 +283121,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [106955] = 20, + [107206] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3795), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(2098), 1, + STATE(2034), 1, sym_plain_type, - STATE(4465), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1942), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282623,50 +283177,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107031] = 20, + [107282] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5882), 1, + anon_sym_STAR, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(1366), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1712), 1, sym_plain_type, - STATE(4398), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1305), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282679,7 +283233,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107107] = 20, + [107358] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -282692,37 +283246,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4634), 1, + STATE(2395), 1, sym_plain_type, - STATE(3543), 2, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282735,50 +283289,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107183] = 20, + [107434] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(3813), 1, - anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5832), 1, + anon_sym_LPAREN, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(1998), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2198), 1, sym_plain_type, - STATE(4465), 1, + STATE(4525), 1, sym_reference_expression, - STATE(1942), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282791,50 +283345,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107259] = 20, + [107510] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(809), 1, + STATE(2197), 1, sym_plain_type, - STATE(4482), 1, + STATE(4525), 1, sym_reference_expression, - STATE(414), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282847,50 +283401,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107335] = 20, + [107586] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3795), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(1965), 1, + STATE(2009), 1, sym_plain_type, - STATE(4465), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1942), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282903,50 +283457,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107411] = 20, + [107662] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5894), 1, + anon_sym_LPAREN, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(1349), 1, + ACTIONS(5906), 1, + anon_sym_map_LBRACK, + STATE(1084), 1, sym_plain_type, - STATE(4398), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1305), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -282959,50 +283513,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107487] = 20, + [107738] = 20, 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(605), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(5624), 1, + anon_sym_chan, + ACTIONS(5626), 1, + anon_sym_thread, + ACTIONS(5628), 1, + anon_sym_atomic, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5714), 1, + anon_sym_QMARK, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(4025), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(1661), 1, sym_plain_type, - STATE(4551), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283015,50 +283569,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107563] = 20, + [107814] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, - sym_identifier, - ACTIONS(4561), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(4565), 1, + ACTIONS(4001), 1, anon_sym_STAR, - ACTIONS(4567), 1, - anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(4579), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2725), 1, + STATE(2504), 1, sym_plain_type, - STATE(4511), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2643), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283071,50 +283625,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107639] = 20, + [107890] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1202), 1, + STATE(1452), 1, sym_plain_type, - STATE(4444), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283127,106 +283681,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107715] = 20, + [107966] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_QMARK, - ACTIONS(5896), 1, - anon_sym_BANG, - ACTIONS(5898), 1, - anon_sym_LBRACK2, - ACTIONS(5900), 1, - anon_sym_AMP, - STATE(2708), 1, - sym_plain_type, - STATE(4511), 1, - sym_reference_expression, - STATE(2643), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2694), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2695), 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, - [107791] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3590), 1, - sym_identifier, - ACTIONS(3592), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(3594), 1, - anon_sym_fn, - ACTIONS(3596), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(3598), 1, - anon_sym_struct, - ACTIONS(3608), 1, - anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, - anon_sym_chan, - ACTIONS(3614), 1, - anon_sym_thread, - ACTIONS(3616), 1, - anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(1348), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(1660), 1, sym_plain_type, - STATE(4398), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1305), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283239,50 +283737,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107867] = 20, + [108042] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, - anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5712), 1, + anon_sym_STAR, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(1347), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(1659), 1, sym_plain_type, - STATE(4398), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1305), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283295,50 +283793,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [107943] = 20, + [108118] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3484), 1, - anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(4013), 1, + anon_sym_map_LBRACK, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5902), 1, - anon_sym_LPAREN, - ACTIONS(5904), 1, - anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5792), 1, anon_sym_AMP, - ACTIONS(5914), 1, - anon_sym_map_LBRACK, - STATE(1170), 1, + STATE(2503), 1, sym_plain_type, - STATE(4444), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1154), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283351,7 +283849,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108019] = 20, + [108194] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -283364,37 +283862,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4621), 1, + STATE(3947), 1, sym_plain_type, - STATE(3543), 2, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283407,106 +283905,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108095] = 20, + [108270] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, - sym_identifier, - ACTIONS(4561), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(4565), 1, + ACTIONS(4001), 1, anon_sym_STAR, - ACTIONS(4567), 1, - anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(4579), 1, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(2723), 1, + STATE(2369), 1, sym_plain_type, - STATE(4511), 1, - sym_reference_expression, - STATE(2643), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2694), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2695), 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, - [108171] = 20, - 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(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(4645), 1, - sym_plain_type, - STATE(3543), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283519,7 +283961,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108247] = 20, + [108346] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -283532,37 +283974,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4395), 1, + STATE(3885), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283575,50 +284017,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108323] = 20, + [108422] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(1171), 1, + STATE(1040), 1, sym_plain_type, - STATE(4444), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283631,50 +284073,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108399] = 20, + [108498] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(2276), 1, + STATE(1026), 1, sym_plain_type, - STATE(4503), 1, + STATE(4403), 1, sym_reference_expression, - STATE(2167), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283687,7 +284129,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108475] = 20, + [108574] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -283700,37 +284142,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4666), 1, + STATE(3845), 1, sym_plain_type, - STATE(3543), 2, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283743,50 +284185,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108551] = 20, + [108650] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3813), 1, - anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5868), 1, + anon_sym_LPAREN, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(2021), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(810), 1, sym_plain_type, - STATE(4465), 1, + STATE(4484), 1, sym_reference_expression, - STATE(1942), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283799,50 +284241,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108627] = 20, + [108726] = 20, 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(605), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(607), 1, + anon_sym_chan, + ACTIONS(609), 1, + anon_sym_thread, + ACTIONS(611), 1, + anon_sym_atomic, + ACTIONS(5868), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5870), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5872), 1, + anon_sym_QMARK, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(4006), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(812), 1, sym_plain_type, - STATE(4551), 1, + STATE(4484), 1, sym_reference_expression, - STATE(3543), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283855,50 +284297,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108703] = 20, + [108802] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3480), 1, - anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(1252), 1, + STATE(1672), 1, sym_plain_type, - STATE(4444), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1154), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283911,50 +284353,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108779] = 20, + [108878] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(3742), 1, + anon_sym_struct, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1695), 1, + STATE(1865), 1, sym_plain_type, - STATE(4418), 1, + STATE(4508), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -283967,50 +284409,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108855] = 20, + [108954] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(736), 1, + STATE(1782), 1, sym_plain_type, - STATE(4482), 1, + STATE(4460), 1, sym_reference_expression, - STATE(414), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284023,50 +284465,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [108931] = 20, + [109030] = 20, 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(605), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3688), 1, + anon_sym_chan, + ACTIONS(3690), 1, + anon_sym_thread, + ACTIONS(3692), 1, + anon_sym_atomic, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5884), 1, + anon_sym_QMARK, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5890), 1, anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4652), 1, + ACTIONS(5892), 1, + anon_sym_map_LBRACK, + STATE(1779), 1, sym_plain_type, - STATE(3543), 2, + STATE(4460), 1, + sym_reference_expression, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284079,50 +284521,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109007] = 20, + [109106] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(5608), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(1684), 1, + STATE(1662), 1, sym_plain_type, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - STATE(3386), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284135,50 +284577,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109083] = 20, + [109182] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3476), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(3480), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(3484), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(3494), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(3498), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(3500), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(3502), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5902), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5904), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5906), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5908), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5910), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5912), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5914), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1267), 1, + STATE(1494), 1, sym_plain_type, - STATE(4444), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1154), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1175), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1167), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284191,50 +284633,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109159] = 20, + [109258] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 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(561), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3974), 1, - anon_sym_chan, - ACTIONS(3976), 1, - anon_sym_thread, - ACTIONS(3978), 1, - anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5812), 1, - anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(2267), 1, + STATE(2438), 1, sym_plain_type, - STATE(4503), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2167), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284247,50 +284689,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109235] = 20, + [109334] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, - sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, - anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, - anon_sym_struct, - ACTIONS(4577), 1, - anon_sym_shared, - ACTIONS(4579), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5894), 1, - anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2720), 1, + STATE(2357), 1, sym_plain_type, - STATE(4511), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2643), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284303,50 +284745,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109311] = 20, + [109410] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(3794), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(2227), 1, + STATE(2143), 1, sym_plain_type, - STATE(4503), 1, + STATE(4487), 1, sym_reference_expression, - STATE(2167), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284359,7 +284801,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109387] = 20, + [109486] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -284372,37 +284814,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4143), 1, + STATE(3972), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284415,50 +284857,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109463] = 20, + [109562] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3786), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(3788), 1, + anon_sym_LPAREN, + ACTIONS(3790), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(3794), 1, + anon_sym_struct, + ACTIONS(3804), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(3806), 1, + anon_sym_map_LBRACK, + ACTIONS(3808), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(3810), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(3812), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5822), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5824), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5826), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5828), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5830), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1685), 1, + STATE(2146), 1, sym_plain_type, - STATE(4418), 1, + STATE(4487), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1946), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2017), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2006), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284471,50 +284913,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109539] = 20, + [109638] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5692), 1, - anon_sym_LPAREN, - ACTIONS(5822), 1, - anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5832), 1, - anon_sym_map_LBRACK, - STATE(1718), 1, + STATE(1400), 1, sym_plain_type, - STATE(4437), 1, + STATE(4409), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284527,50 +284969,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109615] = 20, + [109714] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 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(561), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3680), 1, - anon_sym_chan, - ACTIONS(3682), 1, - anon_sym_thread, - ACTIONS(3684), 1, - anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5832), 1, - anon_sym_map_LBRACK, - STATE(1682), 1, + STATE(4149), 1, sym_plain_type, - STATE(4437), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1671), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284583,50 +285025,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109691] = 20, + [109790] = 20, 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(605), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(1629), 1, + anon_sym_chan, + ACTIONS(1631), 1, + anon_sym_thread, + ACTIONS(1633), 1, + anon_sym_atomic, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5898), 1, + anon_sym_QMARK, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(3850), 1, + ACTIONS(5906), 1, + anon_sym_map_LBRACK, + STATE(1059), 1, sym_plain_type, - STATE(4551), 1, + STATE(4403), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284639,50 +285081,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109767] = 20, + [109866] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(567), 1, - anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(810), 1, + STATE(1695), 1, sym_plain_type, - STATE(4482), 1, + STATE(4436), 1, sym_reference_expression, - STATE(414), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284695,50 +285137,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109843] = 20, + [109942] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, - sym_identifier, - ACTIONS(3987), 1, - anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, - anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5844), 1, - anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2861), 1, + STATE(2393), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284751,50 +285193,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109919] = 20, + [110018] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 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(561), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3974), 1, - anon_sym_chan, - ACTIONS(3976), 1, - anon_sym_thread, - ACTIONS(3978), 1, - anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5812), 1, - anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(2190), 1, - sym_plain_type, - STATE(4503), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2167), 2, + STATE(4709), 1, + sym_plain_type, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284807,7 +285249,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [109995] = 20, + [110094] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -284820,37 +285262,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4229), 1, + STATE(4507), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284863,50 +285305,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110071] = 20, + [110170] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1683), 1, + STATE(1818), 1, sym_plain_type, - STATE(4437), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284919,50 +285361,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110147] = 20, + [110246] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, + ACTIONS(3833), 1, sym_identifier, - ACTIONS(3795), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3797), 1, + ACTIONS(3837), 1, anon_sym_fn, - ACTIONS(3801), 1, + ACTIONS(3841), 1, anon_sym_struct, - ACTIONS(3811), 1, + ACTIONS(3851), 1, anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(3853), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(3855), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(3857), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(3859), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(5930), 1, anon_sym_STAR, - ACTIONS(5786), 1, + ACTIONS(5932), 1, anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5934), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5936), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5938), 1, anon_sym_AMP, - STATE(1948), 1, + STATE(2010), 1, sym_plain_type, - STATE(4465), 1, + STATE(4424), 1, sym_reference_expression, - STATE(1942), 2, + STATE(1935), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(1951), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2079), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -284975,50 +285417,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110223] = 20, + [110322] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3756), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3758), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5858), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5864), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1049), 1, + STATE(1867), 1, sym_plain_type, - STATE(4537), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285031,50 +285473,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110299] = 20, + [110398] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(593), 1, + anon_sym_struct, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5868), 1, + anon_sym_LPAREN, + ACTIONS(5870), 1, + anon_sym_STAR, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(2866), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(867), 1, sym_plain_type, - STATE(4551), 1, + STATE(4484), 1, sym_reference_expression, - STATE(2323), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285087,50 +285529,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110375] = 20, + [110474] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(583), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(589), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(593), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(603), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(607), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(609), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(611), 1, anon_sym_atomic, - ACTIONS(5894), 1, + ACTIONS(5868), 1, + anon_sym_LPAREN, + ACTIONS(5870), 1, + anon_sym_STAR, + ACTIONS(5872), 1, anon_sym_QMARK, - ACTIONS(5896), 1, + ACTIONS(5874), 1, anon_sym_BANG, - ACTIONS(5898), 1, + ACTIONS(5876), 1, anon_sym_LBRACK2, - ACTIONS(5900), 1, + ACTIONS(5878), 1, anon_sym_AMP, - STATE(2711), 1, + ACTIONS(5880), 1, + anon_sym_map_LBRACK, + STATE(854), 1, sym_plain_type, - STATE(4511), 1, + STATE(4484), 1, sym_reference_expression, - STATE(2643), 2, + STATE(404), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(879), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(878), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285143,50 +285585,106 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110451] = 20, + [110550] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 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(561), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, + anon_sym_BANG, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + STATE(2375), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [110626] = 20, + 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(1641), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5884), 1, - anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5892), 1, - anon_sym_map_LBRACK, - STATE(1090), 1, + STATE(3858), 1, sym_plain_type, - STATE(4537), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1005), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285199,50 +285697,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110527] = 20, + [110702] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(1617), 1, + ACTIONS(3638), 1, sym_identifier, - ACTIONS(1621), 1, + ACTIONS(3642), 1, anon_sym_fn, - ACTIONS(1625), 1, + ACTIONS(3646), 1, anon_sym_struct, - ACTIONS(1635), 1, + ACTIONS(3656), 1, anon_sym_shared, - ACTIONS(1639), 1, + ACTIONS(3660), 1, anon_sym_chan, - ACTIONS(1641), 1, + ACTIONS(3662), 1, anon_sym_thread, - ACTIONS(1643), 1, + ACTIONS(3664), 1, anon_sym_atomic, - ACTIONS(5880), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5882), 1, + ACTIONS(5696), 1, anon_sym_STAR, - ACTIONS(5884), 1, + ACTIONS(5698), 1, anon_sym_QMARK, - ACTIONS(5886), 1, + ACTIONS(5700), 1, anon_sym_BANG, - ACTIONS(5888), 1, + ACTIONS(5702), 1, anon_sym_LBRACK2, - ACTIONS(5890), 1, + ACTIONS(5704), 1, anon_sym_AMP, - ACTIONS(5892), 1, + ACTIONS(5706), 1, anon_sym_map_LBRACK, - STATE(1092), 1, + STATE(1456), 1, sym_plain_type, - STATE(4537), 1, + STATE(4563), 1, sym_reference_expression, - STATE(1005), 2, + STATE(1435), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1035), 4, + STATE(1487), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1039), 12, + STATE(1449), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285255,7 +285753,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110603] = 20, + [110778] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(3734), 1, @@ -285272,33 +285770,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(3760), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, ACTIONS(5854), 1, - anon_sym_STAR, + anon_sym_LPAREN, ACTIONS(5856), 1, - anon_sym_QMARK, + anon_sym_STAR, ACTIONS(5858), 1, - anon_sym_BANG, + anon_sym_QMARK, ACTIONS(5860), 1, - anon_sym_LBRACK2, + anon_sym_BANG, ACTIONS(5862), 1, - anon_sym_AMP, + anon_sym_LBRACK2, ACTIONS(5864), 1, + anon_sym_AMP, + ACTIONS(5866), 1, anon_sym_map_LBRACK, - STATE(1907), 1, + STATE(1827), 1, sym_plain_type, - STATE(4486), 1, + STATE(4508), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285311,50 +285809,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110679] = 20, + [110854] = 20, 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(605), 1, + ACTIONS(3734), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3738), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3742), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3752), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3756), 1, + anon_sym_chan, + ACTIONS(3758), 1, + anon_sym_thread, + ACTIONS(3760), 1, + anon_sym_atomic, + ACTIONS(5854), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5856), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5858), 1, + anon_sym_QMARK, + ACTIONS(5860), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5862), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5864), 1, anon_sym_AMP, - STATE(4467), 1, + ACTIONS(5866), 1, + anon_sym_map_LBRACK, + STATE(1828), 1, sym_plain_type, - STATE(4551), 1, + STATE(4508), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1797), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1930), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1928), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285367,50 +285865,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110755] = 20, + [110930] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, - ACTIONS(5854), 1, - anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_map_LBRACK, - STATE(1908), 1, + STATE(1369), 1, sym_plain_type, - STATE(4486), 1, + STATE(4409), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285423,50 +285921,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110831] = 20, + [111006] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3956), 1, - anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(2189), 1, + STATE(1673), 1, sym_plain_type, - STATE(4503), 1, + STATE(4436), 1, sym_reference_expression, - STATE(2167), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285479,50 +285977,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110907] = 20, + [111082] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(2225), 1, + STATE(1073), 1, sym_plain_type, - STATE(4503), 1, + STATE(4403), 1, sym_reference_expression, - STATE(2167), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285535,50 +286033,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [110983] = 20, + [111158] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, - sym_identifier, - ACTIONS(3987), 1, - anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, - anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5844), 1, - anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, + anon_sym_STAR, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2577), 1, + STATE(4005), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2323), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285591,50 +286089,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111059] = 20, + [111234] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(466), 1, + STATE(2182), 1, sym_plain_type, - STATE(4482), 1, + STATE(4525), 1, sym_reference_expression, - STATE(414), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285647,50 +286145,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111135] = 20, + [111310] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(475), 1, + STATE(1099), 1, sym_plain_type, - STATE(4482), 1, + STATE(4403), 1, sym_reference_expression, - STATE(414), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285703,50 +286201,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111211] = 20, + [111386] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3989), 1, - anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(1615), 1, + anon_sym_struct, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(4001), 1, - anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5894), 1, + anon_sym_LPAREN, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(2575), 1, + ACTIONS(5906), 1, + anon_sym_map_LBRACK, + STATE(1100), 1, sym_plain_type, - STATE(4551), 1, + STATE(4403), 1, sym_reference_expression, - STATE(2323), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285759,50 +286257,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111287] = 20, + [111462] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(3989), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(3991), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(3993), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5836), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5842), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5844), 1, anon_sym_map_LBRACK, - STATE(742), 1, + STATE(2240), 1, sym_plain_type, - STATE(4482), 1, + STATE(4525), 1, sym_reference_expression, - STATE(414), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285815,50 +286313,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111363] = 20, + [111538] = 20, ACTIONS(3), 1, sym_comment, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, + anon_sym_chan, + ACTIONS(87), 1, + anon_sym_thread, + ACTIONS(89), 1, + anon_sym_atomic, ACTIONS(561), 1, sym_identifier, ACTIONS(567), 1, anon_sym_fn, ACTIONS(571), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(585), 1, - anon_sym_chan, - ACTIONS(587), 1, - anon_sym_thread, - ACTIONS(589), 1, - anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5798), 1, - anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5806), 1, - anon_sym_map_LBRACK, - STATE(476), 1, + STATE(3862), 1, sym_plain_type, - STATE(4482), 1, + STATE(4626), 1, sym_reference_expression, - STATE(414), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285871,50 +286369,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111439] = 20, + [111614] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(1615), 1, + anon_sym_struct, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(1689), 1, + STATE(1086), 1, sym_plain_type, - STATE(4418), 1, + STATE(4403), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285927,50 +286425,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111515] = 20, + [111690] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5852), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5854), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5864), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1811), 1, + STATE(1735), 1, sym_plain_type, - STATE(4486), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -285983,50 +286481,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111591] = 20, + [111766] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 1, + ACTIONS(3666), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(3670), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(3684), 1, anon_sym_shared, - ACTIONS(3680), 1, + ACTIONS(3688), 1, anon_sym_chan, - ACTIONS(3682), 1, + ACTIONS(3690), 1, anon_sym_thread, - ACTIONS(3684), 1, + ACTIONS(3692), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(5882), 1, anon_sym_STAR, - ACTIONS(5824), 1, + ACTIONS(5884), 1, anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5886), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5888), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5890), 1, anon_sym_AMP, - ACTIONS(5832), 1, + ACTIONS(5892), 1, anon_sym_map_LBRACK, - STATE(1694), 1, + STATE(1734), 1, sym_plain_type, - STATE(4437), 1, + STATE(4460), 1, sym_reference_expression, - STATE(1671), 2, + STATE(1688), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286039,50 +286537,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111667] = 20, + [111842] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3956), 1, - anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5808), 1, + ACTIONS(5708), 1, anon_sym_LPAREN, - ACTIONS(5810), 1, + ACTIONS(5712), 1, anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5720), 1, anon_sym_AMP, - ACTIONS(5820), 1, + ACTIONS(5722), 1, anon_sym_map_LBRACK, - STATE(2191), 1, + STATE(1676), 1, sym_plain_type, - STATE(4503), 1, + STATE(4436), 1, sym_reference_expression, - STATE(2167), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286095,50 +286593,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111743] = 20, + [111918] = 20, 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(605), 1, + ACTIONS(3967), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(3971), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(3975), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(3985), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3989), 1, + anon_sym_chan, + ACTIONS(3991), 1, + anon_sym_thread, + ACTIONS(3993), 1, + anon_sym_atomic, + ACTIONS(5832), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(5834), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5836), 1, + anon_sym_QMARK, + ACTIONS(5838), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5840), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5842), 1, anon_sym_AMP, - STATE(4124), 1, + ACTIONS(5844), 1, + anon_sym_map_LBRACK, + STATE(2246), 1, sym_plain_type, - STATE(4551), 1, + STATE(4525), 1, sym_reference_expression, - STATE(3543), 2, + STATE(2176), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2254), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2184), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286151,50 +286649,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111819] = 20, + [111994] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(567), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(571), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(581), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(585), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(587), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(589), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5794), 1, + ACTIONS(5894), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5896), 1, anon_sym_STAR, - ACTIONS(5798), 1, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5800), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5802), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5804), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(5906), 1, anon_sym_map_LBRACK, - STATE(811), 1, + STATE(1060), 1, sym_plain_type, - STATE(4482), 1, + STATE(4403), 1, sym_reference_expression, - STATE(414), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(869), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(867), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286207,7 +286705,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111895] = 20, + [112070] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -286220,37 +286718,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4462), 1, + STATE(4505), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286263,7 +286761,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [111971] = 20, + [112146] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -286276,37 +286774,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4409), 1, + STATE(4455), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286319,50 +286817,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112047] = 20, + [112222] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(1633), 1, anon_sym_atomic, ACTIONS(5894), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(5896), 1, - anon_sym_BANG, + anon_sym_STAR, ACTIONS(5898), 1, - anon_sym_LBRACK2, + anon_sym_QMARK, ACTIONS(5900), 1, + anon_sym_BANG, + ACTIONS(5902), 1, + anon_sym_LBRACK2, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(2710), 1, + ACTIONS(5906), 1, + anon_sym_map_LBRACK, + STATE(1062), 1, sym_plain_type, - STATE(4511), 1, + STATE(4403), 1, sym_reference_expression, - STATE(2643), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286375,50 +286873,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112123] = 20, + [112298] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3985), 1, + ACTIONS(4571), 1, sym_identifier, - ACTIONS(3987), 1, + ACTIONS(4573), 1, + anon_sym_LPAREN, + ACTIONS(4575), 1, anon_sym_fn, - ACTIONS(3989), 1, + ACTIONS(4577), 1, anon_sym_STAR, - ACTIONS(3999), 1, + ACTIONS(4579), 1, + anon_sym_struct, + ACTIONS(4589), 1, anon_sym_shared, - ACTIONS(4001), 1, + ACTIONS(4591), 1, anon_sym_map_LBRACK, - ACTIONS(4003), 1, + ACTIONS(4593), 1, anon_sym_chan, - ACTIONS(4005), 1, + ACTIONS(4595), 1, anon_sym_thread, - ACTIONS(4007), 1, + ACTIONS(4597), 1, anon_sym_atomic, - ACTIONS(5844), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5846), 1, + ACTIONS(5910), 1, anon_sym_BANG, - ACTIONS(5848), 1, + ACTIONS(5912), 1, anon_sym_LBRACK2, - ACTIONS(5850), 1, + ACTIONS(5914), 1, anon_sym_AMP, - STATE(2324), 1, + STATE(2503), 1, sym_plain_type, - STATE(4551), 1, + STATE(4533), 1, sym_reference_expression, - STATE(2323), 2, + STATE(2652), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2707), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2708), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286431,106 +286929,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112199] = 20, + [112374] = 20, 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(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3997), 1, + sym_identifier, + ACTIONS(3999), 1, + anon_sym_fn, + ACTIONS(4001), 1, anon_sym_STAR, - ACTIONS(5390), 1, - anon_sym_BANG, - ACTIONS(5392), 1, - anon_sym_LBRACK2, - ACTIONS(5394), 1, - anon_sym_AMP, - STATE(4551), 1, - sym_reference_expression, - STATE(4589), 1, - sym_plain_type, - STATE(3543), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2346), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2434), 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, - [112275] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(45), 1, - anon_sym_QMARK, - ACTIONS(83), 1, + ACTIONS(4011), 1, + anon_sym_shared, + ACTIONS(4013), 1, anon_sym_map_LBRACK, - ACTIONS(85), 1, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(87), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(89), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(605), 1, - sym_identifier, - ACTIONS(611), 1, - anon_sym_fn, - ACTIONS(615), 1, - anon_sym_struct, - ACTIONS(623), 1, - anon_sym_shared, - ACTIONS(3622), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5786), 1, + anon_sym_QMARK, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5792), 1, anon_sym_AMP, - STATE(4007), 1, + STATE(2879), 1, sym_plain_type, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286543,50 +286985,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112351] = 20, + [112450] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3997), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(3999), 1, anon_sym_fn, - ACTIONS(3960), 1, - anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(4001), 1, + anon_sym_STAR, + ACTIONS(4011), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(4013), 1, + anon_sym_map_LBRACK, + ACTIONS(4015), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(4017), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(4019), 1, anon_sym_atomic, - ACTIONS(5808), 1, - anon_sym_LPAREN, - ACTIONS(5810), 1, - anon_sym_STAR, - ACTIONS(5812), 1, + ACTIONS(5786), 1, anon_sym_QMARK, - ACTIONS(5814), 1, + ACTIONS(5788), 1, anon_sym_BANG, - ACTIONS(5816), 1, + ACTIONS(5790), 1, anon_sym_LBRACK2, - ACTIONS(5818), 1, + ACTIONS(5792), 1, anon_sym_AMP, - ACTIONS(5820), 1, - anon_sym_map_LBRACK, - STATE(2222), 1, + STATE(2864), 1, sym_plain_type, - STATE(4503), 1, + STATE(4626), 1, sym_reference_expression, - STATE(2167), 2, + STATE(2323), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286599,50 +287041,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112427] = 20, + [112526] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, - sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, - anon_sym_fn, - ACTIONS(5610), 1, - anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, + anon_sym_map_LBRACK, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5698), 1, - anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5706), 1, - anon_sym_map_LBRACK, - STATE(1690), 1, - sym_plain_type, - STATE(4418), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3386), 2, + STATE(4655), 1, + sym_plain_type, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286655,50 +287097,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112503] = 20, + [112602] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3658), 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(561), 1, sym_identifier, - ACTIONS(3662), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(3666), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(3676), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3680), 1, - anon_sym_chan, - ACTIONS(3682), 1, - anon_sym_thread, - ACTIONS(3684), 1, - anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(5822), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5824), 1, - anon_sym_QMARK, - ACTIONS(5826), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5828), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5830), 1, + ACTIONS(5430), 1, anon_sym_AMP, - ACTIONS(5832), 1, - anon_sym_map_LBRACK, - STATE(1719), 1, + STATE(3976), 1, sym_plain_type, - STATE(4437), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1671), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286711,50 +287153,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112579] = 20, + [112678] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(1633), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5894), 1, + anon_sym_LPAREN, + ACTIONS(5896), 1, + anon_sym_STAR, + ACTIONS(5898), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5900), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5902), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(1356), 1, + ACTIONS(5906), 1, + anon_sym_map_LBRACK, + STATE(1082), 1, sym_plain_type, - STATE(4398), 1, + STATE(4403), 1, sym_reference_expression, - STATE(1305), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286767,50 +287209,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112655] = 20, + [112754] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3590), 1, + ACTIONS(3454), 1, sym_identifier, - ACTIONS(3592), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, - anon_sym_fn, - ACTIONS(3596), 1, - anon_sym_STAR, - ACTIONS(3598), 1, + ACTIONS(3674), 1, anon_sym_struct, - ACTIONS(3608), 1, + ACTIONS(5608), 1, + anon_sym_fn, + ACTIONS(5620), 1, anon_sym_shared, - ACTIONS(3610), 1, - anon_sym_map_LBRACK, - ACTIONS(3612), 1, + ACTIONS(5624), 1, anon_sym_chan, - ACTIONS(3614), 1, + ACTIONS(5626), 1, anon_sym_thread, - ACTIONS(3616), 1, + ACTIONS(5628), 1, anon_sym_atomic, - ACTIONS(5916), 1, + ACTIONS(5708), 1, + anon_sym_LPAREN, + ACTIONS(5712), 1, + anon_sym_STAR, + ACTIONS(5714), 1, anon_sym_QMARK, - ACTIONS(5918), 1, + ACTIONS(5716), 1, anon_sym_BANG, - ACTIONS(5920), 1, + ACTIONS(5718), 1, anon_sym_LBRACK2, - ACTIONS(5922), 1, + ACTIONS(5720), 1, anon_sym_AMP, - STATE(1354), 1, + ACTIONS(5722), 1, + anon_sym_map_LBRACK, + STATE(1700), 1, sym_plain_type, - STATE(4398), 1, + STATE(4436), 1, sym_reference_expression, - STATE(1305), 2, + STATE(3380), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1325), 4, + STATE(1687), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1331), 12, + STATE(1686), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286823,50 +287265,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112731] = 20, + [112830] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(4559), 1, + ACTIONS(1607), 1, sym_identifier, - ACTIONS(4561), 1, - anon_sym_LPAREN, - ACTIONS(4563), 1, + ACTIONS(1611), 1, anon_sym_fn, - ACTIONS(4565), 1, - anon_sym_STAR, - ACTIONS(4567), 1, + ACTIONS(1615), 1, anon_sym_struct, - ACTIONS(4577), 1, + ACTIONS(1625), 1, anon_sym_shared, - ACTIONS(4579), 1, - anon_sym_map_LBRACK, - ACTIONS(4581), 1, + ACTIONS(1629), 1, anon_sym_chan, - ACTIONS(4583), 1, + ACTIONS(1631), 1, anon_sym_thread, - ACTIONS(4585), 1, + ACTIONS(1633), 1, anon_sym_atomic, ACTIONS(5894), 1, - anon_sym_QMARK, + anon_sym_LPAREN, ACTIONS(5896), 1, - anon_sym_BANG, + anon_sym_STAR, ACTIONS(5898), 1, - anon_sym_LBRACK2, + anon_sym_QMARK, ACTIONS(5900), 1, + anon_sym_BANG, + ACTIONS(5902), 1, + anon_sym_LBRACK2, + ACTIONS(5904), 1, anon_sym_AMP, - STATE(2709), 1, + ACTIONS(5906), 1, + anon_sym_map_LBRACK, + STATE(1083), 1, sym_plain_type, - STATE(4511), 1, + STATE(4403), 1, sym_reference_expression, - STATE(2643), 2, + STATE(1014), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2694), 4, + STATE(1097), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2695), 12, + STATE(1096), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286879,50 +287321,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112807] = 20, + [112906] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3446), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(3666), 1, - anon_sym_struct, - ACTIONS(5598), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(5610), 1, + ACTIONS(3490), 1, + anon_sym_struct, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(5614), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(5616), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(5618), 1, + ACTIONS(3508), 1, anon_sym_atomic, - ACTIONS(5692), 1, + ACTIONS(5808), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5810), 1, anon_sym_STAR, - ACTIONS(5698), 1, + ACTIONS(5812), 1, anon_sym_QMARK, - ACTIONS(5700), 1, + ACTIONS(5814), 1, anon_sym_BANG, - ACTIONS(5702), 1, + ACTIONS(5816), 1, anon_sym_LBRACK2, - ACTIONS(5704), 1, + ACTIONS(5818), 1, anon_sym_AMP, - ACTIONS(5706), 1, + ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(1694), 1, + STATE(1284), 1, sym_plain_type, - STATE(4418), 1, + STATE(4466), 1, sym_reference_expression, - STATE(3386), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1681), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1677), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286935,22 +287377,22 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112883] = 20, + [112982] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 1, + ACTIONS(3482), 1, sym_identifier, - ACTIONS(3956), 1, + ACTIONS(3486), 1, anon_sym_fn, - ACTIONS(3960), 1, + ACTIONS(3490), 1, anon_sym_struct, - ACTIONS(3970), 1, + ACTIONS(3500), 1, anon_sym_shared, - ACTIONS(3974), 1, + ACTIONS(3504), 1, anon_sym_chan, - ACTIONS(3976), 1, + ACTIONS(3506), 1, anon_sym_thread, - ACTIONS(3978), 1, + ACTIONS(3508), 1, anon_sym_atomic, ACTIONS(5808), 1, anon_sym_LPAREN, @@ -286966,19 +287408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(5820), 1, anon_sym_map_LBRACK, - STATE(2192), 1, + STATE(1285), 1, sym_plain_type, - STATE(4503), 1, + STATE(4466), 1, sym_reference_expression, - STATE(2167), 2, + STATE(1162), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2195), 4, + STATE(1170), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2196), 12, + STATE(1203), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -286991,50 +287433,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [112959] = 20, + [113058] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - sym_identifier, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, - anon_sym_fn, - ACTIONS(3801), 1, - anon_sym_struct, - ACTIONS(3811), 1, - anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5786), 1, - anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(2109), 1, - sym_plain_type, - STATE(4465), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1942), 2, + STATE(4637), 1, + sym_plain_type, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287047,50 +287489,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113035] = 20, + [113134] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3793), 1, - sym_identifier, - ACTIONS(3795), 1, - anon_sym_LPAREN, - ACTIONS(3797), 1, - anon_sym_fn, - ACTIONS(3801), 1, - anon_sym_struct, - ACTIONS(3811), 1, - anon_sym_shared, - ACTIONS(3813), 1, + ACTIONS(45), 1, + anon_sym_QMARK, + ACTIONS(83), 1, anon_sym_map_LBRACK, - ACTIONS(3815), 1, + ACTIONS(85), 1, anon_sym_chan, - ACTIONS(3817), 1, + ACTIONS(87), 1, anon_sym_thread, - ACTIONS(3819), 1, + ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(5784), 1, + ACTIONS(561), 1, + sym_identifier, + ACTIONS(567), 1, + anon_sym_fn, + ACTIONS(571), 1, + anon_sym_struct, + ACTIONS(579), 1, + anon_sym_shared, + ACTIONS(3630), 1, + anon_sym_LPAREN, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5786), 1, - anon_sym_QMARK, - ACTIONS(5788), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5792), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(1997), 1, + STATE(4625), 1, sym_plain_type, - STATE(4465), 1, + STATE(4626), 1, sym_reference_expression, - STATE(1942), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2145), 4, + STATE(2406), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1985), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287103,50 +287545,50 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113111] = 20, + [113210] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 1, + ACTIONS(3600), 1, sym_identifier, - ACTIONS(3738), 1, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, anon_sym_fn, - ACTIONS(3742), 1, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, anon_sym_struct, - ACTIONS(3752), 1, + ACTIONS(3618), 1, anon_sym_shared, - ACTIONS(3756), 1, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, anon_sym_chan, - ACTIONS(3758), 1, + ACTIONS(3624), 1, anon_sym_thread, - ACTIONS(3760), 1, + ACTIONS(3626), 1, anon_sym_atomic, - ACTIONS(5852), 1, - anon_sym_LPAREN, - ACTIONS(5854), 1, - anon_sym_STAR, - ACTIONS(5856), 1, + ACTIONS(5846), 1, anon_sym_QMARK, - ACTIONS(5858), 1, + ACTIONS(5848), 1, anon_sym_BANG, - ACTIONS(5860), 1, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5862), 1, + ACTIONS(5852), 1, anon_sym_AMP, - ACTIONS(5864), 1, - anon_sym_map_LBRACK, - STATE(1898), 1, + STATE(1360), 1, sym_plain_type, - STATE(4486), 1, + STATE(4409), 1, sym_reference_expression, - STATE(1799), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(1921), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(1920), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287159,7 +287601,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113187] = 20, + [113286] = 20, ACTIONS(3), 1, sym_comment, ACTIONS(45), 1, @@ -287172,37 +287614,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3622), 1, + ACTIONS(3630), 1, anon_sym_LPAREN, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5390), 1, + ACTIONS(5426), 1, anon_sym_BANG, - ACTIONS(5392), 1, + ACTIONS(5428), 1, + anon_sym_LBRACK2, + ACTIONS(5430), 1, + anon_sym_AMP, + STATE(4562), 1, + sym_plain_type, + STATE(4626), 1, + sym_reference_expression, + STATE(3605), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(2406), 4, + sym__plain_type_without_special, + sym_multi_return_type, + sym_result_type, + sym_option_type, + STATE(2413), 12, + sym_anon_struct_type, + sym_fixed_array_type, + sym_array_type, + sym_pointer_type, + sym_wrong_pointer_type, + sym_map_type, + sym_channel_type, + sym_shared_type, + sym_thread_type, + sym_atomic_type, + sym_generic_type, + sym_function_type, + [113362] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3600), 1, + sym_identifier, + ACTIONS(3602), 1, + anon_sym_LPAREN, + ACTIONS(3604), 1, + anon_sym_fn, + ACTIONS(3606), 1, + anon_sym_STAR, + ACTIONS(3608), 1, + anon_sym_struct, + ACTIONS(3618), 1, + anon_sym_shared, + ACTIONS(3620), 1, + anon_sym_map_LBRACK, + ACTIONS(3622), 1, + anon_sym_chan, + ACTIONS(3624), 1, + anon_sym_thread, + ACTIONS(3626), 1, + anon_sym_atomic, + ACTIONS(5846), 1, + anon_sym_QMARK, + ACTIONS(5848), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5852), 1, anon_sym_AMP, - STATE(4347), 1, + STATE(1361), 1, sym_plain_type, - STATE(4551), 1, + STATE(4409), 1, sym_reference_expression, - STATE(3543), 2, + STATE(1307), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2346), 4, + STATE(1352), 4, sym__plain_type_without_special, sym_multi_return_type, sym_result_type, sym_option_type, - STATE(2434), 12, + STATE(1353), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287215,7 +287713,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113263] = 16, + [113438] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287226,28 +287724,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4267), 1, + STATE(4172), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287260,7 +287758,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113324] = 16, + [113499] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287271,28 +287769,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4290), 1, + STATE(4500), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287305,7 +287803,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113385] = 16, + [113560] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287316,28 +287814,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4420), 1, + STATE(4332), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287350,54 +287848,54 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113446] = 18, + [113621] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(1239), 1, sym___double_quote, - ACTIONS(1462), 1, + ACTIONS(1241), 1, sym___single_quote, - ACTIONS(1464), 1, + ACTIONS(1243), 1, sym___c_double_quote, - ACTIONS(1466), 1, + ACTIONS(1245), 1, sym___c_single_quote, - ACTIONS(1468), 1, + ACTIONS(1247), 1, sym___r_double_quote, - ACTIONS(1470), 1, + ACTIONS(1249), 1, sym___r_single_quote, - ACTIONS(5924), 1, + ACTIONS(5940), 1, sym_identifier, - ACTIONS(5926), 1, + ACTIONS(5942), 1, anon_sym_if, - ACTIONS(5928), 1, + ACTIONS(5944), 1, anon_sym_unsafe, - STATE(3877), 1, + STATE(3844), 1, + sym_reference_expression, + STATE(4019), 1, sym_attribute_expression, - STATE(3878), 1, + STATE(4038), 1, sym_value_attribute, - STATE(3888), 1, - sym_reference_expression, - STATE(4271), 1, + STATE(4207), 1, sym_literal, - ACTIONS(1454), 2, + ACTIONS(1233), 2, sym_float_literal, sym_rune_literal, - STATE(2422), 3, + STATE(2328), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - STATE(4223), 4, + STATE(4111), 4, sym_if_attribute, sym__plain_attribute, sym_literal_attribute, sym_key_value_attribute, - ACTIONS(1438), 5, + ACTIONS(1217), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [113511] = 16, + [113686] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287408,28 +287906,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4182), 1, + STATE(4097), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287442,7 +287940,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113572] = 16, + [113747] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287453,28 +287951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4270), 1, + STATE(4262), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287487,7 +287985,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113633] = 16, + [113808] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287498,28 +287996,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4233), 1, + STATE(4173), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287532,54 +288030,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113694] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1460), 1, - sym___double_quote, - ACTIONS(1462), 1, - sym___single_quote, - ACTIONS(1464), 1, - sym___c_double_quote, - ACTIONS(1466), 1, - sym___c_single_quote, - ACTIONS(1468), 1, - sym___r_double_quote, - ACTIONS(1470), 1, - sym___r_single_quote, - ACTIONS(5924), 1, - sym_identifier, - ACTIONS(5926), 1, - anon_sym_if, - ACTIONS(5928), 1, - anon_sym_unsafe, - STATE(3878), 1, - sym_value_attribute, - STATE(3888), 1, - sym_reference_expression, - STATE(4231), 1, - sym_attribute_expression, - STATE(4271), 1, - sym_literal, - ACTIONS(1454), 2, - sym_float_literal, - sym_rune_literal, - STATE(2422), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - STATE(4223), 4, - sym_if_attribute, - sym__plain_attribute, - sym_literal_attribute, - sym_key_value_attribute, - ACTIONS(1438), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [113759] = 16, + [113869] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287590,28 +288041,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4281), 1, + STATE(4422), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287624,7 +288075,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113820] = 16, + [113930] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287635,28 +288086,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4125), 1, + STATE(4246), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287669,7 +288120,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113881] = 16, + [113991] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287680,28 +288131,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4196), 1, + STATE(4264), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287714,7 +288165,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [113942] = 16, + [114052] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287725,28 +288176,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4069), 1, + STATE(4321), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287759,7 +288210,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114003] = 16, + [114113] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287770,28 +288221,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4375), 1, + STATE(4125), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287804,7 +288255,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114064] = 16, + [114174] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287815,28 +288266,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4301), 1, + STATE(4222), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287849,7 +288300,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114125] = 16, + [114235] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287860,28 +288311,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4135), 1, + STATE(4359), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287894,7 +288345,7 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114186] = 16, + [114296] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(83), 1, @@ -287905,28 +288356,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, ACTIONS(89), 1, anon_sym_atomic, - ACTIONS(605), 1, + ACTIONS(561), 1, sym_identifier, - ACTIONS(611), 1, + ACTIONS(567), 1, anon_sym_fn, - ACTIONS(615), 1, + ACTIONS(571), 1, anon_sym_struct, - ACTIONS(623), 1, + ACTIONS(579), 1, anon_sym_shared, - ACTIONS(3624), 1, + ACTIONS(3632), 1, anon_sym_STAR, - ACTIONS(5392), 1, + ACTIONS(5428), 1, anon_sym_LBRACK2, - ACTIONS(5394), 1, + ACTIONS(5430), 1, anon_sym_AMP, - STATE(4495), 1, + STATE(4389), 1, sym__plain_type_without_special, - STATE(4551), 1, + STATE(4626), 1, sym_reference_expression, - STATE(3543), 2, + STATE(3605), 2, sym_type_reference_expression, sym_qualified_type, - STATE(2434), 12, + STATE(2413), 12, sym_anon_struct_type, sym_fixed_array_type, sym_array_type, @@ -287939,42 +288390,89 @@ static const uint16_t ts_small_parse_table[] = { sym_atomic_type, sym_generic_type, sym_function_type, - [114247] = 16, + [114357] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4960), 1, + ACTIONS(1239), 1, + sym___double_quote, + ACTIONS(1241), 1, + sym___single_quote, + ACTIONS(1243), 1, + sym___c_double_quote, + ACTIONS(1245), 1, + sym___c_single_quote, + ACTIONS(1247), 1, + sym___r_double_quote, + ACTIONS(1249), 1, + sym___r_single_quote, + ACTIONS(5940), 1, + sym_identifier, + ACTIONS(5942), 1, + anon_sym_if, + ACTIONS(5944), 1, + anon_sym_unsafe, + STATE(3844), 1, + sym_reference_expression, + STATE(4038), 1, + sym_value_attribute, + STATE(4190), 1, + sym_attribute_expression, + STATE(4207), 1, + sym_literal, + ACTIONS(1233), 2, + sym_float_literal, + sym_rune_literal, + STATE(2328), 3, + sym_c_string_literal, + sym_raw_string_literal, + sym_interpreted_string_literal, + STATE(4111), 4, + sym_if_attribute, + sym__plain_attribute, + sym_literal_attribute, + sym_key_value_attribute, + ACTIONS(1217), 5, + sym_none, + sym_true, + sym_false, + sym_nil, + sym_int_literal, + [114422] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4984), 1, anon_sym_LBRACK, - ACTIONS(5930), 1, + ACTIONS(5946), 1, sym_identifier, - ACTIONS(5932), 1, + ACTIONS(5948), 1, anon_sym_LPAREN, - ACTIONS(5938), 1, + ACTIONS(5954), 1, anon_sym_LT2, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - STATE(3394), 1, + STATE(3395), 1, sym_receiver, - STATE(3481), 1, + STATE(3507), 1, sym_capture_list, - STATE(3699), 1, + STATE(3827), 1, sym_generic_parameters, - STATE(4198), 1, + STATE(4209), 1, sym_signature, - STATE(4572), 1, - sym_reference_expression, - STATE(4585), 1, + STATE(4581), 1, sym_static_receiver, - STATE(2883), 2, + STATE(4594), 1, + sym_reference_expression, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - STATE(3493), 2, + STATE(3486), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5936), 3, + ACTIONS(5952), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5934), 8, + ACTIONS(5950), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -287983,10 +288481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [114307] = 2, + [114482] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3199), 24, + ACTIONS(3261), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288011,10 +288509,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114337] = 2, + [114512] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3347), 24, + ACTIONS(2895), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288039,10 +288537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114367] = 2, + [114542] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3207), 24, + ACTIONS(3005), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288067,10 +288565,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114397] = 2, + [114572] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3247), 24, + ACTIONS(2891), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288095,10 +288593,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114427] = 2, + [114602] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3239), 24, + ACTIONS(3009), 24, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288123,17 +288621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_thread, anon_sym_atomic, anon_sym_AT_LBRACK, - [114457] = 4, + [114632] = 4, ACTIONS(495), 1, sym_comment, - STATE(3589), 1, + STATE(3622), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(1757), 4, + ACTIONS(1759), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - ACTIONS(1759), 15, + ACTIONS(1761), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288149,42 +288647,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [114487] = 12, + [114662] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(5946), 1, + sym_identifier, + ACTIONS(5958), 1, + anon_sym_LPAREN, + STATE(3385), 1, + sym_receiver, + STATE(4594), 1, + sym_reference_expression, + STATE(4704), 1, + sym_static_receiver, + STATE(3495), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5952), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5950), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [114700] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, sym___double_quote, - ACTIONS(1462), 1, + ACTIONS(1241), 1, sym___single_quote, - ACTIONS(1464), 1, + ACTIONS(1243), 1, sym___c_double_quote, - ACTIONS(1466), 1, + ACTIONS(1245), 1, sym___c_single_quote, - ACTIONS(1468), 1, + ACTIONS(1247), 1, sym___r_double_quote, - ACTIONS(1470), 1, + ACTIONS(1249), 1, sym___r_single_quote, - ACTIONS(5942), 1, + ACTIONS(5960), 1, sym_identifier, - STATE(4252), 1, + STATE(4201), 1, sym_literal, - ACTIONS(1454), 2, + ACTIONS(1233), 2, sym_float_literal, sym_rune_literal, - STATE(2422), 3, + STATE(2328), 3, sym_c_string_literal, sym_raw_string_literal, sym_interpreted_string_literal, - ACTIONS(1438), 5, + ACTIONS(1217), 5, sym_none, sym_true, sym_false, sym_nil, sym_int_literal, - [114531] = 3, + [114744] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5946), 1, + sym_identifier, + ACTIONS(5958), 1, + anon_sym_LPAREN, + STATE(3370), 1, + sym_receiver, + STATE(4535), 1, + sym_static_receiver, + STATE(4594), 1, + sym_reference_expression, + STATE(3503), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5952), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5950), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [114782] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3207), 7, + ACTIONS(3009), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288192,7 +288748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3205), 11, + ACTIONS(3007), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288204,10 +288760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114557] = 3, + [114808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3347), 7, + ACTIONS(3261), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288215,7 +288771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3345), 11, + ACTIONS(3259), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288227,68 +288783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114583] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(5944), 1, - anon_sym_LPAREN, - STATE(3378), 1, - sym_receiver, - STATE(4572), 1, - sym_reference_expression, - STATE(4576), 1, - sym_static_receiver, - STATE(3486), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5936), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5934), 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, - [114621] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(5944), 1, - anon_sym_LPAREN, - STATE(3368), 1, - sym_receiver, - STATE(4572), 1, - sym_reference_expression, - STATE(4596), 1, - sym_static_receiver, - STATE(3501), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5936), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5934), 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, - [114659] = 3, + [114834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3199), 7, + ACTIONS(3005), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288296,7 +288794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3197), 11, + ACTIONS(3003), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288308,39 +288806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114685] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5930), 1, - sym_identifier, - ACTIONS(5944), 1, - anon_sym_LPAREN, - STATE(3361), 1, - sym_receiver, - STATE(4572), 1, - sym_reference_expression, - STATE(4582), 1, - sym_static_receiver, - STATE(3480), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5936), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5934), 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, - [114723] = 3, + [114860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 7, + ACTIONS(2895), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288348,7 +288817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3245), 11, + ACTIONS(2893), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -288360,10 +288829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114749] = 3, + [114886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3239), 7, + ACTIONS(2891), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288371,49 +288840,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(3237), 11, + ACTIONS(2889), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [114775] = 4, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [114912] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5946), 1, + sym_identifier, + ACTIONS(5958), 1, + anon_sym_LPAREN, + STATE(3398), 1, + sym_receiver, + STATE(4594), 1, + sym_reference_expression, + STATE(4668), 1, + sym_static_receiver, + STATE(3501), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5952), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5950), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [114950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1755), 1, + ACTIONS(1757), 1, anon_sym_LBRACE, - STATE(3950), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3556), 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, - [114802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1755), 1, - anon_sym_SEMI, - STATE(4013), 1, + STATE(3953), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3556), 15, + ACTIONS(3554), 15, anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, @@ -288429,34 +288904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [114829] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5946), 1, - anon_sym_static, - ACTIONS(5948), 1, - anon_sym_volatile, - ACTIONS(4597), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4599), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [114858] = 2, + [114977] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(5950), 17, + ACTIONS(5962), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288474,10 +288925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [114881] = 2, + [115000] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(5952), 17, + ACTIONS(5964), 17, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -288495,10 +288946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [114904] = 2, + [115023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 17, + ACTIONS(3554), 17, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COMMA, @@ -288516,14 +288967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [114927] = 4, + [115046] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4757), 1, - anon_sym_COMMA, - STATE(3353), 1, + ACTIONS(1757), 1, + anon_sym_SEMI, + STATE(4066), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3504), 14, + ACTIONS(3554), 15, + anon_sym_COMMA, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288538,12 +288990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [114953] = 4, + [115073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5954), 1, + ACTIONS(5966), 1, + anon_sym_static, + ACTIONS(5968), 1, anon_sym_volatile, - ACTIONS(4968), 7, + ACTIONS(4599), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288551,7 +289005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4970), 8, + ACTIONS(4601), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -288560,15 +289014,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [114979] = 4, + [115102] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5956), 1, + ACTIONS(5970), 1, + anon_sym_volatile, + ACTIONS(4976), 7, + anon_sym_fn, + anon_sym_struct, + sym_identifier, + anon_sym_shared, + anon_sym_chan, + anon_sym_thread, + anon_sym_atomic, + ACTIONS(4978), 8, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_DOT_DOT_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_LBRACK2, + anon_sym_AMP, + anon_sym_map_LBRACK, + [115128] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5972), 1, anon_sym_COMMA, - STATE(3348), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4882), 14, - anon_sym_LBRACE, + STATE(3359), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3512), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288582,14 +289057,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [115005] = 4, + anon_sym_COLON_EQ, + [115154] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5959), 1, + ACTIONS(5974), 1, anon_sym_COMMA, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3556), 14, + STATE(3354), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(4902), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288603,15 +289080,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, - [115031] = 4, + [115180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5962), 1, + ACTIONS(5977), 1, anon_sym_COMMA, - STATE(3353), 1, + STATE(3359), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3504), 14, + ACTIONS(3512), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288626,15 +289102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115057] = 4, + [115206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 1, + ACTIONS(4829), 1, anon_sym_COMMA, - STATE(3348), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(5964), 14, - anon_sym_LBRACE, + STATE(3359), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3512), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288648,14 +289123,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [115083] = 4, + anon_sym_COLON_EQ, + [115232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(4871), 1, anon_sym_COMMA, - STATE(3353), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3504), 14, + STATE(3354), 1, + aux_sym_expression_without_blocks_list_repeat1, + ACTIONS(5979), 14, + anon_sym_LBRACE, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288669,15 +289146,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, - [115109] = 4, + [115258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5966), 1, + ACTIONS(4711), 1, anon_sym_COMMA, - STATE(3349), 1, + STATE(3359), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(4037), 14, + ACTIONS(3512), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288692,14 +289168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115135] = 4, + [115284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5968), 1, + ACTIONS(5981), 1, anon_sym_COMMA, - STATE(3353), 1, + STATE(3360), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(3504), 14, + ACTIONS(4045), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288714,43 +289190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_CARET_EQ, anon_sym_COLON_EQ, - [115161] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(5970), 1, - sym_identifier, - ACTIONS(5972), 1, - anon_sym_RBRACE, - STATE(3358), 1, - aux_sym__interface_body_repeat1, - STATE(3466), 1, - sym_generic_type, - STATE(3470), 1, - sym_embedded_definition, - STATE(3472), 1, - sym__struct_field_definition, - STATE(4418), 1, - sym_reference_expression, - ACTIONS(635), 2, - anon_sym___global, - anon_sym_mut, - STATE(3440), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3467), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [115202] = 4, + [115310] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, - anon_sym_LBRACE, - STATE(4419), 1, - sym__select_arm_assignment_statement, - ACTIONS(5976), 13, + ACTIONS(5983), 1, + anon_sym_COMMA, + STATE(3360), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(3554), 14, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -288764,7 +289211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [115227] = 3, + anon_sym_COLON_EQ, + [115336] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4990), 7, @@ -288784,68 +289232,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [115250] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(5970), 1, - sym_identifier, - ACTIONS(5978), 1, - anon_sym_RBRACE, - STATE(3359), 1, - aux_sym__interface_body_repeat1, - STATE(3466), 1, - sym_generic_type, - STATE(3470), 1, - sym_embedded_definition, - STATE(3472), 1, - sym__struct_field_definition, - STATE(4418), 1, - sym_reference_expression, - ACTIONS(635), 2, - anon_sym___global, - anon_sym_mut, - STATE(3440), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3467), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [115291] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5980), 1, - sym_identifier, - ACTIONS(5983), 1, - anon_sym_RBRACE, - ACTIONS(5988), 1, - anon_sym_pub, - STATE(3359), 1, - aux_sym__interface_body_repeat1, - STATE(3466), 1, - sym_generic_type, - STATE(3470), 1, - sym_embedded_definition, - STATE(3472), 1, - sym__struct_field_definition, - STATE(4418), 1, - sym_reference_expression, - ACTIONS(5985), 2, - anon_sym___global, - anon_sym_mut, - STATE(3440), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3467), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [115332] = 3, + [115359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 7, + ACTIONS(4976), 7, anon_sym_fn, anon_sym_struct, sym_identifier, @@ -288853,7 +289243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_chan, anon_sym_thread, anon_sym_atomic, - ACTIONS(4970), 8, + ACTIONS(4978), 8, anon_sym_LPAREN, anon_sym_STAR, anon_sym_DOT_DOT_DOT, @@ -288862,208 +289252,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, anon_sym_AMP, anon_sym_map_LBRACK, - [115355] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5991), 1, - sym_identifier, - STATE(3506), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5936), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5934), 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, - [115381] = 12, + [115382] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(5986), 1, sym_identifier, - ACTIONS(5995), 1, + ACTIONS(5988), 1, anon_sym_RBRACE, - STATE(3377), 1, - aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3364), 1, + aux_sym__interface_body_repeat1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3468), 3, sym_struct_field_scope, sym_struct_field_declaration, - [115421] = 12, + sym_interface_method_definition, + [115423] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(647), 1, - anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(5990), 1, sym_identifier, - ACTIONS(5997), 1, + ACTIONS(5993), 1, anon_sym_RBRACE, - STATE(3383), 1, - aux_sym__struct_body_repeat1, - STATE(3466), 1, + ACTIONS(5998), 1, + anon_sym_pub, + STATE(3364), 1, + aux_sym__interface_body_repeat1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(5995), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3468), 3, sym_struct_field_scope, sym_struct_field_declaration, - [115461] = 12, + sym_interface_method_definition, + [115464] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(5986), 1, sym_identifier, - ACTIONS(5999), 1, + ACTIONS(6001), 1, anon_sym_RBRACE, - STATE(3391), 1, - aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3363), 1, + aux_sym__interface_body_repeat1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3468), 3, sym_struct_field_scope, sym_struct_field_declaration, - [115501] = 12, + sym_interface_method_definition, + [115505] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6003), 1, + anon_sym_LBRACE, + STATE(4578), 1, + sym__select_arm_assignment_statement, + ACTIONS(6005), 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, + [115530] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(631), 1, - anon_sym_RBRACE, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - STATE(3382), 1, + ACTIONS(6009), 1, + anon_sym_RBRACE, + STATE(3394), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115541] = 12, + [115570] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(631), 1, + anon_sym_RBRACE, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6001), 1, - anon_sym_RBRACE, - STATE(3383), 1, + STATE(3392), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115581] = 12, + [115610] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6003), 1, + ACTIONS(6011), 1, anon_sym_RBRACE, - STATE(3374), 1, + STATE(3403), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115621] = 5, + [115650] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, + ACTIONS(6013), 1, sym_identifier, - STATE(3489), 2, + STATE(3497), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5936), 3, + ACTIONS(5952), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5934), 8, + ACTIONS(5950), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289072,288 +289465,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [115647] = 12, + [115676] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, - sym_identifier, ACTIONS(6007), 1, + sym_identifier, + ACTIONS(6015), 1, anon_sym_RBRACE, - STATE(3366), 1, + STATE(3410), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115687] = 12, + [115716] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6009), 1, + ACTIONS(6017), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6013), 1, - anon_sym_COLON_EQ, - ACTIONS(6011), 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, - [115749] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6015), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(6017), 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, - [115771] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6019), 1, - sym_identifier, - STATE(3487), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5936), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5934), 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, - [115797] = 12, + [115756] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6021), 1, + ACTIONS(6019), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115837] = 12, + [115796] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6023), 1, + ACTIONS(6021), 1, anon_sym_RBRACE, - STATE(3399), 1, + STATE(3412), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115877] = 12, + [115836] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3414), 1, + anon_sym_LBRACK, + ACTIONS(3416), 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, + [115858] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6025), 1, + ACTIONS(6023), 1, anon_sym_RBRACE, - STATE(3403), 1, + STATE(3386), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115917] = 12, + [115898] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6027), 1, + ACTIONS(6025), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [115957] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6029), 1, - sym_identifier, - STATE(3497), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5936), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5934), 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, - [115983] = 12, + [115938] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6031), 1, + ACTIONS(6027), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3405), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116023] = 3, + [115978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6031), 1, + anon_sym_COLON_EQ, + ACTIONS(6029), 13, + anon_sym_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_AMP_CARET_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_PIPE_EQ, + anon_sym_CARET_EQ, + [116000] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6033), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_type_parameters, + ACTIONS(2715), 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, + [116024] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6035), 1, + ACTIONS(6037), 1, anon_sym_COLON_EQ, - ACTIONS(6033), 13, + ACTIONS(6035), 13, anon_sym_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, @@ -289367,217 +289738,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_PIPE_EQ, anon_sym_CARET_EQ, - [116045] = 12, + [116046] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6039), 1, + sym_identifier, + STATE(3508), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5952), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5950), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116072] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6037), 1, + ACTIONS(6041), 1, anon_sym_RBRACE, - STATE(3404), 1, + STATE(3377), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116085] = 12, + [116112] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3410), 1, + anon_sym_LBRACK, + ACTIONS(3412), 13, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [116134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6043), 1, + sym_identifier, + STATE(3500), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5952), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5950), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116160] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6039), 1, + ACTIONS(6045), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116125] = 12, + [116200] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6041), 1, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6044), 1, + ACTIONS(6047), 1, anon_sym_RBRACE, - ACTIONS(6049), 1, - anon_sym_pub, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - ACTIONS(6046), 2, + ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116165] = 3, + [116240] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6054), 1, - anon_sym_COLON_EQ, - ACTIONS(6052), 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, - [116187] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2907), 1, - anon_sym_LBRACK, - ACTIONS(2909), 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, + ACTIONS(6049), 1, sym_identifier, - anon_sym_AT_LBRACK, - [116209] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6056), 1, - anon_sym_LBRACK, - STATE(3408), 1, - sym_type_parameters, - ACTIONS(2761), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(6052), 1, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [116233] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(647), 1, + ACTIONS(6057), 1, anon_sym_pub, - ACTIONS(5993), 1, - sym_identifier, - ACTIONS(6058), 1, - anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, - ACTIONS(635), 2, + ACTIONS(6054), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116273] = 12, + [116280] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, ACTIONS(6060), 1, anon_sym_RBRACE, - STATE(3379), 1, + STATE(3399), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116313] = 5, + [116320] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_DOT, + ACTIONS(3410), 1, + anon_sym_LBRACK, + ACTIONS(3412), 12, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + anon_sym_LBRACK2, + sym_identifier, + anon_sym_AT_LBRACK, + [116344] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(6062), 1, sym_identifier, - STATE(3483), 2, + STATE(3502), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5936), 3, + ACTIONS(5952), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5934), 8, + ACTIONS(5950), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289586,94 +289980,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116339] = 3, - ACTIONS(495), 1, + [116370] = 12, + ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(6007), 1, + sym_identifier, + ACTIONS(6064), 1, anon_sym_RBRACE, - anon_sym_EQ, + STATE(3388), 1, + aux_sym__struct_body_repeat1, + STATE(3476), 1, + sym_generic_type, + STATE(3481), 1, + sym_embedded_definition, + STATE(3482), 1, + sym__struct_field_definition, + STATE(4436), 1, + sym_reference_expression, + ACTIONS(635), 2, anon_sym___global, - anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [116361] = 12, + STATE(3446), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3483), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [116410] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6064), 1, + ACTIONS(6066), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3401), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116401] = 12, + [116450] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6066), 1, + ACTIONS(6068), 1, anon_sym_RBRACE, - STATE(3397), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116441] = 5, + [116490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6068), 1, + ACTIONS(6070), 1, sym_identifier, - STATE(3500), 2, + STATE(3515), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5936), 3, + ACTIONS(5952), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5934), 8, + ACTIONS(5950), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289682,19 +290085,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116467] = 5, + [116516] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6070), 1, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(6007), 1, + sym_identifier, + ACTIONS(6072), 1, + anon_sym_RBRACE, + STATE(3411), 1, + aux_sym__struct_body_repeat1, + STATE(3476), 1, + sym_generic_type, + STATE(3481), 1, + sym_embedded_definition, + STATE(3482), 1, + sym__struct_field_definition, + STATE(4436), 1, + sym_reference_expression, + ACTIONS(635), 2, + anon_sym___global, + anon_sym_mut, + STATE(3446), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3483), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [116556] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6074), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6076), 11, + anon_sym_module, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_enum, + anon_sym_interface, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + [116578] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6078), 1, sym_identifier, - STATE(3482), 2, + STATE(3493), 2, sym__function_name, sym_overridable_operator, - ACTIONS(5936), 3, + ACTIONS(5952), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(5934), 8, + ACTIONS(5950), 8, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -289703,322 +290153,390 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [116493] = 12, + [116604] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6072), 1, + ACTIONS(6080), 1, anon_sym_RBRACE, - STATE(3387), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116533] = 4, - ACTIONS(495), 1, + [116644] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(2669), 1, - anon_sym_DOT, - ACTIONS(2907), 1, - anon_sym_LBRACK, - ACTIONS(2909), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6084), 1, + anon_sym_COLON_EQ, + ACTIONS(6082), 13, anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [116557] = 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, + [116666] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6074), 1, + ACTIONS(6086), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116597] = 5, + [116706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6076), 1, - sym_identifier, - STATE(3499), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5936), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5934), 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, - [116623] = 12, + ACTIONS(6090), 1, + anon_sym_COLON_EQ, + ACTIONS(6088), 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, + [116728] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6078), 1, + ACTIONS(6092), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116663] = 12, + [116768] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6080), 1, + ACTIONS(6094), 1, anon_sym_RBRACE, - STATE(3406), 1, + STATE(3387), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116703] = 12, + [116808] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6082), 1, + ACTIONS(6096), 1, anon_sym_RBRACE, - STATE(3370), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116743] = 12, + [116848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6098), 1, + sym_identifier, + STATE(3485), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5952), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5950), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116874] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6084), 1, + ACTIONS(6100), 1, anon_sym_RBRACE, - STATE(3363), 1, + STATE(3373), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116783] = 12, + [116914] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6102), 1, + sym_identifier, + STATE(3494), 2, + sym__function_name, + sym_overridable_operator, + ACTIONS(5952), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(5950), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [116940] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6086), 1, + ACTIONS(6104), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3372), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116823] = 12, + [116980] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6088), 1, + ACTIONS(6106), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116863] = 3, + [117020] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6092), 1, - anon_sym_COLON_EQ, - ACTIONS(6090), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [116885] = 12, + ACTIONS(647), 1, + anon_sym_pub, + ACTIONS(6007), 1, + sym_identifier, + ACTIONS(6108), 1, + anon_sym_RBRACE, + STATE(3388), 1, + aux_sym__struct_body_repeat1, + STATE(3476), 1, + sym_generic_type, + STATE(3481), 1, + sym_embedded_definition, + STATE(3482), 1, + sym__struct_field_definition, + STATE(4436), 1, + sym_reference_expression, + ACTIONS(635), 2, + anon_sym___global, + anon_sym_mut, + STATE(3446), 2, + sym_type_reference_expression, + sym_qualified_type, + STATE(3483), 2, + sym_struct_field_scope, + sym_struct_field_declaration, + [117060] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(647), 1, anon_sym_pub, - ACTIONS(5993), 1, + ACTIONS(6007), 1, sym_identifier, - ACTIONS(6094), 1, + ACTIONS(6110), 1, anon_sym_RBRACE, - STATE(3383), 1, + STATE(3388), 1, aux_sym__struct_body_repeat1, - STATE(3466), 1, + STATE(3476), 1, sym_generic_type, - STATE(3470), 1, + STATE(3481), 1, sym_embedded_definition, - STATE(3472), 1, + STATE(3482), 1, sym__struct_field_definition, - STATE(4418), 1, + STATE(4436), 1, sym_reference_expression, ACTIONS(635), 2, anon_sym___global, anon_sym_mut, - STATE(3440), 2, + STATE(3446), 2, sym_type_reference_expression, sym_qualified_type, - STATE(3475), 2, + STATE(3483), 2, sym_struct_field_scope, sym_struct_field_declaration, - [116925] = 2, + [117100] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(3397), 1, + sym_attribute, + STATE(3417), 1, + aux_sym_attributes_repeat1, + ACTIONS(111), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(6112), 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, + [117125] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3129), 13, + ACTIONS(3370), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290032,10 +290550,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116944] = 2, + [117144] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3137), 13, + ACTIONS(3432), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290049,10 +290567,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116963] = 2, + [117163] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3087), 13, + ACTIONS(3424), 13, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290066,37 +290584,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [116982] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3372), 1, - sym_attribute, - STATE(3411), 1, - aux_sym_attributes_repeat1, - ACTIONS(111), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6096), 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, - [117007] = 5, + [117182] = 5, ACTIONS(3), 1, sym_comment, - STATE(3372), 1, + STATE(3397), 1, sym_attribute, - STATE(3411), 1, + STATE(3417), 1, aux_sym_attributes_repeat1, - ACTIONS(6100), 2, + ACTIONS(6116), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(6098), 9, + ACTIONS(6114), 9, anon_sym_module, anon_sym_const, anon_sym___global, @@ -290106,31 +290604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_enum, anon_sym_interface, - [117032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6105), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6103), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_identifier, - [117052] = 3, + [117207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6109), 3, + ACTIONS(6121), 3, anon_sym_SLASH, anon_sym_LT, anon_sym_GT, - ACTIONS(6107), 9, + ACTIONS(6119), 9, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -290140,17 +290621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_identifier, - [117072] = 5, + [117227] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(6113), 1, + ACTIONS(6125), 1, anon_sym_EQ, - STATE(3471), 1, + STATE(3473), 1, sym_attribute, - ACTIONS(4956), 2, + ACTIONS(4950), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(6111), 8, + ACTIONS(6123), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290159,25 +290640,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [117096] = 2, - ACTIONS(495), 1, + [117251] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(3387), 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, + ACTIONS(6129), 3, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6127), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, sym_identifier, - anon_sym_AT_LBRACK, - [117113] = 2, + [117271] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3215), 11, + ACTIONS(3378), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290189,25 +290672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117130] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6098), 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, - [117147] = 2, + [117288] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3307), 11, + ACTIONS(3193), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290219,10 +290687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117164] = 2, + [117305] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3425), 11, + ACTIONS(3257), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290234,10 +290702,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117181] = 2, + [117322] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(2761), 11, + ACTIONS(3328), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290249,10 +290717,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117198] = 2, + [117339] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3413), 11, + ACTIONS(2907), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290264,15 +290732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117215] = 4, + [117356] = 4, ACTIONS(495), 1, sym_comment, - STATE(3462), 1, + STATE(3469), 1, sym_attribute, - ACTIONS(4956), 2, + ACTIONS(4950), 2, anon_sym_LBRACK2, anon_sym_AT_LBRACK, - ACTIONS(6115), 8, + ACTIONS(6131), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290281,10 +290749,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [117236] = 2, + [117377] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3401), 11, + ACTIONS(3275), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290296,25 +290764,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117253] = 2, + [117394] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(3391), 11, + ACTIONS(2715), 1, + anon_sym_LBRACE, + ACTIONS(6033), 1, + anon_sym_LBRACK, + STATE(3414), 1, + sym_type_parameters, + ACTIONS(6133), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - anon_sym_EQ, anon_sym___global, anon_sym_pub, anon_sym_mut, - anon_sym_LBRACK2, sym_identifier, - anon_sym_AT_LBRACK, - [117270] = 2, + [117417] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3319), 11, + ACTIONS(2915), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290326,10 +290797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117287] = 2, + [117434] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3383), 11, + ACTIONS(3177), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290341,27 +290812,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117304] = 4, + [117451] = 2, ACTIONS(495), 1, sym_comment, - STATE(3464), 1, - sym_attribute, - ACTIONS(4956), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6117), 8, + ACTIONS(3332), 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, - [117325] = 2, + anon_sym_AT_LBRACK, + [117468] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3379), 11, + ACTIONS(3245), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290373,10 +290842,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117342] = 2, + [117485] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3359), 11, + ACTIONS(2985), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290388,28 +290857,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117359] = 5, + [117502] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(2761), 1, - anon_sym_LBRACE, - ACTIONS(6056), 1, - anon_sym_LBRACK, - STATE(3408), 1, - sym_type_parameters, - ACTIONS(6119), 8, + ACTIONS(3340), 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, - [117382] = 2, + anon_sym_AT_LBRACK, + [117519] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3331), 11, + ACTIONS(3356), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290421,10 +290887,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117399] = 2, + [117536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6114), 11, + anon_sym_module, + anon_sym_const, + anon_sym___global, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_pub, + anon_sym_enum, + anon_sym_interface, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + [117553] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3211), 11, + ACTIONS(3396), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290436,10 +290917,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117416] = 2, + [117570] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3235), 11, + ACTIONS(3013), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290451,10 +290932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117433] = 2, + [117587] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3303), 11, + ACTIONS(3181), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290466,10 +290947,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117450] = 2, + [117604] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3219), 11, + ACTIONS(3213), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290481,10 +290962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117467] = 2, + [117621] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3251), 11, + ACTIONS(2981), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290496,10 +290977,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117484] = 2, + [117638] = 4, + ACTIONS(495), 1, + sym_comment, + STATE(3471), 1, + sym_attribute, + ACTIONS(4950), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(6135), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [117659] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3327), 11, + ACTIONS(3205), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290511,10 +291009,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117501] = 2, + [117676] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3323), 11, + ACTIONS(2715), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290526,10 +291024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117518] = 2, + [117693] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(3311), 11, + ACTIONS(3336), 11, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290541,14 +291039,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, sym_identifier, anon_sym_AT_LBRACK, - [117535] = 4, + [117710] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6056), 1, + ACTIONS(6033), 1, anon_sym_LBRACK, - STATE(3408), 1, + STATE(3414), 1, sym_type_parameters, - ACTIONS(6119), 8, + ACTIONS(6133), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290557,16 +291055,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [117555] = 5, + [117730] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6121), 1, + ACTIONS(6137), 1, sym_identifier, - ACTIONS(6125), 1, + ACTIONS(6141), 1, anon_sym_LPAREN, - STATE(1574), 1, + STATE(1527), 1, sym_global_var_definition, - ACTIONS(6123), 7, + ACTIONS(6139), 7, anon_sym_const, anon_sym_type, anon_sym_fn, @@ -290574,396 +291072,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [117577] = 10, + [117752] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6127), 1, + ACTIONS(6143), 1, anon_sym_module, - ACTIONS(6129), 1, + ACTIONS(6145), 1, anon_sym_const, - ACTIONS(6131), 1, + ACTIONS(6147), 1, anon_sym___global, - ACTIONS(6133), 1, + ACTIONS(6149), 1, anon_sym_fn, - ACTIONS(6137), 1, + ACTIONS(6153), 1, anon_sym_pub, - ACTIONS(6139), 1, + ACTIONS(6155), 1, anon_sym_enum, - ACTIONS(6141), 1, + ACTIONS(6157), 1, anon_sym_interface, - STATE(3622), 1, + STATE(3574), 1, sym_visibility_modifiers, - ACTIONS(6135), 2, + ACTIONS(6151), 2, anon_sym_struct, anon_sym_union, - [117609] = 3, + [117784] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + anon_sym_LBRACK2, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(3496), 1, + sym_capture_list, + STATE(3644), 1, + sym_signature, + STATE(3668), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [117811] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(2761), 1, - anon_sym_LBRACE, - ACTIONS(6119), 8, + ACTIONS(2727), 9, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON, sym_identifier, - [117626] = 4, + [117826] = 5, ACTIONS(495), 1, sym_comment, - ACTIONS(3784), 1, - anon_sym_COLON, - ACTIONS(3782), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6143), 5, + ACTIONS(6163), 1, + anon_sym_EQ, + STATE(3657), 1, + sym_attribute, + ACTIONS(4950), 2, + anon_sym_LBRACK2, + anon_sym_AT_LBRACK, + ACTIONS(6161), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [117645] = 8, + anon_sym_RBRACE, + sym_identifier, + [117847] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3484), 1, + STATE(3509), 1, sym_capture_list, - STATE(3661), 1, + STATE(3749), 1, sym_generic_parameters, - STATE(3945), 1, + STATE(4289), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117672] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym_const, - ACTIONS(6131), 1, - anon_sym___global, - ACTIONS(6133), 1, - anon_sym_fn, - ACTIONS(6137), 1, - anon_sym_pub, - ACTIONS(6139), 1, - anon_sym_enum, - ACTIONS(6141), 1, - anon_sym_interface, - STATE(3622), 1, - sym_visibility_modifiers, - ACTIONS(6135), 2, - anon_sym_struct, - anon_sym_union, - [117701] = 8, + [117874] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3508), 1, + STATE(3484), 1, sym_capture_list, - STATE(3799), 1, + STATE(3826), 1, sym_generic_parameters, - STATE(4280), 1, + STATE(4194), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117728] = 5, + [117901] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6121), 1, - sym_identifier, - ACTIONS(6147), 1, - anon_sym_LPAREN, - STATE(1515), 1, - sym_global_var_definition, - ACTIONS(6123), 6, + ACTIONS(6145), 1, anon_sym_const, + ACTIONS(6147), 1, + anon_sym___global, + ACTIONS(6149), 1, anon_sym_fn, - anon_sym_struct, - anon_sym_union, + ACTIONS(6153), 1, + anon_sym_pub, + ACTIONS(6155), 1, anon_sym_enum, + ACTIONS(6157), 1, anon_sym_interface, - [117749] = 8, + STATE(3574), 1, + sym_visibility_modifiers, + ACTIONS(6151), 2, + anon_sym_struct, + anon_sym_union, + [117930] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3492), 1, + STATE(3488), 1, sym_capture_list, - STATE(3677), 1, + STATE(3767), 1, sym_generic_parameters, - STATE(4219), 1, + STATE(4075), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117776] = 8, + [117957] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(3824), 1, + anon_sym_COLON, + ACTIONS(3822), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6165), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_COMMA, + [117976] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3503), 1, + STATE(3507), 1, sym_capture_list, - STATE(3633), 1, - sym_signature, - STATE(3817), 1, + STATE(3827), 1, sym_generic_parameters, - ACTIONS(4960), 2, + STATE(4209), 1, + sym_signature, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117803] = 8, + [118003] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(2715), 1, + anon_sym_LBRACE, + ACTIONS(6133), 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, + [118020] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3491), 1, + STATE(3505), 1, sym_capture_list, - STATE(3756), 1, + STATE(3787), 1, sym_generic_parameters, - STATE(4338), 1, + STATE(4333), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117830] = 8, + [118047] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3510), 1, + STATE(3513), 1, sym_capture_list, - STATE(3773), 1, + STATE(3804), 1, sym_generic_parameters, - STATE(4159), 1, + STATE(4368), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117857] = 8, + [118074] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3507), 1, + STATE(3511), 1, sym_capture_list, - STATE(3708), 1, + STATE(3816), 1, sym_generic_parameters, - STATE(4324), 1, + STATE(3967), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117884] = 8, + [118101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3481), 1, + STATE(3489), 1, sym_capture_list, - STATE(3699), 1, + STATE(3823), 1, sym_generic_parameters, - STATE(4198), 1, + STATE(4245), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117911] = 8, + [118128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, - anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6137), 1, + sym_identifier, + ACTIONS(6167), 1, anon_sym_LPAREN, - STATE(3504), 1, - sym_capture_list, - STATE(3729), 1, - sym_generic_parameters, - STATE(4122), 1, - sym_signature, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2883), 2, - sym_parameter_list, - sym_type_parameter_list, - [117938] = 8, + STATE(1518), 1, + sym_global_var_definition, + ACTIONS(6139), 6, + anon_sym_const, + anon_sym_fn, + anon_sym_struct, + anon_sym_union, + anon_sym_enum, + anon_sym_interface, + [118149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3498), 1, + STATE(3516), 1, sym_capture_list, - STATE(3658), 1, + STATE(3808), 1, sym_generic_parameters, - STATE(4137), 1, + STATE(4286), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [117965] = 5, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6151), 1, - anon_sym_EQ, - STATE(3635), 1, - sym_attribute, - ACTIONS(4956), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(6149), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [117986] = 8, + [118176] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3488), 1, + STATE(3491), 1, sym_capture_list, - STATE(3717), 1, + STATE(3704), 1, sym_generic_parameters, - STATE(4350), 1, + STATE(4135), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118013] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(2669), 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, - [118028] = 8, + [118203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5940), 1, + ACTIONS(5956), 1, anon_sym_LBRACK2, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3494), 1, + STATE(3504), 1, sym_capture_list, - STATE(3752), 1, + STATE(3723), 1, sym_generic_parameters, - STATE(4253), 1, + STATE(4211), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118055] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6153), 1, - sym_identifier, - ACTIONS(6156), 1, - anon_sym_RBRACE, - ACTIONS(6158), 1, - anon_sym_DOT_DOT_DOT, - STATE(3444), 1, - sym_reference_expression, - STATE(3461), 1, - aux_sym_element_list_repeat1, - STATE(4466), 1, - sym_field_name, - STATE(3468), 2, - sym_keyed_element, - sym_spread_expression, - [118081] = 2, + [118230] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6161), 8, + ACTIONS(6171), 1, + anon_sym_DOT, + STATE(3479), 1, + aux_sym_import_path_repeat1, + ACTIONS(6169), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [118095] = 2, + anon_sym_SEMI, + anon_sym_as, + anon_sym_LBRACE, + [118248] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(6163), 8, + ACTIONS(6175), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + ACTIONS(6173), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [118109] = 2, + [118264] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6165), 8, + ACTIONS(6177), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -290972,28 +291455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118123] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(643), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6167), 1, - sym_identifier, - ACTIONS(6169), 1, - anon_sym_RBRACE, - STATE(3444), 1, - sym_reference_expression, - STATE(3461), 1, - aux_sym_element_list_repeat1, - STATE(4466), 1, - sym_field_name, - STATE(3468), 2, - sym_keyed_element, - sym_spread_expression, - [118149] = 2, + [118278] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6119), 8, + ACTIONS(6179), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291002,36 +291467,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118163] = 3, + [118292] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6173), 3, + ACTIONS(6181), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6171), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [118179] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(3782), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(6143), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [118195] = 2, + [118306] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6175), 8, + ACTIONS(6183), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291040,10 +291491,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118209] = 2, + [118320] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6177), 8, + ACTIONS(6185), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291052,10 +291503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118223] = 2, + [118334] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6179), 8, + ACTIONS(6187), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, @@ -291064,554 +291515,519 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_pub, anon_sym_mut, sym_identifier, - [118237] = 2, + [118348] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(6181), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(3822), 3, anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [118251] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6185), 1, - anon_sym_DOT, - STATE(3478), 1, - aux_sym_import_path_repeat1, - ACTIONS(6183), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [118269] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6187), 8, + anon_sym_DOT_DOT_DOT, + sym_identifier, + ACTIONS(6165), 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, - [118283] = 3, + anon_sym_SEMI, + anon_sym_COMMA, + [118364] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6191), 3, + ACTIONS(6133), 8, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - ACTIONS(6189), 5, anon_sym_RBRACE, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [118299] = 6, - ACTIONS(495), 1, + [118378] = 9, + ACTIONS(3), 1, sym_comment, + ACTIONS(5940), 1, + sym_identifier, + ACTIONS(6189), 1, + anon_sym_COMMA, + ACTIONS(6191), 1, + anon_sym_RBRACK, + ACTIONS(6193), 1, + anon_sym_mut, ACTIONS(6195), 1, + anon_sym_shared, + STATE(3974), 1, + sym_capture, + STATE(4165), 1, + sym_mutability_modifiers, + STATE(4166), 1, + sym_reference_expression, + [118406] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6199), 1, anon_sym_as, - ACTIONS(6197), 1, + ACTIONS(6201), 1, anon_sym_LBRACE, - STATE(3605), 1, + STATE(3616), 1, sym_import_alias, - STATE(3670), 1, + STATE(3786), 1, sym_selective_import_list, - ACTIONS(6193), 4, + ACTIONS(6197), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [118321] = 4, + [118428] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6185), 1, + ACTIONS(6205), 1, anon_sym_DOT, - STATE(3473), 1, + STATE(3479), 1, aux_sym_import_path_repeat1, - ACTIONS(6199), 6, + ACTIONS(6203), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [118339] = 4, + [118446] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6203), 1, + ACTIONS(6171), 1, anon_sym_DOT, - STATE(3478), 1, + STATE(3467), 1, aux_sym_import_path_repeat1, - ACTIONS(6201), 6, + ACTIONS(6208), 6, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, anon_sym_as, anon_sym_LBRACE, - [118357] = 9, - ACTIONS(3), 1, + [118464] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5924), 1, + ACTIONS(6210), 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(6206), 1, - anon_sym_COMMA, - ACTIONS(6208), 1, - anon_sym_RBRACK, - ACTIONS(6210), 1, + [118478] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6212), 8, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, anon_sym_mut, - ACTIONS(6212), 1, - anon_sym_shared, - STATE(3952), 1, - sym_capture, - STATE(4337), 1, - sym_mutability_modifiers, - STATE(4344), 1, - sym_reference_expression, - [118385] = 6, - ACTIONS(3), 1, + sym_identifier, + [118492] = 3, + ACTIONS(495), 1, sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1446), 1, - sym_signature, - STATE(3797), 1, - sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [118406] = 6, + ACTIONS(6216), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + ACTIONS(6214), 5, + anon_sym_RBRACE, + anon_sym___global, + anon_sym_pub, + anon_sym_mut, + sym_identifier, + [118508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3789), 1, + STATE(3817), 1, sym_generic_parameters, - STATE(4327), 1, + STATE(4177), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118427] = 6, + [118529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1486), 1, + STATE(1482), 1, sym_signature, - STATE(3687), 1, + STATE(3684), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118448] = 6, + [118550] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1483), 1, + STATE(1457), 1, sym_signature, - STATE(3669), 1, - sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [118469] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(3668), 1, + STATE(3679), 1, sym_generic_parameters, - STATE(4243), 1, - sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118490] = 8, + [118571] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5924), 1, - sym_identifier, - ACTIONS(6210), 1, - anon_sym_mut, - ACTIONS(6212), 1, - anon_sym_shared, - ACTIONS(6216), 1, - anon_sym_RBRACK, - STATE(4179), 1, - sym_capture, - STATE(4337), 1, - sym_mutability_modifiers, - STATE(4344), 1, - sym_reference_expression, - [118515] = 6, + ACTIONS(6220), 1, + anon_sym_const, + ACTIONS(6222), 1, + anon_sym_type, + ACTIONS(6224), 1, + anon_sym_fn, + ACTIONS(6228), 1, + anon_sym_enum, + ACTIONS(6230), 1, + anon_sym_interface, + ACTIONS(6226), 2, + anon_sym_struct, + anon_sym_union, + [118594] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1473), 1, - sym_signature, - STATE(3716), 1, + STATE(3772), 1, sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [118536] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1488), 1, + STATE(4391), 1, sym_signature, - STATE(3671), 1, - sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118557] = 6, + [118615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3711), 1, + STATE(3829), 1, sym_generic_parameters, - STATE(4378), 1, + STATE(4227), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118578] = 6, + [118636] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6203), 7, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [118649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1469), 1, - sym_signature, - STATE(3759), 1, + STATE(3709), 1, sym_generic_parameters, - ACTIONS(4960), 2, + STATE(4168), 1, + sym_signature, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118599] = 2, + [118670] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6218), 7, + ACTIONS(6232), 1, + sym_identifier, + STATE(3643), 1, + sym_reference_expression, + ACTIONS(6234), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [118612] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + [118687] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(3777), 1, - sym_generic_parameters, - STATE(4082), 1, + STATE(1476), 1, sym_signature, - ACTIONS(4960), 2, + STATE(3715), 1, + sym_generic_parameters, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118633] = 6, + [118708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(3674), 1, - sym_generic_parameters, - STATE(4185), 1, + STATE(1469), 1, sym_signature, - ACTIONS(4960), 2, + STATE(3798), 1, + sym_generic_parameters, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118654] = 6, + [118729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1485), 1, + STATE(1465), 1, sym_signature, - STATE(3770), 1, + STATE(3780), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118675] = 6, + [118750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3739), 1, + STATE(3693), 1, sym_generic_parameters, - STATE(4296), 1, + STATE(4091), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118696] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6201), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [118709] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6220), 1, - anon_sym_const, - ACTIONS(6222), 1, - anon_sym_type, - ACTIONS(6224), 1, - anon_sym_fn, - ACTIONS(6228), 1, - anon_sym_enum, - ACTIONS(6230), 1, - anon_sym_interface, - ACTIONS(6226), 2, - anon_sym_struct, - anon_sym_union, - [118732] = 6, + [118771] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1504), 1, + STATE(1486), 1, sym_signature, - STATE(3673), 1, + STATE(3686), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118753] = 6, + [118792] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(643), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6236), 1, + sym_identifier, + ACTIONS(6238), 1, + anon_sym_RBRACE, + STATE(3456), 1, + sym_reference_expression, + STATE(3512), 1, + aux_sym_element_list_repeat1, + STATE(3475), 2, + sym_keyed_element, + sym_spread_expression, + [118815] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 1, + sym_identifier, + ACTIONS(6193), 1, + anon_sym_mut, + ACTIONS(6195), 1, + anon_sym_shared, + ACTIONS(6240), 1, + anon_sym_RBRACK, + STATE(4165), 1, + sym_mutability_modifiers, + STATE(4166), 1, + sym_reference_expression, + STATE(4342), 1, + sym_capture, + [118840] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(3659), 1, - sym_generic_parameters, - STATE(4245), 1, + STATE(1472), 1, sym_signature, - ACTIONS(4960), 2, + STATE(3718), 1, + sym_generic_parameters, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118774] = 6, + [118861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1460), 1, + STATE(1466), 1, sym_signature, - STATE(3735), 1, + STATE(3791), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118795] = 6, + [118882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1474), 1, + STATE(1480), 1, sym_signature, - STATE(3684), 1, + STATE(3683), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118816] = 6, + [118903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1465), 1, + STATE(1477), 1, sym_signature, - STATE(3755), 1, + STATE(3691), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118837] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5924), 1, - sym_identifier, - ACTIONS(6210), 1, - anon_sym_mut, - ACTIONS(6212), 1, - anon_sym_shared, - ACTIONS(6232), 1, - anon_sym_RBRACK, - STATE(4179), 1, - sym_capture, - STATE(4337), 1, - sym_mutability_modifiers, - STATE(4344), 1, - sym_reference_expression, - [118862] = 6, + [118924] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3805), 1, + STATE(3744), 1, sym_generic_parameters, - STATE(4104), 1, + STATE(4076), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118883] = 6, + [118945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3822), 1, + STATE(3795), 1, sym_generic_parameters, - STATE(4075), 1, + STATE(4326), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118904] = 4, + [118966] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6234), 1, - sym_identifier, - STATE(3651), 1, - sym_reference_expression, - ACTIONS(6236), 5, + ACTIONS(6242), 7, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [118921] = 6, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_as, + anon_sym_LBRACE, + [118979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1448), 1, - sym_signature, - STATE(3761), 1, + STATE(3703), 1, sym_generic_parameters, - ACTIONS(4960), 2, + STATE(4127), 1, + sym_signature, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(1122), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118942] = 6, + [119000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(3703), 1, - sym_generic_parameters, - STATE(4284), 1, + STATE(1496), 1, sym_signature, - ACTIONS(4960), 2, + STATE(3687), 1, + sym_generic_parameters, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [118963] = 6, + [119021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3736), 1, + STATE(3751), 1, sym_generic_parameters, - STATE(4315), 1, + STATE(4325), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [118984] = 2, + [119042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6238), 7, + ACTIONS(6244), 7, anon_sym_const, anon_sym_type, anon_sym_fn, @@ -291619,3272 +292035,3188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_union, anon_sym_enum, anon_sym_interface, - [118997] = 6, + [119055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3796), 1, + STATE(3814), 1, sym_generic_parameters, - STATE(4195), 1, + STATE(4129), 1, sym_signature, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [119018] = 6, - ACTIONS(495), 1, + [119076] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(6240), 1, - sym_escape_sequence, - ACTIONS(6242), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6244), 1, - sym___dolcbr, ACTIONS(6246), 1, - sym___double_quote, - STATE(3598), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119038] = 6, + sym_identifier, + ACTIONS(6249), 1, + anon_sym_RBRACE, + ACTIONS(6251), 1, + anon_sym_DOT_DOT_DOT, + STATE(3456), 1, + sym_reference_expression, + STATE(3512), 1, + aux_sym_element_list_repeat1, + STATE(3475), 2, + sym_keyed_element, + sym_spread_expression, + [119099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(3764), 1, + sym_generic_parameters, + STATE(4268), 1, + sym_signature, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [119120] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 1, + sym_identifier, + ACTIONS(6193), 1, + anon_sym_mut, + ACTIONS(6195), 1, + anon_sym_shared, + ACTIONS(6254), 1, + anon_sym_RBRACK, + STATE(4165), 1, + sym_mutability_modifiers, + STATE(4166), 1, + sym_reference_expression, + STATE(4342), 1, + sym_capture, + [119145] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6218), 1, + anon_sym_LPAREN, + STATE(1453), 1, + sym_signature, + STATE(3717), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(1126), 2, + sym_parameter_list, + sym_type_parameter_list, + [119166] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(3815), 1, + sym_generic_parameters, + STATE(4265), 1, + sym_signature, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [119187] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, - sym___dolcbr, - ACTIONS(6248), 1, - sym_escape_sequence, - ACTIONS(6250), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6252), 1, - sym___double_quote, - STATE(3534), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119058] = 6, + ACTIONS(5028), 1, + anon_sym_COMMA, + STATE(3518), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(1719), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [119203] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_COMMA, + STATE(3602), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(4047), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [119219] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, - sym_escape_sequence, ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, + sym_escape_sequence, ACTIONS(6258), 1, - sym___dolcbr, + aux_sym_c_string_literal_token1, ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6262), 1, sym___single_quote, - STATE(3535), 2, + STATE(3629), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119078] = 6, + [119239] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6262), 1, - sym_escape_sequence, ACTIONS(6264), 1, - aux_sym_c_string_literal_token2, + sym_escape_sequence, ACTIONS(6266), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6268), 1, + sym___single_quote, + STATE(3549), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [119259] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6274), 1, + sym___dolcbr, + ACTIONS(6276), 1, sym___double_quote, - STATE(3526), 2, + STATE(3550), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119098] = 6, + [119279] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6276), 1, + sym___single_quote, + ACTIONS(6278), 1, + sym_escape_sequence, + ACTIONS(6280), 1, + aux_sym_c_string_literal_token1, + STATE(3544), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [119299] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6282), 1, + anon_sym_DOT, + ACTIONS(6284), 1, + anon_sym_RBRACE, + ACTIONS(6286), 1, + sym_int_literal, + ACTIONS(6288), 1, + aux_sym_format_specifier_token1, + ACTIONS(6290), 1, + aux_sym_format_specifier_token2, + ACTIONS(6292), 1, + anon_sym_0, + [119321] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6268), 1, + ACTIONS(6298), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119118] = 6, + [119341] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6300), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6303), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + ACTIONS(6306), 1, sym___dolcbr, - ACTIONS(6268), 1, + ACTIONS(6309), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119138] = 6, + [119361] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6270), 1, + ACTIONS(6311), 1, sym_escape_sequence, - ACTIONS(6272), 1, + ACTIONS(6313), 1, aux_sym_c_string_literal_token1, - ACTIONS(6274), 1, + ACTIONS(6315), 1, sym___single_quote, - STATE(3523), 2, + STATE(3603), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119158] = 6, + [119381] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, - sym___dolcbr, - ACTIONS(6274), 1, + ACTIONS(6262), 1, sym___double_quote, - ACTIONS(6276), 1, + ACTIONS(6274), 1, + sym___dolcbr, + ACTIONS(6317), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6319), 1, aux_sym_c_string_literal_token2, - STATE(3522), 2, + STATE(3524), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119178] = 6, + [119401] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6280), 1, + ACTIONS(6321), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119198] = 6, + [119421] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6321), 1, + sym___single_quote, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + STATE(3525), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [119441] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6280), 1, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6325), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6327), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119218] = 6, + [119461] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6282), 1, + ACTIONS(6329), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119238] = 6, + [119481] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6315), 1, + sym___double_quote, + ACTIONS(6331), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6333), 1, aux_sym_c_string_literal_token2, - ACTIONS(6284), 1, - sym___double_quote, - STATE(3534), 2, + STATE(3601), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119258] = 6, + [119501] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6335), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6337), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6284), 1, + ACTIONS(6339), 1, sym___single_quote, - STATE(3535), 2, + STATE(3597), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119278] = 6, + [119521] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6282), 1, + ACTIONS(6329), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119298] = 4, + [119541] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(5032), 1, - anon_sym_COMMA, - STATE(3544), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1717), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [119314] = 6, + ACTIONS(6274), 1, + sym___dolcbr, + ACTIONS(6339), 1, + sym___double_quote, + ACTIONS(6341), 1, + sym_escape_sequence, + ACTIONS(6343), 1, + aux_sym_c_string_literal_token2, + STATE(3620), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [119561] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6345), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6347), 1, aux_sym_c_string_literal_token2, - ACTIONS(6286), 1, + ACTIONS(6349), 1, sym___double_quote, - STATE(3534), 2, + STATE(3588), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119334] = 6, + [119581] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6351), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6353), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6286), 1, + ACTIONS(6355), 1, sym___single_quote, - STATE(3535), 2, + STATE(3582), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119354] = 6, + [119601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2725), 1, + anon_sym_DOT, + ACTIONS(3410), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + [119615] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6360), 1, + anon_sym_RBRACE, + STATE(3539), 1, + aux_sym_selective_import_list_repeat1, + ACTIONS(6357), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [119631] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6288), 1, + ACTIONS(6327), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119374] = 6, + [119651] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, - sym_escape_sequence, - ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6288), 1, - sym___single_quote, - STATE(3535), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119394] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6254), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6290), 1, + ACTIONS(6362), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119414] = 6, + [119671] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6292), 1, - sym_escape_sequence, ACTIONS(6294), 1, - aux_sym_c_string_literal_token2, + sym_escape_sequence, ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6362), 1, sym___double_quote, - STATE(3521), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119434] = 6, + [119691] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6298), 1, + ACTIONS(6355), 1, + sym___double_quote, + ACTIONS(6364), 1, sym_escape_sequence, - ACTIONS(6300), 1, + ACTIONS(6366), 1, aux_sym_c_string_literal_token2, - ACTIONS(6302), 1, - sym___double_quote, - STATE(3604), 2, + STATE(3583), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119454] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6304), 1, - anon_sym_DOT, - ACTIONS(6306), 1, - anon_sym_RBRACE, - ACTIONS(6308), 1, - sym_int_literal, - ACTIONS(6310), 1, - aux_sym_format_specifier_token1, - ACTIONS(6312), 1, - aux_sym_format_specifier_token2, - ACTIONS(6314), 1, - anon_sym_0, - [119476] = 6, + [119711] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6316), 1, - sym_escape_sequence, - ACTIONS(6319), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6322), 1, + ACTIONS(6260), 1, sym___dolcbr, + ACTIONS(6323), 1, + sym_escape_sequence, ACTIONS(6325), 1, - sym___double_quote, - STATE(3534), 2, + aux_sym_c_string_literal_token1, + ACTIONS(6368), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [119496] = 6, + aux_sym_c_string_literal_repeat1, + [119731] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6327), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6349), 1, + sym___single_quote, + ACTIONS(6370), 1, sym_escape_sequence, - ACTIONS(6330), 1, + ACTIONS(6372), 1, aux_sym_c_string_literal_token1, - ACTIONS(6333), 1, + STATE(3579), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [119751] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6336), 1, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6325), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6374), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119516] = 6, + [119771] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6338), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6340), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6342), 1, + ACTIONS(6376), 1, sym___double_quote, - STATE(3566), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119536] = 6, + [119791] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6342), 1, + ACTIONS(6323), 1, + sym_escape_sequence, + ACTIONS(6325), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6378), 1, sym___single_quote, - ACTIONS(6344), 1, + STATE(3525), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [119811] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6346), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - STATE(3567), 2, + ACTIONS(6376), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119556] = 6, + [119831] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6348), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6350), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6352), 1, + ACTIONS(6368), 1, sym___double_quote, - STATE(3568), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119576] = 6, + [119851] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6352), 1, - sym___single_quote, - ACTIONS(6354), 1, + ACTIONS(6380), 1, sym_escape_sequence, - ACTIONS(6356), 1, + ACTIONS(6382), 1, aux_sym_c_string_literal_token1, - STATE(3569), 2, + ACTIONS(6384), 1, + sym___single_quote, + STATE(3530), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119596] = 6, + [119871] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6302), 1, - sym___single_quote, - ACTIONS(6358), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6360), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - STATE(3606), 2, + ACTIONS(6386), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119616] = 6, + [119891] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6362), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6364), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6366), 1, + ACTIONS(6386), 1, sym___double_quote, - STATE(3607), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119636] = 6, + [119911] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6366), 1, - sym___single_quote, - ACTIONS(6368), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6370), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - STATE(3608), 2, + ACTIONS(6388), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119656] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6372), 1, - anon_sym_LBRACK, - STATE(2405), 1, - sym_type_parameters, - ACTIONS(2759), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [119672] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(5032), 1, - anon_sym_COMMA, - STATE(3586), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(4039), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [119688] = 6, + [119931] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6374), 1, + ACTIONS(6390), 1, sym_escape_sequence, - ACTIONS(6376), 1, + ACTIONS(6392), 1, aux_sym_c_string_literal_token2, - ACTIONS(6378), 1, + ACTIONS(6394), 1, sym___double_quote, - STATE(3559), 2, + STATE(3584), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119708] = 6, + [119951] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6378), 1, + ACTIONS(6394), 1, sym___single_quote, - ACTIONS(6380), 1, + ACTIONS(6396), 1, sym_escape_sequence, - ACTIONS(6382), 1, + ACTIONS(6398), 1, aux_sym_c_string_literal_token1, - STATE(3560), 2, + STATE(3585), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119728] = 6, + [119971] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6384), 1, + ACTIONS(6400), 1, sym_escape_sequence, - ACTIONS(6386), 1, + ACTIONS(6402), 1, aux_sym_c_string_literal_token2, - ACTIONS(6388), 1, + ACTIONS(6404), 1, sym___double_quote, - STATE(3561), 2, + STATE(3586), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119748] = 6, + [119991] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6388), 1, + ACTIONS(6404), 1, sym___single_quote, - ACTIONS(6390), 1, + ACTIONS(6406), 1, sym_escape_sequence, - ACTIONS(6392), 1, + ACTIONS(6408), 1, aux_sym_c_string_literal_token1, - STATE(3562), 2, + STATE(3587), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119768] = 6, + [120011] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6274), 1, + sym___dolcbr, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6388), 1, + sym___double_quote, + STATE(3627), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [120031] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6394), 1, - sym___single_quote, - STATE(3535), 2, + ACTIONS(6294), 1, + sym_escape_sequence, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6378), 1, + sym___double_quote, + STATE(3627), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119788] = 6, + aux_sym_c_string_literal_repeat2, + [120051] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6396), 1, + ACTIONS(6410), 1, sym_escape_sequence, - ACTIONS(6398), 1, + ACTIONS(6412), 1, aux_sym_c_string_literal_token1, - ACTIONS(6400), 1, + ACTIONS(6414), 1, sym___single_quote, - STATE(3516), 2, + STATE(3541), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119808] = 6, + [120071] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6400), 1, + ACTIONS(6414), 1, sym___double_quote, - ACTIONS(6402), 1, + ACTIONS(6416), 1, sym_escape_sequence, - ACTIONS(6404), 1, + ACTIONS(6418), 1, aux_sym_c_string_literal_token2, - STATE(3515), 2, + STATE(3542), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119828] = 6, + [120091] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6420), 1, + sym_escape_sequence, + ACTIONS(6422), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6424), 1, + sym___single_quote, + STATE(3565), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [120111] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6426), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6428), 1, aux_sym_c_string_literal_token2, - ACTIONS(6394), 1, + ACTIONS(6430), 1, sym___double_quote, - STATE(3534), 2, + STATE(3599), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119848] = 6, + [120131] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6246), 1, - sym___single_quote, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6406), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6408), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - STATE(3513), 2, + ACTIONS(6432), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119868] = 6, + [120151] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6274), 1, + sym___dolcbr, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6432), 1, + sym___double_quote, + STATE(3627), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [120171] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6410), 1, - sym___single_quote, - STATE(3535), 2, + ACTIONS(6294), 1, + sym_escape_sequence, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6434), 1, + sym___double_quote, + STATE(3627), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [119888] = 6, + aux_sym_c_string_literal_repeat2, + [120191] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6266), 1, + ACTIONS(6430), 1, sym___single_quote, - ACTIONS(6412), 1, + ACTIONS(6436), 1, sym_escape_sequence, - ACTIONS(6414), 1, + ACTIONS(6438), 1, aux_sym_c_string_literal_token1, - STATE(3527), 2, + STATE(3592), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119908] = 6, + [120211] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6440), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6442), 1, aux_sym_c_string_literal_token2, - ACTIONS(6410), 1, + ACTIONS(6444), 1, sym___double_quote, - STATE(3534), 2, + STATE(3613), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119928] = 6, + [120231] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6446), 1, + sym_identifier, + STATE(3743), 1, + sym_label_reference, + ACTIONS(4120), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [120247] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6446), 1, + sym_identifier, + STATE(3739), 1, + sym_label_reference, + ACTIONS(4116), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [120263] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6416), 1, + ACTIONS(6444), 1, + sym___single_quote, + ACTIONS(6448), 1, sym_escape_sequence, - ACTIONS(6418), 1, + ACTIONS(6450), 1, aux_sym_c_string_literal_token1, - ACTIONS(6420), 1, - sym___single_quote, - STATE(3530), 2, + STATE(3607), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [119948] = 6, + [120283] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6420), 1, + ACTIONS(6424), 1, sym___double_quote, - ACTIONS(6422), 1, + ACTIONS(6452), 1, sym_escape_sequence, - ACTIONS(6424), 1, + ACTIONS(6454), 1, aux_sym_c_string_literal_token2, - STATE(3594), 2, + STATE(3566), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119968] = 6, + [120303] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6456), 1, + anon_sym_const, + ACTIONS(6458), 1, + anon_sym_fn, + ACTIONS(6462), 1, + anon_sym_enum, + ACTIONS(6464), 1, + anon_sym_interface, + ACTIONS(6460), 2, + anon_sym_struct, + anon_sym_union, + [120323] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6466), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6468), 1, aux_sym_c_string_literal_token2, - ACTIONS(6426), 1, + ACTIONS(6470), 1, sym___double_quote, - STATE(3534), 2, + STATE(3595), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [119988] = 6, + [120343] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6472), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6474), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + ACTIONS(6476), 1, + sym___single_quote, + STATE(3552), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat1, + [120363] = 6, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6426), 1, + ACTIONS(6470), 1, sym___single_quote, - STATE(3535), 2, + ACTIONS(6478), 1, + sym_escape_sequence, + ACTIONS(6480), 1, + aux_sym_c_string_literal_token1, + STATE(3546), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120008] = 6, + [120383] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6476), 1, + sym___double_quote, + ACTIONS(6482), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6484), 1, aux_sym_c_string_literal_token2, - ACTIONS(6428), 1, - sym___double_quote, - STATE(3534), 2, + STATE(3553), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120028] = 6, + [120403] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6428), 1, + ACTIONS(6486), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120048] = 6, + [120423] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6430), 1, + ACTIONS(6488), 1, sym_escape_sequence, - ACTIONS(6432), 1, + ACTIONS(6490), 1, aux_sym_c_string_literal_token1, - ACTIONS(6434), 1, + ACTIONS(6492), 1, sym___single_quote, - STATE(3520), 2, + STATE(3554), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120068] = 6, + [120443] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6434), 1, + ACTIONS(6492), 1, sym___double_quote, - ACTIONS(6436), 1, + ACTIONS(6494), 1, sym_escape_sequence, - ACTIONS(6438), 1, + ACTIONS(6496), 1, aux_sym_c_string_literal_token2, - STATE(3519), 2, + STATE(3559), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120088] = 6, + [120463] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6440), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6442), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6444), 1, + ACTIONS(6498), 1, sym___single_quote, - STATE(3549), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120108] = 6, + [120483] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6446), 1, + ACTIONS(6498), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120128] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6254), 1, - sym_escape_sequence, - ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6446), 1, - sym___single_quote, - STATE(3535), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120148] = 6, + [120503] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6448), 1, + ACTIONS(6500), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120168] = 6, + [120523] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6448), 1, + ACTIONS(6500), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120188] = 6, + [120543] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6444), 1, - sym___double_quote, - ACTIONS(6450), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6452), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - STATE(3552), 2, + ACTIONS(6502), 1, + sym___double_quote, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120208] = 6, + [120563] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6454), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6456), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6458), 1, + ACTIONS(6502), 1, sym___single_quote, - STATE(3554), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120228] = 6, + [120583] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6458), 1, - sym___double_quote, - ACTIONS(6460), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6462), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - STATE(3556), 2, + ACTIONS(6486), 1, + sym___double_quote, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120248] = 6, + [120603] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, - sym___dolcbr, - ACTIONS(6464), 1, - sym_escape_sequence, - ACTIONS(6466), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6468), 1, - sym___double_quote, - STATE(3581), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120268] = 6, + ACTIONS(6506), 1, + anon_sym_RBRACE, + STATE(3593), 1, + aux_sym_selective_import_list_repeat1, + ACTIONS(6504), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + [120619] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6468), 1, - sym___single_quote, - ACTIONS(6470), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6472), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - STATE(3582), 2, + ACTIONS(6434), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120288] = 6, + [120639] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6268), 1, + sym___double_quote, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6474), 1, + ACTIONS(6508), 1, sym_escape_sequence, - ACTIONS(6476), 1, + ACTIONS(6510), 1, aux_sym_c_string_literal_token2, - ACTIONS(6478), 1, - sym___double_quote, - STATE(3583), 2, + STATE(3547), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120308] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6478), 1, - sym___single_quote, - ACTIONS(6480), 1, - sym_escape_sequence, - ACTIONS(6482), 1, - aux_sym_c_string_literal_token1, - STATE(3584), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120328] = 6, + [120659] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6484), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6486), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6488), 1, + ACTIONS(6512), 1, sym___single_quote, - STATE(3529), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120348] = 4, + [120679] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6492), 1, + ACTIONS(6514), 1, anon_sym_RBRACE, - STATE(3600), 1, + STATE(3539), 1, aux_sym_selective_import_list_repeat1, - ACTIONS(6490), 4, + ACTIONS(6504), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_COMMA, - [120364] = 6, + [120695] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6488), 1, - sym___double_quote, - ACTIONS(6494), 1, + ACTIONS(6516), 1, sym_escape_sequence, - ACTIONS(6496), 1, + ACTIONS(6518), 1, aux_sym_c_string_literal_token2, - STATE(3528), 2, + ACTIONS(6520), 1, + sym___double_quote, + STATE(3567), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120384] = 6, + [120715] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6296), 1, - sym___single_quote, - ACTIONS(6498), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6500), 1, - aux_sym_c_string_literal_token1, - STATE(3524), 2, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6374), 1, + sym___double_quote, + STATE(3627), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120404] = 6, + aux_sym_c_string_literal_repeat2, + [120735] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6520), 1, + sym___single_quote, + ACTIONS(6522), 1, sym_escape_sequence, - ACTIONS(6250), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6502), 1, - sym___double_quote, - STATE(3534), 2, + ACTIONS(6524), 1, + aux_sym_c_string_literal_token1, + STATE(3590), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120424] = 6, + aux_sym_c_string_literal_repeat1, + [120755] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6502), 1, + ACTIONS(6526), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120444] = 6, + [120775] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6528), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6530), 1, aux_sym_c_string_literal_token2, - ACTIONS(6504), 1, + ACTIONS(6532), 1, sym___double_quote, - STATE(3534), 2, + STATE(3600), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120464] = 6, + [120795] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, - sym_escape_sequence, - ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6504), 1, - sym___single_quote, - STATE(3535), 2, + ACTIONS(6294), 1, + sym_escape_sequence, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6512), 1, + sym___double_quote, + STATE(3627), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2667), 1, - anon_sym_DOT, - ACTIONS(2907), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [120498] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6506), 1, - anon_sym_COMMA, - STATE(3586), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1759), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [120514] = 4, + aux_sym_c_string_literal_repeat2, + [120815] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6509), 1, - sym_identifier, - STATE(3747), 1, - sym_label_reference, - ACTIONS(4070), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [120530] = 4, + ACTIONS(6274), 1, + sym___dolcbr, + ACTIONS(6294), 1, + sym_escape_sequence, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6534), 1, + sym___double_quote, + STATE(3627), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [120835] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6509), 1, - sym_identifier, - STATE(3745), 1, - sym_label_reference, - ACTIONS(4074), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [120546] = 4, + ACTIONS(6274), 1, + sym___dolcbr, + ACTIONS(6294), 1, + sym_escape_sequence, + ACTIONS(6296), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6536), 1, + sym___double_quote, + STATE(3627), 2, + sym_string_interpolation, + aux_sym_c_string_literal_repeat2, + [120855] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(5032), 1, + ACTIONS(6538), 1, anon_sym_COMMA, - STATE(3586), 1, + STATE(3602), 1, aux_sym_strictly_expression_list_repeat1, - ACTIONS(4013), 4, + ACTIONS(1761), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [120562] = 6, + [120871] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6511), 1, + ACTIONS(6536), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120582] = 6, + [120891] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6384), 1, + sym___double_quote, + ACTIONS(6541), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6543), 1, aux_sym_c_string_literal_token2, - ACTIONS(6511), 1, - sym___double_quote, - STATE(3534), 2, + STATE(3540), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120602] = 6, + [120911] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6545), 1, + anon_sym_LBRACK, + STATE(2446), 1, + sym_type_parameters, + ACTIONS(2713), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [120927] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6513), 1, + ACTIONS(6534), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120622] = 6, + [120947] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6250), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6513), 1, - sym___double_quote, - STATE(3534), 2, + ACTIONS(6325), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6547), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120642] = 6, + aux_sym_c_string_literal_repeat1, + [120967] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6250), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6290), 1, - sym___double_quote, - STATE(3534), 2, + ACTIONS(6325), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6549), 1, + sym___single_quote, + STATE(3525), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120662] = 6, + aux_sym_c_string_literal_repeat1, + [120987] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6515), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6517), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6519), 1, + ACTIONS(6549), 1, sym___double_quote, - STATE(3610), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120682] = 6, + [121007] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6519), 1, - sym___single_quote, - ACTIONS(6521), 1, - sym_escape_sequence, - ACTIONS(6523), 1, - aux_sym_c_string_literal_token1, - STATE(3611), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120702] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6252), 1, + ACTIONS(6532), 1, sym___single_quote, - ACTIONS(6254), 1, + ACTIONS(6551), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6553), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - STATE(3535), 2, + STATE(3606), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120722] = 6, + [121027] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, - sym___dolcbr, - ACTIONS(6248), 1, - sym_escape_sequence, - ACTIONS(6250), 1, - aux_sym_c_string_literal_token2, ACTIONS(6260), 1, - sym___double_quote, - STATE(3534), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [120742] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6254), 1, + sym___dolcbr, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6525), 1, + ACTIONS(6555), 1, sym___single_quote, - STATE(3535), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120762] = 4, + [121047] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6530), 1, - anon_sym_RBRACE, - STATE(3600), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6527), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [120778] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6557), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6559), 1, aux_sym_c_string_literal_token2, - ACTIONS(6525), 1, + ACTIONS(6561), 1, sym___double_quote, - STATE(3534), 2, + STATE(3528), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120798] = 6, + [121067] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6532), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6534), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6536), 1, + ACTIONS(6547), 1, sym___double_quote, - STATE(3614), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120818] = 6, + [121087] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6536), 1, + ACTIONS(6561), 1, sym___single_quote, - ACTIONS(6538), 1, + ACTIONS(6563), 1, sym_escape_sequence, - ACTIONS(6540), 1, + ACTIONS(6565), 1, aux_sym_c_string_literal_token1, - STATE(3615), 2, + STATE(3529), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120838] = 6, + [121107] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6567), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6569), 1, aux_sym_c_string_literal_token2, - ACTIONS(6542), 1, + ACTIONS(6571), 1, sym___double_quote, - STATE(3534), 2, + STATE(3531), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120858] = 4, + [121127] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6197), 1, + ACTIONS(6201), 1, anon_sym_LBRACE, - STATE(3743), 1, + STATE(3701), 1, sym_selective_import_list, - ACTIONS(6544), 4, + ACTIONS(6573), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [120874] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6254), 1, - sym_escape_sequence, - ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6542), 1, - sym___single_quote, - STATE(3535), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120894] = 6, + [121143] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6546), 1, + ACTIONS(6555), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120914] = 6, + [121163] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, - sym_escape_sequence, - ACTIONS(6256), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6546), 1, + ACTIONS(6571), 1, sym___single_quote, - STATE(3535), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [120934] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6548), 1, + ACTIONS(6575), 1, sym_escape_sequence, - ACTIONS(6550), 1, + ACTIONS(6577), 1, aux_sym_c_string_literal_token1, - ACTIONS(6552), 1, - sym___single_quote, - STATE(3590), 2, + STATE(3534), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120954] = 6, + [121183] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 1, + sym_identifier, + ACTIONS(6193), 1, + anon_sym_mut, + ACTIONS(6195), 1, + anon_sym_shared, + STATE(4165), 1, + sym_mutability_modifiers, + STATE(4166), 1, + sym_reference_expression, + STATE(4342), 1, + sym_capture, + [121205] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6248), 1, + ACTIONS(6294), 1, sym_escape_sequence, - ACTIONS(6250), 1, + ACTIONS(6296), 1, aux_sym_c_string_literal_token2, - ACTIONS(6554), 1, + ACTIONS(6526), 1, sym___double_quote, - STATE(3534), 2, + STATE(3627), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [120974] = 6, + [121225] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6254), 1, + ACTIONS(6260), 1, + sym___dolcbr, + ACTIONS(6579), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6581), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6554), 1, + ACTIONS(6583), 1, sym___single_quote, - STATE(3535), 2, + STATE(3608), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [120994] = 6, + [121245] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_COMMA, + STATE(3602), 1, + aux_sym_strictly_expression_list_repeat1, + ACTIONS(4058), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [121261] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6552), 1, + ACTIONS(6583), 1, sym___double_quote, - ACTIONS(6556), 1, + ACTIONS(6585), 1, sym_escape_sequence, - ACTIONS(6558), 1, + ACTIONS(6587), 1, aux_sym_c_string_literal_token2, - STATE(3591), 2, + STATE(3609), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121014] = 6, + [121281] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6560), 1, + ACTIONS(6589), 1, sym_escape_sequence, - ACTIONS(6562), 1, + ACTIONS(6591), 1, aux_sym_c_string_literal_token1, - ACTIONS(6564), 1, + ACTIONS(6593), 1, sym___single_quote, - STATE(3592), 2, + STATE(3548), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121034] = 6, + [121301] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6248), 1, - sym_escape_sequence, - ACTIONS(6250), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6566), 1, - sym___double_quote, - STATE(3534), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121054] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6254), 1, + ACTIONS(6595), 1, sym_escape_sequence, - ACTIONS(6256), 1, + ACTIONS(6597), 1, aux_sym_c_string_literal_token1, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6566), 1, + ACTIONS(6599), 1, sym___single_quote, - STATE(3535), 2, + STATE(3611), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121074] = 6, + [121321] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6564), 1, + ACTIONS(6593), 1, sym___double_quote, - ACTIONS(6568), 1, + ACTIONS(6601), 1, sym_escape_sequence, - ACTIONS(6570), 1, + ACTIONS(6603), 1, aux_sym_c_string_literal_token2, - STATE(3593), 2, + STATE(3560), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121094] = 6, + [121341] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, - sym___dolcbr, - ACTIONS(6572), 1, + ACTIONS(6605), 1, sym_escape_sequence, - ACTIONS(6574), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6576), 1, - sym___single_quote, - STATE(3597), 2, + ACTIONS(6608), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6611), 1, + sym___dolcbr, + ACTIONS(6614), 1, + sym___double_quote, + STATE(3627), 2, sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121114] = 6, + aux_sym_c_string_literal_repeat2, + [121361] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6244), 1, + ACTIONS(6274), 1, sym___dolcbr, - ACTIONS(6576), 1, + ACTIONS(6599), 1, sym___double_quote, - ACTIONS(6578), 1, + ACTIONS(6616), 1, sym_escape_sequence, - ACTIONS(6580), 1, + ACTIONS(6618), 1, aux_sym_c_string_literal_token2, - STATE(3512), 2, + STATE(3617), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat2, - [121134] = 6, + [121381] = 6, ACTIONS(495), 1, sym_comment, - ACTIONS(6258), 1, + ACTIONS(6260), 1, sym___dolcbr, - ACTIONS(6582), 1, + ACTIONS(6298), 1, + sym___single_quote, + ACTIONS(6323), 1, sym_escape_sequence, - ACTIONS(6584), 1, + ACTIONS(6325), 1, aux_sym_c_string_literal_token1, - ACTIONS(6586), 1, - sym___single_quote, - STATE(3599), 2, + STATE(3525), 2, sym_string_interpolation, aux_sym_c_string_literal_repeat1, - [121154] = 4, + [121401] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6588), 1, + ACTIONS(6623), 1, anon_sym_RBRACE, - STATE(3578), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6490), 4, + STATE(3630), 1, + aux_sym__statement_list_repeat1, + ACTIONS(6620), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, - [121170] = 6, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6244), 1, - sym___dolcbr, - ACTIONS(6586), 1, - sym___double_quote, - ACTIONS(6590), 1, - sym_escape_sequence, - ACTIONS(6592), 1, - aux_sym_c_string_literal_token2, - STATE(3601), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121190] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6594), 1, - anon_sym_const, - ACTIONS(6596), 1, - anon_sym_fn, - ACTIONS(6600), 1, - anon_sym_enum, - ACTIONS(6602), 1, - anon_sym_interface, - ACTIONS(6598), 2, - anon_sym_struct, - anon_sym_union, - [121210] = 7, + [121416] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5924), 1, - sym_identifier, - ACTIONS(6210), 1, - anon_sym_mut, - ACTIONS(6212), 1, - anon_sym_shared, - STATE(4179), 1, - sym_capture, - STATE(4337), 1, - sym_mutability_modifiers, - STATE(4344), 1, - sym_reference_expression, - [121232] = 3, + ACTIONS(6625), 1, + anon_sym_LBRACE, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(6629), 1, + anon_sym_RBRACK, + STATE(2442), 1, + sym_type_initializer_body, + STATE(3898), 1, + aux_sym_type_parameters_repeat1, + [121435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6044), 1, + ACTIONS(5993), 1, anon_sym_RBRACE, - ACTIONS(6604), 4, + ACTIONS(6631), 4, anon_sym___global, anon_sym_pub, anon_sym_mut, sym_identifier, - [121245] = 4, + [121448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_LBRACE, - STATE(2416), 1, - sym_type_initializer_body, - ACTIONS(3309), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [121260] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(1759), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [121271] = 3, + ACTIONS(6193), 1, + anon_sym_mut, + ACTIONS(6195), 1, + anon_sym_shared, + ACTIONS(6633), 1, + sym_identifier, + STATE(4380), 1, + sym_mutable_identifier, + STATE(4405), 1, + sym_mutability_modifiers, + [121467] = 3, ACTIONS(3), 1, sym_comment, - STATE(2416), 1, + STATE(2442), 1, sym_type_initializer_body, - ACTIONS(3305), 4, + ACTIONS(3203), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_RBRACK, - [121284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - sym_identifier, - ACTIONS(6610), 1, - anon_sym_mut, - STATE(3886), 1, - sym_var_definition, - STATE(4251), 1, - sym_range_clause, - STATE(4519), 1, - sym_var_definition_list, - [121303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5983), 1, - anon_sym_RBRACE, - ACTIONS(6612), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [121316] = 4, + [121480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(2451), 1, - sym_block, - ACTIONS(6614), 3, + ACTIONS(2725), 5, anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_COLON, - [121331] = 3, + anon_sym_QMARK, + [121491] = 5, ACTIONS(3), 1, sym_comment, - STATE(2416), 1, - sym_type_initializer_body, - ACTIONS(3317), 4, + ACTIONS(6635), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [121344] = 6, + STATE(1544), 1, + sym__struct_body, + STATE(4237), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [121508] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, - anon_sym_mut, - ACTIONS(6212), 1, - anon_sym_shared, - ACTIONS(6616), 1, - sym_identifier, + ACTIONS(6637), 1, + anon_sym_LBRACE, + STATE(1546), 1, + sym__interface_body, STATE(4240), 1, - sym_mutable_identifier, - STATE(4531), 1, - sym_mutability_modifiers, - [121363] = 4, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [121525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(6625), 1, anon_sym_LBRACE, - STATE(2413), 1, - sym_block, - ACTIONS(3321), 3, + ACTIONS(6639), 1, anon_sym_COMMA, + ACTIONS(6641), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [121378] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6606), 1, - anon_sym_LBRACE, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6620), 1, - anon_sym_RBRACK, - STATE(2416), 1, + STATE(2442), 1, sym_type_initializer_body, - STATE(3828), 1, + STATE(3849), 1, aux_sym_type_parameters_repeat1, - [121397] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6622), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [121408] = 6, + [121544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(6643), 1, sym_identifier, - ACTIONS(6610), 1, + ACTIONS(6645), 1, anon_sym_mut, - STATE(3886), 1, + STATE(3914), 1, sym_var_definition, - STATE(4133), 1, + STATE(4170), 1, sym_range_clause, - STATE(4519), 1, + STATE(4621), 1, sym_var_definition_list, - [121427] = 4, + [121563] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6626), 1, + ACTIONS(6649), 1, anon_sym_RBRACE, - STATE(3643), 1, + STATE(3630), 1, aux_sym__statement_list_repeat1, - ACTIONS(6624), 3, + ACTIONS(6647), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [121442] = 5, + [121578] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(1586), 1, + STATE(1549), 1, sym__struct_body, - STATE(4370), 1, + STATE(4253), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121459] = 5, + [121595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, + ACTIONS(6637), 1, anon_sym_LBRACE, - STATE(1588), 1, + STATE(1556), 1, sym__interface_body, - STATE(4369), 1, + STATE(4256), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121476] = 5, - ACTIONS(3), 1, + [121612] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_LBRACE, - STATE(1550), 1, - sym__interface_body, - STATE(4095), 1, - sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [121493] = 5, + ACTIONS(6360), 5, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_COMMA, + anon_sym_RBRACE, + [121623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(1555), 1, - sym__struct_body, - STATE(4269), 1, - sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [121510] = 3, + STATE(2449), 1, + sym_block, + ACTIONS(3211), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [121638] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6632), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(6634), 3, + ACTIONS(6651), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [121523] = 4, + anon_sym_SEMI, + anon_sym_LBRACE, + [121649] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6638), 1, + ACTIONS(6655), 1, anon_sym_RBRACE, - STATE(3644), 1, + STATE(3640), 1, aux_sym__statement_list_repeat1, - ACTIONS(6636), 3, + ACTIONS(6653), 3, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [121538] = 4, + [121664] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6643), 1, - anon_sym_RBRACE, - STATE(3644), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6640), 3, + ACTIONS(6657), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - [121553] = 5, + anon_sym_RBRACE, + sym_identifier, + [121675] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6193), 1, + anon_sym_mut, + ACTIONS(6195), 1, + anon_sym_shared, + ACTIONS(6659), 1, + sym_identifier, + STATE(4290), 1, + sym_parameter_declaration, + STATE(4495), 1, + sym_mutability_modifiers, + [121694] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, + ACTIONS(6637), 1, anon_sym_LBRACE, - STATE(1527), 1, - sym__struct_body, - STATE(4286), 1, + STATE(1542), 1, + sym__interface_body, + STATE(4259), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121570] = 2, + [121711] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6643), 1, + sym_identifier, + ACTIONS(6645), 1, + anon_sym_mut, + STATE(3914), 1, + sym_var_definition, + STATE(4341), 1, + sym_range_clause, + STATE(4621), 1, + sym_var_definition_list, + [121730] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6645), 5, + ACTIONS(1761), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, + anon_sym_COMMA, anon_sym_RBRACE, - sym_identifier, - [121581] = 5, + [121741] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(1548), 1, + STATE(1535), 1, sym__struct_body, - STATE(4090), 1, + STATE(4261), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121598] = 2, - ACTIONS(495), 1, + [121758] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6647), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, + ACTIONS(6637), 1, + anon_sym_LBRACE, + STATE(1593), 1, + sym__interface_body, + STATE(4329), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [121775] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2442), 1, + sym_type_initializer_body, + ACTIONS(3179), 4, anon_sym_LBRACE, - [121609] = 6, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [121788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6210), 1, + ACTIONS(6052), 1, + anon_sym_RBRACE, + ACTIONS(6661), 4, + anon_sym___global, + anon_sym_pub, anon_sym_mut, - ACTIONS(6212), 1, - anon_sym_shared, - ACTIONS(6649), 1, sym_identifier, - STATE(4112), 1, - sym_parameter_declaration, - STATE(4650), 1, - sym_mutability_modifiers, - [121628] = 4, + [121801] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(2422), 1, sym_block, - ACTIONS(6614), 3, + ACTIONS(6663), 3, anon_sym_SEMI, anon_sym_RBRACK, anon_sym_COLON, - [121643] = 2, + [121816] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6530), 5, + ACTIONS(6665), 5, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_COMMA, anon_sym_RBRACE, - [121654] = 6, + sym_identifier, + [121827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(6651), 1, - anon_sym_COMMA, - ACTIONS(6653), 1, - anon_sym_RPAREN, - STATE(2416), 1, - sym_type_initializer_body, - STATE(3931), 1, - aux_sym_type_parameters_repeat1, - [121673] = 5, + STATE(1335), 1, + sym_block, + ACTIONS(6663), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_COLON, + [121842] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6667), 2, + anon_sym_RBRACE, + sym_identifier, + ACTIONS(6669), 3, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + [121855] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(1557), 1, - sym__interface_body, - STATE(4237), 1, + STATE(1595), 1, + sym__struct_body, + STATE(4324), 1, sym_generic_parameters, - ACTIONS(4960), 2, + ACTIONS(4984), 2, anon_sym_LBRACK, anon_sym_LT2, - [121690] = 5, + [121872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, + ACTIONS(6625), 1, anon_sym_LBRACE, - STATE(1524), 1, - sym__interface_body, - STATE(4275), 1, - sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [121707] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6655), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [121717] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4415), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [121727] = 5, + STATE(2442), 1, + sym_type_initializer_body, + ACTIONS(3191), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [121887] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6657), 1, + ACTIONS(6671), 1, sym_identifier, - ACTIONS(6660), 1, + ACTIONS(6673), 1, anon_sym_RPAREN, - STATE(3657), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3709), 1, - sym_global_var_definition, - [121743] = 4, + STATE(3708), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [121903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(4226), 1, - sym_signature, - STATE(2883), 2, - sym_parameter_list, - sym_type_parameter_list, - [121757] = 4, + ACTIONS(5120), 1, + anon_sym_LBRACE, + ACTIONS(6675), 1, + anon_sym_DOLLARif, + STATE(1120), 2, + sym_compile_time_if_expression, + sym_block, + [121917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6677), 1, anon_sym_LPAREN, - STATE(4314), 1, + STATE(676), 1, sym_signature, - STATE(2883), 2, + STATE(70), 2, sym_parameter_list, sym_type_parameter_list, - [121771] = 4, + [121931] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 1, + ACTIONS(6671), 1, sym_identifier, - ACTIONS(6664), 1, - anon_sym_DOLLAR, - STATE(465), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [121785] = 4, + ACTIONS(6679), 1, + anon_sym_RPAREN, + STATE(3775), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [121947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6681), 1, + anon_sym_EQ, + STATE(4561), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [121961] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6193), 1, + anon_sym_mut, + ACTIONS(6195), 1, + anon_sym_shared, + ACTIONS(6683), 1, + sym_identifier, + STATE(4559), 1, + sym_mutability_modifiers, + [121977] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4246), 1, + STATE(4089), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [121799] = 4, + [121991] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(6685), 1, + anon_sym_if, + STATE(1260), 1, + sym_block, + STATE(1261), 1, + sym_if_expression, + [122007] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(6687), 1, + anon_sym_DOLLARif, + STATE(1259), 2, + sym_compile_time_if_expression, + sym_block, + [122021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6666), 1, + ACTIONS(6689), 1, anon_sym_LPAREN, - STATE(2221), 1, + STATE(1962), 1, sym_signature, - STATE(1421), 2, + STATE(1265), 2, sym_parameter_list, sym_type_parameter_list, - [121813] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 1, - sym_identifier, - STATE(4026), 1, - sym_generic_parameter, - ACTIONS(6670), 2, - anon_sym_GT, - anon_sym_RBRACK, - [121827] = 4, + [122035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6687), 1, anon_sym_DOLLARif, - STATE(1239), 2, + STATE(1251), 2, sym_compile_time_if_expression, sym_block, - [121841] = 5, + [122049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(6691), 1, + sym_identifier, + ACTIONS(6693), 1, + anon_sym_DOLLAR, + STATE(1819), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [122063] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6695), 1, + sym_identifier, + STATE(3478), 1, + sym_import_path, + STATE(3480), 1, + sym_import_name, + STATE(3706), 1, + sym_import_spec, + [122079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5132), 1, anon_sym_LBRACE, - ACTIONS(6674), 1, + ACTIONS(6697), 1, anon_sym_if, - STATE(1220), 1, - sym_if_expression, - STATE(1238), 1, + STATE(2050), 1, sym_block, - [121857] = 4, + STATE(2051), 1, + sym_if_expression, + [122095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, - anon_sym_LPAREN, - STATE(1093), 1, - sym_signature, - STATE(214), 2, - sym_parameter_list, - sym_type_parameter_list, - [121871] = 5, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6699), 1, + anon_sym_RPAREN, + STATE(3822), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [122111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5132), 1, + anon_sym_LBRACE, + ACTIONS(6701), 1, + anon_sym_DOLLARif, + STATE(2049), 2, + sym_compile_time_if_expression, + sym_block, + [122125] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 1, + ACTIONS(6703), 1, anon_sym_as, - ACTIONS(6680), 1, + ACTIONS(6705), 1, anon_sym_LBRACE, - STATE(1556), 1, + STATE(1545), 1, sym__enum_body, - STATE(4264), 1, + STATE(4238), 1, sym_enum_backed_type, - [121887] = 4, + [122141] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(4209), 1, + STATE(1451), 1, sym_signature, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [121901] = 4, + [122155] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1450), 1, - sym_signature, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [121915] = 2, - ACTIONS(495), 1, + ACTIONS(5132), 1, + anon_sym_LBRACE, + ACTIONS(6701), 1, + anon_sym_DOLLARif, + STATE(2029), 2, + sym_compile_time_if_expression, + sym_block, + [122169] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6544), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [121925] = 4, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6707), 1, + anon_sym_RPAREN, + STATE(3783), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [122185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1466), 1, - sym_signature, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [121939] = 4, + ACTIONS(6709), 1, + sym_identifier, + ACTIONS(6711), 1, + anon_sym_RPAREN, + STATE(3788), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3790), 1, + sym_global_var_definition, + [122201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(2360), 1, + STATE(1491), 1, sym_signature, - STATE(1430), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [121953] = 4, + [122215] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1475), 1, + STATE(1490), 1, sym_signature, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [121967] = 4, + [122229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6713), 1, anon_sym_LPAREN, - STATE(4163), 1, + STATE(1063), 1, sym_signature, - STATE(2883), 2, + STATE(206), 2, sym_parameter_list, sym_type_parameter_list, - [121981] = 4, + [122243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1654), 1, + STATE(1509), 1, sym_signature, - STATE(2923), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [121995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 1, - sym_identifier, - STATE(4026), 1, - sym_generic_parameter, - ACTIONS(6686), 2, - anon_sym_GT, - anon_sym_RBRACK, - [122009] = 4, + [122257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(4186), 1, + STATE(1488), 1, sym_signature, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [122023] = 5, + [122271] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, + ACTIONS(6709), 1, sym_identifier, - ACTIONS(6690), 1, + ACTIONS(6715), 1, anon_sym_RPAREN, - STATE(3709), 1, - sym_global_var_definition, - STATE(3762), 1, + STATE(3789), 1, aux_sym_global_var_declaration_repeat1, - [122039] = 4, + STATE(3790), 1, + sym_global_var_definition, + [122287] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6692), 1, - anon_sym_COMMA, - STATE(3679), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6695), 2, - anon_sym_GT, - anon_sym_RBRACK, - [122053] = 5, + ACTIONS(5140), 1, + anon_sym_LBRACE, + ACTIONS(6717), 1, + anon_sym_DOLLARif, + STATE(2703), 2, + sym_compile_time_if_expression, + sym_block, + [122301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6699), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3772), 1, - aux_sym_const_declaration_repeat1, - [122069] = 4, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(6719), 1, + anon_sym_if, + STATE(2381), 1, + sym_if_expression, + STATE(2382), 1, + sym_block, + [122317] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6701), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1894), 1, + STATE(1485), 1, sym_signature, - STATE(1148), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [122083] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6703), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122093] = 4, + [122331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6705), 1, - anon_sym_COMMA, - STATE(3679), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6686), 2, - anon_sym_GT, - anon_sym_RBRACK, - [122107] = 4, + ACTIONS(5124), 1, + anon_sym_LBRACE, + ACTIONS(6721), 1, + anon_sym_DOLLARif, + STATE(2383), 2, + sym_compile_time_if_expression, + sym_block, + [122345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1480), 1, + STATE(4110), 1, sym_signature, - STATE(1122), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [122121] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6707), 1, - sym_identifier, - ACTIONS(6709), 1, - anon_sym_DOLLAR, - STATE(2068), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122135] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6713), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6711), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [122147] = 4, + [122359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1459), 1, - sym_signature, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [122161] = 4, + ACTIONS(6703), 1, + anon_sym_as, + ACTIONS(6705), 1, + anon_sym_LBRACE, + STATE(1550), 1, + sym__enum_body, + STATE(4254), 1, + sym_enum_backed_type, + [122375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(6715), 1, + ACTIONS(6717), 1, anon_sym_DOLLARif, - STATE(1394), 2, + STATE(2698), 2, sym_compile_time_if_expression, sym_block, - [122175] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6717), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122185] = 4, + [122389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - ACTIONS(6719), 1, - anon_sym_DOLLARif, - STATE(2052), 2, - sym_compile_time_if_expression, + ACTIONS(6723), 1, + anon_sym_if, + STATE(2696), 1, + sym_if_expression, + STATE(2697), 1, sym_block, - [122199] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6721), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3786), 1, - aux_sym_const_declaration_repeat1, - [122215] = 4, + [122405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5124), 1, anon_sym_LBRACE, - ACTIONS(6719), 1, + ACTIONS(6721), 1, anon_sym_DOLLARif, - STATE(2001), 2, + STATE(2402), 2, sym_compile_time_if_expression, sym_block, - [122229] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5078), 1, - anon_sym_LBRACE, - ACTIONS(6723), 1, - anon_sym_if, - STATE(1969), 1, - sym_if_expression, - STATE(1990), 1, - sym_block, - [122245] = 3, + [122419] = 2, ACTIONS(495), 1, sym_comment, + ACTIONS(6725), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [122429] = 4, + ACTIONS(3), 1, + sym_comment, ACTIONS(6727), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6725), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [122257] = 4, + sym_identifier, + ACTIONS(6729), 1, + anon_sym_DOLLAR, + STATE(1072), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [122443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6731), 1, anon_sym_LPAREN, - STATE(2360), 1, + STATE(1901), 1, sym_signature, - STATE(2883), 2, + STATE(1151), 2, sym_parameter_list, sym_type_parameter_list, - [122271] = 4, - ACTIONS(3), 1, + [122457] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5114), 1, - anon_sym_LBRACE, - ACTIONS(6715), 1, - anon_sym_DOLLARif, - STATE(1409), 2, - sym_compile_time_if_expression, - sym_block, - [122285] = 5, + ACTIONS(6733), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [122467] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, - anon_sym_LBRACE, - ACTIONS(6729), 1, - anon_sym_if, - STATE(1411), 1, - sym_block, - STATE(1412), 1, - sym_if_expression, - [122301] = 5, + ACTIONS(6735), 1, + sym_identifier, + ACTIONS(6737), 1, + anon_sym_DOLLAR, + STATE(2434), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [122481] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_as, - ACTIONS(6680), 1, - anon_sym_LBRACE, - STATE(1526), 1, - sym__enum_body, - STATE(4277), 1, - sym_enum_backed_type, - [122317] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4175), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [122495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4328), 1, + STATE(4167), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [122331] = 2, + [122509] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4327), 4, + ACTIONS(6623), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [122341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2667), 1, - anon_sym_DOT, - ACTIONS(6731), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [122353] = 2, + [122519] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(1707), 4, + ACTIONS(6739), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [122363] = 4, + anon_sym_SEMI, + [122529] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6741), 1, anon_sym_LPAREN, - STATE(4262), 1, + STATE(1346), 1, sym_signature, - STATE(2883), 2, + STATE(1010), 2, sym_parameter_list, sym_type_parameter_list, - [122377] = 4, + [122543] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6743), 1, + sym_identifier, + ACTIONS(6746), 1, + anon_sym_RPAREN, + STATE(3708), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [122559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6733), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(2027), 1, + STATE(4176), 1, sym_signature, - STATE(1253), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [122391] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6737), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6735), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [122403] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6739), 1, - anon_sym_EQ, - STATE(4387), 1, - sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [122417] = 5, + [122573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_as, - ACTIONS(6680), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym__enum_body, - STATE(4268), 1, - sym_enum_backed_type, - [122433] = 4, + ACTIONS(6748), 1, + anon_sym_COMMA, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(6751), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [122587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6753), 1, anon_sym_LPAREN, - STATE(4285), 1, + STATE(1698), 1, sym_signature, - STATE(2883), 2, + STATE(1130), 2, sym_parameter_list, sym_type_parameter_list, - [122447] = 2, + [122601] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6755), 1, + sym_identifier, + ACTIONS(6758), 1, + anon_sym_RPAREN, + STATE(3712), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3790), 1, + sym_global_var_definition, + [122617] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6741), 4, + ACTIONS(1709), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_SEMI, - [122457] = 5, + anon_sym_RBRACE, + [122627] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(6743), 1, - anon_sym_RPAREN, - STATE(3657), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3709), 1, - sym_global_var_definition, - [122473] = 4, + ACTIONS(6760), 1, + anon_sym_COMMA, + STATE(3818), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6762), 2, + anon_sym_GT, + anon_sym_RBRACK, + [122641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(4356), 1, + STATE(1483), 1, sym_signature, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [122487] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6745), 1, - anon_sym_if, - STATE(2879), 1, - sym_block, - STATE(2890), 1, - sym_if_expression, - [122503] = 4, - ACTIONS(3), 1, + [122655] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(5130), 1, - anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_DOLLARif, - STATE(2919), 2, - sym_compile_time_if_expression, - sym_block, - [122517] = 5, + ACTIONS(4507), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [122665] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(6749), 1, - anon_sym_RPAREN, - STATE(3709), 1, - sym_global_var_definition, - STATE(3710), 1, - aux_sym_global_var_declaration_repeat1, - [122533] = 5, + ACTIONS(6218), 1, + anon_sym_LPAREN, + STATE(1470), 1, + sym_signature, + STATE(1126), 2, + sym_parameter_list, + sym_type_parameter_list, + [122679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6751), 1, - sym_identifier, - ACTIONS(6753), 1, - anon_sym_RBRACE, - STATE(3642), 1, - sym_enum_field_definition, - STATE(3776), 1, - aux_sym__enum_body_repeat1, - [122549] = 4, + ACTIONS(6218), 1, + anon_sym_LPAREN, + STATE(1481), 1, + sym_signature, + STATE(1126), 2, + sym_parameter_list, + sym_type_parameter_list, + [122693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6764), 1, anon_sym_LPAREN, - STATE(1503), 1, + STATE(1276), 1, sym_signature, - STATE(1122), 2, + STATE(973), 2, sym_parameter_list, sym_type_parameter_list, - [122563] = 4, + [122707] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6766), 1, + anon_sym_COMMA, + STATE(3714), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6768), 2, + anon_sym_GT, + anon_sym_RBRACK, + [122721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6770), 1, anon_sym_LPAREN, - STATE(4379), 1, + STATE(2232), 1, sym_signature, - STATE(2883), 2, + STATE(1426), 2, sym_parameter_list, sym_type_parameter_list, - [122577] = 4, + [122735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(6747), 1, - anon_sym_DOLLARif, - STATE(2922), 2, - sym_compile_time_if_expression, + ACTIONS(6772), 1, + anon_sym_if, + STATE(1371), 1, sym_block, - [122591] = 4, + STATE(1373), 1, + sym_if_expression, + [122751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6755), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1654), 1, + STATE(4235), 1, sym_signature, - STATE(1126), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [122605] = 4, + [122765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(6757), 1, + ACTIONS(6774), 1, anon_sym_DOLLARif, - STATE(2687), 2, + STATE(1368), 2, sym_compile_time_if_expression, sym_block, - [122619] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6759), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3691), 1, - aux_sym_const_declaration_repeat1, - [122635] = 4, + [122779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(6776), 1, sym_identifier, - ACTIONS(6763), 1, + ACTIONS(6778), 1, anon_sym_DOLLAR, - STATE(2286), 2, + STATE(2108), 2, sym_reference_expression, sym_compile_time_selector_expression, - [122649] = 4, + [122793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - ACTIONS(6757), 1, + ACTIONS(6780), 1, anon_sym_DOLLARif, - STATE(2682), 2, + STATE(2543), 2, sym_compile_time_if_expression, sym_block, - [122663] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6765), 1, - sym_identifier, - ACTIONS(6767), 1, - anon_sym_DOLLAR, - STATE(1891), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122677] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4208), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [122687] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6769), 1, - sym_identifier, - ACTIONS(6771), 1, - anon_sym_DOLLAR, - STATE(2571), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122701] = 5, + [122807] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_as, - ACTIONS(6680), 1, - anon_sym_LBRACE, - STATE(1587), 1, - sym__enum_body, - STATE(4373), 1, - sym_enum_backed_type, - [122717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - ACTIONS(6672), 1, + ACTIONS(6774), 1, anon_sym_DOLLARif, - STATE(1265), 2, + STATE(1358), 2, sym_compile_time_if_expression, sym_block, - [122731] = 4, + [122821] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(4076), 1, - sym_signature, - STATE(2883), 2, - sym_parameter_list, - sym_type_parameter_list, - [122745] = 5, + ACTIONS(6782), 1, + sym_identifier, + ACTIONS(6784), 1, + anon_sym_RBRACE, + STATE(3659), 1, + sym_enum_field_definition, + STATE(3793), 1, + aux_sym__enum_body_repeat1, + [122837] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, - anon_sym_LBRACE, - ACTIONS(6773), 1, - anon_sym_if, - STATE(2680), 1, - sym_if_expression, - STATE(2681), 1, - sym_block, - [122761] = 5, + ACTIONS(6782), 1, + sym_identifier, + ACTIONS(6786), 1, + anon_sym_RBRACE, + STATE(3659), 1, + sym_enum_field_definition, + STATE(3728), 1, + aux_sym__enum_body_repeat1, + [122853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5146), 1, anon_sym_LBRACE, - ACTIONS(6775), 1, + ACTIONS(6788), 1, anon_sym_if, - STATE(1995), 1, + STATE(2888), 1, sym_if_expression, - STATE(2003), 1, + STATE(2911), 1, sym_block, - [122777] = 4, + [122869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5146), 1, anon_sym_LBRACE, - ACTIONS(6777), 1, + ACTIONS(6790), 1, anon_sym_DOLLARif, - STATE(2016), 2, + STATE(2886), 2, sym_compile_time_if_expression, sym_block, - [122791] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6779), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3754), 1, - aux_sym_const_declaration_repeat1, - [122807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6210), 1, - anon_sym_mut, - ACTIONS(6212), 1, - anon_sym_shared, - ACTIONS(6781), 1, - sym_identifier, - STATE(4683), 1, - sym_mutability_modifiers, - [122823] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1482), 1, - sym_signature, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [122837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(4187), 1, - sym_signature, - STATE(2883), 2, - sym_parameter_list, - sym_type_parameter_list, - [122851] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6783), 1, - anon_sym_EQ, - STATE(4680), 1, - sym_generic_parameters, - ACTIONS(4960), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [122865] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6721), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3820), 1, - aux_sym_const_declaration_repeat1, - [122881] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(4310), 1, - sym_signature, - STATE(2883), 2, - sym_parameter_list, - sym_type_parameter_list, - [122895] = 4, + [122883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6785), 1, - sym_identifier, - ACTIONS(6787), 1, - anon_sym_DOLLAR, - STATE(2392), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [122909] = 2, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(6780), 1, + anon_sym_DOLLARif, + STATE(2536), 2, + sym_compile_time_if_expression, + sym_block, + [122897] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4411), 4, + ACTIONS(4244), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [122919] = 2, + [122907] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4407), 4, + ACTIONS(4248), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [122929] = 2, - ACTIONS(495), 1, + [122917] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6789), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122939] = 2, - ACTIONS(495), 1, + ACTIONS(5134), 1, + anon_sym_LBRACE, + ACTIONS(6792), 1, + anon_sym_if, + STATE(2532), 1, + sym_if_expression, + STATE(2533), 1, + sym_block, + [122933] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6791), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122949] = 2, - ACTIONS(495), 1, + ACTIONS(6794), 1, + sym_identifier, + ACTIONS(6796), 1, + anon_sym_DOLLAR, + STATE(1381), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [122947] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [122959] = 4, + ACTIONS(6798), 1, + sym_identifier, + ACTIONS(6800), 1, + anon_sym_DOLLAR, + STATE(2023), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [122961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5146), 1, anon_sym_LBRACE, - ACTIONS(6777), 1, + ACTIONS(6790), 1, anon_sym_DOLLARif, - STATE(2039), 2, + STATE(2902), 2, sym_compile_time_if_expression, sym_block, - [122973] = 2, + [122975] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4395), 4, + ACTIONS(4252), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [122983] = 2, - ACTIONS(495), 1, + [122985] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(4391), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [122993] = 4, + ACTIONS(6802), 1, + sym_identifier, + STATE(3846), 1, + sym_generic_parameter, + ACTIONS(6762), 2, + anon_sym_GT, + anon_sym_RBRACK, + [122999] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 1, + anon_sym_LBRACE, + ACTIONS(6804), 1, + anon_sym_if, + STATE(758), 1, + sym_if_expression, + STATE(759), 1, + sym_block, + [123015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, + ACTIONS(6806), 1, sym_identifier, - ACTIONS(6795), 1, + ACTIONS(6808), 1, anon_sym_DOLLAR, - STATE(1218), 2, + STATE(2248), 2, sym_reference_expression, sym_compile_time_selector_expression, - [123007] = 2, + [123029] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4387), 4, + ACTIONS(4256), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123017] = 4, + [123039] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6797), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(2080), 1, + STATE(4258), 1, sym_signature, - STATE(1276), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123031] = 4, + [123053] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(4292), 1, - sym_signature, - STATE(2883), 2, - sym_parameter_list, - sym_type_parameter_list, - [123045] = 2, + ACTIONS(5130), 1, + anon_sym_LBRACE, + ACTIONS(6810), 1, + anon_sym_DOLLARif, + STATE(761), 2, + sym_compile_time_if_expression, + sym_block, + [123067] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(4383), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, + ACTIONS(6814), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6812), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [123079] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6816), 1, + anon_sym_DOT, + ACTIONS(6818), 1, anon_sym_RBRACE, - [123055] = 5, + ACTIONS(6820), 1, + sym_int_literal, + ACTIONS(6822), 1, + aux_sym_format_specifier_token1, + [123095] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6799), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3786), 1, - aux_sym_const_declaration_repeat1, - [123071] = 4, + ACTIONS(5122), 1, + anon_sym_LBRACE, + ACTIONS(6824), 1, + anon_sym_DOLLARif, + STATE(2277), 2, + sym_compile_time_if_expression, + sym_block, + [123109] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1447), 1, + STATE(4323), 1, sym_signature, - STATE(1122), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123085] = 4, + [123123] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4438), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [123133] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4377), 1, + STATE(4348), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123099] = 4, + [123147] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - sym_identifier, - ACTIONS(6803), 1, - anon_sym_DOLLAR, - STATE(1763), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [123113] = 5, + ACTIONS(5122), 1, + anon_sym_LBRACE, + ACTIONS(6824), 1, + anon_sym_DOLLARif, + STATE(2185), 2, + sym_compile_time_if_expression, + sym_block, + [123161] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - ACTIONS(6805), 1, + ACTIONS(6826), 1, anon_sym_if, - STATE(756), 1, - sym_if_expression, - STATE(757), 1, + STATE(2186), 1, sym_block, - [123129] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1489), 1, - sym_signature, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [123143] = 2, + STATE(2187), 1, + sym_if_expression, + [123177] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4331), 4, + ACTIONS(4224), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123153] = 4, + [123187] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6814), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6812), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [123199] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6830), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6828), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [123211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6832), 1, anon_sym_LPAREN, - STATE(1484), 1, + STATE(2730), 1, sym_signature, - STATE(1122), 2, + STATE(1609), 2, sym_parameter_list, sym_type_parameter_list, - [123167] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(6807), 1, - anon_sym_RPAREN, - STATE(3657), 1, - aux_sym_global_var_declaration_repeat1, - STATE(3709), 1, - sym_global_var_definition, - [123183] = 4, + [123225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - ACTIONS(6809), 1, + ACTIONS(6834), 1, anon_sym_DOLLARif, - STATE(759), 2, + STATE(1745), 2, sym_compile_time_if_expression, sym_block, - [123197] = 4, + [123239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4751), 1, + anon_sym_LBRACE, + ACTIONS(6836), 1, + anon_sym_if, + STATE(1742), 1, + sym_if_expression, + STATE(1744), 1, + sym_block, + [123255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6811), 1, + ACTIONS(6838), 1, anon_sym_LPAREN, - STATE(1250), 1, + STATE(2373), 1, sym_signature, - STATE(970), 2, + STATE(1433), 2, sym_parameter_list, sym_type_parameter_list, - [123211] = 4, + [123269] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6842), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6840), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [123281] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4216), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [123291] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(4212), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [123301] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6813), 1, - anon_sym_COMMA, - STATE(3683), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6815), 2, - anon_sym_GT, - anon_sym_RBRACK, - [123225] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4219), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [123315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6817), 1, - anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6820), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123239] = 4, + ACTIONS(6844), 1, + sym_identifier, + ACTIONS(6846), 1, + anon_sym_DOLLAR, + STATE(451), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [123329] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6850), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6848), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [123341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1362), 1, + STATE(4390), 1, sym_signature, - STATE(1009), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123253] = 2, + [123355] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4212), 4, + ACTIONS(4228), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123263] = 4, + [123365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6824), 1, + ACTIONS(6852), 1, sym_identifier, - ACTIONS(6826), 1, + ACTIONS(6854), 1, anon_sym_DOLLAR, - STATE(1110), 2, + STATE(1709), 2, sym_reference_expression, sym_compile_time_selector_expression, - [123277] = 4, + [123379] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6830), 1, + aux_sym_c_string_literal_token2, + ACTIONS(6828), 3, + sym_escape_sequence, + sym___dolcbr, + sym___double_quote, + [123391] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6856), 1, anon_sym_LPAREN, - STATE(1479), 1, + STATE(2114), 1, sym_signature, - STATE(1122), 2, + STATE(1242), 2, sym_parameter_list, sym_type_parameter_list, - [123291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6828), 1, - anon_sym_DOLLARif, - STATE(2326), 2, - sym_compile_time_if_expression, - sym_block, - [123305] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6779), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3786), 1, - aux_sym_const_declaration_repeat1, - [123321] = 4, + [123405] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4192), 1, + STATE(4369), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123335] = 3, + [123419] = 3, ACTIONS(495), 1, sym_comment, - ACTIONS(6832), 1, + ACTIONS(6842), 1, aux_sym_c_string_literal_token1, - ACTIONS(6830), 3, + ACTIONS(6840), 3, sym_escape_sequence, sym___dolcbr, sym___single_quote, - [123347] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - ACTIONS(6834), 1, - anon_sym_if, - STATE(1046), 1, - sym_if_expression, - STATE(1051), 1, - sym_block, - [123363] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6836), 1, - sym_identifier, - ACTIONS(6839), 1, - anon_sym_RBRACE, - STATE(3642), 1, - sym_enum_field_definition, - STATE(3776), 1, - aux_sym__enum_body_repeat1, - [123379] = 4, + [123431] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4325), 1, + STATE(2373), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123393] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - ACTIONS(6841), 1, - anon_sym_DOLLARif, - STATE(1087), 2, - sym_compile_time_if_expression, - sym_block, - [123407] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6828), 1, - anon_sym_DOLLARif, - STATE(2338), 2, - sym_compile_time_if_expression, - sym_block, - [123421] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - ACTIONS(6843), 1, - anon_sym_if, - STATE(2339), 1, - sym_block, - STATE(2340), 1, - sym_if_expression, - [123437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(6845), 1, - anon_sym_DOLLARif, - STATE(2612), 2, - sym_compile_time_if_expression, - sym_block, - [123451] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(6847), 1, - anon_sym_DOLLARif, - STATE(2245), 2, - sym_compile_time_if_expression, - sym_block, - [123465] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(6847), 1, - anon_sym_DOLLARif, - STATE(2250), 2, - sym_compile_time_if_expression, - sym_block, - [123479] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - ACTIONS(6849), 1, - anon_sym_if, - STATE(2181), 1, - sym_block, - STATE(2252), 1, - sym_if_expression, - [123495] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - ACTIONS(6851), 1, - anon_sym_if, - STATE(2613), 1, - sym_block, - STATE(2621), 1, - sym_if_expression, - [123511] = 5, + [123445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6853), 1, + ACTIONS(6671), 1, sym_identifier, - ACTIONS(6856), 1, + ACTIONS(6858), 1, anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3786), 1, + STATE(3708), 1, aux_sym_const_declaration_repeat1, - [123527] = 5, - ACTIONS(3), 1, + STATE(3824), 1, + sym_const_definition, + [123461] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(6751), 1, - sym_identifier, - ACTIONS(6858), 1, + ACTIONS(4404), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, anon_sym_RBRACE, - STATE(3642), 1, - sym_enum_field_definition, - STATE(3715), 1, - aux_sym__enum_body_repeat1, - [123543] = 2, + [123471] = 3, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6850), 1, + aux_sym_c_string_literal_token1, + ACTIONS(6848), 3, + sym_escape_sequence, + sym___dolcbr, + sym___single_quote, + [123483] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4308), 4, + ACTIONS(4304), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [123553] = 4, + [123493] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, - anon_sym_LPAREN, - STATE(4081), 1, - sym_signature, - STATE(2883), 2, - sym_parameter_list, - sym_type_parameter_list, - [123567] = 4, + ACTIONS(5130), 1, + anon_sym_LBRACE, + ACTIONS(6810), 1, + anon_sym_DOLLARif, + STATE(852), 2, + sym_compile_time_if_expression, + sym_block, + [123507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(1495), 1, + STATE(1471), 1, sym_signature, - STATE(1122), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [123581] = 2, + [123521] = 2, ACTIONS(495), 1, sym_comment, ACTIONS(4300), 4, @@ -294892,9281 +295224,9563 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CR, anon_sym_CR_LF, anon_sym_SEMI, - [123591] = 4, + [123531] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(6860), 1, anon_sym_LPAREN, - STATE(743), 1, + STATE(3440), 1, sym_signature, - STATE(69), 2, + STATE(2481), 2, sym_parameter_list, sym_type_parameter_list, - [123605] = 4, + [123545] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(6671), 1, + sym_identifier, ACTIONS(6862), 1, - anon_sym_LPAREN, - STATE(2719), 1, - sym_signature, - STATE(1605), 2, - sym_parameter_list, - sym_type_parameter_list, - [123619] = 4, + anon_sym_RPAREN, + STATE(3708), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [123561] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6864), 1, + anon_sym_EQ, + STATE(4570), 1, + sym_generic_parameters, + ACTIONS(4984), 2, + anon_sym_LBRACK, + anon_sym_LT2, + [123575] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 1, + ACTIONS(6860), 1, anon_sym_LPAREN, - STATE(3422), 1, + STATE(3426), 1, sym_signature, - STATE(2475), 2, + STATE(2481), 2, sym_parameter_list, sym_type_parameter_list, - [123633] = 2, + [123589] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6643), 4, + ACTIONS(6573), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, - anon_sym_RBRACE, - [123643] = 4, + anon_sym_SEMI, + [123599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4206), 1, + STATE(4327), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123657] = 4, + [123613] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6214), 1, - anon_sym_LPAREN, - STATE(1454), 1, - sym_signature, - STATE(1122), 2, - sym_parameter_list, - sym_type_parameter_list, - [123671] = 3, + ACTIONS(6709), 1, + sym_identifier, + ACTIONS(6866), 1, + anon_sym_RPAREN, + STATE(3712), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3790), 1, + sym_global_var_definition, + [123629] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6709), 1, + sym_identifier, + ACTIONS(6868), 1, + anon_sym_RPAREN, + STATE(3712), 1, + aux_sym_global_var_declaration_repeat1, + STATE(3790), 1, + sym_global_var_definition, + [123645] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6832), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6830), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [123683] = 4, + ACTIONS(6870), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [123655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(4331), 1, + STATE(1474), 1, sym_signature, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [123697] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6864), 1, - sym_identifier, - STATE(3476), 1, - sym_import_path, - STATE(3477), 1, - sym_import_name, - STATE(3744), 1, - sym_import_spec, - [123713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4703), 1, - anon_sym_LBRACE, - ACTIONS(6866), 1, - anon_sym_if, - STATE(1744), 1, - sym_if_expression, - STATE(1747), 1, - sym_block, - [123729] = 4, + [123669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - ACTIONS(6809), 1, + ACTIONS(6834), 1, anon_sym_DOLLARif, - STATE(846), 2, + STATE(1756), 2, sym_compile_time_if_expression, sym_block, - [123743] = 3, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6737), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6735), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [123755] = 5, + [123683] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 1, - anon_sym_DOT, - ACTIONS(6870), 1, - anon_sym_RBRACE, ACTIONS(6872), 1, - sym_int_literal, - ACTIONS(6874), 1, - aux_sym_format_specifier_token1, - [123771] = 4, + sym_identifier, + ACTIONS(6875), 1, + anon_sym_RBRACE, + STATE(3659), 1, + sym_enum_field_definition, + STATE(3793), 1, + aux_sym__enum_body_repeat1, + [123699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6218), 1, anon_sym_LPAREN, - STATE(4139), 1, + STATE(1499), 1, sym_signature, - STATE(2883), 2, + STATE(1126), 2, sym_parameter_list, sym_type_parameter_list, - [123785] = 4, + [123713] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6684), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(3438), 1, + STATE(4307), 1, sym_signature, - STATE(2475), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123799] = 3, - ACTIONS(495), 1, + [123727] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6713), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6711), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [123811] = 4, + ACTIONS(6671), 1, + sym_identifier, + ACTIONS(6862), 1, + anon_sym_RPAREN, + STATE(3662), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [123743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6876), 1, + ACTIONS(6877), 1, sym_identifier, - ACTIONS(6878), 1, + ACTIONS(6879), 1, anon_sym_DOLLAR, - STATE(2097), 2, + STATE(1196), 2, sym_reference_expression, sym_compile_time_selector_expression, - [123825] = 5, + [123757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(6218), 1, + anon_sym_LPAREN, + STATE(1479), 1, + sym_signature, + STATE(1126), 2, + sym_parameter_list, + sym_type_parameter_list, + [123771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6703), 1, + anon_sym_as, + ACTIONS(6705), 1, anon_sym_LBRACE, - ACTIONS(6880), 1, - anon_sym_if, - STATE(1870), 1, - sym_block, - STATE(1871), 1, - sym_if_expression, - [123841] = 4, + STATE(1538), 1, + sym__enum_body, + STATE(4196), 1, + sym_enum_backed_type, + [123787] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(5128), 1, anon_sym_LBRACE, - ACTIONS(6882), 1, + ACTIONS(6881), 1, anon_sym_DOLLARif, - STATE(1867), 2, + STATE(2000), 2, sym_compile_time_if_expression, sym_block, - [123855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6666), 1, - anon_sym_LPAREN, - STATE(2529), 1, - sym_signature, - STATE(1471), 2, - sym_parameter_list, - sym_type_parameter_list, - [123869] = 2, + [123801] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4280), 4, + ACTIONS(4316), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123879] = 3, + [123811] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6727), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6725), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [123891] = 2, + ACTIONS(4324), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [123821] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(4200), 4, + ACTIONS(4424), 4, anon_sym_LF, anon_sym_CR, anon_sym_CR_LF, anon_sym_RBRACE, - [123901] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4703), 1, - anon_sym_LBRACE, - ACTIONS(6884), 1, - anon_sym_DOLLARif, - STATE(1750), 2, - sym_compile_time_if_expression, - sym_block, - [123915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5126), 1, - anon_sym_LBRACE, - ACTIONS(6882), 1, - anon_sym_DOLLARif, - STATE(1862), 2, - sym_compile_time_if_expression, - sym_block, - [123929] = 4, + [123831] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4103), 1, + STATE(4272), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [123943] = 4, + [123845] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, - sym_identifier, - ACTIONS(6888), 1, - anon_sym_DOLLAR, - STATE(2851), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [123957] = 4, + ACTIONS(6770), 1, + anon_sym_LPAREN, + STATE(2580), 1, + sym_signature, + STATE(1462), 2, + sym_parameter_list, + sym_type_parameter_list, + [123859] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - ACTIONS(6841), 1, - anon_sym_DOLLARif, - STATE(1022), 2, - sym_compile_time_if_expression, + ACTIONS(6883), 1, + anon_sym_if, + STATE(1024), 1, + sym_if_expression, + STATE(1118), 1, sym_block, - [123971] = 5, + [123875] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6697), 1, - sym_identifier, - ACTIONS(6890), 1, - anon_sym_RPAREN, - STATE(3689), 1, - sym_const_definition, - STATE(3786), 1, - aux_sym_const_declaration_repeat1, - [123987] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(4204), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123997] = 4, + ACTIONS(6703), 1, + anon_sym_as, + ACTIONS(6705), 1, + anon_sym_LBRACE, + STATE(1594), 1, + sym__enum_body, + STATE(4330), 1, + sym_enum_backed_type, + [123891] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(4150), 1, + STATE(4266), 1, sym_signature, - STATE(2883), 2, + STATE(2930), 2, sym_parameter_list, sym_type_parameter_list, - [124011] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6892), 1, - sym_identifier, - ACTIONS(6894), 1, - anon_sym_DOLLAR, - STATE(1321), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124025] = 4, + [123905] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(5128), 1, anon_sym_LBRACE, - ACTIONS(6845), 1, + ACTIONS(6881), 1, anon_sym_DOLLARif, - STATE(2591), 2, + STATE(1993), 2, sym_compile_time_if_expression, sym_block, - [124039] = 4, + [123919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(5128), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_if, + STATE(1990), 1, + sym_if_expression, + STATE(1992), 1, + sym_block, + [123935] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5120), 1, anon_sym_LBRACE, - ACTIONS(6884), 1, + ACTIONS(6675), 1, anon_sym_DOLLARif, - STATE(1779), 2, + STATE(1107), 2, sym_compile_time_if_expression, sym_block, - [124053] = 4, + [123949] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6898), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [124066] = 4, + ACTIONS(6887), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [123959] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(6902), 1, - anon_sym_RPAREN, - STATE(4030), 1, - aux_sym_type_parameter_list_repeat1, - [124079] = 4, + ACTIONS(6889), 1, + sym_identifier, + ACTIONS(6891), 1, + anon_sym_DOLLAR, + STATE(2612), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [123973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6904), 1, - anon_sym_RBRACK, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [124092] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6906), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [124105] = 4, - ACTIONS(495), 1, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4113), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [123987] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6906), 1, - sym___single_quote, - ACTIONS(6908), 1, - aux_sym_raw_string_literal_token1, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - [124118] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4255), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [124001] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6910), 1, - sym_identifier, - ACTIONS(6912), 1, + ACTIONS(6159), 1, anon_sym_LPAREN, - STATE(1508), 1, - sym_const_definition, - [124131] = 4, + STATE(4130), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [124015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6914), 1, - anon_sym_COMMA, - ACTIONS(6916), 1, - anon_sym_RPAREN, - STATE(4033), 1, - aux_sym_type_parameters_repeat1, - [124144] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4158), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [124029] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_SEMI, - ACTIONS(5234), 1, + ACTIONS(6893), 1, anon_sym_COMMA, - STATE(3845), 1, - aux_sym_strictly_expression_list_repeat1, - [124157] = 4, + STATE(3818), 1, + aux_sym_generic_parameters_repeat1, + ACTIONS(6896), 2, + anon_sym_GT, + anon_sym_RBRACK, + [124043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6918), 1, + ACTIONS(6802), 1, sym_identifier, - ACTIONS(6920), 1, - anon_sym_LBRACE, - STATE(2194), 1, - sym__content_block, - [124170] = 4, + STATE(3846), 1, + sym_generic_parameter, + ACTIONS(6898), 2, + anon_sym_GT, + anon_sym_RBRACK, + [124057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5768), 1, - anon_sym_RPAREN, - ACTIONS(6922), 1, - anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [124183] = 4, + ACTIONS(2725), 1, + anon_sym_DOT, + ACTIONS(6900), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [124069] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6924), 1, - anon_sym_RBRACK, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [124196] = 4, + ACTIONS(6860), 1, + anon_sym_LPAREN, + STATE(1698), 1, + sym_signature, + STATE(2920), 2, + sym_parameter_list, + sym_type_parameter_list, + [124083] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, + ACTIONS(6671), 1, sym_identifier, - ACTIONS(6928), 1, - anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [124209] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6930), 1, - anon_sym_COMMA, - ACTIONS(6932), 1, + ACTIONS(6679), 1, anon_sym_RPAREN, - STATE(3844), 1, - aux_sym_parameter_list_repeat1, - [124222] = 4, - ACTIONS(495), 1, + STATE(3708), 1, + aux_sym_const_declaration_repeat1, + STATE(3824), 1, + sym_const_definition, + [124099] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6934), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6936), 1, - sym___double_quote, - STATE(3826), 1, - aux_sym_raw_string_literal_repeat2, - [124235] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4228), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [124113] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6936), 1, - sym___single_quote, - ACTIONS(6938), 1, - aux_sym_raw_string_literal_token1, - STATE(3869), 1, - aux_sym_raw_string_literal_repeat1, - [124248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(6940), 1, - anon_sym_RPAREN, - STATE(3846), 1, - aux_sym_type_parameter_list_repeat1, - [124261] = 4, + ACTIONS(6902), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_SEMI, + [124123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6942), 1, + ACTIONS(6904), 1, sym_identifier, - ACTIONS(6944), 1, - anon_sym_LBRACE, - STATE(762), 1, - sym__content_block, - [124274] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6946), 1, - anon_sym_RBRACK, - STATE(3849), 1, - aux_sym_type_parameters_repeat1, - [124287] = 4, + ACTIONS(6906), 1, + anon_sym_DOLLAR, + STATE(2772), 2, + sym_reference_expression, + sym_compile_time_selector_expression, + [124137] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, - anon_sym_COMMA, - ACTIONS(6948), 1, - anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [124300] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4178), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [124151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, - anon_sym_SEMI, - ACTIONS(5234), 1, - anon_sym_COMMA, - STATE(3856), 1, - aux_sym_strictly_expression_list_repeat1, - [124313] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [124165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(6950), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [124326] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6952), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6954), 1, - sym___double_quote, - STATE(3892), 1, - aux_sym_raw_string_literal_repeat2, - [124339] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6954), 1, - sym___single_quote, - ACTIONS(6956), 1, - aux_sym_raw_string_literal_token1, - STATE(3893), 1, - aux_sym_raw_string_literal_repeat1, - [124352] = 4, + ACTIONS(5148), 1, + anon_sym_LBRACE, + ACTIONS(6908), 1, + anon_sym_DOLLARif, + STATE(1895), 2, + sym_compile_time_if_expression, + sym_block, + [124179] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(6958), 1, - anon_sym_RBRACK, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [124365] = 4, + ACTIONS(6159), 1, + anon_sym_LPAREN, + STATE(4212), 1, + sym_signature, + STATE(2930), 2, + sym_parameter_list, + sym_type_parameter_list, + [124193] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6960), 1, - anon_sym_COMMA, - ACTIONS(6962), 1, - anon_sym_RPAREN, - STATE(4059), 1, - aux_sym_type_parameters_repeat1, - [124378] = 4, + ACTIONS(5148), 1, + anon_sym_LBRACE, + ACTIONS(6910), 1, + anon_sym_if, + STATE(1916), 1, + sym_if_expression, + STATE(1918), 1, + sym_block, + [124209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6964), 1, - sym_identifier, - ACTIONS(6966), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1337), 1, - sym__content_block, - [124391] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6968), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6970), 1, - sym___double_quote, - STATE(3857), 1, - aux_sym_raw_string_literal_repeat2, - [124404] = 4, + ACTIONS(6908), 1, + anon_sym_DOLLARif, + STATE(1919), 2, + sym_compile_time_if_expression, + sym_block, + [124223] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(6970), 1, - sym___single_quote, - ACTIONS(6972), 1, - aux_sym_raw_string_literal_token1, - STATE(3858), 1, - aux_sym_raw_string_literal_repeat1, - [124417] = 4, + ACTIONS(4240), 4, + anon_sym_LF, + anon_sym_CR, + anon_sym_CR_LF, + anon_sym_RBRACE, + [124233] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6974), 1, + ACTIONS(6912), 1, aux_sym_raw_string_literal_token1, - ACTIONS(6976), 1, + ACTIONS(6914), 1, sym___single_quote, - STATE(3830), 1, + STATE(3987), 1, aux_sym_raw_string_literal_repeat1, - [124430] = 4, + [124246] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6976), 1, + ACTIONS(6914), 1, sym___double_quote, - ACTIONS(6978), 1, + ACTIONS(6916), 1, aux_sym_raw_string_literal_token2, - STATE(3829), 1, + STATE(3957), 1, aux_sym_raw_string_literal_repeat2, - [124443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3556), 1, - anon_sym_SEMI, - ACTIONS(6980), 1, - anon_sym_COMMA, - STATE(3856), 1, - aux_sym_strictly_expression_list_repeat1, - [124456] = 4, + [124259] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6896), 1, + ACTIONS(6916), 1, aux_sym_raw_string_literal_token2, - ACTIONS(6983), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [124469] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6908), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6983), 1, - sym___single_quote, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - [124482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6985), 1, - anon_sym_COMMA, - ACTIONS(6988), 1, - anon_sym_in, - STATE(3859), 1, - aux_sym_var_definition_list_repeat1, - [124495] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4597), 1, - sym_identifier, - ACTIONS(6990), 1, - anon_sym_static, - ACTIONS(6992), 1, - anon_sym_volatile, - [124508] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6994), 1, - sym_identifier, - ACTIONS(6996), 1, - anon_sym_LBRACE, - STATE(2449), 1, - sym__content_block, - [124521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6998), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [124530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5726), 1, - anon_sym_RPAREN, - ACTIONS(7000), 1, - anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [124543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6930), 1, - anon_sym_COMMA, - ACTIONS(7002), 1, - anon_sym_RPAREN, - STATE(3871), 1, - aux_sym_parameter_list_repeat1, - [124556] = 4, + ACTIONS(6918), 1, + sym___double_quote, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, + [124272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7004), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [124569] = 4, + ACTIONS(6920), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [124285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6922), 1, anon_sym_COMMA, - ACTIONS(7006), 1, + ACTIONS(6925), 1, anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [124582] = 4, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [124298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7008), 1, + ACTIONS(6929), 1, anon_sym_RPAREN, - STATE(3874), 1, + STATE(3837), 1, aux_sym_type_parameter_list_repeat1, - [124595] = 4, + [124311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7010), 1, - anon_sym_RBRACK, - STATE(3875), 1, - aux_sym_type_parameters_repeat1, - [124608] = 4, + ACTIONS(6933), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [124324] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6898), 1, - sym___single_quote, - ACTIONS(6908), 1, + ACTIONS(6912), 1, aux_sym_raw_string_literal_token1, - STATE(3993), 1, + ACTIONS(6918), 1, + sym___single_quote, + STATE(3987), 1, aux_sym_raw_string_literal_repeat1, - [124621] = 4, + [124337] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7012), 1, - anon_sym_COMMA, - ACTIONS(7014), 1, + ACTIONS(5740), 1, anon_sym_RPAREN, - STATE(3963), 1, + ACTIONS(6935), 1, + anon_sym_COMMA, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [124634] = 4, + [124350] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7016), 1, + ACTIONS(6937), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(3863), 1, aux_sym_parameter_list_repeat1, - [124647] = 2, + [124363] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_COMMA, + ACTIONS(6939), 1, + anon_sym_RPAREN, + STATE(3866), 1, + aux_sym_type_parameter_list_repeat1, + [124376] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2667), 3, + ACTIONS(3951), 3, anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_QMARK, - [124656] = 4, + anon_sym_COLON, + [124385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6941), 1, anon_sym_COMMA, - ACTIONS(7018), 1, - anon_sym_RBRACK, - STATE(3836), 1, + ACTIONS(6943), 1, + anon_sym_RPAREN, + STATE(3924), 1, aux_sym_type_parameters_repeat1, - [124669] = 4, + [124398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6896), 3, anon_sym_COMMA, - ACTIONS(7020), 1, + anon_sym_GT, + anon_sym_RBRACK, + [124407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6945), 1, + anon_sym_COMMA, + ACTIONS(6948), 1, anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [124682] = 4, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [124420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7022), 1, + ACTIONS(6950), 1, anon_sym_RBRACK, - STATE(3766), 1, + STATE(3836), 1, aux_sym_type_parameters_repeat1, - [124695] = 4, + [124433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7024), 1, - anon_sym_COMMA, - ACTIONS(7026), 1, + ACTIONS(5752), 1, anon_sym_RPAREN, - STATE(3922), 1, + ACTIONS(6952), 1, + anon_sym_COMMA, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [124708] = 4, + [124446] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, - anon_sym_SEMI, - ACTIONS(7030), 1, - anon_sym_RBRACK, - STATE(4016), 1, - aux_sym_attribute_repeat1, - [124721] = 3, + ACTIONS(5746), 1, + anon_sym_RPAREN, + ACTIONS(6954), 1, + anon_sym_COMMA, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [124459] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6956), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(6958), 1, + sym___single_quote, + STATE(3833), 1, + aux_sym_raw_string_literal_repeat1, + [124472] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6958), 1, + sym___double_quote, + ACTIONS(6960), 1, + aux_sym_raw_string_literal_token2, + STATE(3834), 1, + aux_sym_raw_string_literal_repeat2, + [124485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7034), 1, - anon_sym_COLON, - ACTIONS(7032), 2, + ACTIONS(6663), 3, anon_sym_SEMI, anon_sym_RBRACK, - [124732] = 4, + anon_sym_COLON, + [124494] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_COLON_EQ, - ACTIONS(5080), 1, - anon_sym_COMMA, - STATE(3999), 1, - aux_sym_strictly_expression_list_repeat1, - [124745] = 4, + ACTIONS(6962), 1, + sym_identifier, + ACTIONS(6964), 1, + anon_sym_LBRACE, + STATE(2089), 1, + sym__content_block, + [124507] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5716), 1, - anon_sym_RPAREN, - ACTIONS(7036), 1, - anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [124758] = 4, + ACTIONS(6966), 1, + sym_identifier, + ACTIONS(6968), 1, + anon_sym_LBRACE, + STATE(2237), 1, + sym__content_block, + [124520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7038), 1, + ACTIONS(6970), 1, anon_sym_RPAREN, - STATE(3905), 1, + STATE(3907), 1, aux_sym_parameter_list_repeat1, - [124771] = 4, + [124533] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7040), 1, + ACTIONS(6972), 1, anon_sym_RPAREN, - STATE(3906), 1, + STATE(3909), 1, aux_sym_type_parameter_list_repeat1, - [124784] = 4, + [124546] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7042), 1, - sym_identifier, - ACTIONS(7044), 1, - anon_sym_LBRACE, - STATE(1075), 1, - sym__content_block, - [124797] = 4, + ACTIONS(6974), 1, + anon_sym_COMMA, + ACTIONS(6976), 1, + anon_sym_RPAREN, + STATE(3850), 1, + aux_sym_type_parameters_repeat1, + [124559] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(6978), 1, + anon_sym_RBRACK, + STATE(3870), 1, + aux_sym_type_parameters_repeat1, + [124572] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7046), 1, + ACTIONS(6980), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7048), 1, + ACTIONS(6982), 1, sym___double_quote, STATE(3889), 1, aux_sym_raw_string_literal_repeat2, - [124810] = 4, + [124585] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(6982), 1, sym___single_quote, - ACTIONS(7050), 1, + ACTIONS(6984), 1, aux_sym_raw_string_literal_token1, STATE(3890), 1, aux_sym_raw_string_literal_repeat1, - [124823] = 4, + [124598] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7052), 1, + ACTIONS(6986), 1, anon_sym_COMMA, - ACTIONS(7054), 1, - anon_sym_in, - STATE(3983), 1, - aux_sym_var_definition_list_repeat1, - [124836] = 2, + ACTIONS(6988), 1, + anon_sym_RPAREN, + STATE(3901), 1, + aux_sym_type_parameters_repeat1, + [124611] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [124845] = 2, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(6990), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [124624] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3941), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [124854] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7056), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [124867] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6908), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7056), 1, - sym___single_quote, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - [124880] = 4, + ACTIONS(6992), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [124633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7058), 1, - anon_sym_DOT, - ACTIONS(7060), 1, - anon_sym_RBRACE, - ACTIONS(7062), 1, - aux_sym_format_specifier_token1, - [124893] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7064), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [124906] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6908), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7064), 1, - sym___single_quote, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - [124919] = 4, + ACTIONS(6994), 1, + sym_identifier, + ACTIONS(6996), 1, + anon_sym_LBRACE, + STATE(945), 1, + sym__content_block, + [124646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5712), 1, - anon_sym_RPAREN, - ACTIONS(7066), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [124932] = 4, + ACTIONS(6998), 1, + anon_sym_RPAREN, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [124659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7068), 1, - anon_sym_RPAREN, - STATE(3904), 1, - aux_sym_parameter_list_repeat1, - [124945] = 4, + ACTIONS(7000), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [124672] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6896), 1, + ACTIONS(7002), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7070), 1, + ACTIONS(7004), 1, sym___double_quote, - STATE(3990), 1, + STATE(3888), 1, aux_sym_raw_string_literal_repeat2, - [124958] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(7072), 1, - anon_sym_RPAREN, - STATE(3903), 1, - aux_sym_type_parameter_list_repeat1, - [124971] = 4, + [124685] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 1, + ACTIONS(4045), 1, anon_sym_LBRACE, - ACTIONS(7074), 1, + ACTIONS(5272), 1, anon_sym_COMMA, - STATE(3898), 1, - aux_sym_match_expression_list_repeat1, - [124984] = 4, + STATE(3912), 1, + aux_sym_strictly_expression_list_repeat1, + [124698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7077), 1, + ACTIONS(7006), 1, anon_sym_RBRACK, - STATE(3914), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [124997] = 4, + [124711] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(7008), 1, anon_sym_COMMA, - ACTIONS(7079), 1, + ACTIONS(7011), 1, anon_sym_RBRACK, - STATE(3908), 1, - aux_sym_type_parameters_repeat1, - [125010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6910), 1, - sym_identifier, - ACTIONS(7081), 1, - anon_sym_LPAREN, - STATE(1540), 1, - sym_const_definition, - [125023] = 4, + STATE(3871), 1, + aux_sym_capture_list_repeat1, + [124724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7085), 1, + ACTIONS(7013), 1, anon_sym_RPAREN, - STATE(3925), 1, - aux_sym_type_parameters_repeat1, - [125036] = 4, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [124737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7087), 1, + ACTIONS(7015), 1, anon_sym_RPAREN, - STATE(4029), 1, + STATE(3838), 1, aux_sym_type_parameter_list_repeat1, - [125049] = 4, + [124750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7089), 1, + ACTIONS(7017), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(3839), 1, aux_sym_parameter_list_repeat1, - [125062] = 4, + [124763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7091), 1, + ACTIONS(7019), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(3847), 1, aux_sym_parameter_list_repeat1, - [125075] = 4, + [124776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(7093), 1, + ACTIONS(5724), 1, anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [125088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6910), 1, - sym_identifier, - ACTIONS(7095), 1, - anon_sym_LPAREN, - STATE(1514), 1, - sym_const_definition, - [125101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, + ACTIONS(7021), 1, anon_sym_COMMA, - ACTIONS(7097), 1, - anon_sym_RBRACK, - STATE(3766), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [125114] = 4, + [124789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7101), 1, - anon_sym_RPAREN, - STATE(3880), 1, + ACTIONS(7023), 1, + anon_sym_RBRACK, + STATE(3867), 1, aux_sym_type_parameters_repeat1, - [125127] = 3, - ACTIONS(3), 1, + [124802] = 4, + ACTIONS(495), 1, sym_comment, - STATE(3894), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(7103), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [125138] = 2, + ACTIONS(7004), 1, + sym___single_quote, + ACTIONS(7025), 1, + aux_sym_raw_string_literal_token1, + STATE(3895), 1, + aux_sym_raw_string_literal_repeat1, + [124815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7105), 3, + ACTIONS(7027), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [125147] = 4, + [124824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7107), 1, + ACTIONS(7029), 1, sym_identifier, - ACTIONS(7109), 1, + ACTIONS(7031), 1, anon_sym_LBRACE, - STATE(2019), 1, + STATE(2534), 1, sym__content_block, - [125160] = 4, + [124837] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7111), 1, + ACTIONS(7033), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7113), 1, + ACTIONS(7035), 1, + sym___double_quote, + STATE(3910), 1, + aux_sym_raw_string_literal_repeat2, + [124850] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6912), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7037), 1, + sym___single_quote, + STATE(3987), 1, + aux_sym_raw_string_literal_repeat1, + [124863] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6916), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7037), 1, sym___double_quote, - STATE(3919), 1, + STATE(3957), 1, aux_sym_raw_string_literal_repeat2, - [125173] = 4, + [124876] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(3554), 1, + anon_sym_COLON_EQ, + ACTIONS(7039), 1, anon_sym_COMMA, - ACTIONS(7115), 1, + STATE(3884), 1, + aux_sym_strictly_expression_list_repeat1, + [124889] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(7042), 1, anon_sym_RBRACK, - STATE(3766), 1, + STATE(3944), 1, aux_sym_type_parameters_repeat1, - [125186] = 4, + [124902] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7113), 1, + ACTIONS(7035), 1, sym___single_quote, - ACTIONS(7117), 1, + ACTIONS(7044), 1, aux_sym_raw_string_literal_token1, - STATE(3920), 1, + STATE(3911), 1, aux_sym_raw_string_literal_repeat1, - [125199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(7119), 1, - anon_sym_RPAREN, - STATE(3865), 1, - aux_sym_type_parameter_list_repeat1, - [125212] = 2, + [124915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7121), 3, + ACTIONS(3512), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [125221] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7123), 1, + ACTIONS(5272), 1, anon_sym_COMMA, - ACTIONS(7125), 1, - anon_sym_RPAREN, - STATE(4010), 1, - aux_sym_type_parameters_repeat1, - [125234] = 4, + STATE(3869), 1, + aux_sym_strictly_expression_list_repeat1, + [124928] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6896), 1, + ACTIONS(6916), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7127), 1, + ACTIONS(7046), 1, sym___double_quote, - STATE(3990), 1, + STATE(3957), 1, aux_sym_raw_string_literal_repeat2, - [125247] = 4, + [124941] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6916), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7048), 1, + sym___double_quote, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, + [124954] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6912), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7127), 1, + ACTIONS(7048), 1, sym___single_quote, - STATE(3993), 1, + STATE(3987), 1, aux_sym_raw_string_literal_repeat1, - [125260] = 4, + [124967] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7129), 1, + ACTIONS(7050), 1, anon_sym_RPAREN, - STATE(3866), 1, - aux_sym_parameter_list_repeat1, - [125273] = 4, + STATE(3872), 1, + aux_sym_type_parameter_list_repeat1, + [124980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5722), 1, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(7052), 1, anon_sym_RPAREN, - ACTIONS(7131), 1, + STATE(3875), 1, + aux_sym_parameter_list_repeat1, + [124993] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5324), 1, anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [125286] = 4, + ACTIONS(7054), 1, + anon_sym_LBRACE, + STATE(4052), 1, + aux_sym_match_expression_list_repeat1, + [125006] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(5742), 1, + anon_sym_RPAREN, + ACTIONS(7056), 1, anon_sym_COMMA, - ACTIONS(7133), 1, - anon_sym_COLON_EQ, - STATE(3973), 1, - aux_sym_identifier_list_repeat1, - [125299] = 4, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125019] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6912), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7070), 1, + ACTIONS(7046), 1, sym___single_quote, - STATE(3993), 1, + STATE(3987), 1, aux_sym_raw_string_literal_repeat1, - [125312] = 4, + [125032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - anon_sym_RPAREN, - ACTIONS(7135), 1, + ACTIONS(4045), 1, + anon_sym_COLON_EQ, + ACTIONS(5082), 1, anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [125325] = 4, + STATE(3884), 1, + aux_sym_strictly_expression_list_repeat1, + [125045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5320), 1, + ACTIONS(5324), 1, anon_sym_COMMA, - ACTIONS(7137), 1, + ACTIONS(7058), 1, anon_sym_LBRACE, - STATE(3982), 1, + STATE(4052), 1, aux_sym_match_expression_list_repeat1, - [125338] = 4, + [125058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7139), 1, + ACTIONS(7060), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125071] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7062), 1, + anon_sym_COMMA, + ACTIONS(7064), 1, anon_sym_RPAREN, - STATE(3939), 1, - aux_sym_parameter_list_repeat1, - [125351] = 3, + STATE(3841), 1, + aux_sym_type_parameters_repeat1, + [125084] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6912), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7066), 1, + sym___single_quote, + STATE(3987), 1, + aux_sym_raw_string_literal_repeat1, + [125097] = 4, ACTIONS(3), 1, sym_comment, - STATE(2752), 1, - sym_type_initializer_body, - ACTIONS(7141), 2, - anon_sym_LBRACE, + ACTIONS(5732), 1, + anon_sym_RPAREN, + ACTIONS(7068), 1, anon_sym_COMMA, - [125362] = 4, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125110] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 1, - anon_sym_LBRACE, - ACTIONS(5320), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - STATE(3984), 1, - aux_sym_match_expression_list_repeat1, - [125375] = 4, + ACTIONS(7070), 1, + anon_sym_RPAREN, + STATE(3927), 1, + aux_sym_parameter_list_repeat1, + [125123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7143), 1, + ACTIONS(7072), 1, anon_sym_RPAREN, - STATE(3940), 1, + STATE(3928), 1, aux_sym_type_parameter_list_repeat1, - [125388] = 4, + [125136] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6916), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7066), 1, + sym___double_quote, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, + [125149] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5766), 1, - anon_sym_RPAREN, - ACTIONS(7145), 1, + ACTIONS(7074), 1, anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [125401] = 4, + ACTIONS(7076), 1, + anon_sym_PIPE, + STATE(3942), 1, + aux_sym_short_lambda_repeat1, + [125162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7147), 1, + ACTIONS(6643), 1, sym_identifier, - ACTIONS(7149), 1, - anon_sym_LBRACE, - STATE(2762), 1, - sym__content_block, - [125414] = 4, + ACTIONS(6645), 1, + anon_sym_mut, + STATE(4220), 1, + sym_var_definition, + [125175] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7151), 1, + ACTIONS(7078), 1, anon_sym_RPAREN, - STATE(3995), 1, - aux_sym_type_parameter_list_repeat1, - [125427] = 4, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [125188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(7153), 1, + ACTIONS(7080), 1, + anon_sym_QMARK, + ACTIONS(5308), 2, + anon_sym_SEMI, anon_sym_RBRACK, - STATE(3949), 1, - aux_sym_type_parameters_repeat1, - [125440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6930), 1, - anon_sym_COMMA, - ACTIONS(7155), 1, - anon_sym_RPAREN, - STATE(4039), 1, - aux_sym_parameter_list_repeat1, - [125453] = 4, + [125199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7157), 1, + ACTIONS(7082), 1, anon_sym_RPAREN, - STATE(4042), 1, + STATE(3837), 1, aux_sym_type_parameter_list_repeat1, - [125466] = 4, + [125212] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7159), 1, + ACTIONS(6916), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7161), 1, + ACTIONS(7084), 1, sym___double_quote, - STATE(3966), 1, + STATE(3957), 1, aux_sym_raw_string_literal_repeat2, - [125479] = 4, + [125225] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7161), 1, - sym___single_quote, - ACTIONS(7163), 1, + ACTIONS(6912), 1, aux_sym_raw_string_literal_token1, - STATE(3967), 1, + ACTIONS(7084), 1, + sym___single_quote, + STATE(3987), 1, aux_sym_raw_string_literal_repeat1, - [125492] = 4, + [125238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(3554), 1, + anon_sym_LBRACE, + ACTIONS(7086), 1, anon_sym_COMMA, - ACTIONS(7165), 1, - anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [125505] = 4, + STATE(3912), 1, + aux_sym_strictly_expression_list_repeat1, + [125251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(7089), 1, anon_sym_COMMA, - ACTIONS(7167), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [125518] = 2, + ACTIONS(7092), 1, + anon_sym_in, + STATE(3913), 1, + aux_sym_var_definition_list_repeat1, + [125264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7169), 3, + ACTIONS(7094), 1, anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [125527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7171), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [125536] = 4, + ACTIONS(7096), 1, + anon_sym_in, + STATE(3923), 1, + aux_sym_var_definition_list_repeat1, + [125277] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7173), 1, + ACTIONS(7098), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7175), 1, + ACTIONS(7100), 1, sym___single_quote, - STATE(3924), 1, + STATE(3882), 1, aux_sym_raw_string_literal_repeat1, - [125549] = 4, + [125290] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7175), 1, + ACTIONS(7100), 1, sym___double_quote, - ACTIONS(7177), 1, + ACTIONS(7102), 1, aux_sym_raw_string_literal_token2, - STATE(3896), 1, + STATE(3883), 1, aux_sym_raw_string_literal_repeat2, - [125562] = 4, + [125303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3321), 1, + ACTIONS(4843), 1, anon_sym_COMMA, - ACTIONS(5118), 1, - anon_sym_LBRACE, - STATE(2782), 1, - sym_block, - [125575] = 3, + ACTIONS(7104), 1, + anon_sym_COLON_EQ, + STATE(3918), 1, + aux_sym_identifier_list_repeat1, + [125316] = 4, ACTIONS(3), 1, sym_comment, - STATE(2752), 1, - sym_type_initializer_body, - ACTIONS(3317), 2, - anon_sym_LBRACE, + ACTIONS(7106), 1, anon_sym_COMMA, - [125586] = 4, + ACTIONS(7109), 1, + anon_sym_COLON_EQ, + STATE(3918), 1, + aux_sym_identifier_list_repeat1, + [125329] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(7111), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7179), 1, + ACTIONS(7113), 1, sym___single_quote, - STATE(3993), 1, + STATE(3840), 1, aux_sym_raw_string_literal_repeat1, - [125599] = 4, + [125342] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7179), 1, + ACTIONS(7113), 1, sym___double_quote, - STATE(3990), 1, + ACTIONS(7115), 1, + aux_sym_raw_string_literal_token2, + STATE(3835), 1, aux_sym_raw_string_literal_repeat2, - [125612] = 4, + [125355] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7181), 1, + ACTIONS(7117), 1, anon_sym_RBRACK, - STATE(3766), 1, + STATE(3936), 1, aux_sym_type_parameters_repeat1, - [125625] = 4, + [125368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, - anon_sym_LBRACE, - ACTIONS(5212), 1, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(7119), 1, + anon_sym_RPAREN, + STATE(3996), 1, + aux_sym_parameter_list_repeat1, + [125381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7094), 1, + anon_sym_COMMA, + ACTIONS(7121), 1, + anon_sym_in, + STATE(3913), 1, + aux_sym_var_definition_list_repeat1, + [125394] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5772), 1, + anon_sym_RPAREN, + ACTIONS(7123), 1, + anon_sym_COMMA, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125407] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 1, anon_sym_COMMA, + ACTIONS(7125), 1, + anon_sym_RPAREN, STATE(3994), 1, - aux_sym_strictly_expression_list_repeat1, - [125638] = 4, + aux_sym_type_parameter_list_repeat1, + [125420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3309), 1, + ACTIONS(5324), 1, anon_sym_COMMA, - ACTIONS(7183), 1, + ACTIONS(7127), 1, anon_sym_LBRACE, - STATE(2752), 1, - sym_type_initializer_body, - [125651] = 4, + STATE(3897), 1, + aux_sym_match_expression_list_repeat1, + [125433] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7185), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7187), 1, - anon_sym_RBRACK, - STATE(4060), 1, - aux_sym_capture_list_repeat1, - [125664] = 3, + ACTIONS(7129), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [125446] = 4, ACTIONS(3), 1, sym_comment, - STATE(2752), 1, - sym_type_initializer_body, - ACTIONS(3305), 2, + ACTIONS(6927), 1, + anon_sym_COMMA, + ACTIONS(7131), 1, + anon_sym_RPAREN, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [125459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7133), 1, + sym_identifier, + ACTIONS(7135), 1, anon_sym_LBRACE, + STATE(1852), 1, + sym__content_block, + [125472] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6931), 1, anon_sym_COMMA, - [125675] = 4, + ACTIONS(7137), 1, + anon_sym_RPAREN, + STATE(3945), 1, + aux_sym_parameter_list_repeat1, + [125485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7189), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7191), 1, + ACTIONS(7139), 1, anon_sym_RPAREN, - STATE(3978), 1, - aux_sym_type_parameters_repeat1, - [125688] = 4, + STATE(3948), 1, + aux_sym_type_parameter_list_repeat1, + [125498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7193), 1, + ACTIONS(4599), 1, sym_identifier, - ACTIONS(7195), 1, + ACTIONS(7141), 1, + anon_sym_static, + ACTIONS(7143), 1, + anon_sym_volatile, + [125511] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(2843), 1, + sym_type_initializer_body, + ACTIONS(7145), 2, anon_sym_LBRACE, - STATE(2502), 1, - sym__content_block, - [125701] = 4, + anon_sym_COMMA, + [125522] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7197), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7199), 1, + ACTIONS(7147), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7149), 1, + sym___single_quote, + STATE(3900), 1, + aux_sym_raw_string_literal_repeat1, + [125535] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7149), 1, sym___double_quote, - STATE(3959), 1, + ACTIONS(7151), 1, + aux_sym_raw_string_literal_token2, + STATE(3904), 1, aux_sym_raw_string_literal_repeat2, - [125714] = 4, - ACTIONS(495), 1, + [125548] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7199), 1, - sym___single_quote, - ACTIONS(7201), 1, - aux_sym_raw_string_literal_token1, - STATE(3960), 1, - aux_sym_raw_string_literal_repeat1, - [125727] = 4, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(7153), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125561] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6868), 1, + ACTIONS(7155), 1, + sym_identifier, + ACTIONS(7157), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym__content_block, + [125574] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6816), 1, anon_sym_DOT, - ACTIONS(6870), 1, + ACTIONS(6818), 1, anon_sym_RBRACE, - ACTIONS(6874), 1, + ACTIONS(6822), 1, aux_sym_format_specifier_token1, - [125740] = 4, - ACTIONS(495), 1, - sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7203), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [125753] = 4, - ACTIONS(495), 1, + [125587] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6908), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7203), 1, - sym___single_quote, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - [125766] = 4, + ACTIONS(5322), 1, + anon_sym_LBRACE, + ACTIONS(5324), 1, + anon_sym_COMMA, + STATE(3893), 1, + aux_sym_match_expression_list_repeat1, + [125600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, + ACTIONS(5566), 1, + anon_sym_COMMA, + ACTIONS(5979), 1, anon_sym_LBRACE, - ACTIONS(5212), 1, + STATE(3946), 1, + aux_sym_expression_without_blocks_list_repeat1, + [125613] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, anon_sym_COMMA, - STATE(3994), 1, - aux_sym_strictly_expression_list_repeat1, - [125779] = 4, + ACTIONS(7159), 1, + anon_sym_RBRACK, + STATE(3950), 1, + aux_sym_type_parameters_repeat1, + [125626] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7074), 1, + anon_sym_COMMA, + ACTIONS(7161), 1, + anon_sym_PIPE, + STATE(4041), 1, + aux_sym_short_lambda_repeat1, + [125639] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7163), 1, + anon_sym_SEMI, + ACTIONS(7166), 1, + anon_sym_RBRACK, + STATE(3943), 1, + aux_sym_attribute_repeat1, + [125652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4882), 1, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(7168), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125665] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(7170), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [125678] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 1, anon_sym_LBRACE, - ACTIONS(7205), 1, + ACTIONS(7172), 1, anon_sym_COMMA, - STATE(3962), 1, + STATE(3946), 1, aux_sym_expression_without_blocks_list_repeat1, - [125792] = 4, + [125691] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, + ACTIONS(7175), 1, + anon_sym_COMMA, + ACTIONS(7177), 1, anon_sym_RPAREN, - ACTIONS(7208), 1, + STATE(3876), 1, + aux_sym_type_parameters_repeat1, + [125704] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_COMMA, + ACTIONS(7179), 1, + anon_sym_RPAREN, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [125717] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, anon_sym_COMMA, - STATE(3766), 1, + ACTIONS(7181), 1, + anon_sym_RBRACK, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [125805] = 4, + [125730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7210), 1, + ACTIONS(7183), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125743] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_COMMA, + ACTIONS(7185), 1, anon_sym_RPAREN, - STATE(3971), 1, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [125756] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(7187), 1, + anon_sym_RPAREN, + STATE(3847), 1, aux_sym_parameter_list_repeat1, - [125818] = 4, + [125769] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(4056), 1, + anon_sym_LBRACE, + ACTIONS(5272), 1, anon_sym_COMMA, - ACTIONS(7212), 1, + STATE(3912), 1, + aux_sym_strictly_expression_list_repeat1, + [125782] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7189), 1, + sym_identifier, + ACTIONS(7191), 1, + anon_sym_LBRACE, + STATE(2668), 1, + sym__content_block, + [125795] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(7193), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [125808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7195), 3, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_RBRACK, + [125817] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7197), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7200), 1, + sym___double_quote, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, + [125830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7202), 1, + anon_sym_COMMA, + ACTIONS(7204), 1, anon_sym_RPAREN, - STATE(3972), 1, - aux_sym_type_parameter_list_repeat1, - [125831] = 4, + STATE(4073), 1, + aux_sym_type_parameters_repeat1, + [125843] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6896), 1, + ACTIONS(7206), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7214), 1, + ACTIONS(7208), 1, sym___double_quote, - STATE(3990), 1, + STATE(3988), 1, aux_sym_raw_string_literal_repeat2, - [125844] = 4, + [125856] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6908), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7214), 1, + ACTIONS(7208), 1, sym___single_quote, - STATE(3993), 1, + ACTIONS(7210), 1, + aux_sym_raw_string_literal_token1, + STATE(3989), 1, aux_sym_raw_string_literal_repeat1, - [125857] = 4, + [125869] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(7216), 1, - anon_sym_RBRACK, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [125870] = 4, + ACTIONS(7212), 1, + sym_identifier, + ACTIONS(7214), 1, + anon_sym_LPAREN, + STATE(1515), 1, + sym_const_definition, + [125882] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6651), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(6653), 1, + ACTIONS(7216), 1, anon_sym_RPAREN, - STATE(3931), 1, - aux_sym_type_parameters_repeat1, - [125883] = 4, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [125895] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6627), 1, anon_sym_COMMA, ACTIONS(7218), 1, anon_sym_RBRACK, - STATE(3975), 1, + STATE(3949), 1, aux_sym_type_parameters_repeat1, - [125896] = 4, + [125908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, ACTIONS(7220), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(3847), 1, aux_sym_parameter_list_repeat1, - [125909] = 4, + [125921] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6627), 1, anon_sym_COMMA, ACTIONS(7222), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [125922] = 4, + anon_sym_RBRACK, + STATE(3955), 1, + aux_sym_type_parameters_repeat1, + [125934] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(7224), 1, - anon_sym_COMMA, - ACTIONS(7227), 1, - anon_sym_COLON_EQ, - STATE(3973), 1, - aux_sym_identifier_list_repeat1, - [125935] = 4, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + STATE(1762), 1, + sym__content_block, + [125947] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, + ACTIONS(3211), 1, anon_sym_COMMA, - ACTIONS(4827), 1, - anon_sym_COLON_EQ, - STATE(3923), 1, - aux_sym_identifier_list_repeat1, - [125948] = 4, + ACTIONS(5140), 1, + anon_sym_LBRACE, + STATE(2792), 1, + sym_block, + [125960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + STATE(2843), 1, + sym_type_initializer_body, + ACTIONS(3203), 2, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7229), 1, + [125971] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6249), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT_DOT, + sym_identifier, + [125980] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7228), 1, + anon_sym_SEMI, + ACTIONS(7230), 1, anon_sym_RBRACK, - STATE(3766), 1, + STATE(3943), 1, + aux_sym_attribute_repeat1, + [125993] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7232), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [126002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7234), 1, + anon_sym_COMMA, + ACTIONS(7236), 1, + anon_sym_RPAREN, + STATE(3894), 1, aux_sym_type_parameters_repeat1, - [125961] = 4, + [126015] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(3191), 1, anon_sym_COMMA, - ACTIONS(5964), 1, + ACTIONS(7238), 1, anon_sym_LBRACE, - STATE(3962), 1, - aux_sym_expression_without_blocks_list_repeat1, - [125974] = 4, + STATE(2843), 1, + sym_type_initializer_body, + [126028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - sym_identifier, - ACTIONS(6610), 1, - anon_sym_mut, - STATE(4176), 1, - sym_var_definition, - [125987] = 4, + ACTIONS(7240), 1, + anon_sym_COMMA, + ACTIONS(7242), 1, + anon_sym_RBRACK, + STATE(3979), 1, + aux_sym_capture_list_repeat1, + [126041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5748), 1, - anon_sym_RPAREN, - ACTIONS(7231), 1, + STATE(2843), 1, + sym_type_initializer_body, + ACTIONS(3179), 2, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [126000] = 4, + [126052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6639), 1, anon_sym_COMMA, - ACTIONS(7233), 1, + ACTIONS(6641), 1, anon_sym_RPAREN, - STATE(4003), 1, - aux_sym_parameter_list_repeat1, - [126013] = 4, + STATE(3849), 1, + aux_sym_type_parameters_repeat1, + [126065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(4843), 1, anon_sym_COMMA, - ACTIONS(7235), 1, - anon_sym_RPAREN, - STATE(4004), 1, - aux_sym_type_parameter_list_repeat1, - [126026] = 4, + ACTIONS(4845), 1, + anon_sym_COLON_EQ, + STATE(3917), 1, + aux_sym_identifier_list_repeat1, + [126078] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7237), 1, + ACTIONS(3554), 1, + anon_sym_SEMI, + ACTIONS(7244), 1, anon_sym_COMMA, - ACTIONS(7239), 1, - anon_sym_RPAREN, - STATE(4050), 1, - aux_sym_type_parameters_repeat1, - [126039] = 4, + STATE(3978), 1, + aux_sym_strictly_expression_list_repeat1, + [126091] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5320), 1, + ACTIONS(6254), 1, + anon_sym_RBRACK, + ACTIONS(7247), 1, anon_sym_COMMA, - ACTIONS(7241), 1, - anon_sym_LBRACE, - STATE(3898), 1, - aux_sym_match_expression_list_repeat1, - [126052] = 4, + STATE(3871), 1, + aux_sym_capture_list_repeat1, + [126104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7052), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7243), 1, - anon_sym_in, - STATE(3859), 1, - aux_sym_var_definition_list_repeat1, - [126065] = 4, + ACTIONS(7249), 1, + anon_sym_RPAREN, + STATE(3962), 1, + aux_sym_type_parameter_list_repeat1, + [126117] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5320), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7245), 1, - anon_sym_LBRACE, - STATE(3898), 1, - aux_sym_match_expression_list_repeat1, - [126078] = 3, + ACTIONS(7251), 1, + anon_sym_RPAREN, + STATE(3964), 1, + aux_sym_parameter_list_repeat1, + [126130] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7247), 1, - anon_sym_QMARK, - ACTIONS(5338), 2, - anon_sym_SEMI, + ACTIONS(5750), 1, + anon_sym_RPAREN, + ACTIONS(7253), 1, + anon_sym_COMMA, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [126143] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(7255), 1, anon_sym_RBRACK, - [126089] = 4, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [126156] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7249), 1, + ACTIONS(7257), 3, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LT2, + [126165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7259), 1, sym_identifier, - ACTIONS(7251), 1, + ACTIONS(7261), 1, anon_sym_LBRACE, - STATE(1223), 1, + STATE(1186), 1, sym__content_block, - [126102] = 4, + [126178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7263), 3, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_EQ, + [126187] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7253), 1, + ACTIONS(7265), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7268), 1, + sym___single_quote, + STATE(3987), 1, + aux_sym_raw_string_literal_repeat1, + [126200] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6916), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7255), 1, + ACTIONS(7270), 1, sym___double_quote, - STATE(4005), 1, + STATE(3957), 1, aux_sym_raw_string_literal_repeat2, - [126115] = 4, + [126213] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7257), 1, + ACTIONS(6912), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7259), 1, + ACTIONS(7270), 1, sym___single_quote, - STATE(3947), 1, + STATE(3987), 1, aux_sym_raw_string_literal_repeat1, - [126128] = 4, + [126226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7261), 1, - anon_sym_SEMI, - ACTIONS(7264), 1, - anon_sym_RBRACK, - STATE(3989), 1, - aux_sym_attribute_repeat1, - [126141] = 4, + ACTIONS(7272), 1, + anon_sym_COMMA, + ACTIONS(7274), 1, + anon_sym_RPAREN, + STATE(4029), 1, + aux_sym_type_parameters_repeat1, + [126239] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6912), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7276), 1, + sym___single_quote, + STATE(3987), 1, + aux_sym_raw_string_literal_repeat1, + [126252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_COMMA, + ACTIONS(7278), 1, + anon_sym_RPAREN, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [126265] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7266), 1, + ACTIONS(6916), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7269), 1, + ACTIONS(7276), 1, sym___double_quote, - STATE(3990), 1, + STATE(3957), 1, aux_sym_raw_string_literal_repeat2, - [126154] = 4, + [126278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6927), 1, + anon_sym_COMMA, + ACTIONS(7280), 1, + anon_sym_RPAREN, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [126291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(7282), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [126304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(7284), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [126317] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7259), 1, - sym___double_quote, - ACTIONS(7271), 1, + ACTIONS(7286), 1, aux_sym_raw_string_literal_token2, - STATE(3948), 1, + ACTIONS(7288), 1, + sym___double_quote, + STATE(4023), 1, aux_sym_raw_string_literal_repeat2, - [126167] = 4, + [126330] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7255), 1, + ACTIONS(7288), 1, sym___single_quote, - ACTIONS(7273), 1, + ACTIONS(7290), 1, aux_sym_raw_string_literal_token1, - STATE(4008), 1, + STATE(4024), 1, aux_sym_raw_string_literal_repeat1, - [126180] = 4, - ACTIONS(495), 1, + [126343] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7275), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7278), 1, - sym___single_quote, - STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - [126193] = 4, + ACTIONS(7292), 1, + anon_sym_COMMA, + ACTIONS(7294), 1, + anon_sym_RPAREN, + STATE(3982), 1, + aux_sym_type_parameters_repeat1, + [126356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 1, - anon_sym_LBRACE, - ACTIONS(7280), 1, + ACTIONS(5778), 1, + anon_sym_RPAREN, + ACTIONS(7296), 1, anon_sym_COMMA, - STATE(3994), 1, - aux_sym_strictly_expression_list_repeat1, - [126206] = 4, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [126369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7283), 1, + ACTIONS(7298), 1, anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [126219] = 4, + STATE(4026), 1, + aux_sym_parameter_list_repeat1, + [126382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7287), 1, + ACTIONS(7300), 1, anon_sym_RPAREN, - STATE(3863), 1, - aux_sym_type_parameters_repeat1, - [126232] = 4, + STATE(4027), 1, + aux_sym_type_parameter_list_repeat1, + [126395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7289), 1, - anon_sym_RBRACK, - STATE(4012), 1, - aux_sym_type_parameters_repeat1, - [126245] = 4, + ACTIONS(7302), 1, + anon_sym_RPAREN, + STATE(4054), 1, + aux_sym_type_parameter_list_repeat1, + [126408] = 4, ACTIONS(3), 1, - sym_comment, - ACTIONS(7291), 1, - sym_identifier, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(1831), 1, - sym__content_block, - [126258] = 4, + sym_comment, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(7304), 1, + anon_sym_RBRACK, + STATE(3983), 1, + aux_sym_type_parameters_repeat1, + [126421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4037), 1, - anon_sym_COLON_EQ, - ACTIONS(5080), 1, + ACTIONS(6751), 3, anon_sym_COMMA, - STATE(4018), 1, - aux_sym_strictly_expression_list_repeat1, - [126271] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + [126430] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3504), 1, - anon_sym_LBRACE, - ACTIONS(5212), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - STATE(3961), 1, - aux_sym_strictly_expression_list_repeat1, - [126284] = 4, + ACTIONS(7306), 1, + anon_sym_RPAREN, + STATE(3992), 1, + aux_sym_type_parameter_list_repeat1, + [126443] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(7308), 1, anon_sym_COMMA, - ACTIONS(7295), 1, + ACTIONS(7310), 1, anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [126297] = 4, + STATE(4000), 1, + aux_sym_type_parameters_repeat1, + [126456] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 1, - sym_identifier, - ACTIONS(7299), 1, + ACTIONS(7312), 3, anon_sym_LBRACE, - STATE(1731), 1, - sym__content_block, - [126310] = 4, + anon_sym_LPAREN, + anon_sym_EQ, + [126465] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7301), 1, + ACTIONS(7314), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(3995), 1, aux_sym_parameter_list_repeat1, - [126323] = 4, + [126478] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7303), 1, + ACTIONS(7316), 1, anon_sym_RPAREN, - STATE(4029), 1, + STATE(3951), 1, aux_sym_type_parameter_list_repeat1, - [126336] = 4, + [126491] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7305), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [126349] = 4, + ACTIONS(7318), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7320), 1, + sym___single_quote, + STATE(3991), 1, + aux_sym_raw_string_literal_repeat1, + [126504] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7307), 1, - anon_sym_COMMA, - ACTIONS(7309), 1, + ACTIONS(5744), 1, anon_sym_RPAREN, - STATE(3894), 1, - aux_sym_type_parameters_repeat1, - [126362] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, + ACTIONS(7322), 1, anon_sym_COMMA, - ACTIONS(6620), 1, - anon_sym_RBRACK, - STATE(3828), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [126375] = 4, + [126517] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6908), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7305), 1, - sym___single_quote, + ACTIONS(7320), 1, + sym___double_quote, + ACTIONS(7324), 1, + aux_sym_raw_string_literal_token2, STATE(3993), 1, - aux_sym_raw_string_literal_repeat1, - [126388] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7311), 1, - anon_sym_COMMA, - ACTIONS(7314), 1, - anon_sym_RBRACK, - STATE(4009), 1, - aux_sym_capture_list_repeat1, - [126401] = 4, + aux_sym_raw_string_literal_repeat2, + [126530] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5756), 1, - anon_sym_RPAREN, - ACTIONS(7316), 1, - anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [126414] = 4, + ACTIONS(7326), 1, + sym_identifier, + ACTIONS(7328), 1, + anon_sym_LBRACE, + STATE(1336), 1, + sym__content_block, + [126543] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7318), 1, + ACTIONS(7330), 1, anon_sym_RPAREN, - STATE(4020), 1, + STATE(3952), 1, aux_sym_parameter_list_repeat1, - [126427] = 4, + [126556] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(5766), 1, + anon_sym_RPAREN, + ACTIONS(7332), 1, anon_sym_COMMA, - ACTIONS(7320), 1, - anon_sym_RBRACK, - STATE(3766), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [126440] = 4, + [126569] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4011), 1, + ACTIONS(4045), 1, anon_sym_SEMI, - ACTIONS(5234), 1, + ACTIONS(5224), 1, anon_sym_COMMA, - STATE(3856), 1, + STATE(3978), 1, aux_sym_strictly_expression_list_repeat1, - [126453] = 4, + [126582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(7334), 1, anon_sym_COMMA, - ACTIONS(7322), 1, + ACTIONS(7336), 1, anon_sym_RPAREN, - STATE(4022), 1, - aux_sym_type_parameter_list_repeat1, - [126466] = 4, + STATE(4016), 1, + aux_sym_type_parameters_repeat1, + [126595] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(7228), 1, + anon_sym_SEMI, + ACTIONS(7338), 1, + anon_sym_RBRACK, + STATE(3970), 1, + aux_sym_attribute_repeat1, + [126608] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7324), 1, + ACTIONS(7340), 1, anon_sym_RBRACK, - STATE(3968), 1, + STATE(4035), 1, aux_sym_type_parameters_repeat1, - [126479] = 4, + [126621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, - anon_sym_SEMI, - ACTIONS(7326), 1, - anon_sym_RBRACK, - STATE(3989), 1, - aux_sym_attribute_repeat1, - [126492] = 2, + ACTIONS(7212), 1, + sym_identifier, + ACTIONS(7342), 1, + anon_sym_LPAREN, + STATE(1547), 1, + sym_const_definition, + [126634] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7344), 1, + sym_identifier, + ACTIONS(7346), 1, + anon_sym_LBRACE, + STATE(2423), 1, + sym__content_block, + [126647] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6916), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7348), 1, + sym___double_quote, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, + [126660] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6912), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7348), 1, + sym___single_quote, + STATE(3987), 1, + aux_sym_raw_string_literal_repeat1, + [126673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7328), 3, + ACTIONS(7212), 1, + sym_identifier, + ACTIONS(7350), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [126501] = 4, + STATE(1588), 1, + sym_const_definition, + [126686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3556), 1, - anon_sym_COLON_EQ, - ACTIONS(7330), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - STATE(4018), 1, - aux_sym_strictly_expression_list_repeat1, - [126514] = 4, + ACTIONS(7352), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [126699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7333), 1, - anon_sym_RBRACK, - STATE(4024), 1, - aux_sym_type_parameters_repeat1, - [126527] = 4, + ACTIONS(7354), 1, + anon_sym_RPAREN, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [126712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(7356), 1, anon_sym_COMMA, - ACTIONS(7335), 1, + ACTIONS(7358), 1, anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [126540] = 4, + STATE(4060), 1, + aux_sym_type_parameters_repeat1, + [126725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(5784), 1, + anon_sym_RPAREN, + ACTIONS(7360), 1, anon_sym_COMMA, - ACTIONS(7337), 1, - anon_sym_RBRACK, - STATE(3766), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [126553] = 4, + [126738] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7339), 1, + ACTIONS(7362), 1, anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [126566] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6910), 1, - sym_identifier, - ACTIONS(7341), 1, - anon_sym_LPAREN, - STATE(1552), 1, - sym_const_definition, - [126579] = 4, + STATE(4063), 1, + aux_sym_parameter_list_repeat1, + [126751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7343), 1, + ACTIONS(7364), 1, anon_sym_RBRACK, - STATE(3766), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [126592] = 4, + [126764] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7347), 1, + ACTIONS(7366), 1, anon_sym_RPAREN, - STATE(4053), 1, - aux_sym_type_parameters_repeat1, - [126605] = 2, + STATE(4062), 1, + aux_sym_type_parameter_list_repeat1, + [126777] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6695), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [126614] = 2, + ACTIONS(7368), 1, + sym_identifier, + ACTIONS(7370), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym__struct_body, + [126790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7349), 3, + ACTIONS(7372), 3, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_EQ, - [126623] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7351), 1, - sym_identifier, - ACTIONS(7353), 1, - anon_sym_LBRACE, - STATE(2133), 1, - sym__content_block, - [126636] = 4, + [126799] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7355), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7358), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [126649] = 4, + ACTIONS(7374), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [126812] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6912), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7376), 1, + sym___single_quote, + STATE(3987), 1, + aux_sym_raw_string_literal_repeat1, + [126825] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6916), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7376), 1, + sym___double_quote, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, + [126838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(7360), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [126662] = 2, + ACTIONS(7380), 1, + anon_sym_COLON, + ACTIONS(7378), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [126849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6820), 3, + ACTIONS(6927), 1, anon_sym_COMMA, + ACTIONS(7382), 1, anon_sym_RPAREN, - anon_sym_RBRACK, - [126671] = 4, + STATE(3837), 1, + aux_sym_type_parameter_list_repeat1, + [126862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7362), 1, + ACTIONS(7384), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(3847), 1, aux_sym_parameter_list_repeat1, - [126684] = 4, + [126875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5734), 1, - anon_sym_RPAREN, - ACTIONS(7364), 1, + ACTIONS(7386), 1, anon_sym_COMMA, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [126697] = 4, + ACTIONS(7389), 1, + anon_sym_PIPE, + STATE(4041), 1, + aux_sym_short_lambda_repeat1, + [126888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7366), 1, - sym_identifier, - ACTIONS(7368), 1, - anon_sym_LBRACE, - STATE(2907), 1, - sym__content_block, - [126710] = 4, + ACTIONS(7391), 1, + anon_sym_DOT, + ACTIONS(7393), 1, + anon_sym_RBRACE, + ACTIONS(7395), 1, + aux_sym_format_specifier_token1, + [126901] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7370), 1, + ACTIONS(7397), 1, aux_sym_raw_string_literal_token2, - ACTIONS(7372), 1, + ACTIONS(7399), 1, sym___double_quote, - STATE(4054), 1, + STATE(4070), 1, aux_sym_raw_string_literal_repeat2, - [126723] = 4, + [126914] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, + anon_sym_COMMA, + ACTIONS(7401), 1, + anon_sym_RBRACK, + STATE(4031), 1, + aux_sym_type_parameters_repeat1, + [126927] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7403), 1, + aux_sym_raw_string_literal_token1, + ACTIONS(7405), 1, + sym___single_quote, + STATE(4036), 1, + aux_sym_raw_string_literal_repeat1, + [126940] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(7372), 1, + ACTIONS(7399), 1, sym___single_quote, - ACTIONS(7374), 1, + ACTIONS(7407), 1, aux_sym_raw_string_literal_token1, - STATE(4055), 1, + STATE(4069), 1, aux_sym_raw_string_literal_repeat1, - [126736] = 4, + [126953] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7405), 1, + sym___double_quote, + ACTIONS(7409), 1, + aux_sym_raw_string_literal_token2, + STATE(4037), 1, + aux_sym_raw_string_literal_repeat2, + [126966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(7411), 1, + sym_identifier, + ACTIONS(7413), 1, + anon_sym_LBRACE, + STATE(2912), 1, + sym__content_block, + [126979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7212), 1, + sym_identifier, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(1584), 1, + sym_const_definition, + [126992] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7376), 1, + ACTIONS(7417), 1, anon_sym_RBRACK, - STATE(4021), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [126749] = 4, + [127005] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7378), 1, - anon_sym_COMMA, - ACTIONS(7381), 1, - anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [126762] = 4, + ACTIONS(7419), 1, + sym_identifier, + ACTIONS(7421), 1, + anon_sym_LBRACE, + STATE(2020), 1, + sym__content_block, + [127018] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(5478), 1, + anon_sym_LBRACE, + ACTIONS(7423), 1, anon_sym_COMMA, - ACTIONS(7383), 1, - anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [126775] = 4, + STATE(4052), 1, + aux_sym_match_expression_list_repeat1, + [127031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + STATE(3894), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(7426), 2, anon_sym_COMMA, - ACTIONS(7385), 1, anon_sym_RPAREN, - STATE(4001), 1, - aux_sym_parameter_list_repeat1, - [126788] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6156), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [126797] = 4, + [127042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7387), 1, + ACTIONS(7428), 1, anon_sym_RPAREN, - STATE(4029), 1, + STATE(3837), 1, aux_sym_type_parameter_list_repeat1, - [126810] = 4, + [127055] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7389), 1, - anon_sym_RBRACK, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [126823] = 4, + ACTIONS(7430), 1, + anon_sym_RPAREN, + STATE(3847), 1, + aux_sym_parameter_list_repeat1, + [127068] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7391), 1, + ACTIONS(7432), 1, anon_sym_COMMA, - ACTIONS(7393), 1, + ACTIONS(7434), 1, anon_sym_RPAREN, - STATE(3835), 1, + STATE(4012), 1, aux_sym_type_parameters_repeat1, - [126836] = 4, + [127081] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7395), 1, + ACTIONS(7436), 1, anon_sym_RPAREN, - STATE(4029), 1, + STATE(4039), 1, aux_sym_type_parameter_list_repeat1, - [126849] = 4, + [127094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7397), 1, + ACTIONS(7438), 1, + anon_sym_RBRACK, + STATE(3710), 1, + aux_sym_type_parameters_repeat1, + [127107] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6931), 1, + anon_sym_COMMA, + ACTIONS(7440), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(4040), 1, aux_sym_parameter_list_repeat1, - [126862] = 4, + [127120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, + ACTIONS(5774), 1, + anon_sym_RPAREN, + ACTIONS(7442), 1, anon_sym_COMMA, - ACTIONS(7399), 1, - anon_sym_RBRACK, - STATE(4043), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [126875] = 4, + [127133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3512), 1, + anon_sym_SEMI, + ACTIONS(5224), 1, + anon_sym_COMMA, + STATE(4017), 1, + aux_sym_strictly_expression_list_repeat1, + [127146] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(6927), 1, anon_sym_COMMA, - ACTIONS(7401), 1, + ACTIONS(7444), 1, anon_sym_RPAREN, - STATE(4045), 1, + STATE(3837), 1, aux_sym_type_parameter_list_repeat1, - [126888] = 4, + [127159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7403), 1, + ACTIONS(7446), 1, anon_sym_RPAREN, - STATE(4046), 1, + STATE(3847), 1, aux_sym_parameter_list_repeat1, - [126901] = 4, + [127172] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5750), 1, - anon_sym_RPAREN, - ACTIONS(7405), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - STATE(3766), 1, + ACTIONS(7448), 1, + anon_sym_RBRACK, + STATE(4058), 1, aux_sym_type_parameters_repeat1, - [126914] = 4, + [127185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - ACTIONS(7407), 1, - anon_sym_RPAREN, - STATE(4061), 1, - aux_sym_parameter_list_repeat1, - [126927] = 4, + ACTIONS(7450), 1, + anon_sym_RBRACK, + STATE(4050), 1, + aux_sym_type_parameters_repeat1, + [127198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, + ACTIONS(4056), 1, + anon_sym_SEMI, + ACTIONS(5224), 1, anon_sym_COMMA, - ACTIONS(7409), 1, - anon_sym_RPAREN, - STATE(4062), 1, - aux_sym_type_parameter_list_repeat1, - [126940] = 4, + STATE(3978), 1, + aux_sym_strictly_expression_list_repeat1, + [127211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5732), 1, - anon_sym_RPAREN, - ACTIONS(7411), 1, + ACTIONS(6627), 1, anon_sym_COMMA, - STATE(3766), 1, + ACTIONS(6629), 1, + anon_sym_RBRACK, + STATE(3898), 1, aux_sym_type_parameters_repeat1, - [126953] = 4, - ACTIONS(495), 1, + [127224] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6896), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7413), 1, - sym___double_quote, - STATE(3990), 1, - aux_sym_raw_string_literal_repeat2, - [126966] = 4, + ACTIONS(3512), 1, + anon_sym_COLON_EQ, + ACTIONS(5082), 1, + anon_sym_COMMA, + STATE(3896), 1, + aux_sym_strictly_expression_list_repeat1, + [127237] = 4, ACTIONS(495), 1, sym_comment, - ACTIONS(6908), 1, + ACTIONS(6912), 1, aux_sym_raw_string_literal_token1, - ACTIONS(7413), 1, + ACTIONS(7452), 1, sym___single_quote, - STATE(3993), 1, + STATE(3987), 1, aux_sym_raw_string_literal_repeat1, - [126979] = 2, + [127250] = 4, + ACTIONS(495), 1, + sym_comment, + ACTIONS(6916), 1, + aux_sym_raw_string_literal_token2, + ACTIONS(7452), 1, + sym___double_quote, + STATE(3957), 1, + aux_sym_raw_string_literal_repeat2, + [127263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7415), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [126988] = 2, + ACTIONS(7454), 1, + sym_identifier, + ACTIONS(7456), 1, + anon_sym_PIPE, + STATE(3905), 1, + sym_reference_expression, + [127276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7417), 3, + ACTIONS(7458), 3, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LT2, - [126997] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(7419), 1, - anon_sym_RBRACK, - STATE(3766), 1, - aux_sym_type_parameters_repeat1, - [127010] = 4, + [127285] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, + ACTIONS(5764), 1, anon_sym_RPAREN, - ACTIONS(7421), 1, + ACTIONS(7460), 1, anon_sym_COMMA, - STATE(3766), 1, + STATE(3710), 1, aux_sym_type_parameters_repeat1, - [127023] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6232), 1, - anon_sym_RBRACK, - ACTIONS(7423), 1, - anon_sym_COMMA, - STATE(4009), 1, - aux_sym_capture_list_repeat1, - [127036] = 4, + [127298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, + ACTIONS(6931), 1, anon_sym_COMMA, - ACTIONS(7425), 1, + ACTIONS(7462), 1, anon_sym_RPAREN, - STATE(4038), 1, + STATE(4055), 1, aux_sym_parameter_list_repeat1, - [127049] = 4, + [127311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6900), 1, - anon_sym_COMMA, - ACTIONS(7427), 1, - anon_sym_RPAREN, - STATE(4029), 1, - aux_sym_type_parameter_list_repeat1, - [127062] = 4, + ACTIONS(5134), 1, + anon_sym_LBRACE, + STATE(2618), 1, + sym_block, + [127321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6618), 1, - anon_sym_COMMA, - ACTIONS(7429), 1, - anon_sym_RBRACK, - STATE(4058), 1, - aux_sym_type_parameters_repeat1, - [127075] = 4, + ACTIONS(5120), 1, + anon_sym_LBRACE, + STATE(1113), 1, + sym_block, + [127331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6930), 1, - anon_sym_COMMA, - ACTIONS(7431), 1, - anon_sym_RPAREN, - STATE(4032), 1, - aux_sym_parameter_list_repeat1, - [127088] = 3, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(2447), 1, + sym_block, + [127341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(1987), 1, - sym__content_block, - [127098] = 3, + STATE(2763), 1, + sym_block, + [127351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7433), 1, - sym_identifier, - STATE(1174), 1, - sym_type_reference_expression, - [127108] = 3, + ACTIONS(4214), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [127359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2401), 1, + STATE(379), 1, sym_block, - [127118] = 3, + [127369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6996), 1, + ACTIONS(7346), 1, anon_sym_LBRACE, - STATE(2400), 1, + STATE(2444), 1, sym__content_block, - [127128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7435), 1, - anon_sym_COMMA, - ACTIONS(7437), 1, - anon_sym_RPAREN, - [127138] = 3, + [127379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(3814), 1, + STATE(2416), 1, sym_block, - [127148] = 3, + [127389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, - anon_sym_LBRACE, - STATE(2389), 1, - sym_block, - [127158] = 3, + ACTIONS(7464), 1, + sym_identifier, + STATE(2267), 1, + sym_type_reference_expression, + [127399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4996), 1, + ACTIONS(5004), 1, anon_sym_LPAREN, - STATE(2384), 1, + STATE(2409), 1, sym_argument_list, - [127168] = 3, + [127409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6662), 1, + ACTIONS(7466), 1, sym_identifier, - STATE(964), 1, - sym_reference_expression, - [127178] = 3, + STATE(3375), 1, + sym_type_reference_expression, + [127419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - sym_identifier, - STATE(2199), 1, - sym_reference_expression, - [127188] = 3, + ACTIONS(7421), 1, + anon_sym_LBRACE, + STATE(2150), 1, + sym__content_block, + [127429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(2118), 1, + STATE(2142), 1, sym_block, - [127198] = 3, + [127439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(2117), 1, + STATE(1871), 1, sym_block, - [127208] = 3, + [127449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - sym_identifier, - STATE(3390), 1, - sym_type_reference_expression, - [127218] = 3, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(2350), 1, + sym_block, + [127459] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7468), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym__struct_body, + [127469] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(2182), 1, + STATE(2349), 1, sym_block, - [127228] = 3, + [127479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7441), 1, + ACTIONS(7470), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(2189), 1, sym__struct_body, - [127238] = 3, + [127489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7472), 1, anon_sym_LBRACE, - STATE(3821), 1, - sym__content_block, - [127248] = 3, + STATE(2346), 1, + sym__struct_body, + [127499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, - anon_sym_LBRACE, - STATE(739), 1, - sym_block, - [127258] = 3, + ACTIONS(6844), 1, + sym_identifier, + STATE(828), 1, + sym_reference_expression, + [127509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(1778), 1, + STATE(893), 1, sym_block, - [127268] = 3, + [127519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7443), 1, - sym_identifier, - STATE(2602), 1, - sym_type_reference_expression, - [127278] = 2, + ACTIONS(7474), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym__struct_body, + [127529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 2, + ACTIONS(7476), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [127286] = 3, + ACTIONS(7478), 1, + anon_sym_RPAREN, + [127539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4761), 1, - anon_sym_LPAREN, - STATE(2110), 1, - sym_argument_list, - [127296] = 3, + ACTIONS(7480), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym__struct_body, + [127549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7447), 1, - anon_sym_LPAREN, - STATE(1728), 1, - sym_special_argument_list, - [127306] = 3, + ACTIONS(3179), 1, + anon_sym_LBRACE, + STATE(920), 1, + sym_type_initializer_body, + [127559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(7238), 1, anon_sym_LBRACE, - STATE(2105), 1, - sym_block, - [127316] = 3, + STATE(2843), 1, + sym_type_initializer_body, + [127569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7449), 1, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [127326] = 3, + STATE(2015), 1, + sym_block, + [127579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, + ACTIONS(7482), 1, anon_sym_LBRACE, - STATE(2233), 1, + STATE(1351), 1, sym_type_initializer_body, - [127336] = 3, + [127589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, + ACTIONS(4210), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1573), 1, - sym__struct_body, - [127346] = 3, + [127597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7453), 1, + ACTIONS(7484), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(2346), 1, sym__struct_body, - [127356] = 3, + [127607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(7486), 1, anon_sym_LBRACE, - STATE(2700), 1, + STATE(2346), 1, sym__struct_body, - [127366] = 3, + [127617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7457), 1, + ACTIONS(1763), 1, + anon_sym_RBRACE, + STATE(3755), 1, + sym___rcbr, + [127627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7488), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(2346), 1, sym__struct_body, - [127376] = 2, + [127637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7459), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [127384] = 3, + ACTIONS(7490), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym__struct_body, + [127647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, + ACTIONS(7492), 1, anon_sym_LBRACE, - STATE(1577), 1, - sym__interface_body, - [127394] = 3, + STATE(2346), 1, + sym__struct_body, + [127657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7461), 1, - anon_sym_LPAREN, - STATE(818), 1, - sym_special_argument_list, - [127404] = 3, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(2380), 1, + sym_block, + [127667] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7463), 1, - sym_identifier, - STATE(2731), 1, - sym_type_reference_expression, - [127414] = 3, + ACTIONS(7494), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [127675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7368), 1, + ACTIONS(7496), 1, anon_sym_LBRACE, - STATE(2885), 1, - sym__content_block, - [127424] = 3, + STATE(2346), 1, + sym__struct_body, + [127685] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2891), 1, + STATE(2673), 1, sym_block, - [127434] = 3, + [127695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7370), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(2346), 1, sym__struct_body, - [127444] = 3, + [127705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(7498), 1, anon_sym_LBRACE, - STATE(768), 1, - sym_block, - [127454] = 3, + STATE(2712), 1, + sym__struct_body, + [127715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7467), 1, - anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [127464] = 3, + ACTIONS(4908), 1, + anon_sym_COLON, + ACTIONS(7500), 1, + anon_sym_mut, + [127725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5124), 1, anon_sym_LBRACE, - STATE(2376), 1, + STATE(2422), 1, sym_block, - [127474] = 3, + [127735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(6794), 1, + sym_identifier, + STATE(1380), 1, + sym_reference_expression, + [127745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7502), 1, + anon_sym_LPAREN, + STATE(2397), 1, + sym_special_argument_list, + [127755] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 1, + sym_identifier, + STATE(2742), 1, + sym_type_reference_expression, + [127765] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6996), 1, anon_sym_LBRACE, - STATE(2373), 1, + STATE(943), 1, + sym__content_block, + [127775] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6735), 1, + sym_identifier, + STATE(2340), 1, + sym_reference_expression, + [127785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7506), 1, + anon_sym_LPAREN, + STATE(1329), 1, + sym_special_argument_list, + [127795] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5120), 1, + anon_sym_LBRACE, + STATE(1065), 1, sym_block, - [127484] = 2, + [127805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4210), 2, - anon_sym_SEMI, + ACTIONS(7508), 1, + anon_sym_COMMA, + ACTIONS(7510), 1, + anon_sym_RPAREN, + [127815] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6625), 1, anon_sym_LBRACE, - [127492] = 3, + STATE(2442), 1, + sym_type_initializer_body, + [127825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7469), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [127502] = 3, + STATE(557), 1, + sym_block, + [127835] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2832), 1, + STATE(556), 1, sym_block, - [127512] = 3, + [127845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2111), 1, - sym_type_initializer_body, - [127522] = 3, + STATE(2751), 1, + sym_block, + [127855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7471), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [127532] = 3, + STATE(2754), 1, + sym_block, + [127865] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6746), 2, + anon_sym_RPAREN, + sym_identifier, + [127873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 1, + ACTIONS(7512), 1, sym_identifier, - STATE(2256), 1, + STATE(1887), 1, sym_type_reference_expression, - [127542] = 3, + [127883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4751), 1, + ACTIONS(5152), 1, + anon_sym_LPAREN, + STATE(2759), 1, + sym_argument_list, + [127893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(1567), 1, + STATE(2766), 1, sym_block, - [127552] = 2, + [127903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7381), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [127560] = 2, + ACTIONS(5080), 1, + anon_sym_LBRACE, + STATE(1359), 1, + sym_block, + [127913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4206), 2, - anon_sym_SEMI, + ACTIONS(7191), 1, + anon_sym_LBRACE, + STATE(2760), 1, + sym__content_block, + [127923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5140), 1, anon_sym_LBRACE, - [127568] = 3, + STATE(2745), 1, + sym_block, + [127933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(2111), 1, + STATE(1351), 1, sym_type_initializer_body, - [127578] = 3, + [127943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(4976), 1, sym_identifier, - STATE(1565), 1, - sym_label_reference, - [127588] = 3, + ACTIONS(7514), 1, + anon_sym_volatile, + [127953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(7516), 1, anon_sym_LBRACE, - STATE(1964), 1, + STATE(2165), 1, sym_block, - [127598] = 3, + [127963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7479), 1, + ACTIONS(5140), 1, anon_sym_LBRACE, - STATE(2520), 1, - sym__struct_body, - [127608] = 3, + STATE(2621), 1, + sym_block, + [127973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(7518), 1, anon_sym_LBRACE, - STATE(2111), 1, - sym_type_initializer_body, - [127618] = 3, + STATE(1681), 1, + sym__struct_body, + [127983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, - anon_sym_COMMA, - ACTIONS(7481), 1, - anon_sym_RPAREN, - [127628] = 2, + ACTIONS(1707), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + [127991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 2, - anon_sym_COMMA, + ACTIONS(6758), 2, anon_sym_RPAREN, - [127636] = 3, + sym_identifier, + [127999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, + ACTIONS(7520), 1, anon_sym_LBRACE, - STATE(2448), 1, + STATE(1926), 1, sym__struct_body, - [127646] = 3, + [128009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(7482), 1, anon_sym_LBRACE, - STATE(2074), 1, - sym_block, - [127656] = 3, + STATE(1351), 1, + sym_type_initializer_body, + [128019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(7522), 1, anon_sym_LBRACE, - STATE(1824), 1, - sym_block, - [127666] = 2, + STATE(2071), 1, + sym_type_initializer_body, + [128029] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7487), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [127674] = 3, + ACTIONS(6806), 1, + sym_identifier, + STATE(2193), 1, + sym_reference_expression, + [128039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7489), 1, + ACTIONS(7524), 2, anon_sym_COMMA, - ACTIONS(7491), 1, anon_sym_RPAREN, - [127684] = 3, + [128047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7493), 1, - anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [127694] = 2, + ACTIONS(7526), 1, + anon_sym_LPAREN, + STATE(2833), 1, + sym_special_argument_list, + [128057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7358), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [127702] = 3, + ACTIONS(6904), 1, + sym_identifier, + STATE(2845), 1, + sym_reference_expression, + [128067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7495), 1, + ACTIONS(7528), 1, anon_sym_LBRACE, - STATE(2900), 1, + STATE(920), 1, sym_type_initializer_body, - [127712] = 3, + [128077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6928), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [127722] = 2, + STATE(1351), 1, + sym_type_initializer_body, + [128087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6660), 2, + ACTIONS(7530), 2, + anon_sym_COMMA, anon_sym_RPAREN, - sym_identifier, - [127730] = 3, + [128095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3394), 1, + anon_sym_COMMA, + ACTIONS(7532), 1, + anon_sym_RPAREN, + [128105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - STATE(2203), 1, - sym__struct_body, - [127740] = 3, + STATE(1288), 1, + sym_block, + [128115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1795), 1, - anon_sym_RBRACE, - STATE(3807), 1, - sym___rcbr, - [127750] = 3, + ACTIONS(5080), 1, + anon_sym_LBRACE, + STATE(1374), 1, + sym_block, + [128125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(3812), 1, + STATE(2188), 1, sym_block, - [127760] = 3, + [128135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 1, + ACTIONS(7328), 1, anon_sym_LBRACE, - STATE(2904), 1, + STATE(1376), 1, + sym__content_block, + [128145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, + anon_sym_LBRACE, + STATE(1389), 1, + sym_block, + [128155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(2314), 1, sym_block, - [127770] = 3, + [128165] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7499), 1, + ACTIONS(7534), 2, anon_sym_COMMA, - ACTIONS(7501), 1, anon_sym_RPAREN, - [127780] = 2, + [128173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6856), 2, - anon_sym_RPAREN, + ACTIONS(7536), 1, sym_identifier, - [127788] = 3, + STATE(915), 1, + sym_type_reference_expression, + [128183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2238), 1, - sym_block, - [127798] = 3, + ACTIONS(4882), 2, + anon_sym_COMMA, + anon_sym_in, + [128191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, - anon_sym_LBRACE, - STATE(2233), 1, - sym_type_initializer_body, - [127808] = 3, + ACTIONS(6735), 1, + sym_identifier, + STATE(4169), 1, + sym_reference_expression, + [128201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(7538), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [128209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5080), 1, anon_sym_LBRACE, - STATE(2341), 1, + STATE(1401), 1, sym_block, - [127818] = 3, + [128219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7503), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - STATE(667), 1, - sym_type_initializer_body, - [127828] = 3, + STATE(1402), 1, + sym_block, + [128229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7505), 1, - anon_sym_LPAREN, - STATE(2037), 1, - sym_special_argument_list, - [127838] = 3, + ACTIONS(7540), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [128237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7507), 1, + ACTIONS(4709), 1, anon_sym_LBRACE, - STATE(2120), 1, - sym__struct_body, - [127848] = 2, + STATE(1568), 1, + sym_block, + [128247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7509), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [127856] = 2, + ACTIONS(5124), 1, + anon_sym_LBRACE, + STATE(4583), 1, + sym_block, + [128257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 2, + ACTIONS(7542), 1, anon_sym_COMMA, + ACTIONS(7544), 1, anon_sym_RPAREN, - [127864] = 3, + [128267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3423), 1, + ACTIONS(7546), 1, anon_sym_COMMA, - ACTIONS(7513), 1, + ACTIONS(7548), 1, anon_sym_RPAREN, - [127874] = 3, + [128277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7183), 1, + ACTIONS(7550), 1, anon_sym_LBRACE, - STATE(2752), 1, - sym_type_initializer_body, - [127884] = 3, + STATE(2346), 1, + sym__struct_body, + [128287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2144), 1, + STATE(741), 1, sym_block, - [127894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6876), 1, - sym_identifier, - STATE(2024), 1, - sym_reference_expression, - [127904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6892), 1, - sym_identifier, - STATE(1344), 1, - sym_reference_expression, - [127914] = 3, + [128297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - STATE(2140), 1, + STATE(1378), 1, sym_block, - [127924] = 3, + [128307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7515), 1, - anon_sym_LPAREN, - STATE(1359), 1, - sym_special_argument_list, - [127934] = 3, + ACTIONS(5122), 1, + anon_sym_LBRACE, + STATE(2221), 1, + sym_block, + [128317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1077), 1, + STATE(2223), 1, sym_block, - [127944] = 3, + [128327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(1759), 1, - sym__content_block, - [127954] = 3, + ACTIONS(7552), 1, + sym_identifier, + STATE(1974), 1, + sym_type_reference_expression, + [128337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7451), 1, - anon_sym_LBRACE, - STATE(2233), 1, - sym_type_initializer_body, - [127964] = 3, + ACTIONS(7554), 1, + anon_sym_LPAREN, + STATE(2235), 1, + sym_argument_list, + [128347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7517), 1, - anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [127974] = 3, + ACTIONS(6727), 1, + sym_identifier, + STATE(1085), 1, + sym_reference_expression, + [128357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7519), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1338), 1, - sym_type_initializer_body, - [127984] = 3, + STATE(2242), 1, + sym_block, + [128367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, - anon_sym_LBRACE, - STATE(2416), 1, - sym_type_initializer_body, - [127994] = 3, + ACTIONS(7426), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [128375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(6968), 1, anon_sym_LBRACE, - STATE(2233), 1, - sym_type_initializer_body, - [128004] = 3, + STATE(2257), 1, + sym__content_block, + [128385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1346), 1, + STATE(2259), 1, sym_block, - [128014] = 3, + [128395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, - anon_sym_LBRACE, - STATE(1338), 1, - sym_type_initializer_body, - [128024] = 3, + ACTIONS(7556), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [128403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7521), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(1686), 1, - sym__struct_body, - [128034] = 3, + STATE(2164), 1, + sym_block, + [128413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7519), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(1338), 1, + STATE(2280), 1, sym_type_initializer_body, - [128044] = 3, + [128423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(7558), 1, anon_sym_LBRACE, - STATE(1219), 1, - sym_block, - [128054] = 3, + STATE(2280), 1, + sym_type_initializer_body, + [128433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, - anon_sym_LBRACE, - STATE(1338), 1, - sym_type_initializer_body, - [128064] = 3, + ACTIONS(7166), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [128441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(4709), 1, anon_sym_LBRACE, - STATE(1288), 1, + STATE(1543), 1, sym_block, - [128074] = 3, + [128451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(7560), 1, anon_sym_LBRACE, - STATE(1363), 1, - sym_block, - [128084] = 3, + STATE(1985), 1, + sym__struct_body, + [128461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6966), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(1365), 1, - sym__content_block, - [128094] = 3, + STATE(2280), 1, + sym_type_initializer_body, + [128471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2160), 1, + STATE(2265), 1, sym_block, - [128104] = 3, + [128481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(7562), 1, anon_sym_LBRACE, - STATE(1758), 1, - sym_block, - [128114] = 3, + STATE(1540), 1, + sym__content_block, + [128491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(6705), 1, anon_sym_LBRACE, - STATE(2291), 1, - sym_block, - [128124] = 3, + STATE(1532), 1, + sym__enum_body, + [128501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, - sym_identifier, - STATE(1726), 1, - sym_reference_expression, - [128134] = 3, + ACTIONS(7564), 1, + anon_sym_LBRACE, + STATE(2346), 1, + sym__struct_body, + [128511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(1378), 1, - sym_block, - [128144] = 3, + STATE(920), 1, + sym_type_initializer_body, + [128521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(7566), 1, anon_sym_LPAREN, - STATE(1383), 1, - sym_argument_list, - [128154] = 3, + STATE(1071), 1, + sym_special_argument_list, + [128531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7523), 1, + ACTIONS(7454), 1, sym_identifier, - STATE(1439), 1, - sym_type_reference_expression, - [128164] = 3, + STATE(3908), 1, + sym_reference_expression, + [128541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7525), 1, - sym_identifier, - STATE(552), 1, - sym_type_reference_expression, - [128174] = 2, + ACTIONS(7568), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [128549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6988), 2, - anon_sym_COMMA, - anon_sym_in, - [128182] = 3, + ACTIONS(7558), 1, + anon_sym_LBRACE, + STATE(2280), 1, + sym_type_initializer_body, + [128559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6920), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - STATE(2290), 1, - sym__content_block, - [128192] = 3, + STATE(2225), 1, + sym_block, + [128569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7527), 1, + ACTIONS(7570), 1, anon_sym_LPAREN, - STATE(1774), 1, - sym_argument_list, - [128202] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7314), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [128210] = 3, + STATE(2211), 1, + sym_special_argument_list, + [128579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 1, - sym_identifier, - STATE(3765), 1, - sym_generic_parameter, - [128220] = 3, + ACTIONS(3865), 1, + anon_sym_LPAREN, + STATE(1394), 1, + sym_argument_list, + [128589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(7516), 1, anon_sym_LBRACE, - STATE(1776), 1, + STATE(2172), 1, sym_block, - [128230] = 3, + [128599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7529), 1, - anon_sym_COMMA, - ACTIONS(7531), 1, - anon_sym_RPAREN, - [128240] = 3, + ACTIONS(3960), 2, + anon_sym_SEMI, + anon_sym_RBRACK, + [128607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(7516), 1, anon_sym_LBRACE, - STATE(1149), 1, + STATE(2173), 1, sym_block, - [128250] = 3, + [128617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2312), 1, + STATE(540), 1, sym_block, - [128260] = 3, + [128627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(7572), 1, anon_sym_LBRACE, - STATE(1189), 1, - sym_block, - [128270] = 3, + STATE(1025), 1, + sym_type_initializer_body, + [128637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(1188), 1, + STATE(1034), 1, sym_block, - [128280] = 3, + [128647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1872), 1, + STATE(1915), 1, sym_block, - [128290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6765), 1, - sym_identifier, - STATE(1841), 1, - sym_reference_expression, - [128300] = 2, + [128657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7533), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128308] = 3, + ACTIONS(3203), 1, + anon_sym_LBRACE, + STATE(1025), 1, + sym_type_initializer_body, + [128667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7535), 1, + ACTIONS(7574), 1, anon_sym_LBRACE, - STATE(848), 1, + STATE(3421), 1, sym__struct_body, - [128318] = 3, + [128677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7537), 1, - sym_identifier, - STATE(2030), 1, - sym_type_reference_expression, - [128328] = 3, + ACTIONS(4787), 1, + anon_sym_LPAREN, + STATE(2121), 1, + sym_argument_list, + [128687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(7572), 1, anon_sym_LBRACE, - STATE(1390), 1, - sym_block, - [128338] = 3, + STATE(1025), 1, + sym_type_initializer_body, + [128697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7539), 1, - anon_sym_LPAREN, - STATE(1172), 1, - sym_argument_list, - [128348] = 3, + ACTIONS(3179), 1, + anon_sym_LBRACE, + STATE(1025), 1, + sym_type_initializer_body, + [128707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, - anon_sym_LBRACE, - STATE(1168), 1, - sym_block, - [128358] = 3, + ACTIONS(6802), 1, + sym_identifier, + STATE(3720), 1, + sym_generic_parameter, + [128717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1391), 1, + STATE(1741), 1, sym_block, - [128368] = 3, + [128727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7541), 1, + ACTIONS(7092), 2, anon_sym_COMMA, - ACTIONS(7543), 1, - anon_sym_RPAREN, - [128378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7545), 1, - anon_sym_LPAREN, - STATE(1836), 1, - sym_special_argument_list, - [128388] = 3, + anon_sym_in, + [128735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(595), 1, + STATE(994), 1, sym_block, - [128398] = 3, + [128745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7547), 1, - anon_sym_LPAREN, - STATE(2452), 1, - sym_special_argument_list, - [128408] = 3, + ACTIONS(7576), 1, + anon_sym_COMMA, + ACTIONS(7578), 1, + anon_sym_RPAREN, + [128755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(2451), 1, + STATE(1045), 1, sym_block, - [128418] = 3, + [128765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7251), 1, + ACTIONS(7157), 1, anon_sym_LBRACE, - STATE(1235), 1, + STATE(1047), 1, sym__content_block, - [128428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5134), 1, - anon_sym_LBRACE, - STATE(1236), 1, - sym_block, - [128438] = 3, + [128775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7549), 1, - anon_sym_LPAREN, - STATE(2197), 1, - sym_special_argument_list, - [128448] = 3, + ACTIONS(1837), 1, + anon_sym_RBRACE, + STATE(3746), 1, + sym___rcbr, + [128785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(667), 1, - sym_type_initializer_body, - [128458] = 3, + STATE(1092), 1, + sym_block, + [128795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7551), 1, - anon_sym_LPAREN, - STATE(2278), 1, - sym_argument_list, - [128468] = 3, + ACTIONS(5148), 1, + anon_sym_LBRACE, + STATE(1869), 1, + sym_block, + [128805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1415), 1, + STATE(1866), 1, sym_block, - [128478] = 3, + [128815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7553), 1, + ACTIONS(7580), 1, sym_identifier, - STATE(1980), 1, + STATE(1241), 1, sym_type_reference_expression, - [128488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_LBRACE, - STATE(1217), 1, - sym_type_initializer_body, - [128498] = 3, + [128825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, - anon_sym_LBRACE, - STATE(2801), 1, - sym_block, - [128508] = 3, + ACTIONS(7582), 1, + anon_sym_LPAREN, + STATE(1104), 1, + sym_argument_list, + [128835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7555), 1, - anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [128518] = 3, + ACTIONS(7584), 1, + anon_sym_LPAREN, + STATE(1831), 1, + sym_argument_list, + [128845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1217), 1, - sym_type_initializer_body, - [128528] = 3, + STATE(1826), 1, + sym_block, + [128855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6785), 1, + ACTIONS(7586), 1, sym_identifier, - STATE(2435), 1, - sym_reference_expression, - [128538] = 3, + STATE(1764), 1, + sym_type_reference_expression, + [128865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7559), 1, + ACTIONS(7135), 1, anon_sym_LBRACE, - STATE(2065), 1, - sym__struct_body, - [128548] = 3, + STATE(1814), 1, + sym__content_block, + [128875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(1653), 1, + STATE(1112), 1, sym_block, - [128558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6824), 1, - sym_identifier, - STATE(1094), 1, - sym_reference_expression, - [128568] = 3, + [128885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7503), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(667), 1, - sym_type_initializer_body, - [128578] = 3, + STATE(1824), 1, + sym_block, + [128895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(1217), 1, - sym_type_initializer_body, - [128588] = 3, + STATE(1601), 1, + sym__struct_body, + [128905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_RBRACE, - ACTIONS(7563), 1, - aux_sym_format_specifier_token1, - [128598] = 3, + ACTIONS(6705), 1, + anon_sym_LBRACE, + STATE(1605), 1, + sym__enum_body, + [128915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(1277), 1, + STATE(1737), 1, sym_block, - [128608] = 3, + [128925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(6637), 1, anon_sym_LBRACE, - STATE(1832), 1, - sym_block, - [128618] = 3, + STATE(1511), 1, + sym__interface_body, + [128935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(1840), 1, sym_type_initializer_body, - [128628] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6839), 2, - anon_sym_RBRACE, - sym_identifier, - [128636] = 2, + [128945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7565), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128644] = 3, + ACTIONS(7588), 1, + anon_sym_LBRACE, + STATE(1840), 1, + sym_type_initializer_body, + [128955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(7590), 1, anon_sym_LBRACE, - STATE(3656), 1, - sym_block, - [128654] = 3, + STATE(1201), 1, + sym__struct_body, + [128965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(667), 1, + STATE(1840), 1, sym_type_initializer_body, - [128664] = 3, + [128975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(2275), 1, + STATE(1832), 1, sym_block, - [128674] = 3, + [128985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7567), 1, - sym_identifier, - STATE(3742), 1, - sym_label_reference, - [128684] = 3, + ACTIONS(7592), 1, + anon_sym_COMMA, + ACTIONS(7594), 1, + anon_sym_RPAREN, + [128995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, + ACTIONS(7588), 1, anon_sym_LBRACE, - STATE(1217), 1, + STATE(1840), 1, sym_type_initializer_body, - [128694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7569), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [128702] = 3, + [129005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(5148), 1, anon_sym_LBRACE, - STATE(385), 1, + STATE(1853), 1, sym_block, - [128712] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7264), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128720] = 3, + [129015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7571), 1, + ACTIONS(7596), 1, anon_sym_LPAREN, - STATE(1083), 1, + STATE(1857), 1, sym_special_argument_list, - [128730] = 3, + [129025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7573), 1, - anon_sym_COMMA, - ACTIONS(7575), 1, - anon_sym_RPAREN, - [128740] = 3, + ACTIONS(6691), 1, + sym_identifier, + STATE(1858), 1, + sym_reference_expression, + [129035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5134), 1, + ACTIONS(7598), 1, anon_sym_LBRACE, - STATE(1232), 1, - sym_block, - [128750] = 3, + STATE(2346), 1, + sym__struct_body, + [129045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7577), 1, - anon_sym_LPAREN, - STATE(1230), 1, - sym_special_argument_list, - [128760] = 3, + ACTIONS(5128), 1, + anon_sym_LBRACE, + STATE(2088), 1, + sym_block, + [129055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(1813), 1, - sym_type_initializer_body, - [128770] = 3, + STATE(1599), 1, + sym__struct_body, + [129065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, + ACTIONS(6705), 1, anon_sym_LBRACE, - STATE(1585), 1, - sym__interface_body, - [128780] = 3, + STATE(1598), 1, + sym__enum_body, + [129075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7581), 1, - anon_sym_RBRACE, - ACTIONS(7583), 1, - aux_sym_format_specifier_token1, - [128790] = 3, + ACTIONS(5132), 1, + anon_sym_LBRACE, + STATE(2151), 1, + sym_block, + [129085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(6637), 1, anon_sym_LBRACE, - STATE(492), 1, - sym_block, - [128800] = 2, + STATE(1597), 1, + sym__interface_body, + [129095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7227), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [128808] = 3, + ACTIONS(7600), 1, + anon_sym_LPAREN, + STATE(883), 1, + sym_special_argument_list, + [129105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5120), 1, anon_sym_LBRACE, - STATE(2018), 1, + STATE(1122), 1, sym_block, - [128818] = 3, + [129115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6793), 1, - sym_identifier, - STATE(1166), 1, - sym_reference_expression, - [128828] = 3, + ACTIONS(6637), 1, + anon_sym_LBRACE, + STATE(1571), 1, + sym__interface_body, + [129125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2848), 1, + STATE(905), 1, sym_block, - [128838] = 3, + [129135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6944), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(488), 1, - sym__content_block, - [128848] = 3, + STATE(1530), 1, + sym__struct_body, + [129145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, - anon_sym_LBRACE, - STATE(2274), 1, - sym_block, - [128858] = 3, + ACTIONS(7602), 1, + anon_sym_COMMA, + ACTIONS(7604), 1, + anon_sym_RPAREN, + [129155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, - anon_sym_LBRACE, - STATE(2850), 1, - sym_block, - [128868] = 2, + ACTIONS(6798), 1, + sym_identifier, + STATE(2056), 1, + sym_reference_expression, + [129165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7585), 2, + ACTIONS(7606), 1, anon_sym_COMMA, - anon_sym_in, - [128876] = 3, + ACTIONS(7608), 1, + anon_sym_RPAREN, + [129175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7587), 1, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(2448), 1, - sym__struct_body, - [128886] = 3, + STATE(2129), 1, + sym_block, + [129185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(1045), 1, - sym_type_initializer_body, - [128896] = 2, + STATE(2128), 1, + sym_block, + [129195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4865), 2, - anon_sym_COMMA, - anon_sym_in, - [128904] = 3, + ACTIONS(7610), 1, + sym_identifier, + STATE(2560), 1, + sym_type_reference_expression, + [129205] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1531), 1, + STATE(1721), 1, sym_block, - [128914] = 2, + [129215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7591), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128922] = 3, + ACTIONS(7612), 1, + anon_sym_LPAREN, + STATE(2063), 1, + sym_special_argument_list, + [129225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(7614), 1, + anon_sym_RBRACE, + ACTIONS(7616), 1, + aux_sym_format_specifier_token1, + [129235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(1041), 1, + STATE(2116), 1, sym_block, - [128932] = 3, + [129245] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1509), 1, + STATE(1720), 1, sym_block, - [128942] = 3, + [129255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, + ACTIONS(5080), 1, anon_sym_LBRACE, - STATE(2163), 1, + STATE(1335), 1, sym_block, - [128952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7595), 1, - sym_identifier, - STATE(1874), 1, - sym_type_reference_expression, - [128962] = 3, + [129265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 1, + ACTIONS(7413), 1, anon_sym_LBRACE, - STATE(4393), 1, - sym_block, - [128972] = 3, + STATE(2901), 1, + sym__content_block, + [129275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(2132), 1, sym_type_initializer_body, - [128982] = 3, + [129285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7620), 1, + anon_sym_RBRACE, + ACTIONS(7622), 1, + aux_sym_format_specifier_token1, + [129295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7624), 1, + sym_identifier, + STATE(1445), 1, + sym_type_reference_expression, + [129305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7597), 1, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(1510), 1, - sym__content_block, - [128992] = 3, + STATE(2904), 1, + sym_block, + [129315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7599), 1, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(3421), 1, - sym__struct_body, - [129002] = 3, + STATE(2737), 1, + sym_block, + [129325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7589), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(2071), 1, sym_type_initializer_body, - [129012] = 3, + [129335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(5130), 1, anon_sym_LBRACE, - STATE(2620), 1, + STATE(465), 1, sym_block, - [129022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 1, - anon_sym_LPAREN, - STATE(2825), 1, - sym_argument_list, - [129032] = 3, + [129345] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, + ACTIONS(7522), 1, anon_sym_LBRACE, - STATE(1584), 1, - sym__enum_body, - [129042] = 3, + STATE(2071), 1, + sym_type_initializer_body, + [129355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7601), 1, - sym_identifier, - STATE(3985), 1, - sym_reference_expression, - [129052] = 3, + ACTIONS(7626), 1, + anon_sym_LBRACE, + STATE(2509), 1, + sym__struct_body, + [129365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(1045), 1, + STATE(2071), 1, sym_type_initializer_body, - [129062] = 3, + [129375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7603), 1, - anon_sym_COMMA, - ACTIONS(7605), 1, - anon_sym_RPAREN, - [129072] = 3, + ACTIONS(7628), 1, + anon_sym_LPAREN, + STATE(1717), 1, + sym_argument_list, + [129385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, + ACTIONS(5132), 1, anon_sym_LBRACE, - STATE(1576), 1, - sym__enum_body, - [129082] = 3, + STATE(2085), 1, + sym_block, + [129395] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, - anon_sym_LBRACE, - STATE(1583), 1, - sym__struct_body, - [129092] = 3, + ACTIONS(7389), 2, + anon_sym_COMMA, + anon_sym_PIPE, + [129403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7607), 1, + ACTIONS(7630), 2, anon_sym_COMMA, - ACTIONS(7609), 1, anon_sym_RPAREN, - [129102] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3945), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [129110] = 3, + [129411] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(994), 1, + STATE(2120), 1, sym_block, - [129120] = 3, + [129421] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, - anon_sym_LBRACE, - STATE(1028), 1, - sym_block, - [129130] = 3, + ACTIONS(6948), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(2691), 1, - sym_block, - [129140] = 3, + STATE(2132), 1, + sym_type_initializer_body, + [129439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, - anon_sym_LBRACE, - STATE(1534), 1, - sym__interface_body, - [129150] = 3, + ACTIONS(7393), 1, + anon_sym_RBRACE, + ACTIONS(7395), 1, + aux_sym_format_specifier_token1, + [129449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7044), 1, + ACTIONS(7632), 1, anon_sym_LBRACE, - STATE(1024), 1, - sym__content_block, - [129160] = 3, + STATE(1367), 1, + sym__struct_body, + [129459] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, - anon_sym_LBRACE, - STATE(1532), 1, - sym__enum_body, - [129170] = 3, + ACTIONS(5556), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + [129467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, + ACTIONS(7634), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(2908), 1, sym_type_initializer_body, - [129180] = 3, + [129477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, + ACTIONS(7636), 2, anon_sym_LBRACE, - STATE(1496), 1, - sym__struct_body, - [129190] = 3, + anon_sym_COMMA, + [129485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(5478), 2, anon_sym_LBRACE, - STATE(1858), 1, - sym_block, - [129200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7613), 1, anon_sym_COMMA, - ACTIONS(7615), 1, - anon_sym_RPAREN, - [129210] = 3, + [129493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(5146), 1, anon_sym_LBRACE, - STATE(1086), 1, + STATE(2913), 1, sym_block, - [129220] = 3, + [129503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, + ACTIONS(7638), 1, anon_sym_LPAREN, - STATE(1097), 1, + STATE(468), 1, sym_argument_list, - [129230] = 3, + [129513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - STATE(2614), 1, - sym_block, - [129240] = 3, + ACTIONS(7640), 1, + anon_sym_LPAREN, + STATE(2048), 1, + sym_special_argument_list, + [129523] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2611), 1, + STATE(1182), 1, sym_block, - [129250] = 3, + [129533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, - anon_sym_LBRACE, - STATE(1528), 1, - sym__struct_body, - [129260] = 3, + ACTIONS(6776), 1, + sym_identifier, + STATE(2035), 1, + sym_reference_expression, + [129543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, - sym_identifier, - STATE(1699), 1, - sym_type_reference_expression, - [129270] = 3, + ACTIONS(4709), 1, + anon_sym_LBRACE, + STATE(1520), 1, + sym_block, + [129553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(7618), 1, anon_sym_LBRACE, - STATE(1813), 1, + STATE(2132), 1, sym_type_initializer_body, - [129280] = 3, + [129563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7621), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(1237), 1, - sym__struct_body, - [129290] = 3, + STATE(2132), 1, + sym_type_initializer_body, + [129573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7623), 1, - anon_sym_COMMA, - ACTIONS(7625), 1, - anon_sym_RPAREN, - [129300] = 3, + ACTIONS(7642), 1, + sym_identifier, + STATE(1522), 1, + sym_label_reference, + [129583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(474), 1, + STATE(1262), 1, sym_block, - [129310] = 3, + [129593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1100), 1, + STATE(1714), 1, sym_block, - [129320] = 3, + [129603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1813), 1, - sym_type_initializer_body, - [129330] = 3, + STATE(1881), 1, + sym_block, + [129613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1813), 1, - sym_type_initializer_body, - [129340] = 3, + STATE(2033), 1, + sym_block, + [129623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(6964), 1, anon_sym_LBRACE, - STATE(1768), 1, - sym_block, - [129350] = 3, + STATE(2031), 1, + sym__content_block, + [129633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6925), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129641] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1103), 1, + STATE(2011), 1, sym_block, - [129360] = 3, + [129651] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, - sym_identifier, - STATE(1119), 1, - sym_type_reference_expression, - [129370] = 3, + ACTIONS(7644), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7629), 1, + ACTIONS(4713), 1, anon_sym_LPAREN, - STATE(2598), 1, + STATE(2008), 1, sym_argument_list, - [129380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5136), 1, - anon_sym_LBRACE, - STATE(2593), 1, - sym_block, - [129390] = 3, + [129669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, - anon_sym_LPAREN, - STATE(477), 1, - sym_argument_list, - [129400] = 3, + ACTIONS(6802), 1, + sym_identifier, + STATE(3846), 1, + sym_generic_parameter, + [129679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7633), 1, + ACTIONS(7646), 2, anon_sym_COMMA, - ACTIONS(7635), 1, anon_sym_RPAREN, - [129410] = 3, + [129687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7149), 1, - anon_sym_LBRACE, - STATE(2699), 1, - sym__content_block, - [129420] = 3, + ACTIONS(7648), 1, + sym_identifier, + STATE(1409), 1, + sym_type_reference_expression, + [129697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7060), 1, - anon_sym_RBRACE, - ACTIONS(7062), 1, - aux_sym_format_specifier_token1, - [129430] = 2, + ACTIONS(7650), 1, + sym_identifier, + STATE(2339), 1, + sym_type_reference_expression, + [129707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5564), 2, + ACTIONS(3394), 1, anon_sym_COMMA, - anon_sym_COLON_EQ, - [129438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7637), 1, - sym_identifier, - STATE(2330), 1, - sym_type_reference_expression, - [129448] = 3, + ACTIONS(7652), 1, + anon_sym_RPAREN, + [129717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1829), 1, - anon_sym_RBRACE, - STATE(3686), 1, - sym___rcbr, - [129458] = 3, + ACTIONS(7654), 1, + anon_sym_COMMA, + ACTIONS(7656), 1, + anon_sym_RPAREN, + [129727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7195), 1, - anon_sym_LBRACE, - STATE(2492), 1, - sym__content_block, - [129468] = 3, + ACTIONS(7658), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [129735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1742), 1, - sym_type_initializer_body, - [129478] = 3, + STATE(2037), 1, + sym_block, + [129745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(2555), 1, - sym_block, - [129488] = 3, + STATE(1567), 1, + sym__struct_body, + [129755] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1038), 1, + STATE(1949), 1, sym_block, - [129498] = 3, + [129765] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(1211), 1, sym_block, - [129508] = 3, + [129775] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2402), 1, + STATE(1189), 1, sym_block, - [129518] = 3, + [129785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, - anon_sym_LBRACE, - STATE(2531), 1, - sym_type_initializer_body, - [129528] = 3, + ACTIONS(7660), 1, + sym_identifier, + STATE(2136), 1, + sym_type_reference_expression, + [129795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(6637), 1, anon_sym_LBRACE, - STATE(2253), 1, - sym_block, - [129538] = 3, + STATE(1565), 1, + sym__interface_body, + [129805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(6705), 1, anon_sym_LBRACE, - STATE(1928), 1, - sym_block, - [129548] = 3, + STATE(1566), 1, + sym__enum_body, + [129815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 1, - anon_sym_LBRACE, - STATE(2531), 1, - sym_type_initializer_body, - [129558] = 3, + ACTIONS(7662), 1, + anon_sym_LPAREN, + STATE(1212), 1, + sym_argument_list, + [129825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7641), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym__struct_body, - [129568] = 3, + ACTIONS(7664), 1, + anon_sym_COMMA, + ACTIONS(7666), 1, + anon_sym_RPAREN, + [129835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2282), 1, + STATE(1263), 1, sym_block, - [129578] = 3, + [129845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6707), 1, - sym_identifier, - STATE(1953), 1, - sym_reference_expression, - [129588] = 2, + ACTIONS(7261), 1, + anon_sym_LBRACE, + STATE(1166), 1, + sym__content_block, + [129855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5456), 2, + ACTIONS(5136), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [129596] = 3, + STATE(1214), 1, + sym_block, + [129865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, - anon_sym_COLON, - ACTIONS(7643), 1, - anon_sym_mut, - [129606] = 3, + ACTIONS(3179), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_type_initializer_body, + [129875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7645), 1, - anon_sym_LPAREN, - STATE(2000), 1, - sym_special_argument_list, - [129616] = 3, + ACTIONS(7226), 1, + anon_sym_LBRACE, + STATE(3801), 1, + sym__content_block, + [129885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(5136), 1, anon_sym_LBRACE, - STATE(2531), 1, + STATE(1153), 1, + sym_block, + [129895] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3179), 1, + anon_sym_LBRACE, + STATE(1218), 1, sym_type_initializer_body, - [129626] = 3, + [129905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(2510), 1, + STATE(3802), 1, sym_block, - [129636] = 3, + [129915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1752), 1, + STATE(3803), 1, sym_block, - [129646] = 2, + [129925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 2, - anon_sym_SEMI, + ACTIONS(7011), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [129933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7668), 1, anon_sym_LBRACE, - [129654] = 3, + STATE(1218), 1, + sym_type_initializer_body, + [129943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - STATE(557), 1, - sym_block, - [129664] = 3, + STATE(1704), 1, + sym__content_block, + [129953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 1, + ACTIONS(7670), 1, anon_sym_LBRACE, - STATE(556), 1, - sym_block, - [129674] = 3, + STATE(2003), 1, + sym__struct_body, + [129963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7639), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(2531), 1, + STATE(1218), 1, sym_type_initializer_body, - [129684] = 3, + [129973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, - anon_sym_LBRACE, - STATE(2714), 1, - sym_block, - [129694] = 3, + ACTIONS(6889), 1, + sym_identifier, + STATE(2496), 1, + sym_reference_expression, + [129983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(5128), 1, anon_sym_LBRACE, - STATE(1927), 1, + STATE(1989), 1, sym_block, - [129704] = 3, + [129993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(7668), 1, anon_sym_LBRACE, - STATE(1880), 1, - sym_block, - [129714] = 2, + STATE(1218), 1, + sym_type_initializer_body, + [130003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6852), 1, + sym_identifier, + STATE(1739), 1, + sym_reference_expression, + [130013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7647), 2, + ACTIONS(5136), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [129722] = 3, + STATE(1187), 1, + sym_block, + [130023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5114), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1333), 1, + STATE(1703), 1, sym_block, - [129732] = 3, + [130033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7649), 1, + ACTIONS(7672), 1, anon_sym_LPAREN, - STATE(2512), 1, + STATE(1771), 1, sym_special_argument_list, - [129742] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6769), 1, - sym_identifier, - STATE(2522), 1, - sym_reference_expression, - [129752] = 3, + [130043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6785), 1, - sym_identifier, - STATE(4084), 1, - sym_reference_expression, - [129762] = 3, + ACTIONS(7674), 1, + anon_sym_LPAREN, + STATE(1191), 1, + sym_special_argument_list, + [130053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1748), 1, + STATE(1761), 1, sym_block, - [129772] = 3, + [130063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(2548), 1, + STATE(3832), 1, sym_block, - [129782] = 3, + [130073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(7676), 1, sym_identifier, - STATE(3648), 1, - sym_import_name, - [129792] = 3, + STATE(3734), 1, + sym_label_reference, + [130083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6801), 1, + ACTIONS(6877), 1, sym_identifier, - STATE(3620), 1, + STATE(1202), 1, sym_reference_expression, - [129802] = 3, + [130093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6668), 1, - sym_identifier, - STATE(4026), 1, - sym_generic_parameter, - [129812] = 3, + ACTIONS(7678), 1, + anon_sym_COMMA, + ACTIONS(7680), 1, + anon_sym_RPAREN, + [130103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(2150), 1, - sym_type_initializer_body, - [129822] = 2, + STATE(1653), 1, + sym_block, + [130113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7653), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [129830] = 3, + ACTIONS(7682), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_type_initializer_body, + [130123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, + ACTIONS(6635), 1, anon_sym_LBRACE, - STATE(1882), 1, - sym__content_block, - [129840] = 3, + STATE(1493), 1, + sym__struct_body, + [130133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6864), 1, + ACTIONS(7684), 1, + anon_sym_LPAREN, + STATE(2514), 1, + sym_special_argument_list, + [130143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6875), 2, + anon_sym_RBRACE, sym_identifier, - STATE(3495), 1, - sym_import_name, - [129850] = 2, + [130151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7655), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129858] = 3, + ACTIONS(3203), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_type_initializer_body, + [130161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6695), 1, + sym_identifier, + STATE(3490), 1, + sym_import_name, + [130171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(2170), 1, + STATE(2530), 1, sym_block, - [129868] = 3, + [130181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7657), 1, + ACTIONS(4751), 1, anon_sym_LBRACE, - STATE(1916), 1, - sym__struct_body, - [129878] = 3, + STATE(1750), 1, + sym_block, + [130191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(2006), 1, + STATE(2531), 1, sym_block, - [129888] = 3, + [130201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3317), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(2150), 1, + STATE(2602), 1, sym_type_initializer_body, - [129898] = 3, + [130211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, - anon_sym_LBRACE, - STATE(1698), 1, - sym_block, - [129908] = 2, + ACTIONS(7454), 1, + sym_identifier, + STATE(4287), 1, + sym_reference_expression, + [130221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7103), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129916] = 3, + ACTIONS(6852), 1, + sym_identifier, + STATE(3589), 1, + sym_reference_expression, + [130231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 1, + ACTIONS(7688), 1, anon_sym_LBRACE, - STATE(1340), 1, + STATE(861), 1, sym__struct_body, - [129926] = 3, + [130241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7651), 1, + ACTIONS(3203), 1, anon_sym_LBRACE, - STATE(2150), 1, + STATE(2602), 1, sym_type_initializer_body, - [129936] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - STATE(1989), 1, - sym_block, - [129946] = 3, + [130251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(7690), 1, anon_sym_LBRACE, - STATE(2150), 1, - sym_type_initializer_body, - [129956] = 3, + STATE(1091), 1, + sym__struct_body, + [130261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, - anon_sym_LBRACE, - STATE(1838), 1, - sym_block, - [129966] = 3, + ACTIONS(6695), 1, + sym_identifier, + STATE(3645), 1, + sym_import_name, + [130271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7475), 1, + ACTIONS(7686), 1, anon_sym_LBRACE, - STATE(2111), 1, + STATE(2602), 1, sym_type_initializer_body, - [129976] = 3, + [130281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, + ACTIONS(3179), 1, anon_sym_LBRACE, - STATE(1742), 1, + STATE(2602), 1, sym_type_initializer_body, - [129986] = 3, + [130291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(2149), 1, + STATE(2387), 1, sym_block, - [129996] = 3, + [130301] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7109), 1, - anon_sym_LBRACE, - STATE(2102), 1, - sym__content_block, - [130006] = 3, + ACTIONS(7109), 2, + anon_sym_COMMA, + anon_sym_COLON_EQ, + [130309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6886), 1, - sym_identifier, - STATE(2759), 1, - sym_reference_expression, - [130016] = 3, + ACTIONS(7692), 2, + anon_sym_COMMA, + anon_sym_in, + [130317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(7682), 1, + anon_sym_LBRACE, + STATE(1751), 1, + sym_type_initializer_body, + [130327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(2046), 1, + STATE(2549), 1, sym_block, - [130026] = 3, + [130337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4707), 1, - anon_sym_LPAREN, - STATE(2042), 1, - sym_argument_list, - [130036] = 3, + ACTIONS(7031), 1, + anon_sym_LBRACE, + STATE(2548), 1, + sym__content_block, + [130347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5126), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(1911), 1, + STATE(2604), 1, sym_block, - [130046] = 3, + [130357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 1, + ACTIONS(7694), 1, anon_sym_LPAREN, - STATE(1917), 1, + STATE(2562), 1, sym_argument_list, - [130056] = 3, + [130367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7663), 1, + ACTIONS(7696), 1, sym_identifier, - STATE(1373), 1, + STATE(1044), 1, sym_type_reference_expression, - [130066] = 3, + [130377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 1, + ACTIONS(7528), 1, anon_sym_LBRACE, - STATE(1599), 1, - sym__interface_body, - [130076] = 3, + STATE(920), 1, + sym_type_initializer_body, + [130387] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7698), 1, + anon_sym_COMMA, + ACTIONS(7700), 1, + anon_sym_RPAREN, + [130397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6628), 1, + ACTIONS(5134), 1, anon_sym_LBRACE, - STATE(1598), 1, - sym__struct_body, - [130086] = 3, + STATE(2498), 1, + sym_block, + [130407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - sym_identifier, - ACTIONS(7665), 1, - anon_sym_volatile, - [130096] = 3, + ACTIONS(5134), 1, + anon_sym_LBRACE, + STATE(2499), 1, + sym_block, + [130417] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7667), 1, - anon_sym_LPAREN, - STATE(2761), 1, - sym_special_argument_list, - [130106] = 3, + ACTIONS(7702), 1, + anon_sym_RBRACE, + [130424] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, + ACTIONS(7704), 1, anon_sym_LBRACE, - STATE(1507), 1, - sym__enum_body, - [130116] = 3, + [130431] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7593), 1, + ACTIONS(7706), 1, anon_sym_LBRACE, - STATE(2172), 1, - sym_block, - [130126] = 3, + [130438] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7669), 1, - anon_sym_COMMA, - ACTIONS(7671), 1, - anon_sym_RPAREN, - [130136] = 3, + ACTIONS(7708), 1, + anon_sym_RBRACE, + [130445] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5118), 1, - anon_sym_LBRACE, - STATE(2763), 1, - sym_block, - [130146] = 3, + ACTIONS(7710), 1, + anon_sym_RBRACE, + [130452] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4703), 1, + ACTIONS(7712), 1, anon_sym_LBRACE, - STATE(1777), 1, - sym_block, - [130156] = 3, + [130459] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7714), 1, + aux_sym__content_block_token1, + [130466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(7716), 1, anon_sym_LBRACE, - STATE(2009), 1, - sym_block, - [130166] = 3, + [130473] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 1, + ACTIONS(5510), 1, anon_sym_LBRACE, - STATE(2028), 1, - sym_block, - [130176] = 2, + [130480] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_LBRACE, - [130183] = 2, + ACTIONS(7718), 1, + anon_sym_RBRACK, + [130487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7673), 1, + ACTIONS(7720), 1, anon_sym_LBRACE, - [130190] = 2, + [130494] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_RBRACE, - [130197] = 2, + ACTIONS(7722), 1, + anon_sym_DOT, + [130501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4970), 1, + ACTIONS(7724), 1, sym_identifier, - [130204] = 2, + [130508] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5480), 1, + ACTIONS(7726), 1, + sym_identifier, + [130515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5518), 1, anon_sym_LBRACE, - [130211] = 2, + [130522] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7677), 1, + ACTIONS(7728), 1, anon_sym_LBRACE, - [130218] = 2, + [130529] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7679), 1, + ACTIONS(7730), 1, aux_sym__content_block_token1, - [130225] = 2, + [130536] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7681), 1, - anon_sym_EQ, - [130232] = 2, + ACTIONS(7732), 1, + anon_sym_DOT, + [130543] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(939), 1, + ACTIONS(909), 1, anon_sym_RBRACE, - [130239] = 2, + [130550] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7683), 1, - anon_sym_RBRACE, - [130246] = 2, + ACTIONS(7734), 1, + sym_identifier, + [130557] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7685), 1, - anon_sym_RBRACK, - [130253] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7687), 1, - aux_sym__content_block_token1, - [130260] = 2, + ACTIONS(7736), 1, + sym_identifier, + [130564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7689), 1, - anon_sym_LBRACE, - [130267] = 2, + ACTIONS(7738), 1, + anon_sym_RBRACE, + [130571] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7691), 1, + ACTIONS(7740), 1, anon_sym_RBRACE, - [130274] = 2, + [130578] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_LBRACE, - [130281] = 2, + ACTIONS(7742), 1, + sym_int_literal, + [130585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7693), 1, - anon_sym_RBRACK, - [130288] = 2, + ACTIONS(1599), 1, + anon_sym_RPAREN, + [130592] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7695), 1, + ACTIONS(6818), 1, anon_sym_RBRACE, - [130295] = 2, + [130599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, - anon_sym_RBRACE, - [130302] = 2, + ACTIONS(7744), 1, + anon_sym_RBRACK, + [130606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7699), 1, - anon_sym_DOT, - [130309] = 2, + ACTIONS(7746), 1, + anon_sym_RBRACE, + [130613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7701), 1, + ACTIONS(7748), 1, anon_sym_RBRACE, - [130316] = 2, + [130620] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7703), 1, + ACTIONS(7750), 1, anon_sym_RBRACE, - [130323] = 2, + [130627] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7532), 1, + anon_sym_RPAREN, + [130634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7705), 1, + ACTIONS(7752), 1, anon_sym_RBRACE, - [130330] = 2, + [130641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, + ACTIONS(7754), 1, anon_sym_DOT, - [130337] = 2, + [130648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7709), 1, + ACTIONS(7756), 1, anon_sym_RBRACE, - [130344] = 2, - ACTIONS(3), 1, + [130655] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(909), 1, - anon_sym_RBRACE, - [130351] = 2, + ACTIONS(7758), 1, + aux_sym__content_block_token1, + [130662] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5534), 1, anon_sym_LBRACE, - [130358] = 2, + [130669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7711), 1, + ACTIONS(7760), 1, anon_sym_LBRACE, - [130365] = 2, + [130676] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7713), 1, + ACTIONS(7762), 1, aux_sym__content_block_token1, - [130372] = 2, + [130683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7187), 1, - anon_sym_RBRACK, - [130379] = 2, + ACTIONS(7764), 1, + anon_sym_LBRACE, + [130690] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7715), 1, - anon_sym_RBRACK, - [130386] = 2, + ACTIONS(7766), 1, + ts_builtin_sym_end, + [130697] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7717), 1, - anon_sym_RBRACE, - [130393] = 2, + ACTIONS(5504), 1, + anon_sym_LBRACE, + [130704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(895), 1, anon_sym_RBRACE, - [130400] = 2, + [130711] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4599), 1, - sym_identifier, - [130407] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7721), 1, - aux_sym__content_block_token1, - [130414] = 2, + ACTIONS(7768), 1, + anon_sym_RBRACE, + [130718] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7723), 1, - anon_sym_LBRACE, - [130421] = 2, + ACTIONS(941), 1, + anon_sym_RBRACE, + [130725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5474), 1, - anon_sym_LBRACE, - [130428] = 2, + ACTIONS(7770), 1, + anon_sym_DOT, + [130732] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7772), 1, + aux_sym_hash_statement_token1, + [130739] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7725), 1, + ACTIONS(7774), 1, anon_sym_RBRACE, - [130435] = 2, + [130746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7727), 1, - anon_sym_RBRACE, - [130442] = 2, + ACTIONS(7776), 1, + sym_identifier, + [130753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7729), 1, - anon_sym_DOT, - [130449] = 2, + ACTIONS(7778), 1, + sym_identifier, + [130760] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7731), 1, - anon_sym_LBRACE, - [130456] = 2, + ACTIONS(943), 1, + anon_sym_RBRACE, + [130767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7481), 1, - anon_sym_RPAREN, - [130463] = 2, + ACTIONS(7780), 1, + anon_sym_RBRACE, + [130774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(873), 1, + ACTIONS(7782), 1, anon_sym_RBRACE, - [130470] = 2, + [130781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7733), 1, + ACTIONS(7784), 1, anon_sym_RBRACE, - [130477] = 2, + [130788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7735), 1, + ACTIONS(7786), 1, anon_sym_DOT, - [130484] = 2, + [130795] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4900), 1, - anon_sym_COLON, - [130491] = 2, + ACTIONS(7788), 1, + sym_identifier, + [130802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7737), 1, + ACTIONS(7790), 1, anon_sym_RBRACE, - [130498] = 2, + [130809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5506), 1, + ACTIONS(5540), 1, anon_sym_LBRACE, - [130505] = 2, + [130816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7739), 1, + ACTIONS(7792), 1, anon_sym_LBRACE, - [130512] = 2, + [130823] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7741), 1, + ACTIONS(7794), 1, aux_sym__content_block_token1, - [130519] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7743), 1, - aux_sym__content_block_token1, - [130526] = 2, + [130830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 1, + ACTIONS(7368), 1, sym_identifier, - [130533] = 2, + [130837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7747), 1, - anon_sym_LBRACE, - [130540] = 2, + ACTIONS(7796), 1, + anon_sym_RBRACE, + [130844] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7798), 1, + aux_sym__content_block_token1, + [130851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7749), 1, - anon_sym_RBRACE, - [130547] = 2, + ACTIONS(7800), 1, + anon_sym_RBRACK, + [130858] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7751), 1, - sym_identifier, - [130554] = 2, + ACTIONS(7802), 1, + anon_sym_RBRACK, + [130865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7753), 1, - sym_identifier, - [130561] = 2, + ACTIONS(7804), 1, + anon_sym_LBRACE, + [130872] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1597), 1, + anon_sym_RPAREN, + [130879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7755), 1, + ACTIONS(7806), 1, anon_sym_RBRACE, - [130568] = 2, + [130886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - [130575] = 2, + [130893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, + ACTIONS(7808), 1, anon_sym_DOT, - [130582] = 2, + [130900] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7759), 1, - sym_identifier, - [130589] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6870), 1, - anon_sym_RBRACE, - [130596] = 2, + ACTIONS(1605), 1, + anon_sym_RPAREN, + [130907] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(921), 1, - anon_sym_RBRACE, - [130603] = 2, + ACTIONS(7810), 1, + sym_identifier, + [130914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7761), 1, - anon_sym_RBRACE, - [130610] = 2, + ACTIONS(7812), 1, + sym_identifier, + [130921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7763), 1, + ACTIONS(7814), 1, anon_sym_RBRACE, - [130617] = 2, + [130928] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7765), 1, + ACTIONS(7816), 1, sym_identifier, - [130624] = 2, + [130935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7767), 1, + ACTIONS(7818), 1, anon_sym_DOT, - [130631] = 2, + [130942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, - sym_identifier, - [130638] = 2, + ACTIONS(7820), 1, + anon_sym_RBRACE, + [130949] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7769), 1, - sym_int_literal, - [130645] = 2, + ACTIONS(7822), 1, + anon_sym_RBRACE, + [130956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5522), 1, + ACTIONS(5542), 1, anon_sym_LBRACE, - [130652] = 2, + [130963] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7771), 1, + ACTIONS(7824), 1, anon_sym_LBRACE, - [130659] = 2, + [130970] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7773), 1, + ACTIONS(7826), 1, aux_sym__content_block_token1, - [130666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7775), 1, - anon_sym_RBRACE, - [130673] = 2, - ACTIONS(3), 1, + [130977] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7777), 1, - sym_identifier, - [130680] = 2, + ACTIONS(7828), 1, + aux_sym_hash_statement_token1, + [130984] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7779), 1, + ACTIONS(7830), 1, anon_sym_RBRACE, - [130687] = 2, + [130991] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7781), 1, + ACTIONS(883), 1, anon_sym_RBRACE, - [130694] = 2, + [130998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7783), 1, + ACTIONS(7832), 1, anon_sym_RBRACE, - [130701] = 2, + [131005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7785), 1, - sym_identifier, - [130708] = 2, + ACTIONS(1472), 1, + anon_sym_RPAREN, + [131012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7787), 1, - anon_sym_RBRACE, - [130715] = 2, + ACTIONS(7834), 1, + anon_sym_RBRACK, + [131019] = 2, + ACTIONS(495), 1, + sym_comment, + ACTIONS(7836), 1, + aux_sym__content_block_token1, + [131026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7789), 1, - anon_sym_RBRACE, - [130722] = 2, + ACTIONS(7838), 1, + anon_sym_LBRACE, + [131033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7791), 1, + ACTIONS(7840), 1, anon_sym_RBRACK, - [130729] = 2, + [131040] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7793), 1, - sym_identifier, - [130736] = 2, + ACTIONS(5480), 1, + anon_sym_LBRACE, + [131047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7795), 1, + ACTIONS(7842), 1, anon_sym_RBRACE, - [130743] = 2, + [131054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7797), 1, + ACTIONS(7844), 1, anon_sym_RBRACE, - [130750] = 2, + [131061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7799), 1, - anon_sym_RBRACK, - [130757] = 2, + ACTIONS(7846), 1, + anon_sym_DOT, + [131068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7801), 1, - anon_sym_LBRACE, - [130764] = 2, + ACTIONS(7848), 1, + anon_sym_RBRACE, + [131075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(915), 1, + ACTIONS(7850), 1, anon_sym_RBRACE, - [130771] = 2, + [131082] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7803), 1, + ACTIONS(7852), 1, anon_sym_DOT, - [130778] = 2, + [131089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7805), 1, - anon_sym_COLON, - [130785] = 2, + ACTIONS(7854), 1, + anon_sym_RBRACE, + [131096] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7807), 1, - anon_sym_RBRACK, - [130792] = 2, + ACTIONS(875), 1, + anon_sym_RBRACE, + [131103] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5520), 1, + ACTIONS(5476), 1, anon_sym_LBRACE, - [130799] = 2, + [131110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7809), 1, + ACTIONS(7856), 1, anon_sym_LBRACE, - [130806] = 2, + [131117] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7811), 1, + ACTIONS(7858), 1, aux_sym__content_block_token1, - [130813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7813), 1, - anon_sym_LBRACE, - [130820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7815), 1, - anon_sym_RBRACE, - [130827] = 2, + [131124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7817), 1, + ACTIONS(7860), 1, anon_sym_RBRACE, - [130834] = 2, + [131131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7819), 1, + ACTIONS(7862), 1, anon_sym_LBRACE, - [130841] = 2, - ACTIONS(495), 1, + [131138] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, - aux_sym__content_block_token1, - [130848] = 2, + ACTIONS(7864), 1, + sym_identifier, + [131145] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7823), 1, - anon_sym_LBRACE, - [130855] = 2, + ACTIONS(7866), 1, + anon_sym_EQ, + [131152] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7825), 1, - anon_sym_RBRACK, - [130862] = 2, + ACTIONS(7868), 1, + sym_int_literal, + [131159] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5466), 1, - anon_sym_LBRACE, - [130869] = 2, + ACTIONS(7393), 1, + anon_sym_RBRACE, + [131166] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7827), 1, + ACTIONS(7870), 1, anon_sym_RBRACE, - [130876] = 2, + [131173] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7652), 1, + anon_sym_RPAREN, + [131180] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7829), 1, + ACTIONS(7872), 1, anon_sym_RBRACE, - [130883] = 2, + [131187] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7060), 1, + ACTIONS(7620), 1, anon_sym_RBRACE, - [130890] = 2, + [131194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7831), 1, - anon_sym_DOT, - [130897] = 2, + ACTIONS(7874), 1, + sym_int_literal, + [131201] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7833), 1, + ACTIONS(7614), 1, anon_sym_RBRACE, - [130904] = 2, + [131208] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7835), 1, - anon_sym_RBRACE, - [130911] = 2, + ACTIONS(7876), 1, + anon_sym_RBRACK, + [131215] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(925), 1, + ACTIONS(7878), 1, anon_sym_RBRACE, - [130918] = 2, + [131222] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7880), 1, + anon_sym_RBRACK, + [131229] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7837), 1, + ACTIONS(7882), 1, anon_sym_DOT, - [130925] = 2, + [131236] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(941), 1, + ACTIONS(7884), 1, anon_sym_RBRACE, - [130932] = 2, + [131243] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7839), 1, - anon_sym_RBRACE, - [130939] = 2, + ACTIONS(7886), 1, + anon_sym_PIPE, + [131250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5470), 1, anon_sym_LBRACE, - [130946] = 2, + [131257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7841), 1, - sym_int_literal, - [130953] = 2, + ACTIONS(7888), 1, + anon_sym_LBRACE, + [131264] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7843), 1, + ACTIONS(7890), 1, aux_sym__content_block_token1, - [130960] = 2, + [131271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(905), 1, + ACTIONS(7892), 1, anon_sym_RBRACE, - [130967] = 2, + [131278] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7845), 1, - anon_sym_RBRACK, - [130974] = 2, + ACTIONS(7894), 1, + anon_sym_RBRACE, + [131285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7847), 1, - anon_sym_LBRACE, - [130981] = 2, + ACTIONS(7896), 1, + anon_sym_RBRACE, + [131292] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7513), 1, - anon_sym_RPAREN, - [130988] = 2, + ACTIONS(7898), 1, + anon_sym_RBRACE, + [131299] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7849), 1, - anon_sym_LBRACE, - [130995] = 2, + ACTIONS(7900), 1, + anon_sym_RBRACE, + [131306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7851), 1, + ACTIONS(927), 1, anon_sym_RBRACE, - [131002] = 2, + [131313] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(891), 1, + ACTIONS(907), 1, anon_sym_RBRACE, - [131009] = 2, + [131320] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7853), 1, - anon_sym_RBRACK, - [131016] = 2, + ACTIONS(7902), 1, + anon_sym_RBRACE, + [131327] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7855), 1, + ACTIONS(7904), 1, anon_sym_RBRACE, - [131023] = 2, + [131334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7857), 1, - anon_sym_RBRACE, - [131030] = 2, + ACTIONS(1470), 1, + anon_sym_RPAREN, + [131341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7859), 1, + ACTIONS(889), 1, anon_sym_RBRACE, - [131037] = 2, + [131348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7861), 1, + ACTIONS(7906), 1, anon_sym_DOT, - [131044] = 2, + [131355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7863), 1, + ACTIONS(7908), 1, anon_sym_RBRACE, - [131051] = 2, + [131362] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5530), 1, + ACTIONS(5460), 1, anon_sym_LBRACE, - [131058] = 2, + [131369] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7865), 1, + ACTIONS(7910), 1, anon_sym_LBRACE, - [131065] = 2, - ACTIONS(3), 1, + [131376] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(7867), 1, - anon_sym_RBRACE, - [131072] = 2, + ACTIONS(7912), 1, + aux_sym__content_block_token1, + [131383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7869), 1, + ACTIONS(7914), 1, anon_sym_RBRACE, - [131079] = 2, + [131390] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7871), 1, - anon_sym_RBRACE, - [131086] = 2, + ACTIONS(7916), 1, + anon_sym_RBRACK, + [131397] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(901), 1, + ACTIONS(7918), 1, anon_sym_RBRACE, - [131093] = 2, + [131404] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7873), 1, + ACTIONS(7920), 1, anon_sym_DOT, - [131100] = 2, + [131411] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7875), 1, + ACTIONS(7922), 1, aux_sym__content_block_token1, - [131107] = 2, + [131418] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5974), 1, - anon_sym_LBRACE, - [131114] = 2, + ACTIONS(7924), 1, + anon_sym_DOT, + [131425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 1, + ACTIONS(7926), 1, anon_sym_RBRACE, - [131121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7877), 1, - anon_sym_SEMI, - [131128] = 2, + [131432] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7879), 1, + ACTIONS(7928), 1, anon_sym_RBRACE, - [131135] = 2, + [131439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7881), 1, - anon_sym_COLON_EQ, - [131142] = 2, + ACTIONS(7930), 1, + anon_sym_RBRACK, + [131446] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(903), 1, + ACTIONS(7932), 1, anon_sym_RBRACE, - [131149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7883), 1, - anon_sym_in, - [131156] = 2, + [131453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7885), 1, + ACTIONS(7934), 1, anon_sym_RBRACE, - [131163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7887), 1, - sym_identifier, - [131170] = 2, + [131460] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7889), 1, + ACTIONS(7936), 1, anon_sym_RBRACE, - [131177] = 2, + [131467] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7891), 1, + ACTIONS(7938), 1, anon_sym_RBRACE, - [131184] = 2, + [131474] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7893), 1, + ACTIONS(879), 1, anon_sym_RBRACE, - [131191] = 2, + [131481] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7895), 1, - anon_sym_RBRACK, - [131198] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7897), 1, - aux_sym_hash_statement_token1, - [131205] = 2, + ACTIONS(7940), 1, + sym_identifier, + [131488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7899), 1, - anon_sym_RBRACE, - [131212] = 2, + ACTIONS(7942), 1, + sym_identifier, + [131495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7901), 1, + ACTIONS(7944), 1, anon_sym_RBRACE, - [131219] = 2, + [131502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7903), 1, - anon_sym_LPAREN, - [131226] = 2, - ACTIONS(495), 1, - sym_comment, - ACTIONS(7905), 1, - aux_sym__content_block_token1, - [131233] = 2, + ACTIONS(7946), 1, + anon_sym_RBRACK, + [131509] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7907), 1, - sym_identifier, - [131240] = 2, + ACTIONS(7948), 1, + anon_sym_RBRACE, + [131516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(877), 1, anon_sym_RBRACE, - [131247] = 2, + [131523] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7909), 1, + ACTIONS(7950), 1, anon_sym_RBRACE, - [131254] = 2, + [131530] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7911), 1, - anon_sym_LBRACE, - [131261] = 2, + ACTIONS(7952), 1, + anon_sym_LPAREN, + [131537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7954), 1, + anon_sym_RBRACE, + [131544] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7913), 1, + ACTIONS(7956), 1, anon_sym_RBRACE, - [131268] = 2, + [131551] = 2, ACTIONS(495), 1, sym_comment, - ACTIONS(7915), 1, + ACTIONS(7958), 1, aux_sym__content_block_token1, - [131275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7917), 1, - anon_sym_DOT, - [131282] = 2, + [131558] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7919), 1, - anon_sym_RBRACE, - [131289] = 2, + ACTIONS(7960), 1, + anon_sym_LBRACE, + [131565] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7921), 1, + ACTIONS(7962), 1, anon_sym_RBRACE, - [131296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6054), 1, - anon_sym_COLON_EQ, - [131303] = 2, + [131572] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7923), 1, + ACTIONS(7964), 1, anon_sym_RBRACE, - [131310] = 2, + [131579] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7925), 1, - sym_int_literal, - [131317] = 2, + ACTIONS(5498), 1, + anon_sym_LBRACE, + [131586] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7927), 1, - anon_sym_LPAREN, - [131324] = 2, + ACTIONS(7966), 1, + sym_identifier, + [131593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7929), 1, + ACTIONS(7968), 1, anon_sym_RBRACE, - [131331] = 2, + [131600] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7931), 1, - anon_sym_COLON, - [131338] = 2, + ACTIONS(7970), 1, + anon_sym_EQ, + [131607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7933), 1, + ACTIONS(7972), 1, anon_sym_RBRACK, - [131345] = 2, + [131614] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7561), 1, - anon_sym_RBRACE, - [131352] = 2, + ACTIONS(7974), 1, + anon_sym_DOT, + [131621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7976), 1, + anon_sym_EQ, + [131628] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7935), 1, + ACTIONS(7978), 1, anon_sym_RBRACE, - [131359] = 2, + [131635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7937), 1, + ACTIONS(7980), 1, anon_sym_RBRACK, - [131366] = 2, + [131642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7939), 1, + ACTIONS(7982), 1, anon_sym_RBRACE, - [131373] = 2, + [131649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7941), 1, - anon_sym_DOT, - [131380] = 2, - ACTIONS(495), 1, + ACTIONS(7984), 1, + anon_sym_RBRACE, + [131656] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7943), 1, - aux_sym__content_block_token1, - [131387] = 2, + ACTIONS(7986), 1, + sym_identifier, + [131663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7945), 1, - anon_sym_LBRACE, - [131394] = 2, + ACTIONS(7988), 1, + anon_sym_EQ, + [131670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5420), 1, + ACTIONS(7990), 1, anon_sym_LBRACE, - [131401] = 2, + [131677] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7947), 1, - anon_sym_RBRACE, - [131408] = 2, + ACTIONS(7992), 1, + sym_identifier, + [131684] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7949), 1, + ACTIONS(891), 1, anon_sym_RBRACE, - [131415] = 2, + [131691] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7951), 1, - anon_sym_DOT, - [131422] = 2, + ACTIONS(7994), 1, + anon_sym_LBRACE, + [131698] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(883), 1, + ACTIONS(917), 1, anon_sym_RBRACE, - [131429] = 2, + [131705] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7953), 1, + ACTIONS(7996), 1, anon_sym_RBRACE, - [131436] = 2, + [131712] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7955), 1, + ACTIONS(7998), 1, anon_sym_RBRACE, - [131443] = 2, + [131719] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7957), 1, - anon_sym_RBRACE, - [131450] = 2, + ACTIONS(8000), 1, + anon_sym_LBRACE, + [131726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 1, - anon_sym_RBRACE, - [131457] = 2, + ACTIONS(1601), 1, + anon_sym_RPAREN, + [131733] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7961), 1, + ACTIONS(8002), 1, anon_sym_RBRACK, - [131464] = 2, + [131740] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7963), 1, - sym_identifier, - [131471] = 2, + ACTIONS(8004), 1, + anon_sym_DOT, + [131747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7965), 1, + ACTIONS(8006), 1, anon_sym_RBRACE, - [131478] = 2, + [131754] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7967), 1, - anon_sym_EQ, - [131485] = 2, + ACTIONS(8008), 1, + anon_sym_RBRACE, + [131761] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7969), 1, - sym_identifier, - [131492] = 2, + ACTIONS(8010), 1, + anon_sym_RBRACE, + [131768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(8012), 1, anon_sym_RBRACE, - [131499] = 2, + [131775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7973), 1, - anon_sym_LBRACE, - [131506] = 2, + ACTIONS(8014), 1, + anon_sym_RBRACE, + [131782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7975), 1, + ACTIONS(8016), 1, anon_sym_RBRACE, - [131513] = 2, + [131789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7977), 1, + ACTIONS(899), 1, anon_sym_RBRACE, - [131520] = 2, + [131796] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7979), 1, - anon_sym_DOT, - [131527] = 2, + ACTIONS(8018), 1, + anon_sym_LBRACE, + [131803] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7981), 1, - anon_sym_RBRACK, - [131534] = 2, + ACTIONS(8020), 1, + anon_sym_RBRACE, + [131810] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7983), 1, - anon_sym_RBRACK, - [131541] = 2, + ACTIONS(8022), 1, + anon_sym_RBRACE, + [131817] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8024), 1, + anon_sym_RBRACE, + [131824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7985), 1, + ACTIONS(897), 1, anon_sym_RBRACE, - [131548] = 2, + [131831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7987), 1, + ACTIONS(8026), 1, anon_sym_DOT, - [131555] = 2, + [131838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(877), 1, + ACTIONS(8028), 1, anon_sym_RBRACE, - [131562] = 2, + [131845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7989), 1, + ACTIONS(8030), 1, anon_sym_RBRACE, - [131569] = 2, + [131852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7991), 1, + ACTIONS(8032), 1, anon_sym_RBRACE, - [131576] = 2, + [131859] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7993), 1, - anon_sym_RBRACE, - [131583] = 2, + ACTIONS(8034), 1, + anon_sym_SEMI, + [131866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7995), 1, + ACTIONS(8036), 1, anon_sym_RBRACE, - [131590] = 2, + [131873] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7997), 1, - anon_sym_DOT, - [131597] = 2, + ACTIONS(8038), 1, + anon_sym_RBRACK, + [131880] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(875), 1, + ACTIONS(8040), 1, anon_sym_RBRACE, - [131604] = 2, + [131887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7999), 1, + ACTIONS(8042), 1, anon_sym_RBRACE, - [131611] = 2, + [131894] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 1, - anon_sym_DOT, - [131618] = 2, + ACTIONS(887), 1, + anon_sym_RBRACE, + [131901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 1, + ACTIONS(8044), 1, anon_sym_RBRACE, - [131625] = 2, + [131908] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8005), 1, + ACTIONS(8046), 1, anon_sym_RBRACE, - [131632] = 2, + [131915] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(913), 1, + ACTIONS(8048), 1, anon_sym_RBRACE, - [131639] = 2, + [131922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8007), 1, - anon_sym_RBRACK, - [131646] = 2, + ACTIONS(8050), 1, + anon_sym_RBRACE, + [131929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8009), 1, + ACTIONS(8052), 1, anon_sym_RBRACE, - [131653] = 2, + [131936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8011), 1, - anon_sym_RBRACE, - [131660] = 2, + ACTIONS(8054), 1, + anon_sym_RBRACK, + [131943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8013), 1, - anon_sym_RBRACE, - [131667] = 2, + ACTIONS(1603), 1, + anon_sym_RPAREN, + [131950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8015), 1, + ACTIONS(8056), 1, anon_sym_RBRACE, - [131674] = 2, + [131957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8017), 1, + ACTIONS(7242), 1, anon_sym_RBRACK, - [131681] = 2, + [131964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8019), 1, + ACTIONS(911), 1, anon_sym_RBRACE, - [131688] = 2, + [131971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8021), 1, - anon_sym_DOT, - [131695] = 2, + ACTIONS(8058), 1, + anon_sym_COLON, + [131978] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8023), 1, - anon_sym_RBRACK, - [131702] = 2, + ACTIONS(4601), 1, + sym_identifier, + [131985] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8025), 1, + ACTIONS(8060), 1, anon_sym_RBRACE, - [131709] = 2, + [131992] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8027), 1, + ACTIONS(8062), 1, anon_sym_RBRACE, - [131716] = 2, + [131999] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8029), 1, - anon_sym_RBRACK, - [131723] = 2, + ACTIONS(8064), 1, + anon_sym_RBRACE, + [132006] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(931), 1, + ACTIONS(873), 1, anon_sym_RBRACE, - [131730] = 2, + [132013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8031), 1, + ACTIONS(8066), 1, anon_sym_RBRACE, - [131737] = 2, + [132020] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8068), 1, + anon_sym_in, + [132027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8033), 1, + ACTIONS(8070), 1, anon_sym_RBRACE, - [131744] = 2, + [132034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8035), 1, - anon_sym_EQ, - [131751] = 2, + ACTIONS(1595), 1, + anon_sym_RPAREN, + [132041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8037), 1, - anon_sym_RBRACE, - [131758] = 2, + ACTIONS(1468), 1, + anon_sym_RPAREN, + [132048] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8039), 1, - anon_sym_LBRACE, - [131765] = 2, + ACTIONS(8072), 1, + anon_sym_RBRACK, + [132055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(927), 1, - anon_sym_RBRACE, - [131772] = 2, + ACTIONS(8074), 1, + anon_sym_DOT, + [132062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8041), 1, - anon_sym_RBRACE, - [131779] = 2, + ACTIONS(8076), 1, + anon_sym_RBRACK, + [132069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8043), 1, + ACTIONS(8078), 1, anon_sym_RBRACE, - [131786] = 2, + [132076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8045), 1, + ACTIONS(8080), 1, anon_sym_RBRACE, - [131793] = 2, + [132083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8047), 1, - sym_identifier, - [131800] = 2, + ACTIONS(8082), 1, + anon_sym_RBRACK, + [132090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8049), 1, - sym_identifier, - [131807] = 2, + ACTIONS(8084), 1, + anon_sym_RBRACE, + [132097] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8051), 1, + ACTIONS(8086), 1, anon_sym_RBRACE, - [131814] = 2, + [132104] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8053), 1, - sym_identifier, - [131821] = 2, + ACTIONS(8088), 1, + anon_sym_RBRACE, + [132111] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8055), 1, + ACTIONS(6003), 1, anon_sym_LBRACE, - [131828] = 2, + [132118] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8057), 1, + ACTIONS(915), 1, anon_sym_RBRACE, - [131835] = 2, + [132125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8059), 1, + ACTIONS(8090), 1, anon_sym_RBRACE, - [131842] = 2, + [132132] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8061), 1, - anon_sym_RBRACE, - [131849] = 2, + ACTIONS(8092), 1, + anon_sym_RBRACK, + [132139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(919), 1, + ACTIONS(8094), 1, anon_sym_RBRACE, - [131856] = 2, + [132146] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8063), 1, + ACTIONS(8096), 1, anon_sym_RBRACE, - [131863] = 2, + [132153] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8098), 1, + anon_sym_COLON_EQ, + [132160] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4978), 1, + sym_identifier, + [132167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8065), 1, + ACTIONS(8100), 1, anon_sym_RBRACK, - [131870] = 2, + [132174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8067), 1, - anon_sym_RBRACE, - [131877] = 2, + ACTIONS(8102), 1, + anon_sym_RBRACK, + [132181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8069), 1, + ACTIONS(8104), 1, anon_sym_RBRACE, - [131884] = 2, + [132188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8071), 1, + ACTIONS(477), 1, anon_sym_RBRACE, - [131891] = 2, + [132195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(8106), 1, anon_sym_RBRACE, - [131898] = 2, + [132202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(881), 1, + ACTIONS(8108), 1, anon_sym_RBRACE, - [131905] = 2, + [132209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8073), 1, + ACTIONS(8110), 1, anon_sym_RBRACE, - [131912] = 2, + [132216] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8075), 1, + ACTIONS(919), 1, anon_sym_RBRACE, - [131919] = 2, + [132223] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(929), 1, + ACTIONS(8112), 1, anon_sym_RBRACE, - [131926] = 2, + [132230] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8077), 1, - ts_builtin_sym_end, - [131933] = 2, + ACTIONS(1593), 1, + anon_sym_RPAREN, + [132237] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(893), 1, - anon_sym_RBRACE, - [131940] = 2, + ACTIONS(8114), 1, + sym_identifier, + [132244] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8079), 1, - anon_sym_RBRACE, - [131947] = 2, + ACTIONS(8116), 1, + sym_identifier, + [132251] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8081), 1, - anon_sym_RBRACE, - [131954] = 2, + ACTIONS(8118), 1, + sym_identifier, + [132258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8083), 1, + ACTIONS(8120), 1, anon_sym_RBRACK, - [131961] = 2, + [132265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8085), 1, - anon_sym_RBRACE, - [131968] = 2, + ACTIONS(4908), 1, + anon_sym_COLON, + [132272] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8087), 1, - anon_sym_RBRACE, - [131975] = 2, + ACTIONS(8122), 1, + anon_sym_RBRACK, + [132279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8089), 1, + ACTIONS(937), 1, anon_sym_RBRACE, - [131982] = 2, + [132286] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8091), 1, + ACTIONS(8124), 1, anon_sym_RBRACE, - [131989] = 2, + [132293] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8093), 1, - anon_sym_RBRACK, - [131996] = 2, + ACTIONS(8126), 1, + sym_identifier, + [132300] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8095), 1, - anon_sym_RBRACK, - [132003] = 2, + ACTIONS(8128), 1, + anon_sym_RBRACE, + [132307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8130), 1, + anon_sym_RBRACE, + [132314] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8097), 1, + ACTIONS(935), 1, anon_sym_RBRACE, - [132010] = 2, + [132321] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8099), 1, + ACTIONS(8132), 1, anon_sym_LPAREN, - [132017] = 2, + [132328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(907), 1, + ACTIONS(8134), 1, anon_sym_RBRACE, - [132024] = 2, + [132335] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8101), 1, - sym_identifier, - [132031] = 2, + ACTIONS(8136), 1, + anon_sym_RBRACE, + [132342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8103), 1, - anon_sym_RBRACK, - [132038] = 2, - ACTIONS(495), 1, + ACTIONS(8138), 1, + anon_sym_RBRACE, + [132349] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8105), 1, - aux_sym_hash_statement_token1, - [132045] = 2, + ACTIONS(8140), 1, + anon_sym_DOT, + [132356] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8107), 1, + ACTIONS(8142), 1, anon_sym_LPAREN, - [132052] = 2, + [132363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8109), 1, - anon_sym_RBRACE, - [132059] = 2, + ACTIONS(4992), 1, + sym_identifier, + [132370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8111), 1, + ACTIONS(8144), 1, anon_sym_RBRACE, - [132066] = 2, + [132377] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8113), 1, - sym_identifier, - [132073] = 2, + ACTIONS(8146), 1, + anon_sym_RBRACE, + [132384] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8115), 1, + ACTIONS(8148), 1, anon_sym_LPAREN, - [132080] = 2, + [132391] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8117), 1, - anon_sym_RBRACK, - [132087] = 2, + ACTIONS(8150), 1, + anon_sym_RBRACE, + [132398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8119), 1, + ACTIONS(8152), 1, anon_sym_RBRACE, - [132094] = 2, + [132405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8121), 1, + ACTIONS(8154), 1, anon_sym_RBRACE, - [132101] = 2, + [132412] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8123), 1, + ACTIONS(8156), 1, anon_sym_LPAREN, - [132108] = 2, + [132419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8125), 1, + ACTIONS(8158), 1, anon_sym_RBRACE, - [132115] = 2, + [132426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8127), 1, + ACTIONS(923), 1, anon_sym_RBRACE, - [132122] = 2, + [132433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8129), 1, - anon_sym_RBRACE, - [132129] = 2, + ACTIONS(8160), 1, + anon_sym_RBRACK, + [132440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8131), 1, + ACTIONS(8162), 1, anon_sym_LPAREN, - [132136] = 2, + [132447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8133), 1, - anon_sym_RBRACE, - [132143] = 2, - ACTIONS(3), 1, + ACTIONS(8164), 1, + sym_identifier, + [132454] = 2, + ACTIONS(495), 1, sym_comment, - ACTIONS(8135), 1, - anon_sym_RBRACE, - [132150] = 2, + ACTIONS(8166), 1, + aux_sym__content_block_token1, + [132461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8137), 1, - anon_sym_RBRACE, - [132157] = 2, + ACTIONS(1466), 1, + anon_sym_RPAREN, + [132468] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8139), 1, + ACTIONS(8168), 1, anon_sym_LPAREN, - [132164] = 2, + [132475] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8141), 1, + ACTIONS(8170), 1, anon_sym_RBRACE, - [132171] = 2, + [132482] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8143), 1, + ACTIONS(8172), 1, anon_sym_RBRACE, - [132178] = 2, + [132489] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8145), 1, - anon_sym_RBRACK, - [132185] = 2, + ACTIONS(8174), 1, + anon_sym_RBRACE, + [132496] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8147), 1, + ACTIONS(8176), 1, anon_sym_LPAREN, - [132192] = 2, + [132503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8149), 1, - anon_sym_RBRACK, - [132199] = 2, + ACTIONS(945), 1, + anon_sym_RBRACE, + [132510] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8151), 1, + ACTIONS(871), 1, anon_sym_RBRACE, - [132206] = 2, + [132517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8153), 1, - sym_identifier, - [132213] = 2, + ACTIONS(8178), 1, + anon_sym_RBRACE, + [132524] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8155), 1, + ACTIONS(8180), 1, anon_sym_LPAREN, - [132220] = 2, + [132531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8157), 1, - sym_identifier, - [132227] = 2, + ACTIONS(8182), 1, + anon_sym_RBRACE, + [132538] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(871), 1, + ACTIONS(8184), 1, anon_sym_RBRACE, - [132234] = 2, + [132545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8159), 1, + ACTIONS(8186), 1, anon_sym_RBRACE, - [132241] = 2, + [132552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8161), 1, + ACTIONS(8188), 1, anon_sym_LPAREN, - [132248] = 2, + [132559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6926), 1, - sym_identifier, - [132255] = 2, + ACTIONS(8190), 1, + anon_sym_RBRACE, + [132566] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8163), 1, - anon_sym_PIPE, - [132262] = 2, + ACTIONS(8192), 1, + anon_sym_LBRACE, + [132573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8165), 1, + ACTIONS(8194), 1, anon_sym_RBRACE, - [132269] = 2, + [132580] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8167), 1, + ACTIONS(8196), 1, anon_sym_LPAREN, - [132276] = 2, + [132587] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8169), 1, - anon_sym_EQ, - [132283] = 2, + ACTIONS(5442), 1, + anon_sym_LBRACE, + [132594] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(889), 1, + ACTIONS(8198), 1, anon_sym_RBRACE, - [132290] = 2, + [132601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8171), 1, - sym_identifier, - [132297] = 2, + ACTIONS(8200), 1, + anon_sym_DOT, + [132608] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8173), 1, - sym_identifier, - [132304] = 2, + ACTIONS(8202), 1, + anon_sym_RBRACE, + [132615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8175), 1, + ACTIONS(8204), 1, anon_sym_RBRACE, - [132311] = 2, + [132622] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8177), 1, + ACTIONS(8206), 1, anon_sym_RBRACE, - [132318] = 2, + [132629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8179), 1, + ACTIONS(8208), 1, anon_sym_RBRACE, - [132325] = 2, + [132636] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8181), 1, - anon_sym_RBRACE, - [132332] = 2, + ACTIONS(8210), 1, + anon_sym_RBRACK, + [132643] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8183), 1, + ACTIONS(925), 1, anon_sym_RBRACE, - [132339] = 2, + [132650] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8185), 1, - anon_sym_RBRACE, - [132346] = 2, + ACTIONS(8212), 1, + anon_sym_RBRACK, + [132657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8187), 1, - anon_sym_RBRACE, - [132353] = 2, + ACTIONS(8214), 1, + anon_sym_RBRACK, + [132664] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8189), 1, - anon_sym_RBRACE, - [132360] = 2, + ACTIONS(1464), 1, + anon_sym_RPAREN, + [132671] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 1, - anon_sym_RBRACK, - [132367] = 2, + ACTIONS(6090), 1, + anon_sym_COLON_EQ, + [132678] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8193), 1, - anon_sym_COLON, - [132374] = 2, + ACTIONS(8216), 1, + anon_sym_LPAREN, + [132685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(885), 1, + ACTIONS(8218), 1, anon_sym_RBRACE, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1620)] = 0, - [SMALL_STATE(1621)] = 71, - [SMALL_STATE(1622)] = 142, - [SMALL_STATE(1623)] = 213, - [SMALL_STATE(1624)] = 284, - [SMALL_STATE(1625)] = 355, - [SMALL_STATE(1626)] = 478, - [SMALL_STATE(1627)] = 547, - [SMALL_STATE(1628)] = 616, - [SMALL_STATE(1629)] = 685, - [SMALL_STATE(1630)] = 754, - [SMALL_STATE(1631)] = 823, - [SMALL_STATE(1632)] = 892, - [SMALL_STATE(1633)] = 961, - [SMALL_STATE(1634)] = 1030, - [SMALL_STATE(1635)] = 1099, - [SMALL_STATE(1636)] = 1168, - [SMALL_STATE(1637)] = 1252, - [SMALL_STATE(1638)] = 1338, - [SMALL_STATE(1639)] = 1426, - [SMALL_STATE(1640)] = 1514, - [SMALL_STATE(1641)] = 1598, - [SMALL_STATE(1642)] = 1686, - [SMALL_STATE(1643)] = 1772, - [SMALL_STATE(1644)] = 1866, - [SMALL_STATE(1645)] = 1962, - [SMALL_STATE(1646)] = 2082, - [SMALL_STATE(1647)] = 2192, - [SMALL_STATE(1648)] = 2302, - [SMALL_STATE(1649)] = 2386, - [SMALL_STATE(1650)] = 2499, - [SMALL_STATE(1651)] = 2566, - [SMALL_STATE(1652)] = 2633, - [SMALL_STATE(1653)] = 2704, - [SMALL_STATE(1654)] = 2775, - [SMALL_STATE(1655)] = 2841, - [SMALL_STATE(1656)] = 2933, - [SMALL_STATE(1657)] = 3041, - [SMALL_STATE(1658)] = 3149, - [SMALL_STATE(1659)] = 3231, - [SMALL_STATE(1660)] = 3325, - [SMALL_STATE(1661)] = 3411, - [SMALL_STATE(1662)] = 3497, - [SMALL_STATE(1663)] = 3605, - [SMALL_STATE(1664)] = 3675, - [SMALL_STATE(1665)] = 3743, - [SMALL_STATE(1666)] = 3811, - [SMALL_STATE(1667)] = 3935, - [SMALL_STATE(1668)] = 4003, - [SMALL_STATE(1669)] = 4085, - [SMALL_STATE(1670)] = 4171, - [SMALL_STATE(1671)] = 4255, - [SMALL_STATE(1672)] = 4323, - [SMALL_STATE(1673)] = 4391, - [SMALL_STATE(1674)] = 4473, - [SMALL_STATE(1675)] = 4539, - [SMALL_STATE(1676)] = 4605, - [SMALL_STATE(1677)] = 4671, - [SMALL_STATE(1678)] = 4737, - [SMALL_STATE(1679)] = 4803, - [SMALL_STATE(1680)] = 4869, - [SMALL_STATE(1681)] = 4935, - [SMALL_STATE(1682)] = 5001, - [SMALL_STATE(1683)] = 5067, - [SMALL_STATE(1684)] = 5133, - [SMALL_STATE(1685)] = 5199, - [SMALL_STATE(1686)] = 5265, - [SMALL_STATE(1687)] = 5331, - [SMALL_STATE(1688)] = 5399, - [SMALL_STATE(1689)] = 5465, - [SMALL_STATE(1690)] = 5531, - [SMALL_STATE(1691)] = 5597, - [SMALL_STATE(1692)] = 5663, - [SMALL_STATE(1693)] = 5729, - [SMALL_STATE(1694)] = 5797, - [SMALL_STATE(1695)] = 5863, - [SMALL_STATE(1696)] = 5929, - [SMALL_STATE(1697)] = 6053, - [SMALL_STATE(1698)] = 6119, - [SMALL_STATE(1699)] = 6184, - [SMALL_STATE(1700)] = 6249, - [SMALL_STATE(1701)] = 6314, - [SMALL_STATE(1702)] = 6379, - [SMALL_STATE(1703)] = 6444, - [SMALL_STATE(1704)] = 6509, - [SMALL_STATE(1705)] = 6574, - [SMALL_STATE(1706)] = 6639, - [SMALL_STATE(1707)] = 6704, - [SMALL_STATE(1708)] = 6769, - [SMALL_STATE(1709)] = 6834, - [SMALL_STATE(1710)] = 6903, - [SMALL_STATE(1711)] = 6970, - [SMALL_STATE(1712)] = 7035, - [SMALL_STATE(1713)] = 7100, - [SMALL_STATE(1714)] = 7165, - [SMALL_STATE(1715)] = 7230, - [SMALL_STATE(1716)] = 7295, - [SMALL_STATE(1717)] = 7360, - [SMALL_STATE(1718)] = 7425, - [SMALL_STATE(1719)] = 7492, - [SMALL_STATE(1720)] = 7559, - [SMALL_STATE(1721)] = 7624, - [SMALL_STATE(1722)] = 7689, - [SMALL_STATE(1723)] = 7754, - [SMALL_STATE(1724)] = 7819, - [SMALL_STATE(1725)] = 7884, - [SMALL_STATE(1726)] = 7951, - [SMALL_STATE(1727)] = 8016, - [SMALL_STATE(1728)] = 8083, - [SMALL_STATE(1729)] = 8148, - [SMALL_STATE(1730)] = 8213, - [SMALL_STATE(1731)] = 8278, - [SMALL_STATE(1732)] = 8343, - [SMALL_STATE(1733)] = 8408, - [SMALL_STATE(1734)] = 8473, - [SMALL_STATE(1735)] = 8540, - [SMALL_STATE(1736)] = 8607, - [SMALL_STATE(1737)] = 8672, - [SMALL_STATE(1738)] = 8737, - [SMALL_STATE(1739)] = 8802, - [SMALL_STATE(1740)] = 8867, - [SMALL_STATE(1741)] = 8932, - [SMALL_STATE(1742)] = 8997, - [SMALL_STATE(1743)] = 9062, - [SMALL_STATE(1744)] = 9127, - [SMALL_STATE(1745)] = 9192, - [SMALL_STATE(1746)] = 9257, - [SMALL_STATE(1747)] = 9322, - [SMALL_STATE(1748)] = 9387, - [SMALL_STATE(1749)] = 9452, - [SMALL_STATE(1750)] = 9519, - [SMALL_STATE(1751)] = 9584, - [SMALL_STATE(1752)] = 9649, - [SMALL_STATE(1753)] = 9714, - [SMALL_STATE(1754)] = 9781, - [SMALL_STATE(1755)] = 9846, - [SMALL_STATE(1756)] = 9911, - [SMALL_STATE(1757)] = 9976, - [SMALL_STATE(1758)] = 10041, - [SMALL_STATE(1759)] = 10106, - [SMALL_STATE(1760)] = 10171, - [SMALL_STATE(1761)] = 10236, - [SMALL_STATE(1762)] = 10301, - [SMALL_STATE(1763)] = 10366, - [SMALL_STATE(1764)] = 10431, - [SMALL_STATE(1765)] = 10496, - [SMALL_STATE(1766)] = 10561, - [SMALL_STATE(1767)] = 10626, - [SMALL_STATE(1768)] = 10691, - [SMALL_STATE(1769)] = 10756, - [SMALL_STATE(1770)] = 10821, - [SMALL_STATE(1771)] = 10886, - [SMALL_STATE(1772)] = 10951, - [SMALL_STATE(1773)] = 11016, - [SMALL_STATE(1774)] = 11081, - [SMALL_STATE(1775)] = 11146, - [SMALL_STATE(1776)] = 11211, - [SMALL_STATE(1777)] = 11280, - [SMALL_STATE(1778)] = 11345, - [SMALL_STATE(1779)] = 11410, - [SMALL_STATE(1780)] = 11475, - [SMALL_STATE(1781)] = 11593, - [SMALL_STATE(1782)] = 11677, - [SMALL_STATE(1783)] = 11763, - [SMALL_STATE(1784)] = 11849, - [SMALL_STATE(1785)] = 11933, - [SMALL_STATE(1786)] = 12021, - [SMALL_STATE(1787)] = 12117, - [SMALL_STATE(1788)] = 12201, - [SMALL_STATE(1789)] = 12313, - [SMALL_STATE(1790)] = 12429, - [SMALL_STATE(1791)] = 12541, - [SMALL_STATE(1792)] = 12625, - [SMALL_STATE(1793)] = 12691, - [SMALL_STATE(1794)] = 12757, - [SMALL_STATE(1795)] = 12855, - [SMALL_STATE(1796)] = 12921, - [SMALL_STATE(1797)] = 13009, - [SMALL_STATE(1798)] = 13097, - [SMALL_STATE(1799)] = 13181, - [SMALL_STATE(1800)] = 13247, - [SMALL_STATE(1801)] = 13313, - [SMALL_STATE(1802)] = 13425, - [SMALL_STATE(1803)] = 13537, - [SMALL_STATE(1804)] = 13653, - [SMALL_STATE(1805)] = 13737, - [SMALL_STATE(1806)] = 13803, - [SMALL_STATE(1807)] = 13891, - [SMALL_STATE(1808)] = 13979, - [SMALL_STATE(1809)] = 14077, - [SMALL_STATE(1810)] = 14173, - [SMALL_STATE(1811)] = 14261, - [SMALL_STATE(1812)] = 14324, - [SMALL_STATE(1813)] = 14387, - [SMALL_STATE(1814)] = 14450, - [SMALL_STATE(1815)] = 14513, - [SMALL_STATE(1816)] = 14576, - [SMALL_STATE(1817)] = 14639, - [SMALL_STATE(1818)] = 14702, - [SMALL_STATE(1819)] = 14765, - [SMALL_STATE(1820)] = 14828, - [SMALL_STATE(1821)] = 14891, - [SMALL_STATE(1822)] = 14954, - [SMALL_STATE(1823)] = 15017, - [SMALL_STATE(1824)] = 15080, - [SMALL_STATE(1825)] = 15147, - [SMALL_STATE(1826)] = 15210, - [SMALL_STATE(1827)] = 15273, - [SMALL_STATE(1828)] = 15384, - [SMALL_STATE(1829)] = 15447, - [SMALL_STATE(1830)] = 15510, - [SMALL_STATE(1831)] = 15573, - [SMALL_STATE(1832)] = 15636, - [SMALL_STATE(1833)] = 15699, - [SMALL_STATE(1834)] = 15786, - [SMALL_STATE(1835)] = 15873, - [SMALL_STATE(1836)] = 15936, - [SMALL_STATE(1837)] = 15999, - [SMALL_STATE(1838)] = 16066, - [SMALL_STATE(1839)] = 16133, - [SMALL_STATE(1840)] = 16244, - [SMALL_STATE(1841)] = 16307, - [SMALL_STATE(1842)] = 16370, - [SMALL_STATE(1843)] = 16433, - [SMALL_STATE(1844)] = 16496, - [SMALL_STATE(1845)] = 16593, - [SMALL_STATE(1846)] = 16656, - [SMALL_STATE(1847)] = 16719, - [SMALL_STATE(1848)] = 16790, - [SMALL_STATE(1849)] = 16885, - [SMALL_STATE(1850)] = 16972, - [SMALL_STATE(1851)] = 17057, - [SMALL_STATE(1852)] = 17120, - [SMALL_STATE(1853)] = 17183, - [SMALL_STATE(1854)] = 17246, - [SMALL_STATE(1855)] = 17309, - [SMALL_STATE(1856)] = 17372, - [SMALL_STATE(1857)] = 17435, - [SMALL_STATE(1858)] = 17498, - [SMALL_STATE(1859)] = 17561, - [SMALL_STATE(1860)] = 17624, - [SMALL_STATE(1861)] = 17687, - [SMALL_STATE(1862)] = 17750, - [SMALL_STATE(1863)] = 17813, - [SMALL_STATE(1864)] = 17876, - [SMALL_STATE(1865)] = 17939, - [SMALL_STATE(1866)] = 18002, - [SMALL_STATE(1867)] = 18065, - [SMALL_STATE(1868)] = 18128, - [SMALL_STATE(1869)] = 18191, - [SMALL_STATE(1870)] = 18256, - [SMALL_STATE(1871)] = 18319, - [SMALL_STATE(1872)] = 18382, - [SMALL_STATE(1873)] = 18445, - [SMALL_STATE(1874)] = 18508, - [SMALL_STATE(1875)] = 18571, - [SMALL_STATE(1876)] = 18634, - [SMALL_STATE(1877)] = 18697, - [SMALL_STATE(1878)] = 18762, - [SMALL_STATE(1879)] = 18825, - [SMALL_STATE(1880)] = 18888, - [SMALL_STATE(1881)] = 18951, - [SMALL_STATE(1882)] = 19014, - [SMALL_STATE(1883)] = 19077, - [SMALL_STATE(1884)] = 19140, - [SMALL_STATE(1885)] = 19203, - [SMALL_STATE(1886)] = 19266, - [SMALL_STATE(1887)] = 19329, - [SMALL_STATE(1888)] = 19392, - [SMALL_STATE(1889)] = 19455, - [SMALL_STATE(1890)] = 19518, - [SMALL_STATE(1891)] = 19581, - [SMALL_STATE(1892)] = 19644, - [SMALL_STATE(1893)] = 19707, - [SMALL_STATE(1894)] = 19770, - [SMALL_STATE(1895)] = 19833, - [SMALL_STATE(1896)] = 19896, - [SMALL_STATE(1897)] = 19959, - [SMALL_STATE(1898)] = 20022, - [SMALL_STATE(1899)] = 20087, - [SMALL_STATE(1900)] = 20150, - [SMALL_STATE(1901)] = 20215, - [SMALL_STATE(1902)] = 20278, - [SMALL_STATE(1903)] = 20345, - [SMALL_STATE(1904)] = 20408, - [SMALL_STATE(1905)] = 20519, - [SMALL_STATE(1906)] = 20630, - [SMALL_STATE(1907)] = 20693, - [SMALL_STATE(1908)] = 20756, - [SMALL_STATE(1909)] = 20819, - [SMALL_STATE(1910)] = 20882, - [SMALL_STATE(1911)] = 20945, - [SMALL_STATE(1912)] = 21008, - [SMALL_STATE(1913)] = 21071, - [SMALL_STATE(1914)] = 21134, - [SMALL_STATE(1915)] = 21197, - [SMALL_STATE(1916)] = 21260, - [SMALL_STATE(1917)] = 21323, - [SMALL_STATE(1918)] = 21386, - [SMALL_STATE(1919)] = 21449, - [SMALL_STATE(1920)] = 21512, - [SMALL_STATE(1921)] = 21575, - [SMALL_STATE(1922)] = 21638, - [SMALL_STATE(1923)] = 21701, - [SMALL_STATE(1924)] = 21764, - [SMALL_STATE(1925)] = 21827, - [SMALL_STATE(1926)] = 21892, - [SMALL_STATE(1927)] = 21955, - [SMALL_STATE(1928)] = 22018, - [SMALL_STATE(1929)] = 22081, - [SMALL_STATE(1930)] = 22144, - [SMALL_STATE(1931)] = 22207, - [SMALL_STATE(1932)] = 22270, - [SMALL_STATE(1933)] = 22334, - [SMALL_STATE(1934)] = 22444, - [SMALL_STATE(1935)] = 22508, - [SMALL_STATE(1936)] = 22618, - [SMALL_STATE(1937)] = 22682, - [SMALL_STATE(1938)] = 22792, - [SMALL_STATE(1939)] = 22862, - [SMALL_STATE(1940)] = 22926, - [SMALL_STATE(1941)] = 22990, - [SMALL_STATE(1942)] = 23050, - [SMALL_STATE(1943)] = 23114, - [SMALL_STATE(1944)] = 23176, - [SMALL_STATE(1945)] = 23286, - [SMALL_STATE(1946)] = 23347, - [SMALL_STATE(1947)] = 23408, - [SMALL_STATE(1948)] = 23469, - [SMALL_STATE(1949)] = 23534, - [SMALL_STATE(1950)] = 23595, - [SMALL_STATE(1951)] = 23656, - [SMALL_STATE(1952)] = 23717, - [SMALL_STATE(1953)] = 23778, - [SMALL_STATE(1954)] = 23839, - [SMALL_STATE(1955)] = 23900, - [SMALL_STATE(1956)] = 23961, - [SMALL_STATE(1957)] = 24022, - [SMALL_STATE(1958)] = 24083, - [SMALL_STATE(1959)] = 24144, - [SMALL_STATE(1960)] = 24205, - [SMALL_STATE(1961)] = 24266, - [SMALL_STATE(1962)] = 24327, - [SMALL_STATE(1963)] = 24388, - [SMALL_STATE(1964)] = 24449, - [SMALL_STATE(1965)] = 24510, - [SMALL_STATE(1966)] = 24571, - [SMALL_STATE(1967)] = 24632, - [SMALL_STATE(1968)] = 24693, - [SMALL_STATE(1969)] = 24754, - [SMALL_STATE(1970)] = 24815, - [SMALL_STATE(1971)] = 24876, - [SMALL_STATE(1972)] = 24937, - [SMALL_STATE(1973)] = 24998, - [SMALL_STATE(1974)] = 25059, - [SMALL_STATE(1975)] = 25120, - [SMALL_STATE(1976)] = 25181, - [SMALL_STATE(1977)] = 25242, - [SMALL_STATE(1978)] = 25303, - [SMALL_STATE(1979)] = 25364, - [SMALL_STATE(1980)] = 25425, - [SMALL_STATE(1981)] = 25486, - [SMALL_STATE(1982)] = 25547, - [SMALL_STATE(1983)] = 25608, - [SMALL_STATE(1984)] = 25669, - [SMALL_STATE(1985)] = 25730, - [SMALL_STATE(1986)] = 25791, - [SMALL_STATE(1987)] = 25854, - [SMALL_STATE(1988)] = 25915, - [SMALL_STATE(1989)] = 25980, - [SMALL_STATE(1990)] = 26041, - [SMALL_STATE(1991)] = 26102, - [SMALL_STATE(1992)] = 26163, - [SMALL_STATE(1993)] = 26224, - [SMALL_STATE(1994)] = 26287, - [SMALL_STATE(1995)] = 26350, - [SMALL_STATE(1996)] = 26411, - [SMALL_STATE(1997)] = 26472, - [SMALL_STATE(1998)] = 26537, - [SMALL_STATE(1999)] = 26598, - [SMALL_STATE(2000)] = 26659, - [SMALL_STATE(2001)] = 26720, - [SMALL_STATE(2002)] = 26781, - [SMALL_STATE(2003)] = 26842, - [SMALL_STATE(2004)] = 26903, - [SMALL_STATE(2005)] = 26964, - [SMALL_STATE(2006)] = 27025, - [SMALL_STATE(2007)] = 27086, - [SMALL_STATE(2008)] = 27147, - [SMALL_STATE(2009)] = 27208, - [SMALL_STATE(2010)] = 27269, - [SMALL_STATE(2011)] = 27330, - [SMALL_STATE(2012)] = 27391, - [SMALL_STATE(2013)] = 27452, - [SMALL_STATE(2014)] = 27513, - [SMALL_STATE(2015)] = 27574, - [SMALL_STATE(2016)] = 27635, - [SMALL_STATE(2017)] = 27696, - [SMALL_STATE(2018)] = 27757, - [SMALL_STATE(2019)] = 27818, - [SMALL_STATE(2020)] = 27879, - [SMALL_STATE(2021)] = 27940, - [SMALL_STATE(2022)] = 28001, - [SMALL_STATE(2023)] = 28064, - [SMALL_STATE(2024)] = 28125, - [SMALL_STATE(2025)] = 28186, - [SMALL_STATE(2026)] = 28247, - [SMALL_STATE(2027)] = 28308, - [SMALL_STATE(2028)] = 28369, - [SMALL_STATE(2029)] = 28430, - [SMALL_STATE(2030)] = 28491, - [SMALL_STATE(2031)] = 28552, - [SMALL_STATE(2032)] = 28615, - [SMALL_STATE(2033)] = 28676, - [SMALL_STATE(2034)] = 28737, - [SMALL_STATE(2035)] = 28798, - [SMALL_STATE(2036)] = 28859, - [SMALL_STATE(2037)] = 28920, - [SMALL_STATE(2038)] = 28981, - [SMALL_STATE(2039)] = 29042, - [SMALL_STATE(2040)] = 29103, - [SMALL_STATE(2041)] = 29164, - [SMALL_STATE(2042)] = 29225, - [SMALL_STATE(2043)] = 29286, - [SMALL_STATE(2044)] = 29347, - [SMALL_STATE(2045)] = 29408, - [SMALL_STATE(2046)] = 29469, - [SMALL_STATE(2047)] = 29530, - [SMALL_STATE(2048)] = 29591, - [SMALL_STATE(2049)] = 29652, - [SMALL_STATE(2050)] = 29713, - [SMALL_STATE(2051)] = 29774, - [SMALL_STATE(2052)] = 29835, - [SMALL_STATE(2053)] = 29896, - [SMALL_STATE(2054)] = 29957, - [SMALL_STATE(2055)] = 30018, - [SMALL_STATE(2056)] = 30079, - [SMALL_STATE(2057)] = 30140, - [SMALL_STATE(2058)] = 30201, - [SMALL_STATE(2059)] = 30262, - [SMALL_STATE(2060)] = 30325, - [SMALL_STATE(2061)] = 30386, - [SMALL_STATE(2062)] = 30447, - [SMALL_STATE(2063)] = 30508, - [SMALL_STATE(2064)] = 30569, - [SMALL_STATE(2065)] = 30630, - [SMALL_STATE(2066)] = 30691, - [SMALL_STATE(2067)] = 30752, - [SMALL_STATE(2068)] = 30813, - [SMALL_STATE(2069)] = 30874, - [SMALL_STATE(2070)] = 30935, - [SMALL_STATE(2071)] = 30996, - [SMALL_STATE(2072)] = 31057, - [SMALL_STATE(2073)] = 31118, - [SMALL_STATE(2074)] = 31179, - [SMALL_STATE(2075)] = 31240, - [SMALL_STATE(2076)] = 31301, - [SMALL_STATE(2077)] = 31362, - [SMALL_STATE(2078)] = 31423, - [SMALL_STATE(2079)] = 31484, - [SMALL_STATE(2080)] = 31545, - [SMALL_STATE(2081)] = 31606, - [SMALL_STATE(2082)] = 31669, - [SMALL_STATE(2083)] = 31730, - [SMALL_STATE(2084)] = 31795, - [SMALL_STATE(2085)] = 31858, - [SMALL_STATE(2086)] = 31921, - [SMALL_STATE(2087)] = 31982, - [SMALL_STATE(2088)] = 32043, - [SMALL_STATE(2089)] = 32106, - [SMALL_STATE(2090)] = 32169, - [SMALL_STATE(2091)] = 32230, - [SMALL_STATE(2092)] = 32291, - [SMALL_STATE(2093)] = 32352, - [SMALL_STATE(2094)] = 32413, - [SMALL_STATE(2095)] = 32474, - [SMALL_STATE(2096)] = 32535, - [SMALL_STATE(2097)] = 32596, - [SMALL_STATE(2098)] = 32657, - [SMALL_STATE(2099)] = 32718, - [SMALL_STATE(2100)] = 32779, - [SMALL_STATE(2101)] = 32840, - [SMALL_STATE(2102)] = 32901, - [SMALL_STATE(2103)] = 32962, - [SMALL_STATE(2104)] = 33023, - [SMALL_STATE(2105)] = 33084, - [SMALL_STATE(2106)] = 33145, - [SMALL_STATE(2107)] = 33206, - [SMALL_STATE(2108)] = 33267, - [SMALL_STATE(2109)] = 33328, - [SMALL_STATE(2110)] = 33389, - [SMALL_STATE(2111)] = 33450, - [SMALL_STATE(2112)] = 33511, - [SMALL_STATE(2113)] = 33574, - [SMALL_STATE(2114)] = 33635, - [SMALL_STATE(2115)] = 33696, - [SMALL_STATE(2116)] = 33757, - [SMALL_STATE(2117)] = 33818, - [SMALL_STATE(2118)] = 33879, - [SMALL_STATE(2119)] = 33940, - [SMALL_STATE(2120)] = 34001, - [SMALL_STATE(2121)] = 34062, - [SMALL_STATE(2122)] = 34123, - [SMALL_STATE(2123)] = 34184, - [SMALL_STATE(2124)] = 34245, - [SMALL_STATE(2125)] = 34306, - [SMALL_STATE(2126)] = 34367, - [SMALL_STATE(2127)] = 34428, - [SMALL_STATE(2128)] = 34489, - [SMALL_STATE(2129)] = 34550, - [SMALL_STATE(2130)] = 34611, - [SMALL_STATE(2131)] = 34672, - [SMALL_STATE(2132)] = 34733, - [SMALL_STATE(2133)] = 34794, - [SMALL_STATE(2134)] = 34855, - [SMALL_STATE(2135)] = 34916, - [SMALL_STATE(2136)] = 34981, - [SMALL_STATE(2137)] = 35046, - [SMALL_STATE(2138)] = 35107, - [SMALL_STATE(2139)] = 35168, - [SMALL_STATE(2140)] = 35229, - [SMALL_STATE(2141)] = 35290, - [SMALL_STATE(2142)] = 35351, - [SMALL_STATE(2143)] = 35412, - [SMALL_STATE(2144)] = 35473, - [SMALL_STATE(2145)] = 35534, - [SMALL_STATE(2146)] = 35595, - [SMALL_STATE(2147)] = 35656, - [SMALL_STATE(2148)] = 35717, - [SMALL_STATE(2149)] = 35778, - [SMALL_STATE(2150)] = 35839, - [SMALL_STATE(2151)] = 35900, - [SMALL_STATE(2152)] = 35960, - [SMALL_STATE(2153)] = 36020, - [SMALL_STATE(2154)] = 36080, - [SMALL_STATE(2155)] = 36140, - [SMALL_STATE(2156)] = 36200, - [SMALL_STATE(2157)] = 36263, - [SMALL_STATE(2158)] = 36338, - [SMALL_STATE(2159)] = 36413, - [SMALL_STATE(2160)] = 36488, - [SMALL_STATE(2161)] = 36550, - [SMALL_STATE(2162)] = 36614, - [SMALL_STATE(2163)] = 36676, - [SMALL_STATE(2164)] = 36733, - [SMALL_STATE(2165)] = 36790, - [SMALL_STATE(2166)] = 36847, - [SMALL_STATE(2167)] = 36910, - [SMALL_STATE(2168)] = 36969, - [SMALL_STATE(2169)] = 37030, - [SMALL_STATE(2170)] = 37087, - [SMALL_STATE(2171)] = 37144, - [SMALL_STATE(2172)] = 37201, - [SMALL_STATE(2173)] = 37258, - [SMALL_STATE(2174)] = 37315, - [SMALL_STATE(2175)] = 37374, - [SMALL_STATE(2176)] = 37433, - [SMALL_STATE(2177)] = 37492, - [SMALL_STATE(2178)] = 37549, - [SMALL_STATE(2179)] = 37606, - [SMALL_STATE(2180)] = 37711, - [SMALL_STATE(2181)] = 37767, - [SMALL_STATE(2182)] = 37823, - [SMALL_STATE(2183)] = 37879, - [SMALL_STATE(2184)] = 37961, - [SMALL_STATE(2185)] = 38045, - [SMALL_STATE(2186)] = 38101, - [SMALL_STATE(2187)] = 38177, - [SMALL_STATE(2188)] = 38233, - [SMALL_STATE(2189)] = 38289, - [SMALL_STATE(2190)] = 38345, - [SMALL_STATE(2191)] = 38401, - [SMALL_STATE(2192)] = 38457, - [SMALL_STATE(2193)] = 38513, - [SMALL_STATE(2194)] = 38569, - [SMALL_STATE(2195)] = 38625, - [SMALL_STATE(2196)] = 38681, - [SMALL_STATE(2197)] = 38737, - [SMALL_STATE(2198)] = 38793, - [SMALL_STATE(2199)] = 38851, - [SMALL_STATE(2200)] = 38907, - [SMALL_STATE(2201)] = 38963, - [SMALL_STATE(2202)] = 39019, - [SMALL_STATE(2203)] = 39123, - [SMALL_STATE(2204)] = 39179, - [SMALL_STATE(2205)] = 39277, - [SMALL_STATE(2206)] = 39333, - [SMALL_STATE(2207)] = 39391, - [SMALL_STATE(2208)] = 39449, - [SMALL_STATE(2209)] = 39505, - [SMALL_STATE(2210)] = 39561, - [SMALL_STATE(2211)] = 39617, - [SMALL_STATE(2212)] = 39673, - [SMALL_STATE(2213)] = 39729, - [SMALL_STATE(2214)] = 39785, - [SMALL_STATE(2215)] = 39841, - [SMALL_STATE(2216)] = 39897, - [SMALL_STATE(2217)] = 39953, - [SMALL_STATE(2218)] = 40011, - [SMALL_STATE(2219)] = 40067, - [SMALL_STATE(2220)] = 40123, - [SMALL_STATE(2221)] = 40179, - [SMALL_STATE(2222)] = 40235, - [SMALL_STATE(2223)] = 40291, - [SMALL_STATE(2224)] = 40347, - [SMALL_STATE(2225)] = 40403, - [SMALL_STATE(2226)] = 40459, - [SMALL_STATE(2227)] = 40515, - [SMALL_STATE(2228)] = 40571, - [SMALL_STATE(2229)] = 40647, - [SMALL_STATE(2230)] = 40703, - [SMALL_STATE(2231)] = 40759, - [SMALL_STATE(2232)] = 40815, - [SMALL_STATE(2233)] = 40871, - [SMALL_STATE(2234)] = 40927, - [SMALL_STATE(2235)] = 40983, - [SMALL_STATE(2236)] = 41039, - [SMALL_STATE(2237)] = 41095, - [SMALL_STATE(2238)] = 41151, - [SMALL_STATE(2239)] = 41207, - [SMALL_STATE(2240)] = 41283, - [SMALL_STATE(2241)] = 41339, - [SMALL_STATE(2242)] = 41413, - [SMALL_STATE(2243)] = 41471, - [SMALL_STATE(2244)] = 41527, - [SMALL_STATE(2245)] = 41583, - [SMALL_STATE(2246)] = 41639, - [SMALL_STATE(2247)] = 41695, - [SMALL_STATE(2248)] = 41751, - [SMALL_STATE(2249)] = 41807, - [SMALL_STATE(2250)] = 41863, - [SMALL_STATE(2251)] = 41919, - [SMALL_STATE(2252)] = 42017, - [SMALL_STATE(2253)] = 42073, - [SMALL_STATE(2254)] = 42129, - [SMALL_STATE(2255)] = 42185, - [SMALL_STATE(2256)] = 42241, - [SMALL_STATE(2257)] = 42297, - [SMALL_STATE(2258)] = 42353, - [SMALL_STATE(2259)] = 42409, - [SMALL_STATE(2260)] = 42465, - [SMALL_STATE(2261)] = 42521, - [SMALL_STATE(2262)] = 42577, - [SMALL_STATE(2263)] = 42633, - [SMALL_STATE(2264)] = 42689, - [SMALL_STATE(2265)] = 42745, - [SMALL_STATE(2266)] = 42801, - [SMALL_STATE(2267)] = 42857, - [SMALL_STATE(2268)] = 42913, - [SMALL_STATE(2269)] = 42969, - [SMALL_STATE(2270)] = 43025, - [SMALL_STATE(2271)] = 43081, - [SMALL_STATE(2272)] = 43137, - [SMALL_STATE(2273)] = 43193, - [SMALL_STATE(2274)] = 43249, - [SMALL_STATE(2275)] = 43305, - [SMALL_STATE(2276)] = 43361, - [SMALL_STATE(2277)] = 43417, - [SMALL_STATE(2278)] = 43473, - [SMALL_STATE(2279)] = 43529, - [SMALL_STATE(2280)] = 43585, - [SMALL_STATE(2281)] = 43641, - [SMALL_STATE(2282)] = 43697, - [SMALL_STATE(2283)] = 43753, - [SMALL_STATE(2284)] = 43809, - [SMALL_STATE(2285)] = 43865, - [SMALL_STATE(2286)] = 43921, - [SMALL_STATE(2287)] = 43977, - [SMALL_STATE(2288)] = 44033, - [SMALL_STATE(2289)] = 44089, - [SMALL_STATE(2290)] = 44145, - [SMALL_STATE(2291)] = 44201, - [SMALL_STATE(2292)] = 44257, - [SMALL_STATE(2293)] = 44315, - [SMALL_STATE(2294)] = 44412, - [SMALL_STATE(2295)] = 44509, - [SMALL_STATE(2296)] = 44606, - [SMALL_STATE(2297)] = 44679, - [SMALL_STATE(2298)] = 44754, - [SMALL_STATE(2299)] = 44835, - [SMALL_STATE(2300)] = 44918, - [SMALL_STATE(2301)] = 44993, - [SMALL_STATE(2302)] = 45068, - [SMALL_STATE(2303)] = 45123, - [SMALL_STATE(2304)] = 45178, - [SMALL_STATE(2305)] = 45275, - [SMALL_STATE(2306)] = 45330, - [SMALL_STATE(2307)] = 45385, - [SMALL_STATE(2308)] = 45462, - [SMALL_STATE(2309)] = 45539, - [SMALL_STATE(2310)] = 45596, - [SMALL_STATE(2311)] = 45653, - [SMALL_STATE(2312)] = 45730, - [SMALL_STATE(2313)] = 45788, - [SMALL_STATE(2314)] = 45846, - [SMALL_STATE(2315)] = 45948, - [SMALL_STATE(2316)] = 46003, - [SMALL_STATE(2317)] = 46058, - [SMALL_STATE(2318)] = 46127, - [SMALL_STATE(2319)] = 46226, - [SMALL_STATE(2320)] = 46281, - [SMALL_STATE(2321)] = 46350, - [SMALL_STATE(2322)] = 46405, - [SMALL_STATE(2323)] = 46474, - [SMALL_STATE(2324)] = 46529, - [SMALL_STATE(2325)] = 46581, - [SMALL_STATE(2326)] = 46633, - [SMALL_STATE(2327)] = 46685, - [SMALL_STATE(2328)] = 46737, - [SMALL_STATE(2329)] = 46789, - [SMALL_STATE(2330)] = 46841, - [SMALL_STATE(2331)] = 46893, - [SMALL_STATE(2332)] = 46945, - [SMALL_STATE(2333)] = 47039, - [SMALL_STATE(2334)] = 47091, - [SMALL_STATE(2335)] = 47143, - [SMALL_STATE(2336)] = 47195, - [SMALL_STATE(2337)] = 47247, - [SMALL_STATE(2338)] = 47341, - [SMALL_STATE(2339)] = 47393, - [SMALL_STATE(2340)] = 47445, - [SMALL_STATE(2341)] = 47497, - [SMALL_STATE(2342)] = 47549, - [SMALL_STATE(2343)] = 47601, - [SMALL_STATE(2344)] = 47653, - [SMALL_STATE(2345)] = 47709, - [SMALL_STATE(2346)] = 47765, - [SMALL_STATE(2347)] = 47817, - [SMALL_STATE(2348)] = 47869, - [SMALL_STATE(2349)] = 47921, - [SMALL_STATE(2350)] = 47973, - [SMALL_STATE(2351)] = 48025, - [SMALL_STATE(2352)] = 48077, - [SMALL_STATE(2353)] = 48129, - [SMALL_STATE(2354)] = 48181, - [SMALL_STATE(2355)] = 48233, - [SMALL_STATE(2356)] = 48285, - [SMALL_STATE(2357)] = 48337, - [SMALL_STATE(2358)] = 48391, - [SMALL_STATE(2359)] = 48443, - [SMALL_STATE(2360)] = 48495, - [SMALL_STATE(2361)] = 48547, - [SMALL_STATE(2362)] = 48599, - [SMALL_STATE(2363)] = 48651, - [SMALL_STATE(2364)] = 48703, - [SMALL_STATE(2365)] = 48755, - [SMALL_STATE(2366)] = 48827, - [SMALL_STATE(2367)] = 48899, - [SMALL_STATE(2368)] = 48951, - [SMALL_STATE(2369)] = 49003, - [SMALL_STATE(2370)] = 49055, - [SMALL_STATE(2371)] = 49107, - [SMALL_STATE(2372)] = 49187, - [SMALL_STATE(2373)] = 49281, - [SMALL_STATE(2374)] = 49333, - [SMALL_STATE(2375)] = 49411, - [SMALL_STATE(2376)] = 49483, - [SMALL_STATE(2377)] = 49535, - [SMALL_STATE(2378)] = 49605, - [SMALL_STATE(2379)] = 49657, - [SMALL_STATE(2380)] = 49751, - [SMALL_STATE(2381)] = 49861, - [SMALL_STATE(2382)] = 49957, - [SMALL_STATE(2383)] = 50009, - [SMALL_STATE(2384)] = 50061, - [SMALL_STATE(2385)] = 50113, - [SMALL_STATE(2386)] = 50165, - [SMALL_STATE(2387)] = 50217, - [SMALL_STATE(2388)] = 50327, - [SMALL_STATE(2389)] = 50379, - [SMALL_STATE(2390)] = 50431, - [SMALL_STATE(2391)] = 50483, - [SMALL_STATE(2392)] = 50535, - [SMALL_STATE(2393)] = 50587, - [SMALL_STATE(2394)] = 50639, - [SMALL_STATE(2395)] = 50691, - [SMALL_STATE(2396)] = 50743, - [SMALL_STATE(2397)] = 50815, - [SMALL_STATE(2398)] = 50867, - [SMALL_STATE(2399)] = 50977, - [SMALL_STATE(2400)] = 51087, - [SMALL_STATE(2401)] = 51139, - [SMALL_STATE(2402)] = 51191, - [SMALL_STATE(2403)] = 51247, - [SMALL_STATE(2404)] = 51303, - [SMALL_STATE(2405)] = 51355, - [SMALL_STATE(2406)] = 51407, - [SMALL_STATE(2407)] = 51517, - [SMALL_STATE(2408)] = 51569, - [SMALL_STATE(2409)] = 51623, - [SMALL_STATE(2410)] = 51695, - [SMALL_STATE(2411)] = 51805, - [SMALL_STATE(2412)] = 51857, - [SMALL_STATE(2413)] = 51967, - [SMALL_STATE(2414)] = 52019, - [SMALL_STATE(2415)] = 52071, - [SMALL_STATE(2416)] = 52123, - [SMALL_STATE(2417)] = 52175, - [SMALL_STATE(2418)] = 52227, - [SMALL_STATE(2419)] = 52337, - [SMALL_STATE(2420)] = 52417, - [SMALL_STATE(2421)] = 52527, - [SMALL_STATE(2422)] = 52579, - [SMALL_STATE(2423)] = 52631, - [SMALL_STATE(2424)] = 52683, - [SMALL_STATE(2425)] = 52735, - [SMALL_STATE(2426)] = 52787, - [SMALL_STATE(2427)] = 52839, - [SMALL_STATE(2428)] = 52891, - [SMALL_STATE(2429)] = 52943, - [SMALL_STATE(2430)] = 52995, - [SMALL_STATE(2431)] = 53073, - [SMALL_STATE(2432)] = 53125, - [SMALL_STATE(2433)] = 53177, - [SMALL_STATE(2434)] = 53231, - [SMALL_STATE(2435)] = 53283, - [SMALL_STATE(2436)] = 53335, - [SMALL_STATE(2437)] = 53445, - [SMALL_STATE(2438)] = 53497, - [SMALL_STATE(2439)] = 53549, - [SMALL_STATE(2440)] = 53601, - [SMALL_STATE(2441)] = 53695, - [SMALL_STATE(2442)] = 53789, - [SMALL_STATE(2443)] = 53899, - [SMALL_STATE(2444)] = 53951, - [SMALL_STATE(2445)] = 54003, - [SMALL_STATE(2446)] = 54055, - [SMALL_STATE(2447)] = 54127, - [SMALL_STATE(2448)] = 54197, - [SMALL_STATE(2449)] = 54249, - [SMALL_STATE(2450)] = 54301, - [SMALL_STATE(2451)] = 54411, - [SMALL_STATE(2452)] = 54463, - [SMALL_STATE(2453)] = 54515, - [SMALL_STATE(2454)] = 54625, - [SMALL_STATE(2455)] = 54677, - [SMALL_STATE(2456)] = 54730, - [SMALL_STATE(2457)] = 54811, - [SMALL_STATE(2458)] = 54892, - [SMALL_STATE(2459)] = 54983, - [SMALL_STATE(2460)] = 55072, - [SMALL_STATE(2461)] = 55145, - [SMALL_STATE(2462)] = 55226, - [SMALL_STATE(2463)] = 55303, - [SMALL_STATE(2464)] = 55394, - [SMALL_STATE(2465)] = 55447, - [SMALL_STATE(2466)] = 55500, - [SMALL_STATE(2467)] = 55553, - [SMALL_STATE(2468)] = 55658, - [SMALL_STATE(2469)] = 55763, - [SMALL_STATE(2470)] = 55816, - [SMALL_STATE(2471)] = 55869, - [SMALL_STATE(2472)] = 55962, - [SMALL_STATE(2473)] = 56035, - [SMALL_STATE(2474)] = 56122, - [SMALL_STATE(2475)] = 56175, - [SMALL_STATE(2476)] = 56262, - [SMALL_STATE(2477)] = 56355, - [SMALL_STATE(2478)] = 56442, - [SMALL_STATE(2479)] = 56523, - [SMALL_STATE(2480)] = 56576, - [SMALL_STATE(2481)] = 56669, - [SMALL_STATE(2482)] = 56772, - [SMALL_STATE(2483)] = 56875, - [SMALL_STATE(2484)] = 56962, - [SMALL_STATE(2485)] = 57039, - [SMALL_STATE(2486)] = 57092, - [SMALL_STATE(2487)] = 57147, - [SMALL_STATE(2488)] = 57240, - [SMALL_STATE(2489)] = 57321, - [SMALL_STATE(2490)] = 57394, - [SMALL_STATE(2491)] = 57475, - [SMALL_STATE(2492)] = 57564, - [SMALL_STATE(2493)] = 57614, - [SMALL_STATE(2494)] = 57664, - [SMALL_STATE(2495)] = 57714, - [SMALL_STATE(2496)] = 57764, - [SMALL_STATE(2497)] = 57814, - [SMALL_STATE(2498)] = 57864, - [SMALL_STATE(2499)] = 57914, - [SMALL_STATE(2500)] = 57964, - [SMALL_STATE(2501)] = 58014, - [SMALL_STATE(2502)] = 58064, - [SMALL_STATE(2503)] = 58114, - [SMALL_STATE(2504)] = 58192, - [SMALL_STATE(2505)] = 58242, - [SMALL_STATE(2506)] = 58292, - [SMALL_STATE(2507)] = 58342, - [SMALL_STATE(2508)] = 58392, - [SMALL_STATE(2509)] = 58442, - [SMALL_STATE(2510)] = 58492, - [SMALL_STATE(2511)] = 58542, - [SMALL_STATE(2512)] = 58592, - [SMALL_STATE(2513)] = 58642, - [SMALL_STATE(2514)] = 58692, - [SMALL_STATE(2515)] = 58742, - [SMALL_STATE(2516)] = 58792, - [SMALL_STATE(2517)] = 58842, - [SMALL_STATE(2518)] = 58892, - [SMALL_STATE(2519)] = 58942, - [SMALL_STATE(2520)] = 59046, - [SMALL_STATE(2521)] = 59096, - [SMALL_STATE(2522)] = 59146, - [SMALL_STATE(2523)] = 59196, - [SMALL_STATE(2524)] = 59296, - [SMALL_STATE(2525)] = 59396, - [SMALL_STATE(2526)] = 59446, - [SMALL_STATE(2527)] = 59550, - [SMALL_STATE(2528)] = 59600, - [SMALL_STATE(2529)] = 59650, - [SMALL_STATE(2530)] = 59700, - [SMALL_STATE(2531)] = 59750, - [SMALL_STATE(2532)] = 59800, - [SMALL_STATE(2533)] = 59852, - [SMALL_STATE(2534)] = 59904, - [SMALL_STATE(2535)] = 59954, - [SMALL_STATE(2536)] = 60004, - [SMALL_STATE(2537)] = 60054, - [SMALL_STATE(2538)] = 60104, - [SMALL_STATE(2539)] = 60154, - [SMALL_STATE(2540)] = 60204, - [SMALL_STATE(2541)] = 60282, - [SMALL_STATE(2542)] = 60332, - [SMALL_STATE(2543)] = 60382, - [SMALL_STATE(2544)] = 60432, - [SMALL_STATE(2545)] = 60510, - [SMALL_STATE(2546)] = 60560, - [SMALL_STATE(2547)] = 60610, - [SMALL_STATE(2548)] = 60660, - [SMALL_STATE(2549)] = 60714, - [SMALL_STATE(2550)] = 60820, - [SMALL_STATE(2551)] = 60924, - [SMALL_STATE(2552)] = 60976, - [SMALL_STATE(2553)] = 61030, - [SMALL_STATE(2554)] = 61130, - [SMALL_STATE(2555)] = 61230, - [SMALL_STATE(2556)] = 61280, - [SMALL_STATE(2557)] = 61330, - [SMALL_STATE(2558)] = 61430, - [SMALL_STATE(2559)] = 61514, - [SMALL_STATE(2560)] = 61600, - [SMALL_STATE(2561)] = 61650, - [SMALL_STATE(2562)] = 61700, - [SMALL_STATE(2563)] = 61752, - [SMALL_STATE(2564)] = 61802, - [SMALL_STATE(2565)] = 61852, - [SMALL_STATE(2566)] = 61902, - [SMALL_STATE(2567)] = 61952, - [SMALL_STATE(2568)] = 62004, - [SMALL_STATE(2569)] = 62078, - [SMALL_STATE(2570)] = 62156, - [SMALL_STATE(2571)] = 62260, - [SMALL_STATE(2572)] = 62310, - [SMALL_STATE(2573)] = 62362, - [SMALL_STATE(2574)] = 62412, - [SMALL_STATE(2575)] = 62462, - [SMALL_STATE(2576)] = 62516, - [SMALL_STATE(2577)] = 62596, - [SMALL_STATE(2578)] = 62650, - [SMALL_STATE(2579)] = 62730, - [SMALL_STATE(2580)] = 62814, - [SMALL_STATE(2581)] = 62864, - [SMALL_STATE(2582)] = 62954, - [SMALL_STATE(2583)] = 63004, - [SMALL_STATE(2584)] = 63054, - [SMALL_STATE(2585)] = 63142, - [SMALL_STATE(2586)] = 63228, - [SMALL_STATE(2587)] = 63308, - [SMALL_STATE(2588)] = 63358, - [SMALL_STATE(2589)] = 63408, - [SMALL_STATE(2590)] = 63458, - [SMALL_STATE(2591)] = 63508, - [SMALL_STATE(2592)] = 63558, - [SMALL_STATE(2593)] = 63608, - [SMALL_STATE(2594)] = 63658, - [SMALL_STATE(2595)] = 63708, - [SMALL_STATE(2596)] = 63758, - [SMALL_STATE(2597)] = 63808, - [SMALL_STATE(2598)] = 63860, - [SMALL_STATE(2599)] = 63910, - [SMALL_STATE(2600)] = 63960, - [SMALL_STATE(2601)] = 64010, - [SMALL_STATE(2602)] = 64060, - [SMALL_STATE(2603)] = 64110, - [SMALL_STATE(2604)] = 64184, - [SMALL_STATE(2605)] = 64234, - [SMALL_STATE(2606)] = 64284, - [SMALL_STATE(2607)] = 64334, - [SMALL_STATE(2608)] = 64410, - [SMALL_STATE(2609)] = 64460, - [SMALL_STATE(2610)] = 64510, - [SMALL_STATE(2611)] = 64560, - [SMALL_STATE(2612)] = 64610, - [SMALL_STATE(2613)] = 64660, - [SMALL_STATE(2614)] = 64710, - [SMALL_STATE(2615)] = 64760, - [SMALL_STATE(2616)] = 64810, - [SMALL_STATE(2617)] = 64888, - [SMALL_STATE(2618)] = 64938, - [SMALL_STATE(2619)] = 64988, - [SMALL_STATE(2620)] = 65038, - [SMALL_STATE(2621)] = 65088, - [SMALL_STATE(2622)] = 65138, - [SMALL_STATE(2623)] = 65216, - [SMALL_STATE(2624)] = 65317, - [SMALL_STATE(2625)] = 65420, - [SMALL_STATE(2626)] = 65521, - [SMALL_STATE(2627)] = 65624, - [SMALL_STATE(2628)] = 65723, - [SMALL_STATE(2629)] = 65822, - [SMALL_STATE(2630)] = 65923, - [SMALL_STATE(2631)] = 65972, - [SMALL_STATE(2632)] = 66021, - [SMALL_STATE(2633)] = 66074, - [SMALL_STATE(2634)] = 66123, - [SMALL_STATE(2635)] = 66172, - [SMALL_STATE(2636)] = 66273, - [SMALL_STATE(2637)] = 66376, - [SMALL_STATE(2638)] = 66477, - [SMALL_STATE(2639)] = 66580, - [SMALL_STATE(2640)] = 66635, - [SMALL_STATE(2641)] = 66738, - [SMALL_STATE(2642)] = 66839, - [SMALL_STATE(2643)] = 66890, - [SMALL_STATE(2644)] = 66941, - [SMALL_STATE(2645)] = 67042, - [SMALL_STATE(2646)] = 67097, - [SMALL_STATE(2647)] = 67198, - [SMALL_STATE(2648)] = 67297, - [SMALL_STATE(2649)] = 67400, - [SMALL_STATE(2650)] = 67503, - [SMALL_STATE(2651)] = 67604, - [SMALL_STATE(2652)] = 67705, - [SMALL_STATE(2653)] = 67808, - [SMALL_STATE(2654)] = 67907, - [SMALL_STATE(2655)] = 68010, - [SMALL_STATE(2656)] = 68111, - [SMALL_STATE(2657)] = 68210, - [SMALL_STATE(2658)] = 68261, - [SMALL_STATE(2659)] = 68364, - [SMALL_STATE(2660)] = 68465, - [SMALL_STATE(2661)] = 68568, - [SMALL_STATE(2662)] = 68671, - [SMALL_STATE(2663)] = 68772, - [SMALL_STATE(2664)] = 68875, - [SMALL_STATE(2665)] = 68976, - [SMALL_STATE(2666)] = 69024, - [SMALL_STATE(2667)] = 69118, - [SMALL_STATE(2668)] = 69166, - [SMALL_STATE(2669)] = 69214, - [SMALL_STATE(2670)] = 69262, - [SMALL_STATE(2671)] = 69360, - [SMALL_STATE(2672)] = 69458, - [SMALL_STATE(2673)] = 69552, - [SMALL_STATE(2674)] = 69650, - [SMALL_STATE(2675)] = 69748, - [SMALL_STATE(2676)] = 69796, - [SMALL_STATE(2677)] = 69844, - [SMALL_STATE(2678)] = 69938, - [SMALL_STATE(2679)] = 69986, - [SMALL_STATE(2680)] = 70034, - [SMALL_STATE(2681)] = 70082, - [SMALL_STATE(2682)] = 70130, - [SMALL_STATE(2683)] = 70178, - [SMALL_STATE(2684)] = 70226, - [SMALL_STATE(2685)] = 70274, - [SMALL_STATE(2686)] = 70322, - [SMALL_STATE(2687)] = 70420, - [SMALL_STATE(2688)] = 70468, - [SMALL_STATE(2689)] = 70516, - [SMALL_STATE(2690)] = 70564, - [SMALL_STATE(2691)] = 70662, - [SMALL_STATE(2692)] = 70710, - [SMALL_STATE(2693)] = 70808, - [SMALL_STATE(2694)] = 70856, - [SMALL_STATE(2695)] = 70904, - [SMALL_STATE(2696)] = 70952, - [SMALL_STATE(2697)] = 71000, - [SMALL_STATE(2698)] = 71052, - [SMALL_STATE(2699)] = 71150, - [SMALL_STATE(2700)] = 71198, - [SMALL_STATE(2701)] = 71246, - [SMALL_STATE(2702)] = 71344, - [SMALL_STATE(2703)] = 71442, - [SMALL_STATE(2704)] = 71536, - [SMALL_STATE(2705)] = 71630, - [SMALL_STATE(2706)] = 71678, - [SMALL_STATE(2707)] = 71772, - [SMALL_STATE(2708)] = 71844, - [SMALL_STATE(2709)] = 71892, - [SMALL_STATE(2710)] = 71940, - [SMALL_STATE(2711)] = 71988, - [SMALL_STATE(2712)] = 72036, - [SMALL_STATE(2713)] = 72084, - [SMALL_STATE(2714)] = 72160, - [SMALL_STATE(2715)] = 72208, - [SMALL_STATE(2716)] = 72256, - [SMALL_STATE(2717)] = 72354, - [SMALL_STATE(2718)] = 72402, - [SMALL_STATE(2719)] = 72450, - [SMALL_STATE(2720)] = 72498, - [SMALL_STATE(2721)] = 72546, - [SMALL_STATE(2722)] = 72594, - [SMALL_STATE(2723)] = 72676, - [SMALL_STATE(2724)] = 72724, - [SMALL_STATE(2725)] = 72774, - [SMALL_STATE(2726)] = 72822, - [SMALL_STATE(2727)] = 72920, - [SMALL_STATE(2728)] = 73018, - [SMALL_STATE(2729)] = 73116, - [SMALL_STATE(2730)] = 73200, - [SMALL_STATE(2731)] = 73248, - [SMALL_STATE(2732)] = 73296, - [SMALL_STATE(2733)] = 73344, - [SMALL_STATE(2734)] = 73392, - [SMALL_STATE(2735)] = 73486, - [SMALL_STATE(2736)] = 73534, - [SMALL_STATE(2737)] = 73582, - [SMALL_STATE(2738)] = 73630, - [SMALL_STATE(2739)] = 73678, - [SMALL_STATE(2740)] = 73726, - [SMALL_STATE(2741)] = 73776, - [SMALL_STATE(2742)] = 73824, - [SMALL_STATE(2743)] = 73872, - [SMALL_STATE(2744)] = 73970, - [SMALL_STATE(2745)] = 74020, - [SMALL_STATE(2746)] = 74068, - [SMALL_STATE(2747)] = 74116, - [SMALL_STATE(2748)] = 74166, - [SMALL_STATE(2749)] = 74242, - [SMALL_STATE(2750)] = 74318, - [SMALL_STATE(2751)] = 74416, - [SMALL_STATE(2752)] = 74510, - [SMALL_STATE(2753)] = 74558, - [SMALL_STATE(2754)] = 74656, - [SMALL_STATE(2755)] = 74754, - [SMALL_STATE(2756)] = 74802, - [SMALL_STATE(2757)] = 74900, - [SMALL_STATE(2758)] = 74950, - [SMALL_STATE(2759)] = 75000, - [SMALL_STATE(2760)] = 75048, - [SMALL_STATE(2761)] = 75096, - [SMALL_STATE(2762)] = 75144, - [SMALL_STATE(2763)] = 75192, - [SMALL_STATE(2764)] = 75240, - [SMALL_STATE(2765)] = 75288, - [SMALL_STATE(2766)] = 75336, - [SMALL_STATE(2767)] = 75434, - [SMALL_STATE(2768)] = 75482, - [SMALL_STATE(2769)] = 75530, - [SMALL_STATE(2770)] = 75628, - [SMALL_STATE(2771)] = 75676, - [SMALL_STATE(2772)] = 75774, - [SMALL_STATE(2773)] = 75872, - [SMALL_STATE(2774)] = 75922, - [SMALL_STATE(2775)] = 75970, - [SMALL_STATE(2776)] = 76068, - [SMALL_STATE(2777)] = 76116, - [SMALL_STATE(2778)] = 76210, - [SMALL_STATE(2779)] = 76258, - [SMALL_STATE(2780)] = 76306, - [SMALL_STATE(2781)] = 76354, - [SMALL_STATE(2782)] = 76402, - [SMALL_STATE(2783)] = 76450, - [SMALL_STATE(2784)] = 76498, - [SMALL_STATE(2785)] = 76546, - [SMALL_STATE(2786)] = 76594, - [SMALL_STATE(2787)] = 76692, - [SMALL_STATE(2788)] = 76740, - [SMALL_STATE(2789)] = 76788, - [SMALL_STATE(2790)] = 76886, - [SMALL_STATE(2791)] = 76934, - [SMALL_STATE(2792)] = 77010, - [SMALL_STATE(2793)] = 77104, - [SMALL_STATE(2794)] = 77154, - [SMALL_STATE(2795)] = 77204, - [SMALL_STATE(2796)] = 77302, - [SMALL_STATE(2797)] = 77400, - [SMALL_STATE(2798)] = 77476, - [SMALL_STATE(2799)] = 77574, - [SMALL_STATE(2800)] = 77672, - [SMALL_STATE(2801)] = 77770, - [SMALL_STATE(2802)] = 77818, - [SMALL_STATE(2803)] = 77916, - [SMALL_STATE(2804)] = 77966, - [SMALL_STATE(2805)] = 78064, - [SMALL_STATE(2806)] = 78162, - [SMALL_STATE(2807)] = 78246, - [SMALL_STATE(2808)] = 78328, - [SMALL_STATE(2809)] = 78426, - [SMALL_STATE(2810)] = 78474, - [SMALL_STATE(2811)] = 78526, - [SMALL_STATE(2812)] = 78576, - [SMALL_STATE(2813)] = 78674, - [SMALL_STATE(2814)] = 78750, - [SMALL_STATE(2815)] = 78798, - [SMALL_STATE(2816)] = 78870, - [SMALL_STATE(2817)] = 78918, - [SMALL_STATE(2818)] = 79016, - [SMALL_STATE(2819)] = 79110, - [SMALL_STATE(2820)] = 79208, - [SMALL_STATE(2821)] = 79256, - [SMALL_STATE(2822)] = 79304, - [SMALL_STATE(2823)] = 79398, - [SMALL_STATE(2824)] = 79496, - [SMALL_STATE(2825)] = 79590, - [SMALL_STATE(2826)] = 79638, - [SMALL_STATE(2827)] = 79736, - [SMALL_STATE(2828)] = 79784, - [SMALL_STATE(2829)] = 79882, - [SMALL_STATE(2830)] = 79976, - [SMALL_STATE(2831)] = 80074, - [SMALL_STATE(2832)] = 80172, - [SMALL_STATE(2833)] = 80224, - [SMALL_STATE(2834)] = 80322, - [SMALL_STATE(2835)] = 80370, - [SMALL_STATE(2836)] = 80468, - [SMALL_STATE(2837)] = 80516, - [SMALL_STATE(2838)] = 80568, - [SMALL_STATE(2839)] = 80618, - [SMALL_STATE(2840)] = 80716, - [SMALL_STATE(2841)] = 80814, - [SMALL_STATE(2842)] = 80908, - [SMALL_STATE(2843)] = 80956, - [SMALL_STATE(2844)] = 81054, - [SMALL_STATE(2845)] = 81152, - [SMALL_STATE(2846)] = 81200, - [SMALL_STATE(2847)] = 81250, - [SMALL_STATE(2848)] = 81348, - [SMALL_STATE(2849)] = 81396, - [SMALL_STATE(2850)] = 81490, - [SMALL_STATE(2851)] = 81538, - [SMALL_STATE(2852)] = 81586, - [SMALL_STATE(2853)] = 81681, - [SMALL_STATE(2854)] = 81730, - [SMALL_STATE(2855)] = 81825, - [SMALL_STATE(2856)] = 81920, - [SMALL_STATE(2857)] = 82015, - [SMALL_STATE(2858)] = 82110, - [SMALL_STATE(2859)] = 82205, - [SMALL_STATE(2860)] = 82300, - [SMALL_STATE(2861)] = 82395, - [SMALL_STATE(2862)] = 82442, - [SMALL_STATE(2863)] = 82495, - [SMALL_STATE(2864)] = 82590, - [SMALL_STATE(2865)] = 82685, - [SMALL_STATE(2866)] = 82772, - [SMALL_STATE(2867)] = 82819, - [SMALL_STATE(2868)] = 82914, - [SMALL_STATE(2869)] = 83009, - [SMALL_STATE(2870)] = 83104, - [SMALL_STATE(2871)] = 83199, - [SMALL_STATE(2872)] = 83294, - [SMALL_STATE(2873)] = 83343, - [SMALL_STATE(2874)] = 83432, - [SMALL_STATE(2875)] = 83481, - [SMALL_STATE(2876)] = 83568, - [SMALL_STATE(2877)] = 83657, - [SMALL_STATE(2878)] = 83752, - [SMALL_STATE(2879)] = 83805, - [SMALL_STATE(2880)] = 83851, - [SMALL_STATE(2881)] = 83897, - [SMALL_STATE(2882)] = 83943, - [SMALL_STATE(2883)] = 83991, - [SMALL_STATE(2884)] = 84073, - [SMALL_STATE(2885)] = 84161, - [SMALL_STATE(2886)] = 84207, - [SMALL_STATE(2887)] = 84253, - [SMALL_STATE(2888)] = 84299, - [SMALL_STATE(2889)] = 84347, - [SMALL_STATE(2890)] = 84395, - [SMALL_STATE(2891)] = 84441, - [SMALL_STATE(2892)] = 84487, - [SMALL_STATE(2893)] = 84535, - [SMALL_STATE(2894)] = 84617, - [SMALL_STATE(2895)] = 84663, - [SMALL_STATE(2896)] = 84709, - [SMALL_STATE(2897)] = 84757, - [SMALL_STATE(2898)] = 84803, - [SMALL_STATE(2899)] = 84851, - [SMALL_STATE(2900)] = 84897, - [SMALL_STATE(2901)] = 84943, - [SMALL_STATE(2902)] = 84989, - [SMALL_STATE(2903)] = 85035, - [SMALL_STATE(2904)] = 85083, - [SMALL_STATE(2905)] = 85129, - [SMALL_STATE(2906)] = 85177, - [SMALL_STATE(2907)] = 85225, - [SMALL_STATE(2908)] = 85271, - [SMALL_STATE(2909)] = 85319, - [SMALL_STATE(2910)] = 85365, - [SMALL_STATE(2911)] = 85413, - [SMALL_STATE(2912)] = 85495, - [SMALL_STATE(2913)] = 85577, - [SMALL_STATE(2914)] = 85623, - [SMALL_STATE(2915)] = 85671, - [SMALL_STATE(2916)] = 85717, - [SMALL_STATE(2917)] = 85765, - [SMALL_STATE(2918)] = 85811, - [SMALL_STATE(2919)] = 85857, - [SMALL_STATE(2920)] = 85903, - [SMALL_STATE(2921)] = 85949, - [SMALL_STATE(2922)] = 86031, - [SMALL_STATE(2923)] = 86077, - [SMALL_STATE(2924)] = 86159, - [SMALL_STATE(2925)] = 86205, - [SMALL_STATE(2926)] = 86251, - [SMALL_STATE(2927)] = 86297, - [SMALL_STATE(2928)] = 86343, - [SMALL_STATE(2929)] = 86391, - [SMALL_STATE(2930)] = 86440, - [SMALL_STATE(2931)] = 86489, - [SMALL_STATE(2932)] = 86536, - [SMALL_STATE(2933)] = 86585, - [SMALL_STATE(2934)] = 86632, - [SMALL_STATE(2935)] = 86679, - [SMALL_STATE(2936)] = 86726, - [SMALL_STATE(2937)] = 86775, - [SMALL_STATE(2938)] = 86824, - [SMALL_STATE(2939)] = 86873, - [SMALL_STATE(2940)] = 86920, - [SMALL_STATE(2941)] = 86967, - [SMALL_STATE(2942)] = 87016, - [SMALL_STATE(2943)] = 87063, - [SMALL_STATE(2944)] = 87112, - [SMALL_STATE(2945)] = 87159, - [SMALL_STATE(2946)] = 87208, - [SMALL_STATE(2947)] = 87257, - [SMALL_STATE(2948)] = 87306, - [SMALL_STATE(2949)] = 87353, - [SMALL_STATE(2950)] = 87400, - [SMALL_STATE(2951)] = 87447, - [SMALL_STATE(2952)] = 87494, - [SMALL_STATE(2953)] = 87541, - [SMALL_STATE(2954)] = 87588, - [SMALL_STATE(2955)] = 87637, - [SMALL_STATE(2956)] = 87686, - [SMALL_STATE(2957)] = 87735, - [SMALL_STATE(2958)] = 87784, - [SMALL_STATE(2959)] = 87831, - [SMALL_STATE(2960)] = 87880, - [SMALL_STATE(2961)] = 87927, - [SMALL_STATE(2962)] = 87974, - [SMALL_STATE(2963)] = 88021, - [SMALL_STATE(2964)] = 88068, - [SMALL_STATE(2965)] = 88115, - [SMALL_STATE(2966)] = 88164, - [SMALL_STATE(2967)] = 88213, - [SMALL_STATE(2968)] = 88260, - [SMALL_STATE(2969)] = 88309, - [SMALL_STATE(2970)] = 88356, - [SMALL_STATE(2971)] = 88403, - [SMALL_STATE(2972)] = 88452, - [SMALL_STATE(2973)] = 88499, - [SMALL_STATE(2974)] = 88546, - [SMALL_STATE(2975)] = 88593, - [SMALL_STATE(2976)] = 88640, - [SMALL_STATE(2977)] = 88687, - [SMALL_STATE(2978)] = 88734, - [SMALL_STATE(2979)] = 88783, - [SMALL_STATE(2980)] = 88830, - [SMALL_STATE(2981)] = 88877, - [SMALL_STATE(2982)] = 88924, - [SMALL_STATE(2983)] = 88971, - [SMALL_STATE(2984)] = 89018, - [SMALL_STATE(2985)] = 89065, - [SMALL_STATE(2986)] = 89112, - [SMALL_STATE(2987)] = 89159, - [SMALL_STATE(2988)] = 89206, - [SMALL_STATE(2989)] = 89253, - [SMALL_STATE(2990)] = 89302, - [SMALL_STATE(2991)] = 89351, - [SMALL_STATE(2992)] = 89400, - [SMALL_STATE(2993)] = 89449, - [SMALL_STATE(2994)] = 89496, - [SMALL_STATE(2995)] = 89545, - [SMALL_STATE(2996)] = 89592, - [SMALL_STATE(2997)] = 89639, - [SMALL_STATE(2998)] = 89686, - [SMALL_STATE(2999)] = 89733, - [SMALL_STATE(3000)] = 89782, - [SMALL_STATE(3001)] = 89831, - [SMALL_STATE(3002)] = 89913, - [SMALL_STATE(3003)] = 89995, - [SMALL_STATE(3004)] = 90074, - [SMALL_STATE(3005)] = 90153, - [SMALL_STATE(3006)] = 90232, - [SMALL_STATE(3007)] = 90311, - [SMALL_STATE(3008)] = 90390, - [SMALL_STATE(3009)] = 90443, - [SMALL_STATE(3010)] = 90522, - [SMALL_STATE(3011)] = 90601, - [SMALL_STATE(3012)] = 90680, - [SMALL_STATE(3013)] = 90759, - [SMALL_STATE(3014)] = 90838, - [SMALL_STATE(3015)] = 90917, - [SMALL_STATE(3016)] = 90996, - [SMALL_STATE(3017)] = 91075, - [SMALL_STATE(3018)] = 91154, - [SMALL_STATE(3019)] = 91233, - [SMALL_STATE(3020)] = 91312, - [SMALL_STATE(3021)] = 91391, - [SMALL_STATE(3022)] = 91470, - [SMALL_STATE(3023)] = 91549, - [SMALL_STATE(3024)] = 91628, - [SMALL_STATE(3025)] = 91707, - [SMALL_STATE(3026)] = 91786, - [SMALL_STATE(3027)] = 91865, - [SMALL_STATE(3028)] = 91944, - [SMALL_STATE(3029)] = 92023, - [SMALL_STATE(3030)] = 92102, - [SMALL_STATE(3031)] = 92181, - [SMALL_STATE(3032)] = 92260, - [SMALL_STATE(3033)] = 92339, - [SMALL_STATE(3034)] = 92418, - [SMALL_STATE(3035)] = 92497, - [SMALL_STATE(3036)] = 92576, - [SMALL_STATE(3037)] = 92655, - [SMALL_STATE(3038)] = 92734, - [SMALL_STATE(3039)] = 92813, - [SMALL_STATE(3040)] = 92892, - [SMALL_STATE(3041)] = 92971, - [SMALL_STATE(3042)] = 93047, - [SMALL_STATE(3043)] = 93123, - [SMALL_STATE(3044)] = 93199, - [SMALL_STATE(3045)] = 93275, - [SMALL_STATE(3046)] = 93351, - [SMALL_STATE(3047)] = 93427, - [SMALL_STATE(3048)] = 93503, - [SMALL_STATE(3049)] = 93579, - [SMALL_STATE(3050)] = 93655, - [SMALL_STATE(3051)] = 93731, - [SMALL_STATE(3052)] = 93807, - [SMALL_STATE(3053)] = 93883, - [SMALL_STATE(3054)] = 93959, - [SMALL_STATE(3055)] = 94035, - [SMALL_STATE(3056)] = 94111, - [SMALL_STATE(3057)] = 94187, - [SMALL_STATE(3058)] = 94263, - [SMALL_STATE(3059)] = 94339, - [SMALL_STATE(3060)] = 94415, - [SMALL_STATE(3061)] = 94491, - [SMALL_STATE(3062)] = 94567, - [SMALL_STATE(3063)] = 94643, - [SMALL_STATE(3064)] = 94719, - [SMALL_STATE(3065)] = 94795, - [SMALL_STATE(3066)] = 94871, - [SMALL_STATE(3067)] = 94947, - [SMALL_STATE(3068)] = 95023, - [SMALL_STATE(3069)] = 95099, - [SMALL_STATE(3070)] = 95175, - [SMALL_STATE(3071)] = 95251, - [SMALL_STATE(3072)] = 95327, - [SMALL_STATE(3073)] = 95403, - [SMALL_STATE(3074)] = 95479, - [SMALL_STATE(3075)] = 95555, - [SMALL_STATE(3076)] = 95631, - [SMALL_STATE(3077)] = 95707, - [SMALL_STATE(3078)] = 95783, - [SMALL_STATE(3079)] = 95859, - [SMALL_STATE(3080)] = 95935, - [SMALL_STATE(3081)] = 96011, - [SMALL_STATE(3082)] = 96087, - [SMALL_STATE(3083)] = 96163, - [SMALL_STATE(3084)] = 96239, - [SMALL_STATE(3085)] = 96315, - [SMALL_STATE(3086)] = 96391, - [SMALL_STATE(3087)] = 96467, - [SMALL_STATE(3088)] = 96543, - [SMALL_STATE(3089)] = 96619, - [SMALL_STATE(3090)] = 96695, - [SMALL_STATE(3091)] = 96771, - [SMALL_STATE(3092)] = 96847, - [SMALL_STATE(3093)] = 96923, - [SMALL_STATE(3094)] = 96999, - [SMALL_STATE(3095)] = 97075, - [SMALL_STATE(3096)] = 97151, - [SMALL_STATE(3097)] = 97227, - [SMALL_STATE(3098)] = 97303, - [SMALL_STATE(3099)] = 97379, - [SMALL_STATE(3100)] = 97455, - [SMALL_STATE(3101)] = 97531, - [SMALL_STATE(3102)] = 97607, - [SMALL_STATE(3103)] = 97683, - [SMALL_STATE(3104)] = 97759, - [SMALL_STATE(3105)] = 97835, - [SMALL_STATE(3106)] = 97911, - [SMALL_STATE(3107)] = 97987, - [SMALL_STATE(3108)] = 98063, - [SMALL_STATE(3109)] = 98139, - [SMALL_STATE(3110)] = 98215, - [SMALL_STATE(3111)] = 98291, - [SMALL_STATE(3112)] = 98367, - [SMALL_STATE(3113)] = 98443, - [SMALL_STATE(3114)] = 98519, - [SMALL_STATE(3115)] = 98595, - [SMALL_STATE(3116)] = 98671, - [SMALL_STATE(3117)] = 98747, - [SMALL_STATE(3118)] = 98823, - [SMALL_STATE(3119)] = 98899, - [SMALL_STATE(3120)] = 98975, - [SMALL_STATE(3121)] = 99051, - [SMALL_STATE(3122)] = 99127, - [SMALL_STATE(3123)] = 99203, - [SMALL_STATE(3124)] = 99279, - [SMALL_STATE(3125)] = 99355, - [SMALL_STATE(3126)] = 99431, - [SMALL_STATE(3127)] = 99507, - [SMALL_STATE(3128)] = 99583, - [SMALL_STATE(3129)] = 99659, - [SMALL_STATE(3130)] = 99735, - [SMALL_STATE(3131)] = 99811, - [SMALL_STATE(3132)] = 99887, - [SMALL_STATE(3133)] = 99963, - [SMALL_STATE(3134)] = 100039, - [SMALL_STATE(3135)] = 100115, - [SMALL_STATE(3136)] = 100191, - [SMALL_STATE(3137)] = 100267, - [SMALL_STATE(3138)] = 100343, - [SMALL_STATE(3139)] = 100419, - [SMALL_STATE(3140)] = 100495, - [SMALL_STATE(3141)] = 100571, - [SMALL_STATE(3142)] = 100647, - [SMALL_STATE(3143)] = 100723, - [SMALL_STATE(3144)] = 100799, - [SMALL_STATE(3145)] = 100875, - [SMALL_STATE(3146)] = 100951, - [SMALL_STATE(3147)] = 101027, - [SMALL_STATE(3148)] = 101103, - [SMALL_STATE(3149)] = 101179, - [SMALL_STATE(3150)] = 101255, - [SMALL_STATE(3151)] = 101331, - [SMALL_STATE(3152)] = 101407, - [SMALL_STATE(3153)] = 101483, - [SMALL_STATE(3154)] = 101559, - [SMALL_STATE(3155)] = 101635, - [SMALL_STATE(3156)] = 101711, - [SMALL_STATE(3157)] = 101787, - [SMALL_STATE(3158)] = 101863, - [SMALL_STATE(3159)] = 101939, - [SMALL_STATE(3160)] = 102015, - [SMALL_STATE(3161)] = 102091, - [SMALL_STATE(3162)] = 102167, - [SMALL_STATE(3163)] = 102243, - [SMALL_STATE(3164)] = 102319, - [SMALL_STATE(3165)] = 102395, - [SMALL_STATE(3166)] = 102471, - [SMALL_STATE(3167)] = 102547, - [SMALL_STATE(3168)] = 102623, - [SMALL_STATE(3169)] = 102699, - [SMALL_STATE(3170)] = 102775, - [SMALL_STATE(3171)] = 102851, - [SMALL_STATE(3172)] = 102927, - [SMALL_STATE(3173)] = 103003, - [SMALL_STATE(3174)] = 103079, - [SMALL_STATE(3175)] = 103155, - [SMALL_STATE(3176)] = 103231, - [SMALL_STATE(3177)] = 103307, - [SMALL_STATE(3178)] = 103383, - [SMALL_STATE(3179)] = 103459, - [SMALL_STATE(3180)] = 103535, - [SMALL_STATE(3181)] = 103611, - [SMALL_STATE(3182)] = 103687, - [SMALL_STATE(3183)] = 103763, - [SMALL_STATE(3184)] = 103839, - [SMALL_STATE(3185)] = 103915, - [SMALL_STATE(3186)] = 103991, - [SMALL_STATE(3187)] = 104067, - [SMALL_STATE(3188)] = 104143, - [SMALL_STATE(3189)] = 104219, - [SMALL_STATE(3190)] = 104295, - [SMALL_STATE(3191)] = 104371, - [SMALL_STATE(3192)] = 104447, - [SMALL_STATE(3193)] = 104523, - [SMALL_STATE(3194)] = 104599, - [SMALL_STATE(3195)] = 104675, - [SMALL_STATE(3196)] = 104751, - [SMALL_STATE(3197)] = 104827, - [SMALL_STATE(3198)] = 104903, - [SMALL_STATE(3199)] = 104979, - [SMALL_STATE(3200)] = 105055, - [SMALL_STATE(3201)] = 105131, - [SMALL_STATE(3202)] = 105207, - [SMALL_STATE(3203)] = 105283, - [SMALL_STATE(3204)] = 105359, - [SMALL_STATE(3205)] = 105435, - [SMALL_STATE(3206)] = 105511, - [SMALL_STATE(3207)] = 105587, - [SMALL_STATE(3208)] = 105663, - [SMALL_STATE(3209)] = 105739, - [SMALL_STATE(3210)] = 105815, - [SMALL_STATE(3211)] = 105891, - [SMALL_STATE(3212)] = 105967, - [SMALL_STATE(3213)] = 106043, - [SMALL_STATE(3214)] = 106119, - [SMALL_STATE(3215)] = 106195, - [SMALL_STATE(3216)] = 106271, - [SMALL_STATE(3217)] = 106347, - [SMALL_STATE(3218)] = 106423, - [SMALL_STATE(3219)] = 106499, - [SMALL_STATE(3220)] = 106575, - [SMALL_STATE(3221)] = 106651, - [SMALL_STATE(3222)] = 106727, - [SMALL_STATE(3223)] = 106803, - [SMALL_STATE(3224)] = 106879, - [SMALL_STATE(3225)] = 106955, - [SMALL_STATE(3226)] = 107031, - [SMALL_STATE(3227)] = 107107, - [SMALL_STATE(3228)] = 107183, - [SMALL_STATE(3229)] = 107259, - [SMALL_STATE(3230)] = 107335, - [SMALL_STATE(3231)] = 107411, - [SMALL_STATE(3232)] = 107487, - [SMALL_STATE(3233)] = 107563, - [SMALL_STATE(3234)] = 107639, - [SMALL_STATE(3235)] = 107715, - [SMALL_STATE(3236)] = 107791, - [SMALL_STATE(3237)] = 107867, - [SMALL_STATE(3238)] = 107943, - [SMALL_STATE(3239)] = 108019, - [SMALL_STATE(3240)] = 108095, - [SMALL_STATE(3241)] = 108171, - [SMALL_STATE(3242)] = 108247, - [SMALL_STATE(3243)] = 108323, - [SMALL_STATE(3244)] = 108399, - [SMALL_STATE(3245)] = 108475, - [SMALL_STATE(3246)] = 108551, - [SMALL_STATE(3247)] = 108627, - [SMALL_STATE(3248)] = 108703, - [SMALL_STATE(3249)] = 108779, - [SMALL_STATE(3250)] = 108855, - [SMALL_STATE(3251)] = 108931, - [SMALL_STATE(3252)] = 109007, - [SMALL_STATE(3253)] = 109083, - [SMALL_STATE(3254)] = 109159, - [SMALL_STATE(3255)] = 109235, - [SMALL_STATE(3256)] = 109311, - [SMALL_STATE(3257)] = 109387, - [SMALL_STATE(3258)] = 109463, - [SMALL_STATE(3259)] = 109539, - [SMALL_STATE(3260)] = 109615, - [SMALL_STATE(3261)] = 109691, - [SMALL_STATE(3262)] = 109767, - [SMALL_STATE(3263)] = 109843, - [SMALL_STATE(3264)] = 109919, - [SMALL_STATE(3265)] = 109995, - [SMALL_STATE(3266)] = 110071, - [SMALL_STATE(3267)] = 110147, - [SMALL_STATE(3268)] = 110223, - [SMALL_STATE(3269)] = 110299, - [SMALL_STATE(3270)] = 110375, - [SMALL_STATE(3271)] = 110451, - [SMALL_STATE(3272)] = 110527, - [SMALL_STATE(3273)] = 110603, - [SMALL_STATE(3274)] = 110679, - [SMALL_STATE(3275)] = 110755, - [SMALL_STATE(3276)] = 110831, - [SMALL_STATE(3277)] = 110907, - [SMALL_STATE(3278)] = 110983, - [SMALL_STATE(3279)] = 111059, - [SMALL_STATE(3280)] = 111135, - [SMALL_STATE(3281)] = 111211, - [SMALL_STATE(3282)] = 111287, - [SMALL_STATE(3283)] = 111363, - [SMALL_STATE(3284)] = 111439, - [SMALL_STATE(3285)] = 111515, - [SMALL_STATE(3286)] = 111591, - [SMALL_STATE(3287)] = 111667, - [SMALL_STATE(3288)] = 111743, - [SMALL_STATE(3289)] = 111819, - [SMALL_STATE(3290)] = 111895, - [SMALL_STATE(3291)] = 111971, - [SMALL_STATE(3292)] = 112047, - [SMALL_STATE(3293)] = 112123, - [SMALL_STATE(3294)] = 112199, - [SMALL_STATE(3295)] = 112275, - [SMALL_STATE(3296)] = 112351, - [SMALL_STATE(3297)] = 112427, - [SMALL_STATE(3298)] = 112503, - [SMALL_STATE(3299)] = 112579, - [SMALL_STATE(3300)] = 112655, - [SMALL_STATE(3301)] = 112731, - [SMALL_STATE(3302)] = 112807, - [SMALL_STATE(3303)] = 112883, - [SMALL_STATE(3304)] = 112959, - [SMALL_STATE(3305)] = 113035, - [SMALL_STATE(3306)] = 113111, - [SMALL_STATE(3307)] = 113187, - [SMALL_STATE(3308)] = 113263, - [SMALL_STATE(3309)] = 113324, - [SMALL_STATE(3310)] = 113385, - [SMALL_STATE(3311)] = 113446, - [SMALL_STATE(3312)] = 113511, - [SMALL_STATE(3313)] = 113572, - [SMALL_STATE(3314)] = 113633, - [SMALL_STATE(3315)] = 113694, - [SMALL_STATE(3316)] = 113759, - [SMALL_STATE(3317)] = 113820, - [SMALL_STATE(3318)] = 113881, - [SMALL_STATE(3319)] = 113942, - [SMALL_STATE(3320)] = 114003, - [SMALL_STATE(3321)] = 114064, - [SMALL_STATE(3322)] = 114125, - [SMALL_STATE(3323)] = 114186, - [SMALL_STATE(3324)] = 114247, - [SMALL_STATE(3325)] = 114307, - [SMALL_STATE(3326)] = 114337, - [SMALL_STATE(3327)] = 114367, - [SMALL_STATE(3328)] = 114397, - [SMALL_STATE(3329)] = 114427, - [SMALL_STATE(3330)] = 114457, - [SMALL_STATE(3331)] = 114487, - [SMALL_STATE(3332)] = 114531, - [SMALL_STATE(3333)] = 114557, - [SMALL_STATE(3334)] = 114583, - [SMALL_STATE(3335)] = 114621, - [SMALL_STATE(3336)] = 114659, - [SMALL_STATE(3337)] = 114685, - [SMALL_STATE(3338)] = 114723, - [SMALL_STATE(3339)] = 114749, - [SMALL_STATE(3340)] = 114775, - [SMALL_STATE(3341)] = 114802, - [SMALL_STATE(3342)] = 114829, - [SMALL_STATE(3343)] = 114858, - [SMALL_STATE(3344)] = 114881, - [SMALL_STATE(3345)] = 114904, - [SMALL_STATE(3346)] = 114927, - [SMALL_STATE(3347)] = 114953, - [SMALL_STATE(3348)] = 114979, - [SMALL_STATE(3349)] = 115005, - [SMALL_STATE(3350)] = 115031, - [SMALL_STATE(3351)] = 115057, - [SMALL_STATE(3352)] = 115083, - [SMALL_STATE(3353)] = 115109, - [SMALL_STATE(3354)] = 115135, - [SMALL_STATE(3355)] = 115161, - [SMALL_STATE(3356)] = 115202, - [SMALL_STATE(3357)] = 115227, - [SMALL_STATE(3358)] = 115250, - [SMALL_STATE(3359)] = 115291, - [SMALL_STATE(3360)] = 115332, - [SMALL_STATE(3361)] = 115355, - [SMALL_STATE(3362)] = 115381, - [SMALL_STATE(3363)] = 115421, - [SMALL_STATE(3364)] = 115461, - [SMALL_STATE(3365)] = 115501, - [SMALL_STATE(3366)] = 115541, - [SMALL_STATE(3367)] = 115581, - [SMALL_STATE(3368)] = 115621, - [SMALL_STATE(3369)] = 115647, - [SMALL_STATE(3370)] = 115687, - [SMALL_STATE(3371)] = 115727, - [SMALL_STATE(3372)] = 115749, - [SMALL_STATE(3373)] = 115771, - [SMALL_STATE(3374)] = 115797, - [SMALL_STATE(3375)] = 115837, - [SMALL_STATE(3376)] = 115877, - [SMALL_STATE(3377)] = 115917, - [SMALL_STATE(3378)] = 115957, - [SMALL_STATE(3379)] = 115983, - [SMALL_STATE(3380)] = 116023, - [SMALL_STATE(3381)] = 116045, - [SMALL_STATE(3382)] = 116085, - [SMALL_STATE(3383)] = 116125, - [SMALL_STATE(3384)] = 116165, - [SMALL_STATE(3385)] = 116187, - [SMALL_STATE(3386)] = 116209, - [SMALL_STATE(3387)] = 116233, - [SMALL_STATE(3388)] = 116273, - [SMALL_STATE(3389)] = 116313, - [SMALL_STATE(3390)] = 116339, - [SMALL_STATE(3391)] = 116361, - [SMALL_STATE(3392)] = 116401, - [SMALL_STATE(3393)] = 116441, - [SMALL_STATE(3394)] = 116467, - [SMALL_STATE(3395)] = 116493, - [SMALL_STATE(3396)] = 116533, - [SMALL_STATE(3397)] = 116557, - [SMALL_STATE(3398)] = 116597, - [SMALL_STATE(3399)] = 116623, - [SMALL_STATE(3400)] = 116663, - [SMALL_STATE(3401)] = 116703, - [SMALL_STATE(3402)] = 116743, - [SMALL_STATE(3403)] = 116783, - [SMALL_STATE(3404)] = 116823, - [SMALL_STATE(3405)] = 116863, - [SMALL_STATE(3406)] = 116885, - [SMALL_STATE(3407)] = 116925, - [SMALL_STATE(3408)] = 116944, - [SMALL_STATE(3409)] = 116963, - [SMALL_STATE(3410)] = 116982, - [SMALL_STATE(3411)] = 117007, - [SMALL_STATE(3412)] = 117032, - [SMALL_STATE(3413)] = 117052, - [SMALL_STATE(3414)] = 117072, - [SMALL_STATE(3415)] = 117096, - [SMALL_STATE(3416)] = 117113, - [SMALL_STATE(3417)] = 117130, - [SMALL_STATE(3418)] = 117147, - [SMALL_STATE(3419)] = 117164, - [SMALL_STATE(3420)] = 117181, - [SMALL_STATE(3421)] = 117198, - [SMALL_STATE(3422)] = 117215, - [SMALL_STATE(3423)] = 117236, - [SMALL_STATE(3424)] = 117253, - [SMALL_STATE(3425)] = 117270, - [SMALL_STATE(3426)] = 117287, - [SMALL_STATE(3427)] = 117304, - [SMALL_STATE(3428)] = 117325, - [SMALL_STATE(3429)] = 117342, - [SMALL_STATE(3430)] = 117359, - [SMALL_STATE(3431)] = 117382, - [SMALL_STATE(3432)] = 117399, - [SMALL_STATE(3433)] = 117416, - [SMALL_STATE(3434)] = 117433, - [SMALL_STATE(3435)] = 117450, - [SMALL_STATE(3436)] = 117467, - [SMALL_STATE(3437)] = 117484, - [SMALL_STATE(3438)] = 117501, - [SMALL_STATE(3439)] = 117518, - [SMALL_STATE(3440)] = 117535, - [SMALL_STATE(3441)] = 117555, - [SMALL_STATE(3442)] = 117577, - [SMALL_STATE(3443)] = 117609, - [SMALL_STATE(3444)] = 117626, - [SMALL_STATE(3445)] = 117645, - [SMALL_STATE(3446)] = 117672, - [SMALL_STATE(3447)] = 117701, - [SMALL_STATE(3448)] = 117728, - [SMALL_STATE(3449)] = 117749, - [SMALL_STATE(3450)] = 117776, - [SMALL_STATE(3451)] = 117803, - [SMALL_STATE(3452)] = 117830, - [SMALL_STATE(3453)] = 117857, - [SMALL_STATE(3454)] = 117884, - [SMALL_STATE(3455)] = 117911, - [SMALL_STATE(3456)] = 117938, - [SMALL_STATE(3457)] = 117965, - [SMALL_STATE(3458)] = 117986, - [SMALL_STATE(3459)] = 118013, - [SMALL_STATE(3460)] = 118028, - [SMALL_STATE(3461)] = 118055, - [SMALL_STATE(3462)] = 118081, - [SMALL_STATE(3463)] = 118095, - [SMALL_STATE(3464)] = 118109, - [SMALL_STATE(3465)] = 118123, - [SMALL_STATE(3466)] = 118149, - [SMALL_STATE(3467)] = 118163, - [SMALL_STATE(3468)] = 118179, - [SMALL_STATE(3469)] = 118195, - [SMALL_STATE(3470)] = 118209, - [SMALL_STATE(3471)] = 118223, - [SMALL_STATE(3472)] = 118237, - [SMALL_STATE(3473)] = 118251, - [SMALL_STATE(3474)] = 118269, - [SMALL_STATE(3475)] = 118283, - [SMALL_STATE(3476)] = 118299, - [SMALL_STATE(3477)] = 118321, - [SMALL_STATE(3478)] = 118339, - [SMALL_STATE(3479)] = 118357, - [SMALL_STATE(3480)] = 118385, - [SMALL_STATE(3481)] = 118406, - [SMALL_STATE(3482)] = 118427, - [SMALL_STATE(3483)] = 118448, - [SMALL_STATE(3484)] = 118469, - [SMALL_STATE(3485)] = 118490, - [SMALL_STATE(3486)] = 118515, - [SMALL_STATE(3487)] = 118536, - [SMALL_STATE(3488)] = 118557, - [SMALL_STATE(3489)] = 118578, - [SMALL_STATE(3490)] = 118599, - [SMALL_STATE(3491)] = 118612, - [SMALL_STATE(3492)] = 118633, - [SMALL_STATE(3493)] = 118654, - [SMALL_STATE(3494)] = 118675, - [SMALL_STATE(3495)] = 118696, - [SMALL_STATE(3496)] = 118709, - [SMALL_STATE(3497)] = 118732, - [SMALL_STATE(3498)] = 118753, - [SMALL_STATE(3499)] = 118774, - [SMALL_STATE(3500)] = 118795, - [SMALL_STATE(3501)] = 118816, - [SMALL_STATE(3502)] = 118837, - [SMALL_STATE(3503)] = 118862, - [SMALL_STATE(3504)] = 118883, - [SMALL_STATE(3505)] = 118904, - [SMALL_STATE(3506)] = 118921, - [SMALL_STATE(3507)] = 118942, - [SMALL_STATE(3508)] = 118963, - [SMALL_STATE(3509)] = 118984, - [SMALL_STATE(3510)] = 118997, - [SMALL_STATE(3511)] = 119018, - [SMALL_STATE(3512)] = 119038, - [SMALL_STATE(3513)] = 119058, - [SMALL_STATE(3514)] = 119078, - [SMALL_STATE(3515)] = 119098, - [SMALL_STATE(3516)] = 119118, - [SMALL_STATE(3517)] = 119138, - [SMALL_STATE(3518)] = 119158, - [SMALL_STATE(3519)] = 119178, - [SMALL_STATE(3520)] = 119198, - [SMALL_STATE(3521)] = 119218, - [SMALL_STATE(3522)] = 119238, - [SMALL_STATE(3523)] = 119258, - [SMALL_STATE(3524)] = 119278, - [SMALL_STATE(3525)] = 119298, - [SMALL_STATE(3526)] = 119314, - [SMALL_STATE(3527)] = 119334, - [SMALL_STATE(3528)] = 119354, - [SMALL_STATE(3529)] = 119374, - [SMALL_STATE(3530)] = 119394, - [SMALL_STATE(3531)] = 119414, - [SMALL_STATE(3532)] = 119434, - [SMALL_STATE(3533)] = 119454, - [SMALL_STATE(3534)] = 119476, - [SMALL_STATE(3535)] = 119496, - [SMALL_STATE(3536)] = 119516, - [SMALL_STATE(3537)] = 119536, - [SMALL_STATE(3538)] = 119556, - [SMALL_STATE(3539)] = 119576, - [SMALL_STATE(3540)] = 119596, - [SMALL_STATE(3541)] = 119616, - [SMALL_STATE(3542)] = 119636, - [SMALL_STATE(3543)] = 119656, - [SMALL_STATE(3544)] = 119672, - [SMALL_STATE(3545)] = 119688, - [SMALL_STATE(3546)] = 119708, - [SMALL_STATE(3547)] = 119728, - [SMALL_STATE(3548)] = 119748, - [SMALL_STATE(3549)] = 119768, - [SMALL_STATE(3550)] = 119788, - [SMALL_STATE(3551)] = 119808, - [SMALL_STATE(3552)] = 119828, - [SMALL_STATE(3553)] = 119848, - [SMALL_STATE(3554)] = 119868, - [SMALL_STATE(3555)] = 119888, - [SMALL_STATE(3556)] = 119908, - [SMALL_STATE(3557)] = 119928, - [SMALL_STATE(3558)] = 119948, - [SMALL_STATE(3559)] = 119968, - [SMALL_STATE(3560)] = 119988, - [SMALL_STATE(3561)] = 120008, - [SMALL_STATE(3562)] = 120028, - [SMALL_STATE(3563)] = 120048, - [SMALL_STATE(3564)] = 120068, - [SMALL_STATE(3565)] = 120088, - [SMALL_STATE(3566)] = 120108, - [SMALL_STATE(3567)] = 120128, - [SMALL_STATE(3568)] = 120148, - [SMALL_STATE(3569)] = 120168, - [SMALL_STATE(3570)] = 120188, - [SMALL_STATE(3571)] = 120208, - [SMALL_STATE(3572)] = 120228, - [SMALL_STATE(3573)] = 120248, - [SMALL_STATE(3574)] = 120268, - [SMALL_STATE(3575)] = 120288, - [SMALL_STATE(3576)] = 120308, - [SMALL_STATE(3577)] = 120328, - [SMALL_STATE(3578)] = 120348, - [SMALL_STATE(3579)] = 120364, - [SMALL_STATE(3580)] = 120384, - [SMALL_STATE(3581)] = 120404, - [SMALL_STATE(3582)] = 120424, - [SMALL_STATE(3583)] = 120444, - [SMALL_STATE(3584)] = 120464, - [SMALL_STATE(3585)] = 120484, - [SMALL_STATE(3586)] = 120498, - [SMALL_STATE(3587)] = 120514, - [SMALL_STATE(3588)] = 120530, - [SMALL_STATE(3589)] = 120546, - [SMALL_STATE(3590)] = 120562, - [SMALL_STATE(3591)] = 120582, - [SMALL_STATE(3592)] = 120602, - [SMALL_STATE(3593)] = 120622, - [SMALL_STATE(3594)] = 120642, - [SMALL_STATE(3595)] = 120662, - [SMALL_STATE(3596)] = 120682, - [SMALL_STATE(3597)] = 120702, - [SMALL_STATE(3598)] = 120722, - [SMALL_STATE(3599)] = 120742, - [SMALL_STATE(3600)] = 120762, - [SMALL_STATE(3601)] = 120778, - [SMALL_STATE(3602)] = 120798, - [SMALL_STATE(3603)] = 120818, - [SMALL_STATE(3604)] = 120838, - [SMALL_STATE(3605)] = 120858, - [SMALL_STATE(3606)] = 120874, - [SMALL_STATE(3607)] = 120894, - [SMALL_STATE(3608)] = 120914, - [SMALL_STATE(3609)] = 120934, - [SMALL_STATE(3610)] = 120954, - [SMALL_STATE(3611)] = 120974, - [SMALL_STATE(3612)] = 120994, - [SMALL_STATE(3613)] = 121014, - [SMALL_STATE(3614)] = 121034, - [SMALL_STATE(3615)] = 121054, - [SMALL_STATE(3616)] = 121074, - [SMALL_STATE(3617)] = 121094, - [SMALL_STATE(3618)] = 121114, - [SMALL_STATE(3619)] = 121134, - [SMALL_STATE(3620)] = 121154, - [SMALL_STATE(3621)] = 121170, - [SMALL_STATE(3622)] = 121190, - [SMALL_STATE(3623)] = 121210, - [SMALL_STATE(3624)] = 121232, - [SMALL_STATE(3625)] = 121245, - [SMALL_STATE(3626)] = 121260, - [SMALL_STATE(3627)] = 121271, - [SMALL_STATE(3628)] = 121284, - [SMALL_STATE(3629)] = 121303, - [SMALL_STATE(3630)] = 121316, - [SMALL_STATE(3631)] = 121331, - [SMALL_STATE(3632)] = 121344, - [SMALL_STATE(3633)] = 121363, - [SMALL_STATE(3634)] = 121378, - [SMALL_STATE(3635)] = 121397, - [SMALL_STATE(3636)] = 121408, - [SMALL_STATE(3637)] = 121427, - [SMALL_STATE(3638)] = 121442, - [SMALL_STATE(3639)] = 121459, - [SMALL_STATE(3640)] = 121476, - [SMALL_STATE(3641)] = 121493, - [SMALL_STATE(3642)] = 121510, - [SMALL_STATE(3643)] = 121523, - [SMALL_STATE(3644)] = 121538, - [SMALL_STATE(3645)] = 121553, - [SMALL_STATE(3646)] = 121570, - [SMALL_STATE(3647)] = 121581, - [SMALL_STATE(3648)] = 121598, - [SMALL_STATE(3649)] = 121609, - [SMALL_STATE(3650)] = 121628, - [SMALL_STATE(3651)] = 121643, - [SMALL_STATE(3652)] = 121654, - [SMALL_STATE(3653)] = 121673, - [SMALL_STATE(3654)] = 121690, - [SMALL_STATE(3655)] = 121707, - [SMALL_STATE(3656)] = 121717, - [SMALL_STATE(3657)] = 121727, - [SMALL_STATE(3658)] = 121743, - [SMALL_STATE(3659)] = 121757, - [SMALL_STATE(3660)] = 121771, - [SMALL_STATE(3661)] = 121785, - [SMALL_STATE(3662)] = 121799, - [SMALL_STATE(3663)] = 121813, - [SMALL_STATE(3664)] = 121827, - [SMALL_STATE(3665)] = 121841, - [SMALL_STATE(3666)] = 121857, - [SMALL_STATE(3667)] = 121871, - [SMALL_STATE(3668)] = 121887, - [SMALL_STATE(3669)] = 121901, - [SMALL_STATE(3670)] = 121915, - [SMALL_STATE(3671)] = 121925, - [SMALL_STATE(3672)] = 121939, - [SMALL_STATE(3673)] = 121953, - [SMALL_STATE(3674)] = 121967, - [SMALL_STATE(3675)] = 121981, - [SMALL_STATE(3676)] = 121995, - [SMALL_STATE(3677)] = 122009, - [SMALL_STATE(3678)] = 122023, - [SMALL_STATE(3679)] = 122039, - [SMALL_STATE(3680)] = 122053, - [SMALL_STATE(3681)] = 122069, - [SMALL_STATE(3682)] = 122083, - [SMALL_STATE(3683)] = 122093, - [SMALL_STATE(3684)] = 122107, - [SMALL_STATE(3685)] = 122121, - [SMALL_STATE(3686)] = 122135, - [SMALL_STATE(3687)] = 122147, - [SMALL_STATE(3688)] = 122161, - [SMALL_STATE(3689)] = 122175, - [SMALL_STATE(3690)] = 122185, - [SMALL_STATE(3691)] = 122199, - [SMALL_STATE(3692)] = 122215, - [SMALL_STATE(3693)] = 122229, - [SMALL_STATE(3694)] = 122245, - [SMALL_STATE(3695)] = 122257, - [SMALL_STATE(3696)] = 122271, - [SMALL_STATE(3697)] = 122285, - [SMALL_STATE(3698)] = 122301, - [SMALL_STATE(3699)] = 122317, - [SMALL_STATE(3700)] = 122331, - [SMALL_STATE(3701)] = 122341, - [SMALL_STATE(3702)] = 122353, - [SMALL_STATE(3703)] = 122363, - [SMALL_STATE(3704)] = 122377, - [SMALL_STATE(3705)] = 122391, - [SMALL_STATE(3706)] = 122403, - [SMALL_STATE(3707)] = 122417, - [SMALL_STATE(3708)] = 122433, - [SMALL_STATE(3709)] = 122447, - [SMALL_STATE(3710)] = 122457, - [SMALL_STATE(3711)] = 122473, - [SMALL_STATE(3712)] = 122487, - [SMALL_STATE(3713)] = 122503, - [SMALL_STATE(3714)] = 122517, - [SMALL_STATE(3715)] = 122533, - [SMALL_STATE(3716)] = 122549, - [SMALL_STATE(3717)] = 122563, - [SMALL_STATE(3718)] = 122577, - [SMALL_STATE(3719)] = 122591, - [SMALL_STATE(3720)] = 122605, - [SMALL_STATE(3721)] = 122619, - [SMALL_STATE(3722)] = 122635, - [SMALL_STATE(3723)] = 122649, - [SMALL_STATE(3724)] = 122663, - [SMALL_STATE(3725)] = 122677, - [SMALL_STATE(3726)] = 122687, - [SMALL_STATE(3727)] = 122701, - [SMALL_STATE(3728)] = 122717, - [SMALL_STATE(3729)] = 122731, - [SMALL_STATE(3730)] = 122745, - [SMALL_STATE(3731)] = 122761, - [SMALL_STATE(3732)] = 122777, - [SMALL_STATE(3733)] = 122791, - [SMALL_STATE(3734)] = 122807, - [SMALL_STATE(3735)] = 122823, - [SMALL_STATE(3736)] = 122837, - [SMALL_STATE(3737)] = 122851, - [SMALL_STATE(3738)] = 122865, - [SMALL_STATE(3739)] = 122881, - [SMALL_STATE(3740)] = 122895, - [SMALL_STATE(3741)] = 122909, - [SMALL_STATE(3742)] = 122919, - [SMALL_STATE(3743)] = 122929, - [SMALL_STATE(3744)] = 122939, - [SMALL_STATE(3745)] = 122949, - [SMALL_STATE(3746)] = 122959, - [SMALL_STATE(3747)] = 122973, - [SMALL_STATE(3748)] = 122983, - [SMALL_STATE(3749)] = 122993, - [SMALL_STATE(3750)] = 123007, - [SMALL_STATE(3751)] = 123017, - [SMALL_STATE(3752)] = 123031, - [SMALL_STATE(3753)] = 123045, - [SMALL_STATE(3754)] = 123055, - [SMALL_STATE(3755)] = 123071, - [SMALL_STATE(3756)] = 123085, - [SMALL_STATE(3757)] = 123099, - [SMALL_STATE(3758)] = 123113, - [SMALL_STATE(3759)] = 123129, - [SMALL_STATE(3760)] = 123143, - [SMALL_STATE(3761)] = 123153, - [SMALL_STATE(3762)] = 123167, - [SMALL_STATE(3763)] = 123183, - [SMALL_STATE(3764)] = 123197, - [SMALL_STATE(3765)] = 123211, - [SMALL_STATE(3766)] = 123225, - [SMALL_STATE(3767)] = 123239, - [SMALL_STATE(3768)] = 123253, - [SMALL_STATE(3769)] = 123263, - [SMALL_STATE(3770)] = 123277, - [SMALL_STATE(3771)] = 123291, - [SMALL_STATE(3772)] = 123305, - [SMALL_STATE(3773)] = 123321, - [SMALL_STATE(3774)] = 123335, - [SMALL_STATE(3775)] = 123347, - [SMALL_STATE(3776)] = 123363, - [SMALL_STATE(3777)] = 123379, - [SMALL_STATE(3778)] = 123393, - [SMALL_STATE(3779)] = 123407, - [SMALL_STATE(3780)] = 123421, - [SMALL_STATE(3781)] = 123437, - [SMALL_STATE(3782)] = 123451, - [SMALL_STATE(3783)] = 123465, - [SMALL_STATE(3784)] = 123479, - [SMALL_STATE(3785)] = 123495, - [SMALL_STATE(3786)] = 123511, - [SMALL_STATE(3787)] = 123527, - [SMALL_STATE(3788)] = 123543, - [SMALL_STATE(3789)] = 123553, - [SMALL_STATE(3790)] = 123567, - [SMALL_STATE(3791)] = 123581, - [SMALL_STATE(3792)] = 123591, - [SMALL_STATE(3793)] = 123605, - [SMALL_STATE(3794)] = 123619, - [SMALL_STATE(3795)] = 123633, - [SMALL_STATE(3796)] = 123643, - [SMALL_STATE(3797)] = 123657, - [SMALL_STATE(3798)] = 123671, - [SMALL_STATE(3799)] = 123683, - [SMALL_STATE(3800)] = 123697, - [SMALL_STATE(3801)] = 123713, - [SMALL_STATE(3802)] = 123729, - [SMALL_STATE(3803)] = 123743, - [SMALL_STATE(3804)] = 123755, - [SMALL_STATE(3805)] = 123771, - [SMALL_STATE(3806)] = 123785, - [SMALL_STATE(3807)] = 123799, - [SMALL_STATE(3808)] = 123811, - [SMALL_STATE(3809)] = 123825, - [SMALL_STATE(3810)] = 123841, - [SMALL_STATE(3811)] = 123855, - [SMALL_STATE(3812)] = 123869, - [SMALL_STATE(3813)] = 123879, - [SMALL_STATE(3814)] = 123891, - [SMALL_STATE(3815)] = 123901, - [SMALL_STATE(3816)] = 123915, - [SMALL_STATE(3817)] = 123929, - [SMALL_STATE(3818)] = 123943, - [SMALL_STATE(3819)] = 123957, - [SMALL_STATE(3820)] = 123971, - [SMALL_STATE(3821)] = 123987, - [SMALL_STATE(3822)] = 123997, - [SMALL_STATE(3823)] = 124011, - [SMALL_STATE(3824)] = 124025, - [SMALL_STATE(3825)] = 124039, - [SMALL_STATE(3826)] = 124053, - [SMALL_STATE(3827)] = 124066, - [SMALL_STATE(3828)] = 124079, - [SMALL_STATE(3829)] = 124092, - [SMALL_STATE(3830)] = 124105, - [SMALL_STATE(3831)] = 124118, - [SMALL_STATE(3832)] = 124131, - [SMALL_STATE(3833)] = 124144, - [SMALL_STATE(3834)] = 124157, - [SMALL_STATE(3835)] = 124170, - [SMALL_STATE(3836)] = 124183, - [SMALL_STATE(3837)] = 124196, - [SMALL_STATE(3838)] = 124209, - [SMALL_STATE(3839)] = 124222, - [SMALL_STATE(3840)] = 124235, - [SMALL_STATE(3841)] = 124248, - [SMALL_STATE(3842)] = 124261, - [SMALL_STATE(3843)] = 124274, - [SMALL_STATE(3844)] = 124287, - [SMALL_STATE(3845)] = 124300, - [SMALL_STATE(3846)] = 124313, - [SMALL_STATE(3847)] = 124326, - [SMALL_STATE(3848)] = 124339, - [SMALL_STATE(3849)] = 124352, - [SMALL_STATE(3850)] = 124365, - [SMALL_STATE(3851)] = 124378, - [SMALL_STATE(3852)] = 124391, - [SMALL_STATE(3853)] = 124404, - [SMALL_STATE(3854)] = 124417, - [SMALL_STATE(3855)] = 124430, - [SMALL_STATE(3856)] = 124443, - [SMALL_STATE(3857)] = 124456, - [SMALL_STATE(3858)] = 124469, - [SMALL_STATE(3859)] = 124482, - [SMALL_STATE(3860)] = 124495, - [SMALL_STATE(3861)] = 124508, - [SMALL_STATE(3862)] = 124521, - [SMALL_STATE(3863)] = 124530, - [SMALL_STATE(3864)] = 124543, - [SMALL_STATE(3865)] = 124556, - [SMALL_STATE(3866)] = 124569, - [SMALL_STATE(3867)] = 124582, - [SMALL_STATE(3868)] = 124595, - [SMALL_STATE(3869)] = 124608, - [SMALL_STATE(3870)] = 124621, - [SMALL_STATE(3871)] = 124634, - [SMALL_STATE(3872)] = 124647, - [SMALL_STATE(3873)] = 124656, - [SMALL_STATE(3874)] = 124669, - [SMALL_STATE(3875)] = 124682, - [SMALL_STATE(3876)] = 124695, - [SMALL_STATE(3877)] = 124708, - [SMALL_STATE(3878)] = 124721, - [SMALL_STATE(3879)] = 124732, - [SMALL_STATE(3880)] = 124745, - [SMALL_STATE(3881)] = 124758, - [SMALL_STATE(3882)] = 124771, - [SMALL_STATE(3883)] = 124784, - [SMALL_STATE(3884)] = 124797, - [SMALL_STATE(3885)] = 124810, - [SMALL_STATE(3886)] = 124823, - [SMALL_STATE(3887)] = 124836, - [SMALL_STATE(3888)] = 124845, - [SMALL_STATE(3889)] = 124854, - [SMALL_STATE(3890)] = 124867, - [SMALL_STATE(3891)] = 124880, - [SMALL_STATE(3892)] = 124893, - [SMALL_STATE(3893)] = 124906, - [SMALL_STATE(3894)] = 124919, - [SMALL_STATE(3895)] = 124932, - [SMALL_STATE(3896)] = 124945, - [SMALL_STATE(3897)] = 124958, - [SMALL_STATE(3898)] = 124971, - [SMALL_STATE(3899)] = 124984, - [SMALL_STATE(3900)] = 124997, - [SMALL_STATE(3901)] = 125010, - [SMALL_STATE(3902)] = 125023, - [SMALL_STATE(3903)] = 125036, - [SMALL_STATE(3904)] = 125049, - [SMALL_STATE(3905)] = 125062, - [SMALL_STATE(3906)] = 125075, - [SMALL_STATE(3907)] = 125088, - [SMALL_STATE(3908)] = 125101, - [SMALL_STATE(3909)] = 125114, - [SMALL_STATE(3910)] = 125127, - [SMALL_STATE(3911)] = 125138, - [SMALL_STATE(3912)] = 125147, - [SMALL_STATE(3913)] = 125160, - [SMALL_STATE(3914)] = 125173, - [SMALL_STATE(3915)] = 125186, - [SMALL_STATE(3916)] = 125199, - [SMALL_STATE(3917)] = 125212, - [SMALL_STATE(3918)] = 125221, - [SMALL_STATE(3919)] = 125234, - [SMALL_STATE(3920)] = 125247, - [SMALL_STATE(3921)] = 125260, - [SMALL_STATE(3922)] = 125273, - [SMALL_STATE(3923)] = 125286, - [SMALL_STATE(3924)] = 125299, - [SMALL_STATE(3925)] = 125312, - [SMALL_STATE(3926)] = 125325, - [SMALL_STATE(3927)] = 125338, - [SMALL_STATE(3928)] = 125351, - [SMALL_STATE(3929)] = 125362, - [SMALL_STATE(3930)] = 125375, - [SMALL_STATE(3931)] = 125388, - [SMALL_STATE(3932)] = 125401, - [SMALL_STATE(3933)] = 125414, - [SMALL_STATE(3934)] = 125427, - [SMALL_STATE(3935)] = 125440, - [SMALL_STATE(3936)] = 125453, - [SMALL_STATE(3937)] = 125466, - [SMALL_STATE(3938)] = 125479, - [SMALL_STATE(3939)] = 125492, - [SMALL_STATE(3940)] = 125505, - [SMALL_STATE(3941)] = 125518, - [SMALL_STATE(3942)] = 125527, - [SMALL_STATE(3943)] = 125536, - [SMALL_STATE(3944)] = 125549, - [SMALL_STATE(3945)] = 125562, - [SMALL_STATE(3946)] = 125575, - [SMALL_STATE(3947)] = 125586, - [SMALL_STATE(3948)] = 125599, - [SMALL_STATE(3949)] = 125612, - [SMALL_STATE(3950)] = 125625, - [SMALL_STATE(3951)] = 125638, - [SMALL_STATE(3952)] = 125651, - [SMALL_STATE(3953)] = 125664, - [SMALL_STATE(3954)] = 125675, - [SMALL_STATE(3955)] = 125688, - [SMALL_STATE(3956)] = 125701, - [SMALL_STATE(3957)] = 125714, - [SMALL_STATE(3958)] = 125727, - [SMALL_STATE(3959)] = 125740, - [SMALL_STATE(3960)] = 125753, - [SMALL_STATE(3961)] = 125766, - [SMALL_STATE(3962)] = 125779, - [SMALL_STATE(3963)] = 125792, - [SMALL_STATE(3964)] = 125805, - [SMALL_STATE(3965)] = 125818, - [SMALL_STATE(3966)] = 125831, - [SMALL_STATE(3967)] = 125844, - [SMALL_STATE(3968)] = 125857, - [SMALL_STATE(3969)] = 125870, - [SMALL_STATE(3970)] = 125883, - [SMALL_STATE(3971)] = 125896, - [SMALL_STATE(3972)] = 125909, - [SMALL_STATE(3973)] = 125922, - [SMALL_STATE(3974)] = 125935, - [SMALL_STATE(3975)] = 125948, - [SMALL_STATE(3976)] = 125961, - [SMALL_STATE(3977)] = 125974, - [SMALL_STATE(3978)] = 125987, - [SMALL_STATE(3979)] = 126000, - [SMALL_STATE(3980)] = 126013, - [SMALL_STATE(3981)] = 126026, - [SMALL_STATE(3982)] = 126039, - [SMALL_STATE(3983)] = 126052, - [SMALL_STATE(3984)] = 126065, - [SMALL_STATE(3985)] = 126078, - [SMALL_STATE(3986)] = 126089, - [SMALL_STATE(3987)] = 126102, - [SMALL_STATE(3988)] = 126115, - [SMALL_STATE(3989)] = 126128, - [SMALL_STATE(3990)] = 126141, - [SMALL_STATE(3991)] = 126154, - [SMALL_STATE(3992)] = 126167, - [SMALL_STATE(3993)] = 126180, - [SMALL_STATE(3994)] = 126193, - [SMALL_STATE(3995)] = 126206, - [SMALL_STATE(3996)] = 126219, - [SMALL_STATE(3997)] = 126232, - [SMALL_STATE(3998)] = 126245, - [SMALL_STATE(3999)] = 126258, - [SMALL_STATE(4000)] = 126271, - [SMALL_STATE(4001)] = 126284, - [SMALL_STATE(4002)] = 126297, - [SMALL_STATE(4003)] = 126310, - [SMALL_STATE(4004)] = 126323, - [SMALL_STATE(4005)] = 126336, - [SMALL_STATE(4006)] = 126349, - [SMALL_STATE(4007)] = 126362, - [SMALL_STATE(4008)] = 126375, - [SMALL_STATE(4009)] = 126388, - [SMALL_STATE(4010)] = 126401, - [SMALL_STATE(4011)] = 126414, - [SMALL_STATE(4012)] = 126427, - [SMALL_STATE(4013)] = 126440, - [SMALL_STATE(4014)] = 126453, - [SMALL_STATE(4015)] = 126466, - [SMALL_STATE(4016)] = 126479, - [SMALL_STATE(4017)] = 126492, - [SMALL_STATE(4018)] = 126501, - [SMALL_STATE(4019)] = 126514, - [SMALL_STATE(4020)] = 126527, - [SMALL_STATE(4021)] = 126540, - [SMALL_STATE(4022)] = 126553, - [SMALL_STATE(4023)] = 126566, - [SMALL_STATE(4024)] = 126579, - [SMALL_STATE(4025)] = 126592, - [SMALL_STATE(4026)] = 126605, - [SMALL_STATE(4027)] = 126614, - [SMALL_STATE(4028)] = 126623, - [SMALL_STATE(4029)] = 126636, - [SMALL_STATE(4030)] = 126649, - [SMALL_STATE(4031)] = 126662, - [SMALL_STATE(4032)] = 126671, - [SMALL_STATE(4033)] = 126684, - [SMALL_STATE(4034)] = 126697, - [SMALL_STATE(4035)] = 126710, - [SMALL_STATE(4036)] = 126723, - [SMALL_STATE(4037)] = 126736, - [SMALL_STATE(4038)] = 126749, - [SMALL_STATE(4039)] = 126762, - [SMALL_STATE(4040)] = 126775, - [SMALL_STATE(4041)] = 126788, - [SMALL_STATE(4042)] = 126797, - [SMALL_STATE(4043)] = 126810, - [SMALL_STATE(4044)] = 126823, - [SMALL_STATE(4045)] = 126836, - [SMALL_STATE(4046)] = 126849, - [SMALL_STATE(4047)] = 126862, - [SMALL_STATE(4048)] = 126875, - [SMALL_STATE(4049)] = 126888, - [SMALL_STATE(4050)] = 126901, - [SMALL_STATE(4051)] = 126914, - [SMALL_STATE(4052)] = 126927, - [SMALL_STATE(4053)] = 126940, - [SMALL_STATE(4054)] = 126953, - [SMALL_STATE(4055)] = 126966, - [SMALL_STATE(4056)] = 126979, - [SMALL_STATE(4057)] = 126988, - [SMALL_STATE(4058)] = 126997, - [SMALL_STATE(4059)] = 127010, - [SMALL_STATE(4060)] = 127023, - [SMALL_STATE(4061)] = 127036, - [SMALL_STATE(4062)] = 127049, - [SMALL_STATE(4063)] = 127062, - [SMALL_STATE(4064)] = 127075, - [SMALL_STATE(4065)] = 127088, - [SMALL_STATE(4066)] = 127098, - [SMALL_STATE(4067)] = 127108, - [SMALL_STATE(4068)] = 127118, - [SMALL_STATE(4069)] = 127128, - [SMALL_STATE(4070)] = 127138, - [SMALL_STATE(4071)] = 127148, - [SMALL_STATE(4072)] = 127158, - [SMALL_STATE(4073)] = 127168, - [SMALL_STATE(4074)] = 127178, - [SMALL_STATE(4075)] = 127188, - [SMALL_STATE(4076)] = 127198, - [SMALL_STATE(4077)] = 127208, - [SMALL_STATE(4078)] = 127218, - [SMALL_STATE(4079)] = 127228, - [SMALL_STATE(4080)] = 127238, - [SMALL_STATE(4081)] = 127248, - [SMALL_STATE(4082)] = 127258, - [SMALL_STATE(4083)] = 127268, - [SMALL_STATE(4084)] = 127278, - [SMALL_STATE(4085)] = 127286, - [SMALL_STATE(4086)] = 127296, - [SMALL_STATE(4087)] = 127306, - [SMALL_STATE(4088)] = 127316, - [SMALL_STATE(4089)] = 127326, - [SMALL_STATE(4090)] = 127336, - [SMALL_STATE(4091)] = 127346, - [SMALL_STATE(4092)] = 127356, - [SMALL_STATE(4093)] = 127366, - [SMALL_STATE(4094)] = 127376, - [SMALL_STATE(4095)] = 127384, - [SMALL_STATE(4096)] = 127394, - [SMALL_STATE(4097)] = 127404, - [SMALL_STATE(4098)] = 127414, - [SMALL_STATE(4099)] = 127424, - [SMALL_STATE(4100)] = 127434, - [SMALL_STATE(4101)] = 127444, - [SMALL_STATE(4102)] = 127454, - [SMALL_STATE(4103)] = 127464, - [SMALL_STATE(4104)] = 127474, - [SMALL_STATE(4105)] = 127484, - [SMALL_STATE(4106)] = 127492, - [SMALL_STATE(4107)] = 127502, - [SMALL_STATE(4108)] = 127512, - [SMALL_STATE(4109)] = 127522, - [SMALL_STATE(4110)] = 127532, - [SMALL_STATE(4111)] = 127542, - [SMALL_STATE(4112)] = 127552, - [SMALL_STATE(4113)] = 127560, - [SMALL_STATE(4114)] = 127568, - [SMALL_STATE(4115)] = 127578, - [SMALL_STATE(4116)] = 127588, - [SMALL_STATE(4117)] = 127598, - [SMALL_STATE(4118)] = 127608, - [SMALL_STATE(4119)] = 127618, - [SMALL_STATE(4120)] = 127628, - [SMALL_STATE(4121)] = 127636, - [SMALL_STATE(4122)] = 127646, - [SMALL_STATE(4123)] = 127656, - [SMALL_STATE(4124)] = 127666, - [SMALL_STATE(4125)] = 127674, - [SMALL_STATE(4126)] = 127684, - [SMALL_STATE(4127)] = 127694, - [SMALL_STATE(4128)] = 127702, - [SMALL_STATE(4129)] = 127712, - [SMALL_STATE(4130)] = 127722, - [SMALL_STATE(4131)] = 127730, - [SMALL_STATE(4132)] = 127740, - [SMALL_STATE(4133)] = 127750, - [SMALL_STATE(4134)] = 127760, - [SMALL_STATE(4135)] = 127770, - [SMALL_STATE(4136)] = 127780, - [SMALL_STATE(4137)] = 127788, - [SMALL_STATE(4138)] = 127798, - [SMALL_STATE(4139)] = 127808, - [SMALL_STATE(4140)] = 127818, - [SMALL_STATE(4141)] = 127828, - [SMALL_STATE(4142)] = 127838, - [SMALL_STATE(4143)] = 127848, - [SMALL_STATE(4144)] = 127856, - [SMALL_STATE(4145)] = 127864, - [SMALL_STATE(4146)] = 127874, - [SMALL_STATE(4147)] = 127884, - [SMALL_STATE(4148)] = 127894, - [SMALL_STATE(4149)] = 127904, - [SMALL_STATE(4150)] = 127914, - [SMALL_STATE(4151)] = 127924, - [SMALL_STATE(4152)] = 127934, - [SMALL_STATE(4153)] = 127944, - [SMALL_STATE(4154)] = 127954, - [SMALL_STATE(4155)] = 127964, - [SMALL_STATE(4156)] = 127974, - [SMALL_STATE(4157)] = 127984, - [SMALL_STATE(4158)] = 127994, - [SMALL_STATE(4159)] = 128004, - [SMALL_STATE(4160)] = 128014, - [SMALL_STATE(4161)] = 128024, - [SMALL_STATE(4162)] = 128034, - [SMALL_STATE(4163)] = 128044, - [SMALL_STATE(4164)] = 128054, - [SMALL_STATE(4165)] = 128064, - [SMALL_STATE(4166)] = 128074, - [SMALL_STATE(4167)] = 128084, - [SMALL_STATE(4168)] = 128094, - [SMALL_STATE(4169)] = 128104, - [SMALL_STATE(4170)] = 128114, - [SMALL_STATE(4171)] = 128124, - [SMALL_STATE(4172)] = 128134, - [SMALL_STATE(4173)] = 128144, - [SMALL_STATE(4174)] = 128154, - [SMALL_STATE(4175)] = 128164, - [SMALL_STATE(4176)] = 128174, - [SMALL_STATE(4177)] = 128182, - [SMALL_STATE(4178)] = 128192, - [SMALL_STATE(4179)] = 128202, - [SMALL_STATE(4180)] = 128210, - [SMALL_STATE(4181)] = 128220, - [SMALL_STATE(4182)] = 128230, - [SMALL_STATE(4183)] = 128240, - [SMALL_STATE(4184)] = 128250, - [SMALL_STATE(4185)] = 128260, - [SMALL_STATE(4186)] = 128270, - [SMALL_STATE(4187)] = 128280, - [SMALL_STATE(4188)] = 128290, - [SMALL_STATE(4189)] = 128300, - [SMALL_STATE(4190)] = 128308, - [SMALL_STATE(4191)] = 128318, - [SMALL_STATE(4192)] = 128328, - [SMALL_STATE(4193)] = 128338, - [SMALL_STATE(4194)] = 128348, - [SMALL_STATE(4195)] = 128358, - [SMALL_STATE(4196)] = 128368, - [SMALL_STATE(4197)] = 128378, - [SMALL_STATE(4198)] = 128388, - [SMALL_STATE(4199)] = 128398, - [SMALL_STATE(4200)] = 128408, - [SMALL_STATE(4201)] = 128418, - [SMALL_STATE(4202)] = 128428, - [SMALL_STATE(4203)] = 128438, - [SMALL_STATE(4204)] = 128448, - [SMALL_STATE(4205)] = 128458, - [SMALL_STATE(4206)] = 128468, - [SMALL_STATE(4207)] = 128478, - [SMALL_STATE(4208)] = 128488, - [SMALL_STATE(4209)] = 128498, - [SMALL_STATE(4210)] = 128508, - [SMALL_STATE(4211)] = 128518, - [SMALL_STATE(4212)] = 128528, - [SMALL_STATE(4213)] = 128538, - [SMALL_STATE(4214)] = 128548, - [SMALL_STATE(4215)] = 128558, - [SMALL_STATE(4216)] = 128568, - [SMALL_STATE(4217)] = 128578, - [SMALL_STATE(4218)] = 128588, - [SMALL_STATE(4219)] = 128598, - [SMALL_STATE(4220)] = 128608, - [SMALL_STATE(4221)] = 128618, - [SMALL_STATE(4222)] = 128628, - [SMALL_STATE(4223)] = 128636, - [SMALL_STATE(4224)] = 128644, - [SMALL_STATE(4225)] = 128654, - [SMALL_STATE(4226)] = 128664, - [SMALL_STATE(4227)] = 128674, - [SMALL_STATE(4228)] = 128684, - [SMALL_STATE(4229)] = 128694, - [SMALL_STATE(4230)] = 128702, - [SMALL_STATE(4231)] = 128712, - [SMALL_STATE(4232)] = 128720, - [SMALL_STATE(4233)] = 128730, - [SMALL_STATE(4234)] = 128740, - [SMALL_STATE(4235)] = 128750, - [SMALL_STATE(4236)] = 128760, - [SMALL_STATE(4237)] = 128770, - [SMALL_STATE(4238)] = 128780, - [SMALL_STATE(4239)] = 128790, - [SMALL_STATE(4240)] = 128800, - [SMALL_STATE(4241)] = 128808, - [SMALL_STATE(4242)] = 128818, - [SMALL_STATE(4243)] = 128828, - [SMALL_STATE(4244)] = 128838, - [SMALL_STATE(4245)] = 128848, - [SMALL_STATE(4246)] = 128858, - [SMALL_STATE(4247)] = 128868, - [SMALL_STATE(4248)] = 128876, - [SMALL_STATE(4249)] = 128886, - [SMALL_STATE(4250)] = 128896, - [SMALL_STATE(4251)] = 128904, - [SMALL_STATE(4252)] = 128914, - [SMALL_STATE(4253)] = 128922, - [SMALL_STATE(4254)] = 128932, - [SMALL_STATE(4255)] = 128942, - [SMALL_STATE(4256)] = 128952, - [SMALL_STATE(4257)] = 128962, - [SMALL_STATE(4258)] = 128972, - [SMALL_STATE(4259)] = 128982, - [SMALL_STATE(4260)] = 128992, - [SMALL_STATE(4261)] = 129002, - [SMALL_STATE(4262)] = 129012, - [SMALL_STATE(4263)] = 129022, - [SMALL_STATE(4264)] = 129032, - [SMALL_STATE(4265)] = 129042, - [SMALL_STATE(4266)] = 129052, - [SMALL_STATE(4267)] = 129062, - [SMALL_STATE(4268)] = 129072, - [SMALL_STATE(4269)] = 129082, - [SMALL_STATE(4270)] = 129092, - [SMALL_STATE(4271)] = 129102, - [SMALL_STATE(4272)] = 129110, - [SMALL_STATE(4273)] = 129120, - [SMALL_STATE(4274)] = 129130, - [SMALL_STATE(4275)] = 129140, - [SMALL_STATE(4276)] = 129150, - [SMALL_STATE(4277)] = 129160, - [SMALL_STATE(4278)] = 129170, - [SMALL_STATE(4279)] = 129180, - [SMALL_STATE(4280)] = 129190, - [SMALL_STATE(4281)] = 129200, - [SMALL_STATE(4282)] = 129210, - [SMALL_STATE(4283)] = 129220, - [SMALL_STATE(4284)] = 129230, - [SMALL_STATE(4285)] = 129240, - [SMALL_STATE(4286)] = 129250, - [SMALL_STATE(4287)] = 129260, - [SMALL_STATE(4288)] = 129270, - [SMALL_STATE(4289)] = 129280, - [SMALL_STATE(4290)] = 129290, - [SMALL_STATE(4291)] = 129300, - [SMALL_STATE(4292)] = 129310, - [SMALL_STATE(4293)] = 129320, - [SMALL_STATE(4294)] = 129330, - [SMALL_STATE(4295)] = 129340, - [SMALL_STATE(4296)] = 129350, - [SMALL_STATE(4297)] = 129360, - [SMALL_STATE(4298)] = 129370, - [SMALL_STATE(4299)] = 129380, - [SMALL_STATE(4300)] = 129390, - [SMALL_STATE(4301)] = 129400, - [SMALL_STATE(4302)] = 129410, - [SMALL_STATE(4303)] = 129420, - [SMALL_STATE(4304)] = 129430, - [SMALL_STATE(4305)] = 129438, - [SMALL_STATE(4306)] = 129448, - [SMALL_STATE(4307)] = 129458, - [SMALL_STATE(4308)] = 129468, - [SMALL_STATE(4309)] = 129478, - [SMALL_STATE(4310)] = 129488, - [SMALL_STATE(4311)] = 129498, - [SMALL_STATE(4312)] = 129508, - [SMALL_STATE(4313)] = 129518, - [SMALL_STATE(4314)] = 129528, - [SMALL_STATE(4315)] = 129538, - [SMALL_STATE(4316)] = 129548, - [SMALL_STATE(4317)] = 129558, - [SMALL_STATE(4318)] = 129568, - [SMALL_STATE(4319)] = 129578, - [SMALL_STATE(4320)] = 129588, - [SMALL_STATE(4321)] = 129596, - [SMALL_STATE(4322)] = 129606, - [SMALL_STATE(4323)] = 129616, - [SMALL_STATE(4324)] = 129626, - [SMALL_STATE(4325)] = 129636, - [SMALL_STATE(4326)] = 129646, - [SMALL_STATE(4327)] = 129654, - [SMALL_STATE(4328)] = 129664, - [SMALL_STATE(4329)] = 129674, - [SMALL_STATE(4330)] = 129684, - [SMALL_STATE(4331)] = 129694, - [SMALL_STATE(4332)] = 129704, - [SMALL_STATE(4333)] = 129714, - [SMALL_STATE(4334)] = 129722, - [SMALL_STATE(4335)] = 129732, - [SMALL_STATE(4336)] = 129742, - [SMALL_STATE(4337)] = 129752, - [SMALL_STATE(4338)] = 129762, - [SMALL_STATE(4339)] = 129772, - [SMALL_STATE(4340)] = 129782, - [SMALL_STATE(4341)] = 129792, - [SMALL_STATE(4342)] = 129802, - [SMALL_STATE(4343)] = 129812, - [SMALL_STATE(4344)] = 129822, - [SMALL_STATE(4345)] = 129830, - [SMALL_STATE(4346)] = 129840, - [SMALL_STATE(4347)] = 129850, - [SMALL_STATE(4348)] = 129858, - [SMALL_STATE(4349)] = 129868, - [SMALL_STATE(4350)] = 129878, - [SMALL_STATE(4351)] = 129888, - [SMALL_STATE(4352)] = 129898, - [SMALL_STATE(4353)] = 129908, - [SMALL_STATE(4354)] = 129916, - [SMALL_STATE(4355)] = 129926, - [SMALL_STATE(4356)] = 129936, - [SMALL_STATE(4357)] = 129946, - [SMALL_STATE(4358)] = 129956, - [SMALL_STATE(4359)] = 129966, - [SMALL_STATE(4360)] = 129976, - [SMALL_STATE(4361)] = 129986, - [SMALL_STATE(4362)] = 129996, - [SMALL_STATE(4363)] = 130006, - [SMALL_STATE(4364)] = 130016, - [SMALL_STATE(4365)] = 130026, - [SMALL_STATE(4366)] = 130036, - [SMALL_STATE(4367)] = 130046, - [SMALL_STATE(4368)] = 130056, - [SMALL_STATE(4369)] = 130066, - [SMALL_STATE(4370)] = 130076, - [SMALL_STATE(4371)] = 130086, - [SMALL_STATE(4372)] = 130096, - [SMALL_STATE(4373)] = 130106, - [SMALL_STATE(4374)] = 130116, - [SMALL_STATE(4375)] = 130126, - [SMALL_STATE(4376)] = 130136, - [SMALL_STATE(4377)] = 130146, - [SMALL_STATE(4378)] = 130156, - [SMALL_STATE(4379)] = 130166, - [SMALL_STATE(4380)] = 130176, - [SMALL_STATE(4381)] = 130183, - [SMALL_STATE(4382)] = 130190, - [SMALL_STATE(4383)] = 130197, - [SMALL_STATE(4384)] = 130204, - [SMALL_STATE(4385)] = 130211, - [SMALL_STATE(4386)] = 130218, - [SMALL_STATE(4387)] = 130225, - [SMALL_STATE(4388)] = 130232, - [SMALL_STATE(4389)] = 130239, - [SMALL_STATE(4390)] = 130246, - [SMALL_STATE(4391)] = 130253, - [SMALL_STATE(4392)] = 130260, - [SMALL_STATE(4393)] = 130267, - [SMALL_STATE(4394)] = 130274, - [SMALL_STATE(4395)] = 130281, - [SMALL_STATE(4396)] = 130288, - [SMALL_STATE(4397)] = 130295, - [SMALL_STATE(4398)] = 130302, - [SMALL_STATE(4399)] = 130309, - [SMALL_STATE(4400)] = 130316, - [SMALL_STATE(4401)] = 130323, - [SMALL_STATE(4402)] = 130330, - [SMALL_STATE(4403)] = 130337, - [SMALL_STATE(4404)] = 130344, - [SMALL_STATE(4405)] = 130351, - [SMALL_STATE(4406)] = 130358, - [SMALL_STATE(4407)] = 130365, - [SMALL_STATE(4408)] = 130372, - [SMALL_STATE(4409)] = 130379, - [SMALL_STATE(4410)] = 130386, - [SMALL_STATE(4411)] = 130393, - [SMALL_STATE(4412)] = 130400, - [SMALL_STATE(4413)] = 130407, - [SMALL_STATE(4414)] = 130414, - [SMALL_STATE(4415)] = 130421, - [SMALL_STATE(4416)] = 130428, - [SMALL_STATE(4417)] = 130435, - [SMALL_STATE(4418)] = 130442, - [SMALL_STATE(4419)] = 130449, - [SMALL_STATE(4420)] = 130456, - [SMALL_STATE(4421)] = 130463, - [SMALL_STATE(4422)] = 130470, - [SMALL_STATE(4423)] = 130477, - [SMALL_STATE(4424)] = 130484, - [SMALL_STATE(4425)] = 130491, - [SMALL_STATE(4426)] = 130498, - [SMALL_STATE(4427)] = 130505, - [SMALL_STATE(4428)] = 130512, - [SMALL_STATE(4429)] = 130519, - [SMALL_STATE(4430)] = 130526, - [SMALL_STATE(4431)] = 130533, - [SMALL_STATE(4432)] = 130540, - [SMALL_STATE(4433)] = 130547, - [SMALL_STATE(4434)] = 130554, - [SMALL_STATE(4435)] = 130561, - [SMALL_STATE(4436)] = 130568, - [SMALL_STATE(4437)] = 130575, - [SMALL_STATE(4438)] = 130582, - [SMALL_STATE(4439)] = 130589, - [SMALL_STATE(4440)] = 130596, - [SMALL_STATE(4441)] = 130603, - [SMALL_STATE(4442)] = 130610, - [SMALL_STATE(4443)] = 130617, - [SMALL_STATE(4444)] = 130624, - [SMALL_STATE(4445)] = 130631, - [SMALL_STATE(4446)] = 130638, - [SMALL_STATE(4447)] = 130645, - [SMALL_STATE(4448)] = 130652, - [SMALL_STATE(4449)] = 130659, - [SMALL_STATE(4450)] = 130666, - [SMALL_STATE(4451)] = 130673, - [SMALL_STATE(4452)] = 130680, - [SMALL_STATE(4453)] = 130687, - [SMALL_STATE(4454)] = 130694, - [SMALL_STATE(4455)] = 130701, - [SMALL_STATE(4456)] = 130708, - [SMALL_STATE(4457)] = 130715, - [SMALL_STATE(4458)] = 130722, - [SMALL_STATE(4459)] = 130729, - [SMALL_STATE(4460)] = 130736, - [SMALL_STATE(4461)] = 130743, - [SMALL_STATE(4462)] = 130750, - [SMALL_STATE(4463)] = 130757, - [SMALL_STATE(4464)] = 130764, - [SMALL_STATE(4465)] = 130771, - [SMALL_STATE(4466)] = 130778, - [SMALL_STATE(4467)] = 130785, - [SMALL_STATE(4468)] = 130792, - [SMALL_STATE(4469)] = 130799, - [SMALL_STATE(4470)] = 130806, - [SMALL_STATE(4471)] = 130813, - [SMALL_STATE(4472)] = 130820, - [SMALL_STATE(4473)] = 130827, - [SMALL_STATE(4474)] = 130834, - [SMALL_STATE(4475)] = 130841, - [SMALL_STATE(4476)] = 130848, - [SMALL_STATE(4477)] = 130855, - [SMALL_STATE(4478)] = 130862, - [SMALL_STATE(4479)] = 130869, - [SMALL_STATE(4480)] = 130876, - [SMALL_STATE(4481)] = 130883, - [SMALL_STATE(4482)] = 130890, - [SMALL_STATE(4483)] = 130897, - [SMALL_STATE(4484)] = 130904, - [SMALL_STATE(4485)] = 130911, - [SMALL_STATE(4486)] = 130918, - [SMALL_STATE(4487)] = 130925, - [SMALL_STATE(4488)] = 130932, - [SMALL_STATE(4489)] = 130939, - [SMALL_STATE(4490)] = 130946, - [SMALL_STATE(4491)] = 130953, - [SMALL_STATE(4492)] = 130960, - [SMALL_STATE(4493)] = 130967, - [SMALL_STATE(4494)] = 130974, - [SMALL_STATE(4495)] = 130981, - [SMALL_STATE(4496)] = 130988, - [SMALL_STATE(4497)] = 130995, - [SMALL_STATE(4498)] = 131002, - [SMALL_STATE(4499)] = 131009, - [SMALL_STATE(4500)] = 131016, - [SMALL_STATE(4501)] = 131023, - [SMALL_STATE(4502)] = 131030, - [SMALL_STATE(4503)] = 131037, - [SMALL_STATE(4504)] = 131044, - [SMALL_STATE(4505)] = 131051, - [SMALL_STATE(4506)] = 131058, - [SMALL_STATE(4507)] = 131065, - [SMALL_STATE(4508)] = 131072, - [SMALL_STATE(4509)] = 131079, - [SMALL_STATE(4510)] = 131086, - [SMALL_STATE(4511)] = 131093, - [SMALL_STATE(4512)] = 131100, - [SMALL_STATE(4513)] = 131107, - [SMALL_STATE(4514)] = 131114, - [SMALL_STATE(4515)] = 131121, - [SMALL_STATE(4516)] = 131128, - [SMALL_STATE(4517)] = 131135, - [SMALL_STATE(4518)] = 131142, - [SMALL_STATE(4519)] = 131149, - [SMALL_STATE(4520)] = 131156, - [SMALL_STATE(4521)] = 131163, - [SMALL_STATE(4522)] = 131170, - [SMALL_STATE(4523)] = 131177, - [SMALL_STATE(4524)] = 131184, - [SMALL_STATE(4525)] = 131191, - [SMALL_STATE(4526)] = 131198, - [SMALL_STATE(4527)] = 131205, - [SMALL_STATE(4528)] = 131212, - [SMALL_STATE(4529)] = 131219, - [SMALL_STATE(4530)] = 131226, - [SMALL_STATE(4531)] = 131233, - [SMALL_STATE(4532)] = 131240, - [SMALL_STATE(4533)] = 131247, - [SMALL_STATE(4534)] = 131254, - [SMALL_STATE(4535)] = 131261, - [SMALL_STATE(4536)] = 131268, - [SMALL_STATE(4537)] = 131275, - [SMALL_STATE(4538)] = 131282, - [SMALL_STATE(4539)] = 131289, - [SMALL_STATE(4540)] = 131296, - [SMALL_STATE(4541)] = 131303, - [SMALL_STATE(4542)] = 131310, - [SMALL_STATE(4543)] = 131317, - [SMALL_STATE(4544)] = 131324, - [SMALL_STATE(4545)] = 131331, - [SMALL_STATE(4546)] = 131338, - [SMALL_STATE(4547)] = 131345, - [SMALL_STATE(4548)] = 131352, - [SMALL_STATE(4549)] = 131359, - [SMALL_STATE(4550)] = 131366, - [SMALL_STATE(4551)] = 131373, - [SMALL_STATE(4552)] = 131380, - [SMALL_STATE(4553)] = 131387, - [SMALL_STATE(4554)] = 131394, - [SMALL_STATE(4555)] = 131401, - [SMALL_STATE(4556)] = 131408, - [SMALL_STATE(4557)] = 131415, - [SMALL_STATE(4558)] = 131422, - [SMALL_STATE(4559)] = 131429, - [SMALL_STATE(4560)] = 131436, - [SMALL_STATE(4561)] = 131443, - [SMALL_STATE(4562)] = 131450, - [SMALL_STATE(4563)] = 131457, - [SMALL_STATE(4564)] = 131464, - [SMALL_STATE(4565)] = 131471, - [SMALL_STATE(4566)] = 131478, - [SMALL_STATE(4567)] = 131485, - [SMALL_STATE(4568)] = 131492, - [SMALL_STATE(4569)] = 131499, - [SMALL_STATE(4570)] = 131506, - [SMALL_STATE(4571)] = 131513, - [SMALL_STATE(4572)] = 131520, - [SMALL_STATE(4573)] = 131527, - [SMALL_STATE(4574)] = 131534, - [SMALL_STATE(4575)] = 131541, - [SMALL_STATE(4576)] = 131548, - [SMALL_STATE(4577)] = 131555, - [SMALL_STATE(4578)] = 131562, - [SMALL_STATE(4579)] = 131569, - [SMALL_STATE(4580)] = 131576, - [SMALL_STATE(4581)] = 131583, - [SMALL_STATE(4582)] = 131590, - [SMALL_STATE(4583)] = 131597, - [SMALL_STATE(4584)] = 131604, - [SMALL_STATE(4585)] = 131611, - [SMALL_STATE(4586)] = 131618, - [SMALL_STATE(4587)] = 131625, - [SMALL_STATE(4588)] = 131632, - [SMALL_STATE(4589)] = 131639, - [SMALL_STATE(4590)] = 131646, - [SMALL_STATE(4591)] = 131653, - [SMALL_STATE(4592)] = 131660, - [SMALL_STATE(4593)] = 131667, - [SMALL_STATE(4594)] = 131674, - [SMALL_STATE(4595)] = 131681, - [SMALL_STATE(4596)] = 131688, - [SMALL_STATE(4597)] = 131695, - [SMALL_STATE(4598)] = 131702, - [SMALL_STATE(4599)] = 131709, - [SMALL_STATE(4600)] = 131716, - [SMALL_STATE(4601)] = 131723, - [SMALL_STATE(4602)] = 131730, - [SMALL_STATE(4603)] = 131737, - [SMALL_STATE(4604)] = 131744, - [SMALL_STATE(4605)] = 131751, - [SMALL_STATE(4606)] = 131758, - [SMALL_STATE(4607)] = 131765, - [SMALL_STATE(4608)] = 131772, - [SMALL_STATE(4609)] = 131779, - [SMALL_STATE(4610)] = 131786, - [SMALL_STATE(4611)] = 131793, - [SMALL_STATE(4612)] = 131800, - [SMALL_STATE(4613)] = 131807, - [SMALL_STATE(4614)] = 131814, - [SMALL_STATE(4615)] = 131821, - [SMALL_STATE(4616)] = 131828, - [SMALL_STATE(4617)] = 131835, - [SMALL_STATE(4618)] = 131842, - [SMALL_STATE(4619)] = 131849, - [SMALL_STATE(4620)] = 131856, - [SMALL_STATE(4621)] = 131863, - [SMALL_STATE(4622)] = 131870, - [SMALL_STATE(4623)] = 131877, - [SMALL_STATE(4624)] = 131884, - [SMALL_STATE(4625)] = 131891, - [SMALL_STATE(4626)] = 131898, - [SMALL_STATE(4627)] = 131905, - [SMALL_STATE(4628)] = 131912, - [SMALL_STATE(4629)] = 131919, - [SMALL_STATE(4630)] = 131926, - [SMALL_STATE(4631)] = 131933, - [SMALL_STATE(4632)] = 131940, - [SMALL_STATE(4633)] = 131947, - [SMALL_STATE(4634)] = 131954, - [SMALL_STATE(4635)] = 131961, - [SMALL_STATE(4636)] = 131968, - [SMALL_STATE(4637)] = 131975, - [SMALL_STATE(4638)] = 131982, - [SMALL_STATE(4639)] = 131989, - [SMALL_STATE(4640)] = 131996, - [SMALL_STATE(4641)] = 132003, - [SMALL_STATE(4642)] = 132010, - [SMALL_STATE(4643)] = 132017, - [SMALL_STATE(4644)] = 132024, - [SMALL_STATE(4645)] = 132031, - [SMALL_STATE(4646)] = 132038, - [SMALL_STATE(4647)] = 132045, - [SMALL_STATE(4648)] = 132052, - [SMALL_STATE(4649)] = 132059, - [SMALL_STATE(4650)] = 132066, - [SMALL_STATE(4651)] = 132073, - [SMALL_STATE(4652)] = 132080, - [SMALL_STATE(4653)] = 132087, - [SMALL_STATE(4654)] = 132094, - [SMALL_STATE(4655)] = 132101, - [SMALL_STATE(4656)] = 132108, - [SMALL_STATE(4657)] = 132115, - [SMALL_STATE(4658)] = 132122, - [SMALL_STATE(4659)] = 132129, - [SMALL_STATE(4660)] = 132136, - [SMALL_STATE(4661)] = 132143, - [SMALL_STATE(4662)] = 132150, - [SMALL_STATE(4663)] = 132157, - [SMALL_STATE(4664)] = 132164, - [SMALL_STATE(4665)] = 132171, - [SMALL_STATE(4666)] = 132178, - [SMALL_STATE(4667)] = 132185, - [SMALL_STATE(4668)] = 132192, - [SMALL_STATE(4669)] = 132199, - [SMALL_STATE(4670)] = 132206, - [SMALL_STATE(4671)] = 132213, - [SMALL_STATE(4672)] = 132220, - [SMALL_STATE(4673)] = 132227, - [SMALL_STATE(4674)] = 132234, - [SMALL_STATE(4675)] = 132241, - [SMALL_STATE(4676)] = 132248, - [SMALL_STATE(4677)] = 132255, - [SMALL_STATE(4678)] = 132262, - [SMALL_STATE(4679)] = 132269, - [SMALL_STATE(4680)] = 132276, - [SMALL_STATE(4681)] = 132283, - [SMALL_STATE(4682)] = 132290, - [SMALL_STATE(4683)] = 132297, - [SMALL_STATE(4684)] = 132304, - [SMALL_STATE(4685)] = 132311, - [SMALL_STATE(4686)] = 132318, - [SMALL_STATE(4687)] = 132325, - [SMALL_STATE(4688)] = 132332, - [SMALL_STATE(4689)] = 132339, - [SMALL_STATE(4690)] = 132346, - [SMALL_STATE(4691)] = 132353, - [SMALL_STATE(4692)] = 132360, - [SMALL_STATE(4693)] = 132367, - [SMALL_STATE(4694)] = 132374, + [SMALL_STATE(1623)] = 0, + [SMALL_STATE(1624)] = 71, + [SMALL_STATE(1625)] = 142, + [SMALL_STATE(1626)] = 213, + [SMALL_STATE(1627)] = 284, + [SMALL_STATE(1628)] = 355, + [SMALL_STATE(1629)] = 424, + [SMALL_STATE(1630)] = 493, + [SMALL_STATE(1631)] = 562, + [SMALL_STATE(1632)] = 631, + [SMALL_STATE(1633)] = 700, + [SMALL_STATE(1634)] = 769, + [SMALL_STATE(1635)] = 838, + [SMALL_STATE(1636)] = 907, + [SMALL_STATE(1637)] = 976, + [SMALL_STATE(1638)] = 1099, + [SMALL_STATE(1639)] = 1168, + [SMALL_STATE(1640)] = 1288, + [SMALL_STATE(1641)] = 1372, + [SMALL_STATE(1642)] = 1460, + [SMALL_STATE(1643)] = 1554, + [SMALL_STATE(1644)] = 1640, + [SMALL_STATE(1645)] = 1728, + [SMALL_STATE(1646)] = 1812, + [SMALL_STATE(1647)] = 1898, + [SMALL_STATE(1648)] = 1986, + [SMALL_STATE(1649)] = 2070, + [SMALL_STATE(1650)] = 2180, + [SMALL_STATE(1651)] = 2290, + [SMALL_STATE(1652)] = 2386, + [SMALL_STATE(1653)] = 2453, + [SMALL_STATE(1654)] = 2524, + [SMALL_STATE(1655)] = 2595, + [SMALL_STATE(1656)] = 2662, + [SMALL_STATE(1657)] = 2775, + [SMALL_STATE(1658)] = 2857, + [SMALL_STATE(1659)] = 2941, + [SMALL_STATE(1660)] = 3007, + [SMALL_STATE(1661)] = 3073, + [SMALL_STATE(1662)] = 3139, + [SMALL_STATE(1663)] = 3205, + [SMALL_STATE(1664)] = 3297, + [SMALL_STATE(1665)] = 3421, + [SMALL_STATE(1666)] = 3487, + [SMALL_STATE(1667)] = 3573, + [SMALL_STATE(1668)] = 3639, + [SMALL_STATE(1669)] = 3763, + [SMALL_STATE(1670)] = 3871, + [SMALL_STATE(1671)] = 3953, + [SMALL_STATE(1672)] = 4019, + [SMALL_STATE(1673)] = 4085, + [SMALL_STATE(1674)] = 4151, + [SMALL_STATE(1675)] = 4237, + [SMALL_STATE(1676)] = 4303, + [SMALL_STATE(1677)] = 4369, + [SMALL_STATE(1678)] = 4435, + [SMALL_STATE(1679)] = 4503, + [SMALL_STATE(1680)] = 4571, + [SMALL_STATE(1681)] = 4641, + [SMALL_STATE(1682)] = 4707, + [SMALL_STATE(1683)] = 4773, + [SMALL_STATE(1684)] = 4867, + [SMALL_STATE(1685)] = 4935, + [SMALL_STATE(1686)] = 5043, + [SMALL_STATE(1687)] = 5109, + [SMALL_STATE(1688)] = 5175, + [SMALL_STATE(1689)] = 5243, + [SMALL_STATE(1690)] = 5309, + [SMALL_STATE(1691)] = 5395, + [SMALL_STATE(1692)] = 5503, + [SMALL_STATE(1693)] = 5585, + [SMALL_STATE(1694)] = 5653, + [SMALL_STATE(1695)] = 5719, + [SMALL_STATE(1696)] = 5785, + [SMALL_STATE(1697)] = 5853, + [SMALL_STATE(1698)] = 5921, + [SMALL_STATE(1699)] = 5987, + [SMALL_STATE(1700)] = 6053, + [SMALL_STATE(1701)] = 6119, + [SMALL_STATE(1702)] = 6184, + [SMALL_STATE(1703)] = 6249, + [SMALL_STATE(1704)] = 6314, + [SMALL_STATE(1705)] = 6379, + [SMALL_STATE(1706)] = 6444, + [SMALL_STATE(1707)] = 6509, + [SMALL_STATE(1708)] = 6574, + [SMALL_STATE(1709)] = 6639, + [SMALL_STATE(1710)] = 6704, + [SMALL_STATE(1711)] = 6769, + [SMALL_STATE(1712)] = 6836, + [SMALL_STATE(1713)] = 6901, + [SMALL_STATE(1714)] = 6966, + [SMALL_STATE(1715)] = 7031, + [SMALL_STATE(1716)] = 7096, + [SMALL_STATE(1717)] = 7161, + [SMALL_STATE(1718)] = 7226, + [SMALL_STATE(1719)] = 7291, + [SMALL_STATE(1720)] = 7358, + [SMALL_STATE(1721)] = 7423, + [SMALL_STATE(1722)] = 7488, + [SMALL_STATE(1723)] = 7553, + [SMALL_STATE(1724)] = 7618, + [SMALL_STATE(1725)] = 7683, + [SMALL_STATE(1726)] = 7748, + [SMALL_STATE(1727)] = 7813, + [SMALL_STATE(1728)] = 7878, + [SMALL_STATE(1729)] = 7943, + [SMALL_STATE(1730)] = 8008, + [SMALL_STATE(1731)] = 8073, + [SMALL_STATE(1732)] = 8138, + [SMALL_STATE(1733)] = 8203, + [SMALL_STATE(1734)] = 8268, + [SMALL_STATE(1735)] = 8335, + [SMALL_STATE(1736)] = 8402, + [SMALL_STATE(1737)] = 8467, + [SMALL_STATE(1738)] = 8536, + [SMALL_STATE(1739)] = 8601, + [SMALL_STATE(1740)] = 8666, + [SMALL_STATE(1741)] = 8735, + [SMALL_STATE(1742)] = 8800, + [SMALL_STATE(1743)] = 8865, + [SMALL_STATE(1744)] = 8930, + [SMALL_STATE(1745)] = 8995, + [SMALL_STATE(1746)] = 9060, + [SMALL_STATE(1747)] = 9125, + [SMALL_STATE(1748)] = 9190, + [SMALL_STATE(1749)] = 9255, + [SMALL_STATE(1750)] = 9320, + [SMALL_STATE(1751)] = 9385, + [SMALL_STATE(1752)] = 9450, + [SMALL_STATE(1753)] = 9515, + [SMALL_STATE(1754)] = 9580, + [SMALL_STATE(1755)] = 9645, + [SMALL_STATE(1756)] = 9710, + [SMALL_STATE(1757)] = 9775, + [SMALL_STATE(1758)] = 9840, + [SMALL_STATE(1759)] = 9907, + [SMALL_STATE(1760)] = 9972, + [SMALL_STATE(1761)] = 10037, + [SMALL_STATE(1762)] = 10102, + [SMALL_STATE(1763)] = 10167, + [SMALL_STATE(1764)] = 10232, + [SMALL_STATE(1765)] = 10297, + [SMALL_STATE(1766)] = 10362, + [SMALL_STATE(1767)] = 10427, + [SMALL_STATE(1768)] = 10492, + [SMALL_STATE(1769)] = 10557, + [SMALL_STATE(1770)] = 10622, + [SMALL_STATE(1771)] = 10689, + [SMALL_STATE(1772)] = 10754, + [SMALL_STATE(1773)] = 10821, + [SMALL_STATE(1774)] = 10886, + [SMALL_STATE(1775)] = 10951, + [SMALL_STATE(1776)] = 11016, + [SMALL_STATE(1777)] = 11081, + [SMALL_STATE(1778)] = 11146, + [SMALL_STATE(1779)] = 11211, + [SMALL_STATE(1780)] = 11278, + [SMALL_STATE(1781)] = 11343, + [SMALL_STATE(1782)] = 11408, + [SMALL_STATE(1783)] = 11475, + [SMALL_STATE(1784)] = 11587, + [SMALL_STATE(1785)] = 11671, + [SMALL_STATE(1786)] = 11783, + [SMALL_STATE(1787)] = 11899, + [SMALL_STATE(1788)] = 11983, + [SMALL_STATE(1789)] = 12099, + [SMALL_STATE(1790)] = 12183, + [SMALL_STATE(1791)] = 12267, + [SMALL_STATE(1792)] = 12333, + [SMALL_STATE(1793)] = 12445, + [SMALL_STATE(1794)] = 12557, + [SMALL_STATE(1795)] = 12623, + [SMALL_STATE(1796)] = 12707, + [SMALL_STATE(1797)] = 12773, + [SMALL_STATE(1798)] = 12839, + [SMALL_STATE(1799)] = 12957, + [SMALL_STATE(1800)] = 13043, + [SMALL_STATE(1801)] = 13127, + [SMALL_STATE(1802)] = 13193, + [SMALL_STATE(1803)] = 13281, + [SMALL_STATE(1804)] = 13377, + [SMALL_STATE(1805)] = 13475, + [SMALL_STATE(1806)] = 13563, + [SMALL_STATE(1807)] = 13651, + [SMALL_STATE(1808)] = 13739, + [SMALL_STATE(1809)] = 13827, + [SMALL_STATE(1810)] = 13893, + [SMALL_STATE(1811)] = 13979, + [SMALL_STATE(1812)] = 14077, + [SMALL_STATE(1813)] = 14165, + [SMALL_STATE(1814)] = 14261, + [SMALL_STATE(1815)] = 14324, + [SMALL_STATE(1816)] = 14387, + [SMALL_STATE(1817)] = 14454, + [SMALL_STATE(1818)] = 14517, + [SMALL_STATE(1819)] = 14580, + [SMALL_STATE(1820)] = 14643, + [SMALL_STATE(1821)] = 14706, + [SMALL_STATE(1822)] = 14769, + [SMALL_STATE(1823)] = 14832, + [SMALL_STATE(1824)] = 14895, + [SMALL_STATE(1825)] = 14958, + [SMALL_STATE(1826)] = 15021, + [SMALL_STATE(1827)] = 15084, + [SMALL_STATE(1828)] = 15147, + [SMALL_STATE(1829)] = 15210, + [SMALL_STATE(1830)] = 15275, + [SMALL_STATE(1831)] = 15338, + [SMALL_STATE(1832)] = 15401, + [SMALL_STATE(1833)] = 15464, + [SMALL_STATE(1834)] = 15527, + [SMALL_STATE(1835)] = 15638, + [SMALL_STATE(1836)] = 15701, + [SMALL_STATE(1837)] = 15812, + [SMALL_STATE(1838)] = 15875, + [SMALL_STATE(1839)] = 15938, + [SMALL_STATE(1840)] = 16003, + [SMALL_STATE(1841)] = 16066, + [SMALL_STATE(1842)] = 16129, + [SMALL_STATE(1843)] = 16192, + [SMALL_STATE(1844)] = 16255, + [SMALL_STATE(1845)] = 16318, + [SMALL_STATE(1846)] = 16381, + [SMALL_STATE(1847)] = 16446, + [SMALL_STATE(1848)] = 16511, + [SMALL_STATE(1849)] = 16574, + [SMALL_STATE(1850)] = 16637, + [SMALL_STATE(1851)] = 16700, + [SMALL_STATE(1852)] = 16763, + [SMALL_STATE(1853)] = 16826, + [SMALL_STATE(1854)] = 16889, + [SMALL_STATE(1855)] = 16952, + [SMALL_STATE(1856)] = 17015, + [SMALL_STATE(1857)] = 17078, + [SMALL_STATE(1858)] = 17141, + [SMALL_STATE(1859)] = 17204, + [SMALL_STATE(1860)] = 17267, + [SMALL_STATE(1861)] = 17330, + [SMALL_STATE(1862)] = 17393, + [SMALL_STATE(1863)] = 17456, + [SMALL_STATE(1864)] = 17519, + [SMALL_STATE(1865)] = 17582, + [SMALL_STATE(1866)] = 17645, + [SMALL_STATE(1867)] = 17708, + [SMALL_STATE(1868)] = 17771, + [SMALL_STATE(1869)] = 17834, + [SMALL_STATE(1870)] = 17897, + [SMALL_STATE(1871)] = 17964, + [SMALL_STATE(1872)] = 18031, + [SMALL_STATE(1873)] = 18094, + [SMALL_STATE(1874)] = 18157, + [SMALL_STATE(1875)] = 18220, + [SMALL_STATE(1876)] = 18283, + [SMALL_STATE(1877)] = 18346, + [SMALL_STATE(1878)] = 18409, + [SMALL_STATE(1879)] = 18472, + [SMALL_STATE(1880)] = 18535, + [SMALL_STATE(1881)] = 18598, + [SMALL_STATE(1882)] = 18665, + [SMALL_STATE(1883)] = 18728, + [SMALL_STATE(1884)] = 18791, + [SMALL_STATE(1885)] = 18854, + [SMALL_STATE(1886)] = 18917, + [SMALL_STATE(1887)] = 18980, + [SMALL_STATE(1888)] = 19043, + [SMALL_STATE(1889)] = 19106, + [SMALL_STATE(1890)] = 19169, + [SMALL_STATE(1891)] = 19232, + [SMALL_STATE(1892)] = 19303, + [SMALL_STATE(1893)] = 19366, + [SMALL_STATE(1894)] = 19429, + [SMALL_STATE(1895)] = 19540, + [SMALL_STATE(1896)] = 19603, + [SMALL_STATE(1897)] = 19666, + [SMALL_STATE(1898)] = 19777, + [SMALL_STATE(1899)] = 19840, + [SMALL_STATE(1900)] = 19927, + [SMALL_STATE(1901)] = 19990, + [SMALL_STATE(1902)] = 20053, + [SMALL_STATE(1903)] = 20116, + [SMALL_STATE(1904)] = 20179, + [SMALL_STATE(1905)] = 20242, + [SMALL_STATE(1906)] = 20305, + [SMALL_STATE(1907)] = 20368, + [SMALL_STATE(1908)] = 20431, + [SMALL_STATE(1909)] = 20494, + [SMALL_STATE(1910)] = 20557, + [SMALL_STATE(1911)] = 20620, + [SMALL_STATE(1912)] = 20683, + [SMALL_STATE(1913)] = 20746, + [SMALL_STATE(1914)] = 20809, + [SMALL_STATE(1915)] = 20872, + [SMALL_STATE(1916)] = 20935, + [SMALL_STATE(1917)] = 20998, + [SMALL_STATE(1918)] = 21061, + [SMALL_STATE(1919)] = 21124, + [SMALL_STATE(1920)] = 21187, + [SMALL_STATE(1921)] = 21250, + [SMALL_STATE(1922)] = 21337, + [SMALL_STATE(1923)] = 21400, + [SMALL_STATE(1924)] = 21463, + [SMALL_STATE(1925)] = 21526, + [SMALL_STATE(1926)] = 21589, + [SMALL_STATE(1927)] = 21652, + [SMALL_STATE(1928)] = 21737, + [SMALL_STATE(1929)] = 21800, + [SMALL_STATE(1930)] = 21887, + [SMALL_STATE(1931)] = 21950, + [SMALL_STATE(1932)] = 22013, + [SMALL_STATE(1933)] = 22108, + [SMALL_STATE(1934)] = 22173, + [SMALL_STATE(1935)] = 22270, + [SMALL_STATE(1936)] = 22334, + [SMALL_STATE(1937)] = 22444, + [SMALL_STATE(1938)] = 22554, + [SMALL_STATE(1939)] = 22664, + [SMALL_STATE(1940)] = 22728, + [SMALL_STATE(1941)] = 22792, + [SMALL_STATE(1942)] = 22902, + [SMALL_STATE(1943)] = 22966, + [SMALL_STATE(1944)] = 23026, + [SMALL_STATE(1945)] = 23088, + [SMALL_STATE(1946)] = 23158, + [SMALL_STATE(1947)] = 23222, + [SMALL_STATE(1948)] = 23286, + [SMALL_STATE(1949)] = 23347, + [SMALL_STATE(1950)] = 23408, + [SMALL_STATE(1951)] = 23469, + [SMALL_STATE(1952)] = 23530, + [SMALL_STATE(1953)] = 23591, + [SMALL_STATE(1954)] = 23652, + [SMALL_STATE(1955)] = 23713, + [SMALL_STATE(1956)] = 23774, + [SMALL_STATE(1957)] = 23835, + [SMALL_STATE(1958)] = 23896, + [SMALL_STATE(1959)] = 23957, + [SMALL_STATE(1960)] = 24018, + [SMALL_STATE(1961)] = 24079, + [SMALL_STATE(1962)] = 24140, + [SMALL_STATE(1963)] = 24201, + [SMALL_STATE(1964)] = 24262, + [SMALL_STATE(1965)] = 24323, + [SMALL_STATE(1966)] = 24384, + [SMALL_STATE(1967)] = 24445, + [SMALL_STATE(1968)] = 24506, + [SMALL_STATE(1969)] = 24567, + [SMALL_STATE(1970)] = 24628, + [SMALL_STATE(1971)] = 24689, + [SMALL_STATE(1972)] = 24750, + [SMALL_STATE(1973)] = 24813, + [SMALL_STATE(1974)] = 24874, + [SMALL_STATE(1975)] = 24935, + [SMALL_STATE(1976)] = 24996, + [SMALL_STATE(1977)] = 25057, + [SMALL_STATE(1978)] = 25118, + [SMALL_STATE(1979)] = 25179, + [SMALL_STATE(1980)] = 25240, + [SMALL_STATE(1981)] = 25301, + [SMALL_STATE(1982)] = 25362, + [SMALL_STATE(1983)] = 25423, + [SMALL_STATE(1984)] = 25484, + [SMALL_STATE(1985)] = 25545, + [SMALL_STATE(1986)] = 25606, + [SMALL_STATE(1987)] = 25667, + [SMALL_STATE(1988)] = 25728, + [SMALL_STATE(1989)] = 25791, + [SMALL_STATE(1990)] = 25852, + [SMALL_STATE(1991)] = 25913, + [SMALL_STATE(1992)] = 25976, + [SMALL_STATE(1993)] = 26037, + [SMALL_STATE(1994)] = 26098, + [SMALL_STATE(1995)] = 26159, + [SMALL_STATE(1996)] = 26220, + [SMALL_STATE(1997)] = 26281, + [SMALL_STATE(1998)] = 26342, + [SMALL_STATE(1999)] = 26403, + [SMALL_STATE(2000)] = 26464, + [SMALL_STATE(2001)] = 26525, + [SMALL_STATE(2002)] = 26586, + [SMALL_STATE(2003)] = 26647, + [SMALL_STATE(2004)] = 26708, + [SMALL_STATE(2005)] = 26771, + [SMALL_STATE(2006)] = 26834, + [SMALL_STATE(2007)] = 26895, + [SMALL_STATE(2008)] = 26956, + [SMALL_STATE(2009)] = 27017, + [SMALL_STATE(2010)] = 27078, + [SMALL_STATE(2011)] = 27139, + [SMALL_STATE(2012)] = 27200, + [SMALL_STATE(2013)] = 27265, + [SMALL_STATE(2014)] = 27326, + [SMALL_STATE(2015)] = 27387, + [SMALL_STATE(2016)] = 27448, + [SMALL_STATE(2017)] = 27509, + [SMALL_STATE(2018)] = 27570, + [SMALL_STATE(2019)] = 27631, + [SMALL_STATE(2020)] = 27692, + [SMALL_STATE(2021)] = 27753, + [SMALL_STATE(2022)] = 27814, + [SMALL_STATE(2023)] = 27875, + [SMALL_STATE(2024)] = 27936, + [SMALL_STATE(2025)] = 27997, + [SMALL_STATE(2026)] = 28058, + [SMALL_STATE(2027)] = 28119, + [SMALL_STATE(2028)] = 28180, + [SMALL_STATE(2029)] = 28241, + [SMALL_STATE(2030)] = 28302, + [SMALL_STATE(2031)] = 28363, + [SMALL_STATE(2032)] = 28424, + [SMALL_STATE(2033)] = 28485, + [SMALL_STATE(2034)] = 28546, + [SMALL_STATE(2035)] = 28607, + [SMALL_STATE(2036)] = 28668, + [SMALL_STATE(2037)] = 28729, + [SMALL_STATE(2038)] = 28790, + [SMALL_STATE(2039)] = 28851, + [SMALL_STATE(2040)] = 28912, + [SMALL_STATE(2041)] = 28973, + [SMALL_STATE(2042)] = 29034, + [SMALL_STATE(2043)] = 29095, + [SMALL_STATE(2044)] = 29156, + [SMALL_STATE(2045)] = 29217, + [SMALL_STATE(2046)] = 29278, + [SMALL_STATE(2047)] = 29339, + [SMALL_STATE(2048)] = 29400, + [SMALL_STATE(2049)] = 29461, + [SMALL_STATE(2050)] = 29522, + [SMALL_STATE(2051)] = 29583, + [SMALL_STATE(2052)] = 29644, + [SMALL_STATE(2053)] = 29705, + [SMALL_STATE(2054)] = 29766, + [SMALL_STATE(2055)] = 29827, + [SMALL_STATE(2056)] = 29888, + [SMALL_STATE(2057)] = 29949, + [SMALL_STATE(2058)] = 30010, + [SMALL_STATE(2059)] = 30071, + [SMALL_STATE(2060)] = 30132, + [SMALL_STATE(2061)] = 30193, + [SMALL_STATE(2062)] = 30254, + [SMALL_STATE(2063)] = 30315, + [SMALL_STATE(2064)] = 30376, + [SMALL_STATE(2065)] = 30439, + [SMALL_STATE(2066)] = 30502, + [SMALL_STATE(2067)] = 30563, + [SMALL_STATE(2068)] = 30624, + [SMALL_STATE(2069)] = 30685, + [SMALL_STATE(2070)] = 30746, + [SMALL_STATE(2071)] = 30807, + [SMALL_STATE(2072)] = 30868, + [SMALL_STATE(2073)] = 30929, + [SMALL_STATE(2074)] = 30990, + [SMALL_STATE(2075)] = 31051, + [SMALL_STATE(2076)] = 31112, + [SMALL_STATE(2077)] = 31175, + [SMALL_STATE(2078)] = 31236, + [SMALL_STATE(2079)] = 31299, + [SMALL_STATE(2080)] = 31360, + [SMALL_STATE(2081)] = 31421, + [SMALL_STATE(2082)] = 31482, + [SMALL_STATE(2083)] = 31543, + [SMALL_STATE(2084)] = 31604, + [SMALL_STATE(2085)] = 31665, + [SMALL_STATE(2086)] = 31726, + [SMALL_STATE(2087)] = 31787, + [SMALL_STATE(2088)] = 31848, + [SMALL_STATE(2089)] = 31909, + [SMALL_STATE(2090)] = 31970, + [SMALL_STATE(2091)] = 32031, + [SMALL_STATE(2092)] = 32092, + [SMALL_STATE(2093)] = 32153, + [SMALL_STATE(2094)] = 32214, + [SMALL_STATE(2095)] = 32275, + [SMALL_STATE(2096)] = 32340, + [SMALL_STATE(2097)] = 32403, + [SMALL_STATE(2098)] = 32464, + [SMALL_STATE(2099)] = 32525, + [SMALL_STATE(2100)] = 32586, + [SMALL_STATE(2101)] = 32649, + [SMALL_STATE(2102)] = 32710, + [SMALL_STATE(2103)] = 32771, + [SMALL_STATE(2104)] = 32832, + [SMALL_STATE(2105)] = 32893, + [SMALL_STATE(2106)] = 32954, + [SMALL_STATE(2107)] = 33015, + [SMALL_STATE(2108)] = 33076, + [SMALL_STATE(2109)] = 33137, + [SMALL_STATE(2110)] = 33198, + [SMALL_STATE(2111)] = 33259, + [SMALL_STATE(2112)] = 33320, + [SMALL_STATE(2113)] = 33381, + [SMALL_STATE(2114)] = 33442, + [SMALL_STATE(2115)] = 33503, + [SMALL_STATE(2116)] = 33564, + [SMALL_STATE(2117)] = 33625, + [SMALL_STATE(2118)] = 33686, + [SMALL_STATE(2119)] = 33747, + [SMALL_STATE(2120)] = 33808, + [SMALL_STATE(2121)] = 33869, + [SMALL_STATE(2122)] = 33930, + [SMALL_STATE(2123)] = 33991, + [SMALL_STATE(2124)] = 34052, + [SMALL_STATE(2125)] = 34113, + [SMALL_STATE(2126)] = 34174, + [SMALL_STATE(2127)] = 34237, + [SMALL_STATE(2128)] = 34298, + [SMALL_STATE(2129)] = 34359, + [SMALL_STATE(2130)] = 34420, + [SMALL_STATE(2131)] = 34481, + [SMALL_STATE(2132)] = 34542, + [SMALL_STATE(2133)] = 34603, + [SMALL_STATE(2134)] = 34664, + [SMALL_STATE(2135)] = 34725, + [SMALL_STATE(2136)] = 34786, + [SMALL_STATE(2137)] = 34847, + [SMALL_STATE(2138)] = 34908, + [SMALL_STATE(2139)] = 34969, + [SMALL_STATE(2140)] = 35030, + [SMALL_STATE(2141)] = 35091, + [SMALL_STATE(2142)] = 35152, + [SMALL_STATE(2143)] = 35213, + [SMALL_STATE(2144)] = 35278, + [SMALL_STATE(2145)] = 35339, + [SMALL_STATE(2146)] = 35400, + [SMALL_STATE(2147)] = 35465, + [SMALL_STATE(2148)] = 35526, + [SMALL_STATE(2149)] = 35591, + [SMALL_STATE(2150)] = 35656, + [SMALL_STATE(2151)] = 35717, + [SMALL_STATE(2152)] = 35778, + [SMALL_STATE(2153)] = 35839, + [SMALL_STATE(2154)] = 35899, + [SMALL_STATE(2155)] = 35959, + [SMALL_STATE(2156)] = 36019, + [SMALL_STATE(2157)] = 36079, + [SMALL_STATE(2158)] = 36139, + [SMALL_STATE(2159)] = 36214, + [SMALL_STATE(2160)] = 36289, + [SMALL_STATE(2161)] = 36352, + [SMALL_STATE(2162)] = 36427, + [SMALL_STATE(2163)] = 36489, + [SMALL_STATE(2164)] = 36553, + [SMALL_STATE(2165)] = 36615, + [SMALL_STATE(2166)] = 36672, + [SMALL_STATE(2167)] = 36729, + [SMALL_STATE(2168)] = 36790, + [SMALL_STATE(2169)] = 36847, + [SMALL_STATE(2170)] = 36904, + [SMALL_STATE(2171)] = 37009, + [SMALL_STATE(2172)] = 37068, + [SMALL_STATE(2173)] = 37125, + [SMALL_STATE(2174)] = 37182, + [SMALL_STATE(2175)] = 37239, + [SMALL_STATE(2176)] = 37296, + [SMALL_STATE(2177)] = 37355, + [SMALL_STATE(2178)] = 37412, + [SMALL_STATE(2179)] = 37469, + [SMALL_STATE(2180)] = 37532, + [SMALL_STATE(2181)] = 37591, + [SMALL_STATE(2182)] = 37650, + [SMALL_STATE(2183)] = 37706, + [SMALL_STATE(2184)] = 37762, + [SMALL_STATE(2185)] = 37818, + [SMALL_STATE(2186)] = 37874, + [SMALL_STATE(2187)] = 37930, + [SMALL_STATE(2188)] = 37986, + [SMALL_STATE(2189)] = 38042, + [SMALL_STATE(2190)] = 38098, + [SMALL_STATE(2191)] = 38154, + [SMALL_STATE(2192)] = 38210, + [SMALL_STATE(2193)] = 38266, + [SMALL_STATE(2194)] = 38322, + [SMALL_STATE(2195)] = 38378, + [SMALL_STATE(2196)] = 38434, + [SMALL_STATE(2197)] = 38490, + [SMALL_STATE(2198)] = 38548, + [SMALL_STATE(2199)] = 38606, + [SMALL_STATE(2200)] = 38662, + [SMALL_STATE(2201)] = 38718, + [SMALL_STATE(2202)] = 38774, + [SMALL_STATE(2203)] = 38830, + [SMALL_STATE(2204)] = 38886, + [SMALL_STATE(2205)] = 38942, + [SMALL_STATE(2206)] = 38998, + [SMALL_STATE(2207)] = 39054, + [SMALL_STATE(2208)] = 39110, + [SMALL_STATE(2209)] = 39166, + [SMALL_STATE(2210)] = 39222, + [SMALL_STATE(2211)] = 39278, + [SMALL_STATE(2212)] = 39334, + [SMALL_STATE(2213)] = 39392, + [SMALL_STATE(2214)] = 39448, + [SMALL_STATE(2215)] = 39504, + [SMALL_STATE(2216)] = 39560, + [SMALL_STATE(2217)] = 39616, + [SMALL_STATE(2218)] = 39672, + [SMALL_STATE(2219)] = 39728, + [SMALL_STATE(2220)] = 39784, + [SMALL_STATE(2221)] = 39840, + [SMALL_STATE(2222)] = 39896, + [SMALL_STATE(2223)] = 39952, + [SMALL_STATE(2224)] = 40008, + [SMALL_STATE(2225)] = 40064, + [SMALL_STATE(2226)] = 40120, + [SMALL_STATE(2227)] = 40178, + [SMALL_STATE(2228)] = 40234, + [SMALL_STATE(2229)] = 40290, + [SMALL_STATE(2230)] = 40346, + [SMALL_STATE(2231)] = 40402, + [SMALL_STATE(2232)] = 40458, + [SMALL_STATE(2233)] = 40514, + [SMALL_STATE(2234)] = 40570, + [SMALL_STATE(2235)] = 40626, + [SMALL_STATE(2236)] = 40682, + [SMALL_STATE(2237)] = 40738, + [SMALL_STATE(2238)] = 40794, + [SMALL_STATE(2239)] = 40850, + [SMALL_STATE(2240)] = 40906, + [SMALL_STATE(2241)] = 40962, + [SMALL_STATE(2242)] = 41018, + [SMALL_STATE(2243)] = 41074, + [SMALL_STATE(2244)] = 41172, + [SMALL_STATE(2245)] = 41228, + [SMALL_STATE(2246)] = 41284, + [SMALL_STATE(2247)] = 41340, + [SMALL_STATE(2248)] = 41396, + [SMALL_STATE(2249)] = 41452, + [SMALL_STATE(2250)] = 41508, + [SMALL_STATE(2251)] = 41564, + [SMALL_STATE(2252)] = 41620, + [SMALL_STATE(2253)] = 41676, + [SMALL_STATE(2254)] = 41732, + [SMALL_STATE(2255)] = 41788, + [SMALL_STATE(2256)] = 41844, + [SMALL_STATE(2257)] = 41900, + [SMALL_STATE(2258)] = 41956, + [SMALL_STATE(2259)] = 42012, + [SMALL_STATE(2260)] = 42068, + [SMALL_STATE(2261)] = 42124, + [SMALL_STATE(2262)] = 42180, + [SMALL_STATE(2263)] = 42236, + [SMALL_STATE(2264)] = 42294, + [SMALL_STATE(2265)] = 42352, + [SMALL_STATE(2266)] = 42408, + [SMALL_STATE(2267)] = 42464, + [SMALL_STATE(2268)] = 42520, + [SMALL_STATE(2269)] = 42618, + [SMALL_STATE(2270)] = 42674, + [SMALL_STATE(2271)] = 42730, + [SMALL_STATE(2272)] = 42806, + [SMALL_STATE(2273)] = 42862, + [SMALL_STATE(2274)] = 42918, + [SMALL_STATE(2275)] = 43000, + [SMALL_STATE(2276)] = 43056, + [SMALL_STATE(2277)] = 43112, + [SMALL_STATE(2278)] = 43168, + [SMALL_STATE(2279)] = 43224, + [SMALL_STATE(2280)] = 43300, + [SMALL_STATE(2281)] = 43356, + [SMALL_STATE(2282)] = 43412, + [SMALL_STATE(2283)] = 43468, + [SMALL_STATE(2284)] = 43552, + [SMALL_STATE(2285)] = 43608, + [SMALL_STATE(2286)] = 43664, + [SMALL_STATE(2287)] = 43720, + [SMALL_STATE(2288)] = 43776, + [SMALL_STATE(2289)] = 43832, + [SMALL_STATE(2290)] = 43888, + [SMALL_STATE(2291)] = 43944, + [SMALL_STATE(2292)] = 44048, + [SMALL_STATE(2293)] = 44122, + [SMALL_STATE(2294)] = 44178, + [SMALL_STATE(2295)] = 44254, + [SMALL_STATE(2296)] = 44329, + [SMALL_STATE(2297)] = 44384, + [SMALL_STATE(2298)] = 44467, + [SMALL_STATE(2299)] = 44522, + [SMALL_STATE(2300)] = 44597, + [SMALL_STATE(2301)] = 44672, + [SMALL_STATE(2302)] = 44745, + [SMALL_STATE(2303)] = 44822, + [SMALL_STATE(2304)] = 44919, + [SMALL_STATE(2305)] = 45016, + [SMALL_STATE(2306)] = 45097, + [SMALL_STATE(2307)] = 45154, + [SMALL_STATE(2308)] = 45231, + [SMALL_STATE(2309)] = 45328, + [SMALL_STATE(2310)] = 45405, + [SMALL_STATE(2311)] = 45502, + [SMALL_STATE(2312)] = 45557, + [SMALL_STATE(2313)] = 45612, + [SMALL_STATE(2314)] = 45669, + [SMALL_STATE(2315)] = 45727, + [SMALL_STATE(2316)] = 45785, + [SMALL_STATE(2317)] = 45887, + [SMALL_STATE(2318)] = 45942, + [SMALL_STATE(2319)] = 45997, + [SMALL_STATE(2320)] = 46096, + [SMALL_STATE(2321)] = 46151, + [SMALL_STATE(2322)] = 46220, + [SMALL_STATE(2323)] = 46289, + [SMALL_STATE(2324)] = 46344, + [SMALL_STATE(2325)] = 46399, + [SMALL_STATE(2326)] = 46468, + [SMALL_STATE(2327)] = 46520, + [SMALL_STATE(2328)] = 46572, + [SMALL_STATE(2329)] = 46624, + [SMALL_STATE(2330)] = 46676, + [SMALL_STATE(2331)] = 46728, + [SMALL_STATE(2332)] = 46780, + [SMALL_STATE(2333)] = 46858, + [SMALL_STATE(2334)] = 46952, + [SMALL_STATE(2335)] = 47004, + [SMALL_STATE(2336)] = 47058, + [SMALL_STATE(2337)] = 47110, + [SMALL_STATE(2338)] = 47204, + [SMALL_STATE(2339)] = 47256, + [SMALL_STATE(2340)] = 47308, + [SMALL_STATE(2341)] = 47360, + [SMALL_STATE(2342)] = 47412, + [SMALL_STATE(2343)] = 47464, + [SMALL_STATE(2344)] = 47516, + [SMALL_STATE(2345)] = 47568, + [SMALL_STATE(2346)] = 47620, + [SMALL_STATE(2347)] = 47672, + [SMALL_STATE(2348)] = 47724, + [SMALL_STATE(2349)] = 47834, + [SMALL_STATE(2350)] = 47886, + [SMALL_STATE(2351)] = 47938, + [SMALL_STATE(2352)] = 47990, + [SMALL_STATE(2353)] = 48084, + [SMALL_STATE(2354)] = 48136, + [SMALL_STATE(2355)] = 48188, + [SMALL_STATE(2356)] = 48240, + [SMALL_STATE(2357)] = 48292, + [SMALL_STATE(2358)] = 48344, + [SMALL_STATE(2359)] = 48416, + [SMALL_STATE(2360)] = 48488, + [SMALL_STATE(2361)] = 48582, + [SMALL_STATE(2362)] = 48634, + [SMALL_STATE(2363)] = 48714, + [SMALL_STATE(2364)] = 48768, + [SMALL_STATE(2365)] = 48820, + [SMALL_STATE(2366)] = 48892, + [SMALL_STATE(2367)] = 48944, + [SMALL_STATE(2368)] = 49014, + [SMALL_STATE(2369)] = 49124, + [SMALL_STATE(2370)] = 49176, + [SMALL_STATE(2371)] = 49228, + [SMALL_STATE(2372)] = 49280, + [SMALL_STATE(2373)] = 49390, + [SMALL_STATE(2374)] = 49442, + [SMALL_STATE(2375)] = 49498, + [SMALL_STATE(2376)] = 49550, + [SMALL_STATE(2377)] = 49606, + [SMALL_STATE(2378)] = 49716, + [SMALL_STATE(2379)] = 49768, + [SMALL_STATE(2380)] = 49820, + [SMALL_STATE(2381)] = 49872, + [SMALL_STATE(2382)] = 49924, + [SMALL_STATE(2383)] = 49976, + [SMALL_STATE(2384)] = 50028, + [SMALL_STATE(2385)] = 50080, + [SMALL_STATE(2386)] = 50132, + [SMALL_STATE(2387)] = 50188, + [SMALL_STATE(2388)] = 50244, + [SMALL_STATE(2389)] = 50296, + [SMALL_STATE(2390)] = 50348, + [SMALL_STATE(2391)] = 50400, + [SMALL_STATE(2392)] = 50510, + [SMALL_STATE(2393)] = 50562, + [SMALL_STATE(2394)] = 50614, + [SMALL_STATE(2395)] = 50724, + [SMALL_STATE(2396)] = 50776, + [SMALL_STATE(2397)] = 50846, + [SMALL_STATE(2398)] = 50898, + [SMALL_STATE(2399)] = 51008, + [SMALL_STATE(2400)] = 51118, + [SMALL_STATE(2401)] = 51190, + [SMALL_STATE(2402)] = 51242, + [SMALL_STATE(2403)] = 51294, + [SMALL_STATE(2404)] = 51372, + [SMALL_STATE(2405)] = 51452, + [SMALL_STATE(2406)] = 51562, + [SMALL_STATE(2407)] = 51614, + [SMALL_STATE(2408)] = 51666, + [SMALL_STATE(2409)] = 51718, + [SMALL_STATE(2410)] = 51770, + [SMALL_STATE(2411)] = 51822, + [SMALL_STATE(2412)] = 51874, + [SMALL_STATE(2413)] = 51946, + [SMALL_STATE(2414)] = 51998, + [SMALL_STATE(2415)] = 52050, + [SMALL_STATE(2416)] = 52102, + [SMALL_STATE(2417)] = 52154, + [SMALL_STATE(2418)] = 52264, + [SMALL_STATE(2419)] = 52316, + [SMALL_STATE(2420)] = 52410, + [SMALL_STATE(2421)] = 52462, + [SMALL_STATE(2422)] = 52558, + [SMALL_STATE(2423)] = 52610, + [SMALL_STATE(2424)] = 52662, + [SMALL_STATE(2425)] = 52714, + [SMALL_STATE(2426)] = 52766, + [SMALL_STATE(2427)] = 52818, + [SMALL_STATE(2428)] = 52890, + [SMALL_STATE(2429)] = 52942, + [SMALL_STATE(2430)] = 52994, + [SMALL_STATE(2431)] = 53104, + [SMALL_STATE(2432)] = 53156, + [SMALL_STATE(2433)] = 53208, + [SMALL_STATE(2434)] = 53260, + [SMALL_STATE(2435)] = 53312, + [SMALL_STATE(2436)] = 53364, + [SMALL_STATE(2437)] = 53416, + [SMALL_STATE(2438)] = 53468, + [SMALL_STATE(2439)] = 53520, + [SMALL_STATE(2440)] = 53572, + [SMALL_STATE(2441)] = 53624, + [SMALL_STATE(2442)] = 53676, + [SMALL_STATE(2443)] = 53728, + [SMALL_STATE(2444)] = 53780, + [SMALL_STATE(2445)] = 53832, + [SMALL_STATE(2446)] = 53884, + [SMALL_STATE(2447)] = 53936, + [SMALL_STATE(2448)] = 53988, + [SMALL_STATE(2449)] = 54040, + [SMALL_STATE(2450)] = 54092, + [SMALL_STATE(2451)] = 54146, + [SMALL_STATE(2452)] = 54240, + [SMALL_STATE(2453)] = 54350, + [SMALL_STATE(2454)] = 54460, + [SMALL_STATE(2455)] = 54512, + [SMALL_STATE(2456)] = 54564, + [SMALL_STATE(2457)] = 54616, + [SMALL_STATE(2458)] = 54669, + [SMALL_STATE(2459)] = 54724, + [SMALL_STATE(2460)] = 54817, + [SMALL_STATE(2461)] = 54910, + [SMALL_STATE(2462)] = 55003, + [SMALL_STATE(2463)] = 55076, + [SMALL_STATE(2464)] = 55169, + [SMALL_STATE(2465)] = 55250, + [SMALL_STATE(2466)] = 55327, + [SMALL_STATE(2467)] = 55380, + [SMALL_STATE(2468)] = 55457, + [SMALL_STATE(2469)] = 55538, + [SMALL_STATE(2470)] = 55625, + [SMALL_STATE(2471)] = 55714, + [SMALL_STATE(2472)] = 55795, + [SMALL_STATE(2473)] = 55898, + [SMALL_STATE(2474)] = 56001, + [SMALL_STATE(2475)] = 56092, + [SMALL_STATE(2476)] = 56183, + [SMALL_STATE(2477)] = 56264, + [SMALL_STATE(2478)] = 56351, + [SMALL_STATE(2479)] = 56456, + [SMALL_STATE(2480)] = 56561, + [SMALL_STATE(2481)] = 56642, + [SMALL_STATE(2482)] = 56729, + [SMALL_STATE(2483)] = 56816, + [SMALL_STATE(2484)] = 56889, + [SMALL_STATE(2485)] = 56970, + [SMALL_STATE(2486)] = 57023, + [SMALL_STATE(2487)] = 57076, + [SMALL_STATE(2488)] = 57129, + [SMALL_STATE(2489)] = 57218, + [SMALL_STATE(2490)] = 57271, + [SMALL_STATE(2491)] = 57324, + [SMALL_STATE(2492)] = 57377, + [SMALL_STATE(2493)] = 57430, + [SMALL_STATE(2494)] = 57503, + [SMALL_STATE(2495)] = 57553, + [SMALL_STATE(2496)] = 57605, + [SMALL_STATE(2497)] = 57655, + [SMALL_STATE(2498)] = 57705, + [SMALL_STATE(2499)] = 57755, + [SMALL_STATE(2500)] = 57805, + [SMALL_STATE(2501)] = 57857, + [SMALL_STATE(2502)] = 57907, + [SMALL_STATE(2503)] = 57957, + [SMALL_STATE(2504)] = 58011, + [SMALL_STATE(2505)] = 58065, + [SMALL_STATE(2506)] = 58115, + [SMALL_STATE(2507)] = 58165, + [SMALL_STATE(2508)] = 58215, + [SMALL_STATE(2509)] = 58267, + [SMALL_STATE(2510)] = 58317, + [SMALL_STATE(2511)] = 58421, + [SMALL_STATE(2512)] = 58471, + [SMALL_STATE(2513)] = 58521, + [SMALL_STATE(2514)] = 58571, + [SMALL_STATE(2515)] = 58621, + [SMALL_STATE(2516)] = 58671, + [SMALL_STATE(2517)] = 58721, + [SMALL_STATE(2518)] = 58771, + [SMALL_STATE(2519)] = 58821, + [SMALL_STATE(2520)] = 58871, + [SMALL_STATE(2521)] = 58921, + [SMALL_STATE(2522)] = 58971, + [SMALL_STATE(2523)] = 59021, + [SMALL_STATE(2524)] = 59071, + [SMALL_STATE(2525)] = 59121, + [SMALL_STATE(2526)] = 59171, + [SMALL_STATE(2527)] = 59221, + [SMALL_STATE(2528)] = 59271, + [SMALL_STATE(2529)] = 59321, + [SMALL_STATE(2530)] = 59371, + [SMALL_STATE(2531)] = 59421, + [SMALL_STATE(2532)] = 59471, + [SMALL_STATE(2533)] = 59521, + [SMALL_STATE(2534)] = 59571, + [SMALL_STATE(2535)] = 59621, + [SMALL_STATE(2536)] = 59671, + [SMALL_STATE(2537)] = 59721, + [SMALL_STATE(2538)] = 59771, + [SMALL_STATE(2539)] = 59821, + [SMALL_STATE(2540)] = 59871, + [SMALL_STATE(2541)] = 59921, + [SMALL_STATE(2542)] = 59971, + [SMALL_STATE(2543)] = 60021, + [SMALL_STATE(2544)] = 60071, + [SMALL_STATE(2545)] = 60121, + [SMALL_STATE(2546)] = 60171, + [SMALL_STATE(2547)] = 60221, + [SMALL_STATE(2548)] = 60271, + [SMALL_STATE(2549)] = 60321, + [SMALL_STATE(2550)] = 60371, + [SMALL_STATE(2551)] = 60421, + [SMALL_STATE(2552)] = 60501, + [SMALL_STATE(2553)] = 60551, + [SMALL_STATE(2554)] = 60631, + [SMALL_STATE(2555)] = 60721, + [SMALL_STATE(2556)] = 60809, + [SMALL_STATE(2557)] = 60889, + [SMALL_STATE(2558)] = 60965, + [SMALL_STATE(2559)] = 61015, + [SMALL_STATE(2560)] = 61065, + [SMALL_STATE(2561)] = 61115, + [SMALL_STATE(2562)] = 61165, + [SMALL_STATE(2563)] = 61215, + [SMALL_STATE(2564)] = 61265, + [SMALL_STATE(2565)] = 61315, + [SMALL_STATE(2566)] = 61365, + [SMALL_STATE(2567)] = 61443, + [SMALL_STATE(2568)] = 61493, + [SMALL_STATE(2569)] = 61543, + [SMALL_STATE(2570)] = 61643, + [SMALL_STATE(2571)] = 61743, + [SMALL_STATE(2572)] = 61793, + [SMALL_STATE(2573)] = 61843, + [SMALL_STATE(2574)] = 61921, + [SMALL_STATE(2575)] = 61971, + [SMALL_STATE(2576)] = 62057, + [SMALL_STATE(2577)] = 62141, + [SMALL_STATE(2578)] = 62219, + [SMALL_STATE(2579)] = 62293, + [SMALL_STATE(2580)] = 62345, + [SMALL_STATE(2581)] = 62395, + [SMALL_STATE(2582)] = 62501, + [SMALL_STATE(2583)] = 62551, + [SMALL_STATE(2584)] = 62601, + [SMALL_STATE(2585)] = 62651, + [SMALL_STATE(2586)] = 62729, + [SMALL_STATE(2587)] = 62779, + [SMALL_STATE(2588)] = 62857, + [SMALL_STATE(2589)] = 62943, + [SMALL_STATE(2590)] = 63027, + [SMALL_STATE(2591)] = 63077, + [SMALL_STATE(2592)] = 63155, + [SMALL_STATE(2593)] = 63229, + [SMALL_STATE(2594)] = 63279, + [SMALL_STATE(2595)] = 63383, + [SMALL_STATE(2596)] = 63433, + [SMALL_STATE(2597)] = 63483, + [SMALL_STATE(2598)] = 63533, + [SMALL_STATE(2599)] = 63585, + [SMALL_STATE(2600)] = 63635, + [SMALL_STATE(2601)] = 63735, + [SMALL_STATE(2602)] = 63835, + [SMALL_STATE(2603)] = 63885, + [SMALL_STATE(2604)] = 63989, + [SMALL_STATE(2605)] = 64039, + [SMALL_STATE(2606)] = 64089, + [SMALL_STATE(2607)] = 64189, + [SMALL_STATE(2608)] = 64239, + [SMALL_STATE(2609)] = 64289, + [SMALL_STATE(2610)] = 64339, + [SMALL_STATE(2611)] = 64389, + [SMALL_STATE(2612)] = 64439, + [SMALL_STATE(2613)] = 64489, + [SMALL_STATE(2614)] = 64539, + [SMALL_STATE(2615)] = 64591, + [SMALL_STATE(2616)] = 64641, + [SMALL_STATE(2617)] = 64691, + [SMALL_STATE(2618)] = 64743, + [SMALL_STATE(2619)] = 64793, + [SMALL_STATE(2620)] = 64843, + [SMALL_STATE(2621)] = 64897, + [SMALL_STATE(2622)] = 64951, + [SMALL_STATE(2623)] = 65001, + [SMALL_STATE(2624)] = 65051, + [SMALL_STATE(2625)] = 65155, + [SMALL_STATE(2626)] = 65258, + [SMALL_STATE(2627)] = 65361, + [SMALL_STATE(2628)] = 65464, + [SMALL_STATE(2629)] = 65563, + [SMALL_STATE(2630)] = 65664, + [SMALL_STATE(2631)] = 65765, + [SMALL_STATE(2632)] = 65820, + [SMALL_STATE(2633)] = 65923, + [SMALL_STATE(2634)] = 66024, + [SMALL_STATE(2635)] = 66127, + [SMALL_STATE(2636)] = 66182, + [SMALL_STATE(2637)] = 66283, + [SMALL_STATE(2638)] = 66386, + [SMALL_STATE(2639)] = 66489, + [SMALL_STATE(2640)] = 66538, + [SMALL_STATE(2641)] = 66641, + [SMALL_STATE(2642)] = 66742, + [SMALL_STATE(2643)] = 66845, + [SMALL_STATE(2644)] = 66944, + [SMALL_STATE(2645)] = 67047, + [SMALL_STATE(2646)] = 67146, + [SMALL_STATE(2647)] = 67245, + [SMALL_STATE(2648)] = 67298, + [SMALL_STATE(2649)] = 67397, + [SMALL_STATE(2650)] = 67498, + [SMALL_STATE(2651)] = 67599, + [SMALL_STATE(2652)] = 67700, + [SMALL_STATE(2653)] = 67751, + [SMALL_STATE(2654)] = 67802, + [SMALL_STATE(2655)] = 67851, + [SMALL_STATE(2656)] = 67952, + [SMALL_STATE(2657)] = 68053, + [SMALL_STATE(2658)] = 68104, + [SMALL_STATE(2659)] = 68153, + [SMALL_STATE(2660)] = 68254, + [SMALL_STATE(2661)] = 68355, + [SMALL_STATE(2662)] = 68404, + [SMALL_STATE(2663)] = 68507, + [SMALL_STATE(2664)] = 68610, + [SMALL_STATE(2665)] = 68713, + [SMALL_STATE(2666)] = 68814, + [SMALL_STATE(2667)] = 68915, + [SMALL_STATE(2668)] = 68967, + [SMALL_STATE(2669)] = 69015, + [SMALL_STATE(2670)] = 69113, + [SMALL_STATE(2671)] = 69211, + [SMALL_STATE(2672)] = 69287, + [SMALL_STATE(2673)] = 69339, + [SMALL_STATE(2674)] = 69387, + [SMALL_STATE(2675)] = 69463, + [SMALL_STATE(2676)] = 69557, + [SMALL_STATE(2677)] = 69605, + [SMALL_STATE(2678)] = 69703, + [SMALL_STATE(2679)] = 69797, + [SMALL_STATE(2680)] = 69845, + [SMALL_STATE(2681)] = 69893, + [SMALL_STATE(2682)] = 69977, + [SMALL_STATE(2683)] = 70025, + [SMALL_STATE(2684)] = 70073, + [SMALL_STATE(2685)] = 70121, + [SMALL_STATE(2686)] = 70169, + [SMALL_STATE(2687)] = 70217, + [SMALL_STATE(2688)] = 70315, + [SMALL_STATE(2689)] = 70397, + [SMALL_STATE(2690)] = 70495, + [SMALL_STATE(2691)] = 70593, + [SMALL_STATE(2692)] = 70691, + [SMALL_STATE(2693)] = 70739, + [SMALL_STATE(2694)] = 70787, + [SMALL_STATE(2695)] = 70881, + [SMALL_STATE(2696)] = 70979, + [SMALL_STATE(2697)] = 71027, + [SMALL_STATE(2698)] = 71075, + [SMALL_STATE(2699)] = 71123, + [SMALL_STATE(2700)] = 71171, + [SMALL_STATE(2701)] = 71219, + [SMALL_STATE(2702)] = 71267, + [SMALL_STATE(2703)] = 71365, + [SMALL_STATE(2704)] = 71413, + [SMALL_STATE(2705)] = 71461, + [SMALL_STATE(2706)] = 71555, + [SMALL_STATE(2707)] = 71653, + [SMALL_STATE(2708)] = 71701, + [SMALL_STATE(2709)] = 71749, + [SMALL_STATE(2710)] = 71797, + [SMALL_STATE(2711)] = 71845, + [SMALL_STATE(2712)] = 71893, + [SMALL_STATE(2713)] = 71941, + [SMALL_STATE(2714)] = 72039, + [SMALL_STATE(2715)] = 72087, + [SMALL_STATE(2716)] = 72163, + [SMALL_STATE(2717)] = 72261, + [SMALL_STATE(2718)] = 72309, + [SMALL_STATE(2719)] = 72403, + [SMALL_STATE(2720)] = 72475, + [SMALL_STATE(2721)] = 72523, + [SMALL_STATE(2722)] = 72571, + [SMALL_STATE(2723)] = 72619, + [SMALL_STATE(2724)] = 72667, + [SMALL_STATE(2725)] = 72715, + [SMALL_STATE(2726)] = 72813, + [SMALL_STATE(2727)] = 72911, + [SMALL_STATE(2728)] = 72959, + [SMALL_STATE(2729)] = 73007, + [SMALL_STATE(2730)] = 73055, + [SMALL_STATE(2731)] = 73103, + [SMALL_STATE(2732)] = 73151, + [SMALL_STATE(2733)] = 73199, + [SMALL_STATE(2734)] = 73293, + [SMALL_STATE(2735)] = 73341, + [SMALL_STATE(2736)] = 73435, + [SMALL_STATE(2737)] = 73483, + [SMALL_STATE(2738)] = 73535, + [SMALL_STATE(2739)] = 73583, + [SMALL_STATE(2740)] = 73681, + [SMALL_STATE(2741)] = 73729, + [SMALL_STATE(2742)] = 73777, + [SMALL_STATE(2743)] = 73825, + [SMALL_STATE(2744)] = 73873, + [SMALL_STATE(2745)] = 73921, + [SMALL_STATE(2746)] = 73969, + [SMALL_STATE(2747)] = 74017, + [SMALL_STATE(2748)] = 74065, + [SMALL_STATE(2749)] = 74113, + [SMALL_STATE(2750)] = 74161, + [SMALL_STATE(2751)] = 74209, + [SMALL_STATE(2752)] = 74257, + [SMALL_STATE(2753)] = 74355, + [SMALL_STATE(2754)] = 74403, + [SMALL_STATE(2755)] = 74451, + [SMALL_STATE(2756)] = 74549, + [SMALL_STATE(2757)] = 74597, + [SMALL_STATE(2758)] = 74647, + [SMALL_STATE(2759)] = 74697, + [SMALL_STATE(2760)] = 74745, + [SMALL_STATE(2761)] = 74793, + [SMALL_STATE(2762)] = 74891, + [SMALL_STATE(2763)] = 74939, + [SMALL_STATE(2764)] = 74987, + [SMALL_STATE(2765)] = 75085, + [SMALL_STATE(2766)] = 75133, + [SMALL_STATE(2767)] = 75181, + [SMALL_STATE(2768)] = 75279, + [SMALL_STATE(2769)] = 75329, + [SMALL_STATE(2770)] = 75427, + [SMALL_STATE(2771)] = 75475, + [SMALL_STATE(2772)] = 75523, + [SMALL_STATE(2773)] = 75571, + [SMALL_STATE(2774)] = 75621, + [SMALL_STATE(2775)] = 75719, + [SMALL_STATE(2776)] = 75767, + [SMALL_STATE(2777)] = 75815, + [SMALL_STATE(2778)] = 75863, + [SMALL_STATE(2779)] = 75911, + [SMALL_STATE(2780)] = 75961, + [SMALL_STATE(2781)] = 76033, + [SMALL_STATE(2782)] = 76109, + [SMALL_STATE(2783)] = 76207, + [SMALL_STATE(2784)] = 76301, + [SMALL_STATE(2785)] = 76351, + [SMALL_STATE(2786)] = 76449, + [SMALL_STATE(2787)] = 76531, + [SMALL_STATE(2788)] = 76615, + [SMALL_STATE(2789)] = 76663, + [SMALL_STATE(2790)] = 76761, + [SMALL_STATE(2791)] = 76837, + [SMALL_STATE(2792)] = 76931, + [SMALL_STATE(2793)] = 76979, + [SMALL_STATE(2794)] = 77055, + [SMALL_STATE(2795)] = 77153, + [SMALL_STATE(2796)] = 77201, + [SMALL_STATE(2797)] = 77299, + [SMALL_STATE(2798)] = 77397, + [SMALL_STATE(2799)] = 77491, + [SMALL_STATE(2800)] = 77589, + [SMALL_STATE(2801)] = 77637, + [SMALL_STATE(2802)] = 77685, + [SMALL_STATE(2803)] = 77733, + [SMALL_STATE(2804)] = 77783, + [SMALL_STATE(2805)] = 77833, + [SMALL_STATE(2806)] = 77881, + [SMALL_STATE(2807)] = 77929, + [SMALL_STATE(2808)] = 77977, + [SMALL_STATE(2809)] = 78025, + [SMALL_STATE(2810)] = 78123, + [SMALL_STATE(2811)] = 78173, + [SMALL_STATE(2812)] = 78271, + [SMALL_STATE(2813)] = 78365, + [SMALL_STATE(2814)] = 78413, + [SMALL_STATE(2815)] = 78461, + [SMALL_STATE(2816)] = 78509, + [SMALL_STATE(2817)] = 78557, + [SMALL_STATE(2818)] = 78609, + [SMALL_STATE(2819)] = 78659, + [SMALL_STATE(2820)] = 78757, + [SMALL_STATE(2821)] = 78805, + [SMALL_STATE(2822)] = 78903, + [SMALL_STATE(2823)] = 79001, + [SMALL_STATE(2824)] = 79099, + [SMALL_STATE(2825)] = 79197, + [SMALL_STATE(2826)] = 79247, + [SMALL_STATE(2827)] = 79295, + [SMALL_STATE(2828)] = 79393, + [SMALL_STATE(2829)] = 79491, + [SMALL_STATE(2830)] = 79539, + [SMALL_STATE(2831)] = 79633, + [SMALL_STATE(2832)] = 79727, + [SMALL_STATE(2833)] = 79775, + [SMALL_STATE(2834)] = 79823, + [SMALL_STATE(2835)] = 79921, + [SMALL_STATE(2836)] = 80019, + [SMALL_STATE(2837)] = 80113, + [SMALL_STATE(2838)] = 80211, + [SMALL_STATE(2839)] = 80309, + [SMALL_STATE(2840)] = 80407, + [SMALL_STATE(2841)] = 80505, + [SMALL_STATE(2842)] = 80599, + [SMALL_STATE(2843)] = 80697, + [SMALL_STATE(2844)] = 80745, + [SMALL_STATE(2845)] = 80795, + [SMALL_STATE(2846)] = 80843, + [SMALL_STATE(2847)] = 80891, + [SMALL_STATE(2848)] = 80989, + [SMALL_STATE(2849)] = 81087, + [SMALL_STATE(2850)] = 81137, + [SMALL_STATE(2851)] = 81235, + [SMALL_STATE(2852)] = 81333, + [SMALL_STATE(2853)] = 81431, + [SMALL_STATE(2854)] = 81525, + [SMALL_STATE(2855)] = 81620, + [SMALL_STATE(2856)] = 81709, + [SMALL_STATE(2857)] = 81804, + [SMALL_STATE(2858)] = 81893, + [SMALL_STATE(2859)] = 81946, + [SMALL_STATE(2860)] = 82041, + [SMALL_STATE(2861)] = 82090, + [SMALL_STATE(2862)] = 82185, + [SMALL_STATE(2863)] = 82280, + [SMALL_STATE(2864)] = 82333, + [SMALL_STATE(2865)] = 82380, + [SMALL_STATE(2866)] = 82475, + [SMALL_STATE(2867)] = 82570, + [SMALL_STATE(2868)] = 82665, + [SMALL_STATE(2869)] = 82760, + [SMALL_STATE(2870)] = 82847, + [SMALL_STATE(2871)] = 82896, + [SMALL_STATE(2872)] = 82991, + [SMALL_STATE(2873)] = 83086, + [SMALL_STATE(2874)] = 83181, + [SMALL_STATE(2875)] = 83276, + [SMALL_STATE(2876)] = 83363, + [SMALL_STATE(2877)] = 83412, + [SMALL_STATE(2878)] = 83507, + [SMALL_STATE(2879)] = 83602, + [SMALL_STATE(2880)] = 83649, + [SMALL_STATE(2881)] = 83744, + [SMALL_STATE(2882)] = 83839, + [SMALL_STATE(2883)] = 83885, + [SMALL_STATE(2884)] = 83931, + [SMALL_STATE(2885)] = 83977, + [SMALL_STATE(2886)] = 84023, + [SMALL_STATE(2887)] = 84069, + [SMALL_STATE(2888)] = 84115, + [SMALL_STATE(2889)] = 84161, + [SMALL_STATE(2890)] = 84207, + [SMALL_STATE(2891)] = 84253, + [SMALL_STATE(2892)] = 84299, + [SMALL_STATE(2893)] = 84345, + [SMALL_STATE(2894)] = 84393, + [SMALL_STATE(2895)] = 84441, + [SMALL_STATE(2896)] = 84487, + [SMALL_STATE(2897)] = 84535, + [SMALL_STATE(2898)] = 84581, + [SMALL_STATE(2899)] = 84627, + [SMALL_STATE(2900)] = 84673, + [SMALL_STATE(2901)] = 84719, + [SMALL_STATE(2902)] = 84765, + [SMALL_STATE(2903)] = 84811, + [SMALL_STATE(2904)] = 84893, + [SMALL_STATE(2905)] = 84939, + [SMALL_STATE(2906)] = 85027, + [SMALL_STATE(2907)] = 85073, + [SMALL_STATE(2908)] = 85121, + [SMALL_STATE(2909)] = 85167, + [SMALL_STATE(2910)] = 85213, + [SMALL_STATE(2911)] = 85261, + [SMALL_STATE(2912)] = 85307, + [SMALL_STATE(2913)] = 85353, + [SMALL_STATE(2914)] = 85399, + [SMALL_STATE(2915)] = 85447, + [SMALL_STATE(2916)] = 85493, + [SMALL_STATE(2917)] = 85541, + [SMALL_STATE(2918)] = 85623, + [SMALL_STATE(2919)] = 85671, + [SMALL_STATE(2920)] = 85717, + [SMALL_STATE(2921)] = 85799, + [SMALL_STATE(2922)] = 85845, + [SMALL_STATE(2923)] = 85893, + [SMALL_STATE(2924)] = 85939, + [SMALL_STATE(2925)] = 86021, + [SMALL_STATE(2926)] = 86069, + [SMALL_STATE(2927)] = 86117, + [SMALL_STATE(2928)] = 86165, + [SMALL_STATE(2929)] = 86213, + [SMALL_STATE(2930)] = 86261, + [SMALL_STATE(2931)] = 86343, + [SMALL_STATE(2932)] = 86425, + [SMALL_STATE(2933)] = 86472, + [SMALL_STATE(2934)] = 86519, + [SMALL_STATE(2935)] = 86568, + [SMALL_STATE(2936)] = 86617, + [SMALL_STATE(2937)] = 86666, + [SMALL_STATE(2938)] = 86713, + [SMALL_STATE(2939)] = 86760, + [SMALL_STATE(2940)] = 86807, + [SMALL_STATE(2941)] = 86854, + [SMALL_STATE(2942)] = 86901, + [SMALL_STATE(2943)] = 86948, + [SMALL_STATE(2944)] = 86995, + [SMALL_STATE(2945)] = 87044, + [SMALL_STATE(2946)] = 87091, + [SMALL_STATE(2947)] = 87138, + [SMALL_STATE(2948)] = 87187, + [SMALL_STATE(2949)] = 87234, + [SMALL_STATE(2950)] = 87283, + [SMALL_STATE(2951)] = 87330, + [SMALL_STATE(2952)] = 87379, + [SMALL_STATE(2953)] = 87428, + [SMALL_STATE(2954)] = 87475, + [SMALL_STATE(2955)] = 87522, + [SMALL_STATE(2956)] = 87569, + [SMALL_STATE(2957)] = 87618, + [SMALL_STATE(2958)] = 87665, + [SMALL_STATE(2959)] = 87712, + [SMALL_STATE(2960)] = 87759, + [SMALL_STATE(2961)] = 87808, + [SMALL_STATE(2962)] = 87855, + [SMALL_STATE(2963)] = 87902, + [SMALL_STATE(2964)] = 87949, + [SMALL_STATE(2965)] = 87998, + [SMALL_STATE(2966)] = 88047, + [SMALL_STATE(2967)] = 88096, + [SMALL_STATE(2968)] = 88143, + [SMALL_STATE(2969)] = 88190, + [SMALL_STATE(2970)] = 88237, + [SMALL_STATE(2971)] = 88284, + [SMALL_STATE(2972)] = 88331, + [SMALL_STATE(2973)] = 88380, + [SMALL_STATE(2974)] = 88427, + [SMALL_STATE(2975)] = 88476, + [SMALL_STATE(2976)] = 88523, + [SMALL_STATE(2977)] = 88570, + [SMALL_STATE(2978)] = 88619, + [SMALL_STATE(2979)] = 88668, + [SMALL_STATE(2980)] = 88717, + [SMALL_STATE(2981)] = 88764, + [SMALL_STATE(2982)] = 88813, + [SMALL_STATE(2983)] = 88862, + [SMALL_STATE(2984)] = 88911, + [SMALL_STATE(2985)] = 88958, + [SMALL_STATE(2986)] = 89005, + [SMALL_STATE(2987)] = 89052, + [SMALL_STATE(2988)] = 89099, + [SMALL_STATE(2989)] = 89148, + [SMALL_STATE(2990)] = 89197, + [SMALL_STATE(2991)] = 89244, + [SMALL_STATE(2992)] = 89291, + [SMALL_STATE(2993)] = 89340, + [SMALL_STATE(2994)] = 89387, + [SMALL_STATE(2995)] = 89434, + [SMALL_STATE(2996)] = 89481, + [SMALL_STATE(2997)] = 89528, + [SMALL_STATE(2998)] = 89575, + [SMALL_STATE(2999)] = 89624, + [SMALL_STATE(3000)] = 89673, + [SMALL_STATE(3001)] = 89720, + [SMALL_STATE(3002)] = 89767, + [SMALL_STATE(3003)] = 89816, + [SMALL_STATE(3004)] = 89865, + [SMALL_STATE(3005)] = 89912, + [SMALL_STATE(3006)] = 89959, + [SMALL_STATE(3007)] = 90006, + [SMALL_STATE(3008)] = 90088, + [SMALL_STATE(3009)] = 90170, + [SMALL_STATE(3010)] = 90249, + [SMALL_STATE(3011)] = 90328, + [SMALL_STATE(3012)] = 90407, + [SMALL_STATE(3013)] = 90486, + [SMALL_STATE(3014)] = 90565, + [SMALL_STATE(3015)] = 90644, + [SMALL_STATE(3016)] = 90723, + [SMALL_STATE(3017)] = 90802, + [SMALL_STATE(3018)] = 90881, + [SMALL_STATE(3019)] = 90960, + [SMALL_STATE(3020)] = 91039, + [SMALL_STATE(3021)] = 91118, + [SMALL_STATE(3022)] = 91197, + [SMALL_STATE(3023)] = 91276, + [SMALL_STATE(3024)] = 91355, + [SMALL_STATE(3025)] = 91434, + [SMALL_STATE(3026)] = 91513, + [SMALL_STATE(3027)] = 91592, + [SMALL_STATE(3028)] = 91645, + [SMALL_STATE(3029)] = 91724, + [SMALL_STATE(3030)] = 91803, + [SMALL_STATE(3031)] = 91882, + [SMALL_STATE(3032)] = 91961, + [SMALL_STATE(3033)] = 92040, + [SMALL_STATE(3034)] = 92119, + [SMALL_STATE(3035)] = 92198, + [SMALL_STATE(3036)] = 92277, + [SMALL_STATE(3037)] = 92356, + [SMALL_STATE(3038)] = 92435, + [SMALL_STATE(3039)] = 92514, + [SMALL_STATE(3040)] = 92593, + [SMALL_STATE(3041)] = 92672, + [SMALL_STATE(3042)] = 92751, + [SMALL_STATE(3043)] = 92830, + [SMALL_STATE(3044)] = 92909, + [SMALL_STATE(3045)] = 92988, + [SMALL_STATE(3046)] = 93067, + [SMALL_STATE(3047)] = 93146, + [SMALL_STATE(3048)] = 93222, + [SMALL_STATE(3049)] = 93298, + [SMALL_STATE(3050)] = 93374, + [SMALL_STATE(3051)] = 93450, + [SMALL_STATE(3052)] = 93526, + [SMALL_STATE(3053)] = 93602, + [SMALL_STATE(3054)] = 93678, + [SMALL_STATE(3055)] = 93754, + [SMALL_STATE(3056)] = 93830, + [SMALL_STATE(3057)] = 93906, + [SMALL_STATE(3058)] = 93982, + [SMALL_STATE(3059)] = 94058, + [SMALL_STATE(3060)] = 94134, + [SMALL_STATE(3061)] = 94210, + [SMALL_STATE(3062)] = 94286, + [SMALL_STATE(3063)] = 94362, + [SMALL_STATE(3064)] = 94438, + [SMALL_STATE(3065)] = 94514, + [SMALL_STATE(3066)] = 94590, + [SMALL_STATE(3067)] = 94666, + [SMALL_STATE(3068)] = 94742, + [SMALL_STATE(3069)] = 94818, + [SMALL_STATE(3070)] = 94894, + [SMALL_STATE(3071)] = 94970, + [SMALL_STATE(3072)] = 95046, + [SMALL_STATE(3073)] = 95122, + [SMALL_STATE(3074)] = 95198, + [SMALL_STATE(3075)] = 95274, + [SMALL_STATE(3076)] = 95350, + [SMALL_STATE(3077)] = 95426, + [SMALL_STATE(3078)] = 95502, + [SMALL_STATE(3079)] = 95578, + [SMALL_STATE(3080)] = 95654, + [SMALL_STATE(3081)] = 95730, + [SMALL_STATE(3082)] = 95806, + [SMALL_STATE(3083)] = 95882, + [SMALL_STATE(3084)] = 95958, + [SMALL_STATE(3085)] = 96034, + [SMALL_STATE(3086)] = 96110, + [SMALL_STATE(3087)] = 96186, + [SMALL_STATE(3088)] = 96262, + [SMALL_STATE(3089)] = 96338, + [SMALL_STATE(3090)] = 96414, + [SMALL_STATE(3091)] = 96490, + [SMALL_STATE(3092)] = 96566, + [SMALL_STATE(3093)] = 96642, + [SMALL_STATE(3094)] = 96718, + [SMALL_STATE(3095)] = 96794, + [SMALL_STATE(3096)] = 96870, + [SMALL_STATE(3097)] = 96946, + [SMALL_STATE(3098)] = 97022, + [SMALL_STATE(3099)] = 97098, + [SMALL_STATE(3100)] = 97174, + [SMALL_STATE(3101)] = 97250, + [SMALL_STATE(3102)] = 97326, + [SMALL_STATE(3103)] = 97402, + [SMALL_STATE(3104)] = 97478, + [SMALL_STATE(3105)] = 97554, + [SMALL_STATE(3106)] = 97630, + [SMALL_STATE(3107)] = 97706, + [SMALL_STATE(3108)] = 97782, + [SMALL_STATE(3109)] = 97858, + [SMALL_STATE(3110)] = 97934, + [SMALL_STATE(3111)] = 98010, + [SMALL_STATE(3112)] = 98086, + [SMALL_STATE(3113)] = 98162, + [SMALL_STATE(3114)] = 98238, + [SMALL_STATE(3115)] = 98314, + [SMALL_STATE(3116)] = 98390, + [SMALL_STATE(3117)] = 98466, + [SMALL_STATE(3118)] = 98542, + [SMALL_STATE(3119)] = 98618, + [SMALL_STATE(3120)] = 98694, + [SMALL_STATE(3121)] = 98770, + [SMALL_STATE(3122)] = 98846, + [SMALL_STATE(3123)] = 98922, + [SMALL_STATE(3124)] = 98998, + [SMALL_STATE(3125)] = 99074, + [SMALL_STATE(3126)] = 99150, + [SMALL_STATE(3127)] = 99226, + [SMALL_STATE(3128)] = 99302, + [SMALL_STATE(3129)] = 99378, + [SMALL_STATE(3130)] = 99454, + [SMALL_STATE(3131)] = 99530, + [SMALL_STATE(3132)] = 99606, + [SMALL_STATE(3133)] = 99682, + [SMALL_STATE(3134)] = 99758, + [SMALL_STATE(3135)] = 99834, + [SMALL_STATE(3136)] = 99910, + [SMALL_STATE(3137)] = 99986, + [SMALL_STATE(3138)] = 100062, + [SMALL_STATE(3139)] = 100138, + [SMALL_STATE(3140)] = 100214, + [SMALL_STATE(3141)] = 100290, + [SMALL_STATE(3142)] = 100366, + [SMALL_STATE(3143)] = 100442, + [SMALL_STATE(3144)] = 100518, + [SMALL_STATE(3145)] = 100594, + [SMALL_STATE(3146)] = 100670, + [SMALL_STATE(3147)] = 100746, + [SMALL_STATE(3148)] = 100822, + [SMALL_STATE(3149)] = 100898, + [SMALL_STATE(3150)] = 100974, + [SMALL_STATE(3151)] = 101050, + [SMALL_STATE(3152)] = 101126, + [SMALL_STATE(3153)] = 101202, + [SMALL_STATE(3154)] = 101278, + [SMALL_STATE(3155)] = 101354, + [SMALL_STATE(3156)] = 101430, + [SMALL_STATE(3157)] = 101506, + [SMALL_STATE(3158)] = 101582, + [SMALL_STATE(3159)] = 101658, + [SMALL_STATE(3160)] = 101734, + [SMALL_STATE(3161)] = 101810, + [SMALL_STATE(3162)] = 101886, + [SMALL_STATE(3163)] = 101962, + [SMALL_STATE(3164)] = 102038, + [SMALL_STATE(3165)] = 102114, + [SMALL_STATE(3166)] = 102190, + [SMALL_STATE(3167)] = 102266, + [SMALL_STATE(3168)] = 102342, + [SMALL_STATE(3169)] = 102418, + [SMALL_STATE(3170)] = 102494, + [SMALL_STATE(3171)] = 102570, + [SMALL_STATE(3172)] = 102646, + [SMALL_STATE(3173)] = 102722, + [SMALL_STATE(3174)] = 102798, + [SMALL_STATE(3175)] = 102874, + [SMALL_STATE(3176)] = 102950, + [SMALL_STATE(3177)] = 103026, + [SMALL_STATE(3178)] = 103102, + [SMALL_STATE(3179)] = 103178, + [SMALL_STATE(3180)] = 103254, + [SMALL_STATE(3181)] = 103330, + [SMALL_STATE(3182)] = 103406, + [SMALL_STATE(3183)] = 103482, + [SMALL_STATE(3184)] = 103558, + [SMALL_STATE(3185)] = 103634, + [SMALL_STATE(3186)] = 103710, + [SMALL_STATE(3187)] = 103786, + [SMALL_STATE(3188)] = 103862, + [SMALL_STATE(3189)] = 103938, + [SMALL_STATE(3190)] = 104014, + [SMALL_STATE(3191)] = 104090, + [SMALL_STATE(3192)] = 104166, + [SMALL_STATE(3193)] = 104242, + [SMALL_STATE(3194)] = 104318, + [SMALL_STATE(3195)] = 104394, + [SMALL_STATE(3196)] = 104470, + [SMALL_STATE(3197)] = 104546, + [SMALL_STATE(3198)] = 104622, + [SMALL_STATE(3199)] = 104698, + [SMALL_STATE(3200)] = 104774, + [SMALL_STATE(3201)] = 104850, + [SMALL_STATE(3202)] = 104926, + [SMALL_STATE(3203)] = 105002, + [SMALL_STATE(3204)] = 105078, + [SMALL_STATE(3205)] = 105154, + [SMALL_STATE(3206)] = 105230, + [SMALL_STATE(3207)] = 105306, + [SMALL_STATE(3208)] = 105382, + [SMALL_STATE(3209)] = 105458, + [SMALL_STATE(3210)] = 105534, + [SMALL_STATE(3211)] = 105610, + [SMALL_STATE(3212)] = 105686, + [SMALL_STATE(3213)] = 105762, + [SMALL_STATE(3214)] = 105838, + [SMALL_STATE(3215)] = 105914, + [SMALL_STATE(3216)] = 105990, + [SMALL_STATE(3217)] = 106066, + [SMALL_STATE(3218)] = 106142, + [SMALL_STATE(3219)] = 106218, + [SMALL_STATE(3220)] = 106294, + [SMALL_STATE(3221)] = 106370, + [SMALL_STATE(3222)] = 106446, + [SMALL_STATE(3223)] = 106522, + [SMALL_STATE(3224)] = 106598, + [SMALL_STATE(3225)] = 106674, + [SMALL_STATE(3226)] = 106750, + [SMALL_STATE(3227)] = 106826, + [SMALL_STATE(3228)] = 106902, + [SMALL_STATE(3229)] = 106978, + [SMALL_STATE(3230)] = 107054, + [SMALL_STATE(3231)] = 107130, + [SMALL_STATE(3232)] = 107206, + [SMALL_STATE(3233)] = 107282, + [SMALL_STATE(3234)] = 107358, + [SMALL_STATE(3235)] = 107434, + [SMALL_STATE(3236)] = 107510, + [SMALL_STATE(3237)] = 107586, + [SMALL_STATE(3238)] = 107662, + [SMALL_STATE(3239)] = 107738, + [SMALL_STATE(3240)] = 107814, + [SMALL_STATE(3241)] = 107890, + [SMALL_STATE(3242)] = 107966, + [SMALL_STATE(3243)] = 108042, + [SMALL_STATE(3244)] = 108118, + [SMALL_STATE(3245)] = 108194, + [SMALL_STATE(3246)] = 108270, + [SMALL_STATE(3247)] = 108346, + [SMALL_STATE(3248)] = 108422, + [SMALL_STATE(3249)] = 108498, + [SMALL_STATE(3250)] = 108574, + [SMALL_STATE(3251)] = 108650, + [SMALL_STATE(3252)] = 108726, + [SMALL_STATE(3253)] = 108802, + [SMALL_STATE(3254)] = 108878, + [SMALL_STATE(3255)] = 108954, + [SMALL_STATE(3256)] = 109030, + [SMALL_STATE(3257)] = 109106, + [SMALL_STATE(3258)] = 109182, + [SMALL_STATE(3259)] = 109258, + [SMALL_STATE(3260)] = 109334, + [SMALL_STATE(3261)] = 109410, + [SMALL_STATE(3262)] = 109486, + [SMALL_STATE(3263)] = 109562, + [SMALL_STATE(3264)] = 109638, + [SMALL_STATE(3265)] = 109714, + [SMALL_STATE(3266)] = 109790, + [SMALL_STATE(3267)] = 109866, + [SMALL_STATE(3268)] = 109942, + [SMALL_STATE(3269)] = 110018, + [SMALL_STATE(3270)] = 110094, + [SMALL_STATE(3271)] = 110170, + [SMALL_STATE(3272)] = 110246, + [SMALL_STATE(3273)] = 110322, + [SMALL_STATE(3274)] = 110398, + [SMALL_STATE(3275)] = 110474, + [SMALL_STATE(3276)] = 110550, + [SMALL_STATE(3277)] = 110626, + [SMALL_STATE(3278)] = 110702, + [SMALL_STATE(3279)] = 110778, + [SMALL_STATE(3280)] = 110854, + [SMALL_STATE(3281)] = 110930, + [SMALL_STATE(3282)] = 111006, + [SMALL_STATE(3283)] = 111082, + [SMALL_STATE(3284)] = 111158, + [SMALL_STATE(3285)] = 111234, + [SMALL_STATE(3286)] = 111310, + [SMALL_STATE(3287)] = 111386, + [SMALL_STATE(3288)] = 111462, + [SMALL_STATE(3289)] = 111538, + [SMALL_STATE(3290)] = 111614, + [SMALL_STATE(3291)] = 111690, + [SMALL_STATE(3292)] = 111766, + [SMALL_STATE(3293)] = 111842, + [SMALL_STATE(3294)] = 111918, + [SMALL_STATE(3295)] = 111994, + [SMALL_STATE(3296)] = 112070, + [SMALL_STATE(3297)] = 112146, + [SMALL_STATE(3298)] = 112222, + [SMALL_STATE(3299)] = 112298, + [SMALL_STATE(3300)] = 112374, + [SMALL_STATE(3301)] = 112450, + [SMALL_STATE(3302)] = 112526, + [SMALL_STATE(3303)] = 112602, + [SMALL_STATE(3304)] = 112678, + [SMALL_STATE(3305)] = 112754, + [SMALL_STATE(3306)] = 112830, + [SMALL_STATE(3307)] = 112906, + [SMALL_STATE(3308)] = 112982, + [SMALL_STATE(3309)] = 113058, + [SMALL_STATE(3310)] = 113134, + [SMALL_STATE(3311)] = 113210, + [SMALL_STATE(3312)] = 113286, + [SMALL_STATE(3313)] = 113362, + [SMALL_STATE(3314)] = 113438, + [SMALL_STATE(3315)] = 113499, + [SMALL_STATE(3316)] = 113560, + [SMALL_STATE(3317)] = 113621, + [SMALL_STATE(3318)] = 113686, + [SMALL_STATE(3319)] = 113747, + [SMALL_STATE(3320)] = 113808, + [SMALL_STATE(3321)] = 113869, + [SMALL_STATE(3322)] = 113930, + [SMALL_STATE(3323)] = 113991, + [SMALL_STATE(3324)] = 114052, + [SMALL_STATE(3325)] = 114113, + [SMALL_STATE(3326)] = 114174, + [SMALL_STATE(3327)] = 114235, + [SMALL_STATE(3328)] = 114296, + [SMALL_STATE(3329)] = 114357, + [SMALL_STATE(3330)] = 114422, + [SMALL_STATE(3331)] = 114482, + [SMALL_STATE(3332)] = 114512, + [SMALL_STATE(3333)] = 114542, + [SMALL_STATE(3334)] = 114572, + [SMALL_STATE(3335)] = 114602, + [SMALL_STATE(3336)] = 114632, + [SMALL_STATE(3337)] = 114662, + [SMALL_STATE(3338)] = 114700, + [SMALL_STATE(3339)] = 114744, + [SMALL_STATE(3340)] = 114782, + [SMALL_STATE(3341)] = 114808, + [SMALL_STATE(3342)] = 114834, + [SMALL_STATE(3343)] = 114860, + [SMALL_STATE(3344)] = 114886, + [SMALL_STATE(3345)] = 114912, + [SMALL_STATE(3346)] = 114950, + [SMALL_STATE(3347)] = 114977, + [SMALL_STATE(3348)] = 115000, + [SMALL_STATE(3349)] = 115023, + [SMALL_STATE(3350)] = 115046, + [SMALL_STATE(3351)] = 115073, + [SMALL_STATE(3352)] = 115102, + [SMALL_STATE(3353)] = 115128, + [SMALL_STATE(3354)] = 115154, + [SMALL_STATE(3355)] = 115180, + [SMALL_STATE(3356)] = 115206, + [SMALL_STATE(3357)] = 115232, + [SMALL_STATE(3358)] = 115258, + [SMALL_STATE(3359)] = 115284, + [SMALL_STATE(3360)] = 115310, + [SMALL_STATE(3361)] = 115336, + [SMALL_STATE(3362)] = 115359, + [SMALL_STATE(3363)] = 115382, + [SMALL_STATE(3364)] = 115423, + [SMALL_STATE(3365)] = 115464, + [SMALL_STATE(3366)] = 115505, + [SMALL_STATE(3367)] = 115530, + [SMALL_STATE(3368)] = 115570, + [SMALL_STATE(3369)] = 115610, + [SMALL_STATE(3370)] = 115650, + [SMALL_STATE(3371)] = 115676, + [SMALL_STATE(3372)] = 115716, + [SMALL_STATE(3373)] = 115756, + [SMALL_STATE(3374)] = 115796, + [SMALL_STATE(3375)] = 115836, + [SMALL_STATE(3376)] = 115858, + [SMALL_STATE(3377)] = 115898, + [SMALL_STATE(3378)] = 115938, + [SMALL_STATE(3379)] = 115978, + [SMALL_STATE(3380)] = 116000, + [SMALL_STATE(3381)] = 116024, + [SMALL_STATE(3382)] = 116046, + [SMALL_STATE(3383)] = 116072, + [SMALL_STATE(3384)] = 116112, + [SMALL_STATE(3385)] = 116134, + [SMALL_STATE(3386)] = 116160, + [SMALL_STATE(3387)] = 116200, + [SMALL_STATE(3388)] = 116240, + [SMALL_STATE(3389)] = 116280, + [SMALL_STATE(3390)] = 116320, + [SMALL_STATE(3391)] = 116344, + [SMALL_STATE(3392)] = 116370, + [SMALL_STATE(3393)] = 116410, + [SMALL_STATE(3394)] = 116450, + [SMALL_STATE(3395)] = 116490, + [SMALL_STATE(3396)] = 116516, + [SMALL_STATE(3397)] = 116556, + [SMALL_STATE(3398)] = 116578, + [SMALL_STATE(3399)] = 116604, + [SMALL_STATE(3400)] = 116644, + [SMALL_STATE(3401)] = 116666, + [SMALL_STATE(3402)] = 116706, + [SMALL_STATE(3403)] = 116728, + [SMALL_STATE(3404)] = 116768, + [SMALL_STATE(3405)] = 116808, + [SMALL_STATE(3406)] = 116848, + [SMALL_STATE(3407)] = 116874, + [SMALL_STATE(3408)] = 116914, + [SMALL_STATE(3409)] = 116940, + [SMALL_STATE(3410)] = 116980, + [SMALL_STATE(3411)] = 117020, + [SMALL_STATE(3412)] = 117060, + [SMALL_STATE(3413)] = 117100, + [SMALL_STATE(3414)] = 117125, + [SMALL_STATE(3415)] = 117144, + [SMALL_STATE(3416)] = 117163, + [SMALL_STATE(3417)] = 117182, + [SMALL_STATE(3418)] = 117207, + [SMALL_STATE(3419)] = 117227, + [SMALL_STATE(3420)] = 117251, + [SMALL_STATE(3421)] = 117271, + [SMALL_STATE(3422)] = 117288, + [SMALL_STATE(3423)] = 117305, + [SMALL_STATE(3424)] = 117322, + [SMALL_STATE(3425)] = 117339, + [SMALL_STATE(3426)] = 117356, + [SMALL_STATE(3427)] = 117377, + [SMALL_STATE(3428)] = 117394, + [SMALL_STATE(3429)] = 117417, + [SMALL_STATE(3430)] = 117434, + [SMALL_STATE(3431)] = 117451, + [SMALL_STATE(3432)] = 117468, + [SMALL_STATE(3433)] = 117485, + [SMALL_STATE(3434)] = 117502, + [SMALL_STATE(3435)] = 117519, + [SMALL_STATE(3436)] = 117536, + [SMALL_STATE(3437)] = 117553, + [SMALL_STATE(3438)] = 117570, + [SMALL_STATE(3439)] = 117587, + [SMALL_STATE(3440)] = 117604, + [SMALL_STATE(3441)] = 117621, + [SMALL_STATE(3442)] = 117638, + [SMALL_STATE(3443)] = 117659, + [SMALL_STATE(3444)] = 117676, + [SMALL_STATE(3445)] = 117693, + [SMALL_STATE(3446)] = 117710, + [SMALL_STATE(3447)] = 117730, + [SMALL_STATE(3448)] = 117752, + [SMALL_STATE(3449)] = 117784, + [SMALL_STATE(3450)] = 117811, + [SMALL_STATE(3451)] = 117826, + [SMALL_STATE(3452)] = 117847, + [SMALL_STATE(3453)] = 117874, + [SMALL_STATE(3454)] = 117901, + [SMALL_STATE(3455)] = 117930, + [SMALL_STATE(3456)] = 117957, + [SMALL_STATE(3457)] = 117976, + [SMALL_STATE(3458)] = 118003, + [SMALL_STATE(3459)] = 118020, + [SMALL_STATE(3460)] = 118047, + [SMALL_STATE(3461)] = 118074, + [SMALL_STATE(3462)] = 118101, + [SMALL_STATE(3463)] = 118128, + [SMALL_STATE(3464)] = 118149, + [SMALL_STATE(3465)] = 118176, + [SMALL_STATE(3466)] = 118203, + [SMALL_STATE(3467)] = 118230, + [SMALL_STATE(3468)] = 118248, + [SMALL_STATE(3469)] = 118264, + [SMALL_STATE(3470)] = 118278, + [SMALL_STATE(3471)] = 118292, + [SMALL_STATE(3472)] = 118306, + [SMALL_STATE(3473)] = 118320, + [SMALL_STATE(3474)] = 118334, + [SMALL_STATE(3475)] = 118348, + [SMALL_STATE(3476)] = 118364, + [SMALL_STATE(3477)] = 118378, + [SMALL_STATE(3478)] = 118406, + [SMALL_STATE(3479)] = 118428, + [SMALL_STATE(3480)] = 118446, + [SMALL_STATE(3481)] = 118464, + [SMALL_STATE(3482)] = 118478, + [SMALL_STATE(3483)] = 118492, + [SMALL_STATE(3484)] = 118508, + [SMALL_STATE(3485)] = 118529, + [SMALL_STATE(3486)] = 118550, + [SMALL_STATE(3487)] = 118571, + [SMALL_STATE(3488)] = 118594, + [SMALL_STATE(3489)] = 118615, + [SMALL_STATE(3490)] = 118636, + [SMALL_STATE(3491)] = 118649, + [SMALL_STATE(3492)] = 118670, + [SMALL_STATE(3493)] = 118687, + [SMALL_STATE(3494)] = 118708, + [SMALL_STATE(3495)] = 118729, + [SMALL_STATE(3496)] = 118750, + [SMALL_STATE(3497)] = 118771, + [SMALL_STATE(3498)] = 118792, + [SMALL_STATE(3499)] = 118815, + [SMALL_STATE(3500)] = 118840, + [SMALL_STATE(3501)] = 118861, + [SMALL_STATE(3502)] = 118882, + [SMALL_STATE(3503)] = 118903, + [SMALL_STATE(3504)] = 118924, + [SMALL_STATE(3505)] = 118945, + [SMALL_STATE(3506)] = 118966, + [SMALL_STATE(3507)] = 118979, + [SMALL_STATE(3508)] = 119000, + [SMALL_STATE(3509)] = 119021, + [SMALL_STATE(3510)] = 119042, + [SMALL_STATE(3511)] = 119055, + [SMALL_STATE(3512)] = 119076, + [SMALL_STATE(3513)] = 119099, + [SMALL_STATE(3514)] = 119120, + [SMALL_STATE(3515)] = 119145, + [SMALL_STATE(3516)] = 119166, + [SMALL_STATE(3517)] = 119187, + [SMALL_STATE(3518)] = 119203, + [SMALL_STATE(3519)] = 119219, + [SMALL_STATE(3520)] = 119239, + [SMALL_STATE(3521)] = 119259, + [SMALL_STATE(3522)] = 119279, + [SMALL_STATE(3523)] = 119299, + [SMALL_STATE(3524)] = 119321, + [SMALL_STATE(3525)] = 119341, + [SMALL_STATE(3526)] = 119361, + [SMALL_STATE(3527)] = 119381, + [SMALL_STATE(3528)] = 119401, + [SMALL_STATE(3529)] = 119421, + [SMALL_STATE(3530)] = 119441, + [SMALL_STATE(3531)] = 119461, + [SMALL_STATE(3532)] = 119481, + [SMALL_STATE(3533)] = 119501, + [SMALL_STATE(3534)] = 119521, + [SMALL_STATE(3535)] = 119541, + [SMALL_STATE(3536)] = 119561, + [SMALL_STATE(3537)] = 119581, + [SMALL_STATE(3538)] = 119601, + [SMALL_STATE(3539)] = 119615, + [SMALL_STATE(3540)] = 119631, + [SMALL_STATE(3541)] = 119651, + [SMALL_STATE(3542)] = 119671, + [SMALL_STATE(3543)] = 119691, + [SMALL_STATE(3544)] = 119711, + [SMALL_STATE(3545)] = 119731, + [SMALL_STATE(3546)] = 119751, + [SMALL_STATE(3547)] = 119771, + [SMALL_STATE(3548)] = 119791, + [SMALL_STATE(3549)] = 119811, + [SMALL_STATE(3550)] = 119831, + [SMALL_STATE(3551)] = 119851, + [SMALL_STATE(3552)] = 119871, + [SMALL_STATE(3553)] = 119891, + [SMALL_STATE(3554)] = 119911, + [SMALL_STATE(3555)] = 119931, + [SMALL_STATE(3556)] = 119951, + [SMALL_STATE(3557)] = 119971, + [SMALL_STATE(3558)] = 119991, + [SMALL_STATE(3559)] = 120011, + [SMALL_STATE(3560)] = 120031, + [SMALL_STATE(3561)] = 120051, + [SMALL_STATE(3562)] = 120071, + [SMALL_STATE(3563)] = 120091, + [SMALL_STATE(3564)] = 120111, + [SMALL_STATE(3565)] = 120131, + [SMALL_STATE(3566)] = 120151, + [SMALL_STATE(3567)] = 120171, + [SMALL_STATE(3568)] = 120191, + [SMALL_STATE(3569)] = 120211, + [SMALL_STATE(3570)] = 120231, + [SMALL_STATE(3571)] = 120247, + [SMALL_STATE(3572)] = 120263, + [SMALL_STATE(3573)] = 120283, + [SMALL_STATE(3574)] = 120303, + [SMALL_STATE(3575)] = 120323, + [SMALL_STATE(3576)] = 120343, + [SMALL_STATE(3577)] = 120363, + [SMALL_STATE(3578)] = 120383, + [SMALL_STATE(3579)] = 120403, + [SMALL_STATE(3580)] = 120423, + [SMALL_STATE(3581)] = 120443, + [SMALL_STATE(3582)] = 120463, + [SMALL_STATE(3583)] = 120483, + [SMALL_STATE(3584)] = 120503, + [SMALL_STATE(3585)] = 120523, + [SMALL_STATE(3586)] = 120543, + [SMALL_STATE(3587)] = 120563, + [SMALL_STATE(3588)] = 120583, + [SMALL_STATE(3589)] = 120603, + [SMALL_STATE(3590)] = 120619, + [SMALL_STATE(3591)] = 120639, + [SMALL_STATE(3592)] = 120659, + [SMALL_STATE(3593)] = 120679, + [SMALL_STATE(3594)] = 120695, + [SMALL_STATE(3595)] = 120715, + [SMALL_STATE(3596)] = 120735, + [SMALL_STATE(3597)] = 120755, + [SMALL_STATE(3598)] = 120775, + [SMALL_STATE(3599)] = 120795, + [SMALL_STATE(3600)] = 120815, + [SMALL_STATE(3601)] = 120835, + [SMALL_STATE(3602)] = 120855, + [SMALL_STATE(3603)] = 120871, + [SMALL_STATE(3604)] = 120891, + [SMALL_STATE(3605)] = 120911, + [SMALL_STATE(3606)] = 120927, + [SMALL_STATE(3607)] = 120947, + [SMALL_STATE(3608)] = 120967, + [SMALL_STATE(3609)] = 120987, + [SMALL_STATE(3610)] = 121007, + [SMALL_STATE(3611)] = 121027, + [SMALL_STATE(3612)] = 121047, + [SMALL_STATE(3613)] = 121067, + [SMALL_STATE(3614)] = 121087, + [SMALL_STATE(3615)] = 121107, + [SMALL_STATE(3616)] = 121127, + [SMALL_STATE(3617)] = 121143, + [SMALL_STATE(3618)] = 121163, + [SMALL_STATE(3619)] = 121183, + [SMALL_STATE(3620)] = 121205, + [SMALL_STATE(3621)] = 121225, + [SMALL_STATE(3622)] = 121245, + [SMALL_STATE(3623)] = 121261, + [SMALL_STATE(3624)] = 121281, + [SMALL_STATE(3625)] = 121301, + [SMALL_STATE(3626)] = 121321, + [SMALL_STATE(3627)] = 121341, + [SMALL_STATE(3628)] = 121361, + [SMALL_STATE(3629)] = 121381, + [SMALL_STATE(3630)] = 121401, + [SMALL_STATE(3631)] = 121416, + [SMALL_STATE(3632)] = 121435, + [SMALL_STATE(3633)] = 121448, + [SMALL_STATE(3634)] = 121467, + [SMALL_STATE(3635)] = 121480, + [SMALL_STATE(3636)] = 121491, + [SMALL_STATE(3637)] = 121508, + [SMALL_STATE(3638)] = 121525, + [SMALL_STATE(3639)] = 121544, + [SMALL_STATE(3640)] = 121563, + [SMALL_STATE(3641)] = 121578, + [SMALL_STATE(3642)] = 121595, + [SMALL_STATE(3643)] = 121612, + [SMALL_STATE(3644)] = 121623, + [SMALL_STATE(3645)] = 121638, + [SMALL_STATE(3646)] = 121649, + [SMALL_STATE(3647)] = 121664, + [SMALL_STATE(3648)] = 121675, + [SMALL_STATE(3649)] = 121694, + [SMALL_STATE(3650)] = 121711, + [SMALL_STATE(3651)] = 121730, + [SMALL_STATE(3652)] = 121741, + [SMALL_STATE(3653)] = 121758, + [SMALL_STATE(3654)] = 121775, + [SMALL_STATE(3655)] = 121788, + [SMALL_STATE(3656)] = 121801, + [SMALL_STATE(3657)] = 121816, + [SMALL_STATE(3658)] = 121827, + [SMALL_STATE(3659)] = 121842, + [SMALL_STATE(3660)] = 121855, + [SMALL_STATE(3661)] = 121872, + [SMALL_STATE(3662)] = 121887, + [SMALL_STATE(3663)] = 121903, + [SMALL_STATE(3664)] = 121917, + [SMALL_STATE(3665)] = 121931, + [SMALL_STATE(3666)] = 121947, + [SMALL_STATE(3667)] = 121961, + [SMALL_STATE(3668)] = 121977, + [SMALL_STATE(3669)] = 121991, + [SMALL_STATE(3670)] = 122007, + [SMALL_STATE(3671)] = 122021, + [SMALL_STATE(3672)] = 122035, + [SMALL_STATE(3673)] = 122049, + [SMALL_STATE(3674)] = 122063, + [SMALL_STATE(3675)] = 122079, + [SMALL_STATE(3676)] = 122095, + [SMALL_STATE(3677)] = 122111, + [SMALL_STATE(3678)] = 122125, + [SMALL_STATE(3679)] = 122141, + [SMALL_STATE(3680)] = 122155, + [SMALL_STATE(3681)] = 122169, + [SMALL_STATE(3682)] = 122185, + [SMALL_STATE(3683)] = 122201, + [SMALL_STATE(3684)] = 122215, + [SMALL_STATE(3685)] = 122229, + [SMALL_STATE(3686)] = 122243, + [SMALL_STATE(3687)] = 122257, + [SMALL_STATE(3688)] = 122271, + [SMALL_STATE(3689)] = 122287, + [SMALL_STATE(3690)] = 122301, + [SMALL_STATE(3691)] = 122317, + [SMALL_STATE(3692)] = 122331, + [SMALL_STATE(3693)] = 122345, + [SMALL_STATE(3694)] = 122359, + [SMALL_STATE(3695)] = 122375, + [SMALL_STATE(3696)] = 122389, + [SMALL_STATE(3697)] = 122405, + [SMALL_STATE(3698)] = 122419, + [SMALL_STATE(3699)] = 122429, + [SMALL_STATE(3700)] = 122443, + [SMALL_STATE(3701)] = 122457, + [SMALL_STATE(3702)] = 122467, + [SMALL_STATE(3703)] = 122481, + [SMALL_STATE(3704)] = 122495, + [SMALL_STATE(3705)] = 122509, + [SMALL_STATE(3706)] = 122519, + [SMALL_STATE(3707)] = 122529, + [SMALL_STATE(3708)] = 122543, + [SMALL_STATE(3709)] = 122559, + [SMALL_STATE(3710)] = 122573, + [SMALL_STATE(3711)] = 122587, + [SMALL_STATE(3712)] = 122601, + [SMALL_STATE(3713)] = 122617, + [SMALL_STATE(3714)] = 122627, + [SMALL_STATE(3715)] = 122641, + [SMALL_STATE(3716)] = 122655, + [SMALL_STATE(3717)] = 122665, + [SMALL_STATE(3718)] = 122679, + [SMALL_STATE(3719)] = 122693, + [SMALL_STATE(3720)] = 122707, + [SMALL_STATE(3721)] = 122721, + [SMALL_STATE(3722)] = 122735, + [SMALL_STATE(3723)] = 122751, + [SMALL_STATE(3724)] = 122765, + [SMALL_STATE(3725)] = 122779, + [SMALL_STATE(3726)] = 122793, + [SMALL_STATE(3727)] = 122807, + [SMALL_STATE(3728)] = 122821, + [SMALL_STATE(3729)] = 122837, + [SMALL_STATE(3730)] = 122853, + [SMALL_STATE(3731)] = 122869, + [SMALL_STATE(3732)] = 122883, + [SMALL_STATE(3733)] = 122897, + [SMALL_STATE(3734)] = 122907, + [SMALL_STATE(3735)] = 122917, + [SMALL_STATE(3736)] = 122933, + [SMALL_STATE(3737)] = 122947, + [SMALL_STATE(3738)] = 122961, + [SMALL_STATE(3739)] = 122975, + [SMALL_STATE(3740)] = 122985, + [SMALL_STATE(3741)] = 122999, + [SMALL_STATE(3742)] = 123015, + [SMALL_STATE(3743)] = 123029, + [SMALL_STATE(3744)] = 123039, + [SMALL_STATE(3745)] = 123053, + [SMALL_STATE(3746)] = 123067, + [SMALL_STATE(3747)] = 123079, + [SMALL_STATE(3748)] = 123095, + [SMALL_STATE(3749)] = 123109, + [SMALL_STATE(3750)] = 123123, + [SMALL_STATE(3751)] = 123133, + [SMALL_STATE(3752)] = 123147, + [SMALL_STATE(3753)] = 123161, + [SMALL_STATE(3754)] = 123177, + [SMALL_STATE(3755)] = 123187, + [SMALL_STATE(3756)] = 123199, + [SMALL_STATE(3757)] = 123211, + [SMALL_STATE(3758)] = 123225, + [SMALL_STATE(3759)] = 123239, + [SMALL_STATE(3760)] = 123255, + [SMALL_STATE(3761)] = 123269, + [SMALL_STATE(3762)] = 123281, + [SMALL_STATE(3763)] = 123291, + [SMALL_STATE(3764)] = 123301, + [SMALL_STATE(3765)] = 123315, + [SMALL_STATE(3766)] = 123329, + [SMALL_STATE(3767)] = 123341, + [SMALL_STATE(3768)] = 123355, + [SMALL_STATE(3769)] = 123365, + [SMALL_STATE(3770)] = 123379, + [SMALL_STATE(3771)] = 123391, + [SMALL_STATE(3772)] = 123405, + [SMALL_STATE(3773)] = 123419, + [SMALL_STATE(3774)] = 123431, + [SMALL_STATE(3775)] = 123445, + [SMALL_STATE(3776)] = 123461, + [SMALL_STATE(3777)] = 123471, + [SMALL_STATE(3778)] = 123483, + [SMALL_STATE(3779)] = 123493, + [SMALL_STATE(3780)] = 123507, + [SMALL_STATE(3781)] = 123521, + [SMALL_STATE(3782)] = 123531, + [SMALL_STATE(3783)] = 123545, + [SMALL_STATE(3784)] = 123561, + [SMALL_STATE(3785)] = 123575, + [SMALL_STATE(3786)] = 123589, + [SMALL_STATE(3787)] = 123599, + [SMALL_STATE(3788)] = 123613, + [SMALL_STATE(3789)] = 123629, + [SMALL_STATE(3790)] = 123645, + [SMALL_STATE(3791)] = 123655, + [SMALL_STATE(3792)] = 123669, + [SMALL_STATE(3793)] = 123683, + [SMALL_STATE(3794)] = 123699, + [SMALL_STATE(3795)] = 123713, + [SMALL_STATE(3796)] = 123727, + [SMALL_STATE(3797)] = 123743, + [SMALL_STATE(3798)] = 123757, + [SMALL_STATE(3799)] = 123771, + [SMALL_STATE(3800)] = 123787, + [SMALL_STATE(3801)] = 123801, + [SMALL_STATE(3802)] = 123811, + [SMALL_STATE(3803)] = 123821, + [SMALL_STATE(3804)] = 123831, + [SMALL_STATE(3805)] = 123845, + [SMALL_STATE(3806)] = 123859, + [SMALL_STATE(3807)] = 123875, + [SMALL_STATE(3808)] = 123891, + [SMALL_STATE(3809)] = 123905, + [SMALL_STATE(3810)] = 123919, + [SMALL_STATE(3811)] = 123935, + [SMALL_STATE(3812)] = 123949, + [SMALL_STATE(3813)] = 123959, + [SMALL_STATE(3814)] = 123973, + [SMALL_STATE(3815)] = 123987, + [SMALL_STATE(3816)] = 124001, + [SMALL_STATE(3817)] = 124015, + [SMALL_STATE(3818)] = 124029, + [SMALL_STATE(3819)] = 124043, + [SMALL_STATE(3820)] = 124057, + [SMALL_STATE(3821)] = 124069, + [SMALL_STATE(3822)] = 124083, + [SMALL_STATE(3823)] = 124099, + [SMALL_STATE(3824)] = 124113, + [SMALL_STATE(3825)] = 124123, + [SMALL_STATE(3826)] = 124137, + [SMALL_STATE(3827)] = 124151, + [SMALL_STATE(3828)] = 124165, + [SMALL_STATE(3829)] = 124179, + [SMALL_STATE(3830)] = 124193, + [SMALL_STATE(3831)] = 124209, + [SMALL_STATE(3832)] = 124223, + [SMALL_STATE(3833)] = 124233, + [SMALL_STATE(3834)] = 124246, + [SMALL_STATE(3835)] = 124259, + [SMALL_STATE(3836)] = 124272, + [SMALL_STATE(3837)] = 124285, + [SMALL_STATE(3838)] = 124298, + [SMALL_STATE(3839)] = 124311, + [SMALL_STATE(3840)] = 124324, + [SMALL_STATE(3841)] = 124337, + [SMALL_STATE(3842)] = 124350, + [SMALL_STATE(3843)] = 124363, + [SMALL_STATE(3844)] = 124376, + [SMALL_STATE(3845)] = 124385, + [SMALL_STATE(3846)] = 124398, + [SMALL_STATE(3847)] = 124407, + [SMALL_STATE(3848)] = 124420, + [SMALL_STATE(3849)] = 124433, + [SMALL_STATE(3850)] = 124446, + [SMALL_STATE(3851)] = 124459, + [SMALL_STATE(3852)] = 124472, + [SMALL_STATE(3853)] = 124485, + [SMALL_STATE(3854)] = 124494, + [SMALL_STATE(3855)] = 124507, + [SMALL_STATE(3856)] = 124520, + [SMALL_STATE(3857)] = 124533, + [SMALL_STATE(3858)] = 124546, + [SMALL_STATE(3859)] = 124559, + [SMALL_STATE(3860)] = 124572, + [SMALL_STATE(3861)] = 124585, + [SMALL_STATE(3862)] = 124598, + [SMALL_STATE(3863)] = 124611, + [SMALL_STATE(3864)] = 124624, + [SMALL_STATE(3865)] = 124633, + [SMALL_STATE(3866)] = 124646, + [SMALL_STATE(3867)] = 124659, + [SMALL_STATE(3868)] = 124672, + [SMALL_STATE(3869)] = 124685, + [SMALL_STATE(3870)] = 124698, + [SMALL_STATE(3871)] = 124711, + [SMALL_STATE(3872)] = 124724, + [SMALL_STATE(3873)] = 124737, + [SMALL_STATE(3874)] = 124750, + [SMALL_STATE(3875)] = 124763, + [SMALL_STATE(3876)] = 124776, + [SMALL_STATE(3877)] = 124789, + [SMALL_STATE(3878)] = 124802, + [SMALL_STATE(3879)] = 124815, + [SMALL_STATE(3880)] = 124824, + [SMALL_STATE(3881)] = 124837, + [SMALL_STATE(3882)] = 124850, + [SMALL_STATE(3883)] = 124863, + [SMALL_STATE(3884)] = 124876, + [SMALL_STATE(3885)] = 124889, + [SMALL_STATE(3886)] = 124902, + [SMALL_STATE(3887)] = 124915, + [SMALL_STATE(3888)] = 124928, + [SMALL_STATE(3889)] = 124941, + [SMALL_STATE(3890)] = 124954, + [SMALL_STATE(3891)] = 124967, + [SMALL_STATE(3892)] = 124980, + [SMALL_STATE(3893)] = 124993, + [SMALL_STATE(3894)] = 125006, + [SMALL_STATE(3895)] = 125019, + [SMALL_STATE(3896)] = 125032, + [SMALL_STATE(3897)] = 125045, + [SMALL_STATE(3898)] = 125058, + [SMALL_STATE(3899)] = 125071, + [SMALL_STATE(3900)] = 125084, + [SMALL_STATE(3901)] = 125097, + [SMALL_STATE(3902)] = 125110, + [SMALL_STATE(3903)] = 125123, + [SMALL_STATE(3904)] = 125136, + [SMALL_STATE(3905)] = 125149, + [SMALL_STATE(3906)] = 125162, + [SMALL_STATE(3907)] = 125175, + [SMALL_STATE(3908)] = 125188, + [SMALL_STATE(3909)] = 125199, + [SMALL_STATE(3910)] = 125212, + [SMALL_STATE(3911)] = 125225, + [SMALL_STATE(3912)] = 125238, + [SMALL_STATE(3913)] = 125251, + [SMALL_STATE(3914)] = 125264, + [SMALL_STATE(3915)] = 125277, + [SMALL_STATE(3916)] = 125290, + [SMALL_STATE(3917)] = 125303, + [SMALL_STATE(3918)] = 125316, + [SMALL_STATE(3919)] = 125329, + [SMALL_STATE(3920)] = 125342, + [SMALL_STATE(3921)] = 125355, + [SMALL_STATE(3922)] = 125368, + [SMALL_STATE(3923)] = 125381, + [SMALL_STATE(3924)] = 125394, + [SMALL_STATE(3925)] = 125407, + [SMALL_STATE(3926)] = 125420, + [SMALL_STATE(3927)] = 125433, + [SMALL_STATE(3928)] = 125446, + [SMALL_STATE(3929)] = 125459, + [SMALL_STATE(3930)] = 125472, + [SMALL_STATE(3931)] = 125485, + [SMALL_STATE(3932)] = 125498, + [SMALL_STATE(3933)] = 125511, + [SMALL_STATE(3934)] = 125522, + [SMALL_STATE(3935)] = 125535, + [SMALL_STATE(3936)] = 125548, + [SMALL_STATE(3937)] = 125561, + [SMALL_STATE(3938)] = 125574, + [SMALL_STATE(3939)] = 125587, + [SMALL_STATE(3940)] = 125600, + [SMALL_STATE(3941)] = 125613, + [SMALL_STATE(3942)] = 125626, + [SMALL_STATE(3943)] = 125639, + [SMALL_STATE(3944)] = 125652, + [SMALL_STATE(3945)] = 125665, + [SMALL_STATE(3946)] = 125678, + [SMALL_STATE(3947)] = 125691, + [SMALL_STATE(3948)] = 125704, + [SMALL_STATE(3949)] = 125717, + [SMALL_STATE(3950)] = 125730, + [SMALL_STATE(3951)] = 125743, + [SMALL_STATE(3952)] = 125756, + [SMALL_STATE(3953)] = 125769, + [SMALL_STATE(3954)] = 125782, + [SMALL_STATE(3955)] = 125795, + [SMALL_STATE(3956)] = 125808, + [SMALL_STATE(3957)] = 125817, + [SMALL_STATE(3958)] = 125830, + [SMALL_STATE(3959)] = 125843, + [SMALL_STATE(3960)] = 125856, + [SMALL_STATE(3961)] = 125869, + [SMALL_STATE(3962)] = 125882, + [SMALL_STATE(3963)] = 125895, + [SMALL_STATE(3964)] = 125908, + [SMALL_STATE(3965)] = 125921, + [SMALL_STATE(3966)] = 125934, + [SMALL_STATE(3967)] = 125947, + [SMALL_STATE(3968)] = 125960, + [SMALL_STATE(3969)] = 125971, + [SMALL_STATE(3970)] = 125980, + [SMALL_STATE(3971)] = 125993, + [SMALL_STATE(3972)] = 126002, + [SMALL_STATE(3973)] = 126015, + [SMALL_STATE(3974)] = 126028, + [SMALL_STATE(3975)] = 126041, + [SMALL_STATE(3976)] = 126052, + [SMALL_STATE(3977)] = 126065, + [SMALL_STATE(3978)] = 126078, + [SMALL_STATE(3979)] = 126091, + [SMALL_STATE(3980)] = 126104, + [SMALL_STATE(3981)] = 126117, + [SMALL_STATE(3982)] = 126130, + [SMALL_STATE(3983)] = 126143, + [SMALL_STATE(3984)] = 126156, + [SMALL_STATE(3985)] = 126165, + [SMALL_STATE(3986)] = 126178, + [SMALL_STATE(3987)] = 126187, + [SMALL_STATE(3988)] = 126200, + [SMALL_STATE(3989)] = 126213, + [SMALL_STATE(3990)] = 126226, + [SMALL_STATE(3991)] = 126239, + [SMALL_STATE(3992)] = 126252, + [SMALL_STATE(3993)] = 126265, + [SMALL_STATE(3994)] = 126278, + [SMALL_STATE(3995)] = 126291, + [SMALL_STATE(3996)] = 126304, + [SMALL_STATE(3997)] = 126317, + [SMALL_STATE(3998)] = 126330, + [SMALL_STATE(3999)] = 126343, + [SMALL_STATE(4000)] = 126356, + [SMALL_STATE(4001)] = 126369, + [SMALL_STATE(4002)] = 126382, + [SMALL_STATE(4003)] = 126395, + [SMALL_STATE(4004)] = 126408, + [SMALL_STATE(4005)] = 126421, + [SMALL_STATE(4006)] = 126430, + [SMALL_STATE(4007)] = 126443, + [SMALL_STATE(4008)] = 126456, + [SMALL_STATE(4009)] = 126465, + [SMALL_STATE(4010)] = 126478, + [SMALL_STATE(4011)] = 126491, + [SMALL_STATE(4012)] = 126504, + [SMALL_STATE(4013)] = 126517, + [SMALL_STATE(4014)] = 126530, + [SMALL_STATE(4015)] = 126543, + [SMALL_STATE(4016)] = 126556, + [SMALL_STATE(4017)] = 126569, + [SMALL_STATE(4018)] = 126582, + [SMALL_STATE(4019)] = 126595, + [SMALL_STATE(4020)] = 126608, + [SMALL_STATE(4021)] = 126621, + [SMALL_STATE(4022)] = 126634, + [SMALL_STATE(4023)] = 126647, + [SMALL_STATE(4024)] = 126660, + [SMALL_STATE(4025)] = 126673, + [SMALL_STATE(4026)] = 126686, + [SMALL_STATE(4027)] = 126699, + [SMALL_STATE(4028)] = 126712, + [SMALL_STATE(4029)] = 126725, + [SMALL_STATE(4030)] = 126738, + [SMALL_STATE(4031)] = 126751, + [SMALL_STATE(4032)] = 126764, + [SMALL_STATE(4033)] = 126777, + [SMALL_STATE(4034)] = 126790, + [SMALL_STATE(4035)] = 126799, + [SMALL_STATE(4036)] = 126812, + [SMALL_STATE(4037)] = 126825, + [SMALL_STATE(4038)] = 126838, + [SMALL_STATE(4039)] = 126849, + [SMALL_STATE(4040)] = 126862, + [SMALL_STATE(4041)] = 126875, + [SMALL_STATE(4042)] = 126888, + [SMALL_STATE(4043)] = 126901, + [SMALL_STATE(4044)] = 126914, + [SMALL_STATE(4045)] = 126927, + [SMALL_STATE(4046)] = 126940, + [SMALL_STATE(4047)] = 126953, + [SMALL_STATE(4048)] = 126966, + [SMALL_STATE(4049)] = 126979, + [SMALL_STATE(4050)] = 126992, + [SMALL_STATE(4051)] = 127005, + [SMALL_STATE(4052)] = 127018, + [SMALL_STATE(4053)] = 127031, + [SMALL_STATE(4054)] = 127042, + [SMALL_STATE(4055)] = 127055, + [SMALL_STATE(4056)] = 127068, + [SMALL_STATE(4057)] = 127081, + [SMALL_STATE(4058)] = 127094, + [SMALL_STATE(4059)] = 127107, + [SMALL_STATE(4060)] = 127120, + [SMALL_STATE(4061)] = 127133, + [SMALL_STATE(4062)] = 127146, + [SMALL_STATE(4063)] = 127159, + [SMALL_STATE(4064)] = 127172, + [SMALL_STATE(4065)] = 127185, + [SMALL_STATE(4066)] = 127198, + [SMALL_STATE(4067)] = 127211, + [SMALL_STATE(4068)] = 127224, + [SMALL_STATE(4069)] = 127237, + [SMALL_STATE(4070)] = 127250, + [SMALL_STATE(4071)] = 127263, + [SMALL_STATE(4072)] = 127276, + [SMALL_STATE(4073)] = 127285, + [SMALL_STATE(4074)] = 127298, + [SMALL_STATE(4075)] = 127311, + [SMALL_STATE(4076)] = 127321, + [SMALL_STATE(4077)] = 127331, + [SMALL_STATE(4078)] = 127341, + [SMALL_STATE(4079)] = 127351, + [SMALL_STATE(4080)] = 127359, + [SMALL_STATE(4081)] = 127369, + [SMALL_STATE(4082)] = 127379, + [SMALL_STATE(4083)] = 127389, + [SMALL_STATE(4084)] = 127399, + [SMALL_STATE(4085)] = 127409, + [SMALL_STATE(4086)] = 127419, + [SMALL_STATE(4087)] = 127429, + [SMALL_STATE(4088)] = 127439, + [SMALL_STATE(4089)] = 127449, + [SMALL_STATE(4090)] = 127459, + [SMALL_STATE(4091)] = 127469, + [SMALL_STATE(4092)] = 127479, + [SMALL_STATE(4093)] = 127489, + [SMALL_STATE(4094)] = 127499, + [SMALL_STATE(4095)] = 127509, + [SMALL_STATE(4096)] = 127519, + [SMALL_STATE(4097)] = 127529, + [SMALL_STATE(4098)] = 127539, + [SMALL_STATE(4099)] = 127549, + [SMALL_STATE(4100)] = 127559, + [SMALL_STATE(4101)] = 127569, + [SMALL_STATE(4102)] = 127579, + [SMALL_STATE(4103)] = 127589, + [SMALL_STATE(4104)] = 127597, + [SMALL_STATE(4105)] = 127607, + [SMALL_STATE(4106)] = 127617, + [SMALL_STATE(4107)] = 127627, + [SMALL_STATE(4108)] = 127637, + [SMALL_STATE(4109)] = 127647, + [SMALL_STATE(4110)] = 127657, + [SMALL_STATE(4111)] = 127667, + [SMALL_STATE(4112)] = 127675, + [SMALL_STATE(4113)] = 127685, + [SMALL_STATE(4114)] = 127695, + [SMALL_STATE(4115)] = 127705, + [SMALL_STATE(4116)] = 127715, + [SMALL_STATE(4117)] = 127725, + [SMALL_STATE(4118)] = 127735, + [SMALL_STATE(4119)] = 127745, + [SMALL_STATE(4120)] = 127755, + [SMALL_STATE(4121)] = 127765, + [SMALL_STATE(4122)] = 127775, + [SMALL_STATE(4123)] = 127785, + [SMALL_STATE(4124)] = 127795, + [SMALL_STATE(4125)] = 127805, + [SMALL_STATE(4126)] = 127815, + [SMALL_STATE(4127)] = 127825, + [SMALL_STATE(4128)] = 127835, + [SMALL_STATE(4129)] = 127845, + [SMALL_STATE(4130)] = 127855, + [SMALL_STATE(4131)] = 127865, + [SMALL_STATE(4132)] = 127873, + [SMALL_STATE(4133)] = 127883, + [SMALL_STATE(4134)] = 127893, + [SMALL_STATE(4135)] = 127903, + [SMALL_STATE(4136)] = 127913, + [SMALL_STATE(4137)] = 127923, + [SMALL_STATE(4138)] = 127933, + [SMALL_STATE(4139)] = 127943, + [SMALL_STATE(4140)] = 127953, + [SMALL_STATE(4141)] = 127963, + [SMALL_STATE(4142)] = 127973, + [SMALL_STATE(4143)] = 127983, + [SMALL_STATE(4144)] = 127991, + [SMALL_STATE(4145)] = 127999, + [SMALL_STATE(4146)] = 128009, + [SMALL_STATE(4147)] = 128019, + [SMALL_STATE(4148)] = 128029, + [SMALL_STATE(4149)] = 128039, + [SMALL_STATE(4150)] = 128047, + [SMALL_STATE(4151)] = 128057, + [SMALL_STATE(4152)] = 128067, + [SMALL_STATE(4153)] = 128077, + [SMALL_STATE(4154)] = 128087, + [SMALL_STATE(4155)] = 128095, + [SMALL_STATE(4156)] = 128105, + [SMALL_STATE(4157)] = 128115, + [SMALL_STATE(4158)] = 128125, + [SMALL_STATE(4159)] = 128135, + [SMALL_STATE(4160)] = 128145, + [SMALL_STATE(4161)] = 128155, + [SMALL_STATE(4162)] = 128165, + [SMALL_STATE(4163)] = 128173, + [SMALL_STATE(4164)] = 128183, + [SMALL_STATE(4165)] = 128191, + [SMALL_STATE(4166)] = 128201, + [SMALL_STATE(4167)] = 128209, + [SMALL_STATE(4168)] = 128219, + [SMALL_STATE(4169)] = 128229, + [SMALL_STATE(4170)] = 128237, + [SMALL_STATE(4171)] = 128247, + [SMALL_STATE(4172)] = 128257, + [SMALL_STATE(4173)] = 128267, + [SMALL_STATE(4174)] = 128277, + [SMALL_STATE(4175)] = 128287, + [SMALL_STATE(4176)] = 128297, + [SMALL_STATE(4177)] = 128307, + [SMALL_STATE(4178)] = 128317, + [SMALL_STATE(4179)] = 128327, + [SMALL_STATE(4180)] = 128337, + [SMALL_STATE(4181)] = 128347, + [SMALL_STATE(4182)] = 128357, + [SMALL_STATE(4183)] = 128367, + [SMALL_STATE(4184)] = 128375, + [SMALL_STATE(4185)] = 128385, + [SMALL_STATE(4186)] = 128395, + [SMALL_STATE(4187)] = 128403, + [SMALL_STATE(4188)] = 128413, + [SMALL_STATE(4189)] = 128423, + [SMALL_STATE(4190)] = 128433, + [SMALL_STATE(4191)] = 128441, + [SMALL_STATE(4192)] = 128451, + [SMALL_STATE(4193)] = 128461, + [SMALL_STATE(4194)] = 128471, + [SMALL_STATE(4195)] = 128481, + [SMALL_STATE(4196)] = 128491, + [SMALL_STATE(4197)] = 128501, + [SMALL_STATE(4198)] = 128511, + [SMALL_STATE(4199)] = 128521, + [SMALL_STATE(4200)] = 128531, + [SMALL_STATE(4201)] = 128541, + [SMALL_STATE(4202)] = 128549, + [SMALL_STATE(4203)] = 128559, + [SMALL_STATE(4204)] = 128569, + [SMALL_STATE(4205)] = 128579, + [SMALL_STATE(4206)] = 128589, + [SMALL_STATE(4207)] = 128599, + [SMALL_STATE(4208)] = 128607, + [SMALL_STATE(4209)] = 128617, + [SMALL_STATE(4210)] = 128627, + [SMALL_STATE(4211)] = 128637, + [SMALL_STATE(4212)] = 128647, + [SMALL_STATE(4213)] = 128657, + [SMALL_STATE(4214)] = 128667, + [SMALL_STATE(4215)] = 128677, + [SMALL_STATE(4216)] = 128687, + [SMALL_STATE(4217)] = 128697, + [SMALL_STATE(4218)] = 128707, + [SMALL_STATE(4219)] = 128717, + [SMALL_STATE(4220)] = 128727, + [SMALL_STATE(4221)] = 128735, + [SMALL_STATE(4222)] = 128745, + [SMALL_STATE(4223)] = 128755, + [SMALL_STATE(4224)] = 128765, + [SMALL_STATE(4225)] = 128775, + [SMALL_STATE(4226)] = 128785, + [SMALL_STATE(4227)] = 128795, + [SMALL_STATE(4228)] = 128805, + [SMALL_STATE(4229)] = 128815, + [SMALL_STATE(4230)] = 128825, + [SMALL_STATE(4231)] = 128835, + [SMALL_STATE(4232)] = 128845, + [SMALL_STATE(4233)] = 128855, + [SMALL_STATE(4234)] = 128865, + [SMALL_STATE(4235)] = 128875, + [SMALL_STATE(4236)] = 128885, + [SMALL_STATE(4237)] = 128895, + [SMALL_STATE(4238)] = 128905, + [SMALL_STATE(4239)] = 128915, + [SMALL_STATE(4240)] = 128925, + [SMALL_STATE(4241)] = 128935, + [SMALL_STATE(4242)] = 128945, + [SMALL_STATE(4243)] = 128955, + [SMALL_STATE(4244)] = 128965, + [SMALL_STATE(4245)] = 128975, + [SMALL_STATE(4246)] = 128985, + [SMALL_STATE(4247)] = 128995, + [SMALL_STATE(4248)] = 129005, + [SMALL_STATE(4249)] = 129015, + [SMALL_STATE(4250)] = 129025, + [SMALL_STATE(4251)] = 129035, + [SMALL_STATE(4252)] = 129045, + [SMALL_STATE(4253)] = 129055, + [SMALL_STATE(4254)] = 129065, + [SMALL_STATE(4255)] = 129075, + [SMALL_STATE(4256)] = 129085, + [SMALL_STATE(4257)] = 129095, + [SMALL_STATE(4258)] = 129105, + [SMALL_STATE(4259)] = 129115, + [SMALL_STATE(4260)] = 129125, + [SMALL_STATE(4261)] = 129135, + [SMALL_STATE(4262)] = 129145, + [SMALL_STATE(4263)] = 129155, + [SMALL_STATE(4264)] = 129165, + [SMALL_STATE(4265)] = 129175, + [SMALL_STATE(4266)] = 129185, + [SMALL_STATE(4267)] = 129195, + [SMALL_STATE(4268)] = 129205, + [SMALL_STATE(4269)] = 129215, + [SMALL_STATE(4270)] = 129225, + [SMALL_STATE(4271)] = 129235, + [SMALL_STATE(4272)] = 129245, + [SMALL_STATE(4273)] = 129255, + [SMALL_STATE(4274)] = 129265, + [SMALL_STATE(4275)] = 129275, + [SMALL_STATE(4276)] = 129285, + [SMALL_STATE(4277)] = 129295, + [SMALL_STATE(4278)] = 129305, + [SMALL_STATE(4279)] = 129315, + [SMALL_STATE(4280)] = 129325, + [SMALL_STATE(4281)] = 129335, + [SMALL_STATE(4282)] = 129345, + [SMALL_STATE(4283)] = 129355, + [SMALL_STATE(4284)] = 129365, + [SMALL_STATE(4285)] = 129375, + [SMALL_STATE(4286)] = 129385, + [SMALL_STATE(4287)] = 129395, + [SMALL_STATE(4288)] = 129403, + [SMALL_STATE(4289)] = 129411, + [SMALL_STATE(4290)] = 129421, + [SMALL_STATE(4291)] = 129429, + [SMALL_STATE(4292)] = 129439, + [SMALL_STATE(4293)] = 129449, + [SMALL_STATE(4294)] = 129459, + [SMALL_STATE(4295)] = 129467, + [SMALL_STATE(4296)] = 129477, + [SMALL_STATE(4297)] = 129485, + [SMALL_STATE(4298)] = 129493, + [SMALL_STATE(4299)] = 129503, + [SMALL_STATE(4300)] = 129513, + [SMALL_STATE(4301)] = 129523, + [SMALL_STATE(4302)] = 129533, + [SMALL_STATE(4303)] = 129543, + [SMALL_STATE(4304)] = 129553, + [SMALL_STATE(4305)] = 129563, + [SMALL_STATE(4306)] = 129573, + [SMALL_STATE(4307)] = 129583, + [SMALL_STATE(4308)] = 129593, + [SMALL_STATE(4309)] = 129603, + [SMALL_STATE(4310)] = 129613, + [SMALL_STATE(4311)] = 129623, + [SMALL_STATE(4312)] = 129633, + [SMALL_STATE(4313)] = 129641, + [SMALL_STATE(4314)] = 129651, + [SMALL_STATE(4315)] = 129659, + [SMALL_STATE(4316)] = 129669, + [SMALL_STATE(4317)] = 129679, + [SMALL_STATE(4318)] = 129687, + [SMALL_STATE(4319)] = 129697, + [SMALL_STATE(4320)] = 129707, + [SMALL_STATE(4321)] = 129717, + [SMALL_STATE(4322)] = 129727, + [SMALL_STATE(4323)] = 129735, + [SMALL_STATE(4324)] = 129745, + [SMALL_STATE(4325)] = 129755, + [SMALL_STATE(4326)] = 129765, + [SMALL_STATE(4327)] = 129775, + [SMALL_STATE(4328)] = 129785, + [SMALL_STATE(4329)] = 129795, + [SMALL_STATE(4330)] = 129805, + [SMALL_STATE(4331)] = 129815, + [SMALL_STATE(4332)] = 129825, + [SMALL_STATE(4333)] = 129835, + [SMALL_STATE(4334)] = 129845, + [SMALL_STATE(4335)] = 129855, + [SMALL_STATE(4336)] = 129865, + [SMALL_STATE(4337)] = 129875, + [SMALL_STATE(4338)] = 129885, + [SMALL_STATE(4339)] = 129895, + [SMALL_STATE(4340)] = 129905, + [SMALL_STATE(4341)] = 129915, + [SMALL_STATE(4342)] = 129925, + [SMALL_STATE(4343)] = 129933, + [SMALL_STATE(4344)] = 129943, + [SMALL_STATE(4345)] = 129953, + [SMALL_STATE(4346)] = 129963, + [SMALL_STATE(4347)] = 129973, + [SMALL_STATE(4348)] = 129983, + [SMALL_STATE(4349)] = 129993, + [SMALL_STATE(4350)] = 130003, + [SMALL_STATE(4351)] = 130013, + [SMALL_STATE(4352)] = 130023, + [SMALL_STATE(4353)] = 130033, + [SMALL_STATE(4354)] = 130043, + [SMALL_STATE(4355)] = 130053, + [SMALL_STATE(4356)] = 130063, + [SMALL_STATE(4357)] = 130073, + [SMALL_STATE(4358)] = 130083, + [SMALL_STATE(4359)] = 130093, + [SMALL_STATE(4360)] = 130103, + [SMALL_STATE(4361)] = 130113, + [SMALL_STATE(4362)] = 130123, + [SMALL_STATE(4363)] = 130133, + [SMALL_STATE(4364)] = 130143, + [SMALL_STATE(4365)] = 130151, + [SMALL_STATE(4366)] = 130161, + [SMALL_STATE(4367)] = 130171, + [SMALL_STATE(4368)] = 130181, + [SMALL_STATE(4369)] = 130191, + [SMALL_STATE(4370)] = 130201, + [SMALL_STATE(4371)] = 130211, + [SMALL_STATE(4372)] = 130221, + [SMALL_STATE(4373)] = 130231, + [SMALL_STATE(4374)] = 130241, + [SMALL_STATE(4375)] = 130251, + [SMALL_STATE(4376)] = 130261, + [SMALL_STATE(4377)] = 130271, + [SMALL_STATE(4378)] = 130281, + [SMALL_STATE(4379)] = 130291, + [SMALL_STATE(4380)] = 130301, + [SMALL_STATE(4381)] = 130309, + [SMALL_STATE(4382)] = 130317, + [SMALL_STATE(4383)] = 130327, + [SMALL_STATE(4384)] = 130337, + [SMALL_STATE(4385)] = 130347, + [SMALL_STATE(4386)] = 130357, + [SMALL_STATE(4387)] = 130367, + [SMALL_STATE(4388)] = 130377, + [SMALL_STATE(4389)] = 130387, + [SMALL_STATE(4390)] = 130397, + [SMALL_STATE(4391)] = 130407, + [SMALL_STATE(4392)] = 130417, + [SMALL_STATE(4393)] = 130424, + [SMALL_STATE(4394)] = 130431, + [SMALL_STATE(4395)] = 130438, + [SMALL_STATE(4396)] = 130445, + [SMALL_STATE(4397)] = 130452, + [SMALL_STATE(4398)] = 130459, + [SMALL_STATE(4399)] = 130466, + [SMALL_STATE(4400)] = 130473, + [SMALL_STATE(4401)] = 130480, + [SMALL_STATE(4402)] = 130487, + [SMALL_STATE(4403)] = 130494, + [SMALL_STATE(4404)] = 130501, + [SMALL_STATE(4405)] = 130508, + [SMALL_STATE(4406)] = 130515, + [SMALL_STATE(4407)] = 130522, + [SMALL_STATE(4408)] = 130529, + [SMALL_STATE(4409)] = 130536, + [SMALL_STATE(4410)] = 130543, + [SMALL_STATE(4411)] = 130550, + [SMALL_STATE(4412)] = 130557, + [SMALL_STATE(4413)] = 130564, + [SMALL_STATE(4414)] = 130571, + [SMALL_STATE(4415)] = 130578, + [SMALL_STATE(4416)] = 130585, + [SMALL_STATE(4417)] = 130592, + [SMALL_STATE(4418)] = 130599, + [SMALL_STATE(4419)] = 130606, + [SMALL_STATE(4420)] = 130613, + [SMALL_STATE(4421)] = 130620, + [SMALL_STATE(4422)] = 130627, + [SMALL_STATE(4423)] = 130634, + [SMALL_STATE(4424)] = 130641, + [SMALL_STATE(4425)] = 130648, + [SMALL_STATE(4426)] = 130655, + [SMALL_STATE(4427)] = 130662, + [SMALL_STATE(4428)] = 130669, + [SMALL_STATE(4429)] = 130676, + [SMALL_STATE(4430)] = 130683, + [SMALL_STATE(4431)] = 130690, + [SMALL_STATE(4432)] = 130697, + [SMALL_STATE(4433)] = 130704, + [SMALL_STATE(4434)] = 130711, + [SMALL_STATE(4435)] = 130718, + [SMALL_STATE(4436)] = 130725, + [SMALL_STATE(4437)] = 130732, + [SMALL_STATE(4438)] = 130739, + [SMALL_STATE(4439)] = 130746, + [SMALL_STATE(4440)] = 130753, + [SMALL_STATE(4441)] = 130760, + [SMALL_STATE(4442)] = 130767, + [SMALL_STATE(4443)] = 130774, + [SMALL_STATE(4444)] = 130781, + [SMALL_STATE(4445)] = 130788, + [SMALL_STATE(4446)] = 130795, + [SMALL_STATE(4447)] = 130802, + [SMALL_STATE(4448)] = 130809, + [SMALL_STATE(4449)] = 130816, + [SMALL_STATE(4450)] = 130823, + [SMALL_STATE(4451)] = 130830, + [SMALL_STATE(4452)] = 130837, + [SMALL_STATE(4453)] = 130844, + [SMALL_STATE(4454)] = 130851, + [SMALL_STATE(4455)] = 130858, + [SMALL_STATE(4456)] = 130865, + [SMALL_STATE(4457)] = 130872, + [SMALL_STATE(4458)] = 130879, + [SMALL_STATE(4459)] = 130886, + [SMALL_STATE(4460)] = 130893, + [SMALL_STATE(4461)] = 130900, + [SMALL_STATE(4462)] = 130907, + [SMALL_STATE(4463)] = 130914, + [SMALL_STATE(4464)] = 130921, + [SMALL_STATE(4465)] = 130928, + [SMALL_STATE(4466)] = 130935, + [SMALL_STATE(4467)] = 130942, + [SMALL_STATE(4468)] = 130949, + [SMALL_STATE(4469)] = 130956, + [SMALL_STATE(4470)] = 130963, + [SMALL_STATE(4471)] = 130970, + [SMALL_STATE(4472)] = 130977, + [SMALL_STATE(4473)] = 130984, + [SMALL_STATE(4474)] = 130991, + [SMALL_STATE(4475)] = 130998, + [SMALL_STATE(4476)] = 131005, + [SMALL_STATE(4477)] = 131012, + [SMALL_STATE(4478)] = 131019, + [SMALL_STATE(4479)] = 131026, + [SMALL_STATE(4480)] = 131033, + [SMALL_STATE(4481)] = 131040, + [SMALL_STATE(4482)] = 131047, + [SMALL_STATE(4483)] = 131054, + [SMALL_STATE(4484)] = 131061, + [SMALL_STATE(4485)] = 131068, + [SMALL_STATE(4486)] = 131075, + [SMALL_STATE(4487)] = 131082, + [SMALL_STATE(4488)] = 131089, + [SMALL_STATE(4489)] = 131096, + [SMALL_STATE(4490)] = 131103, + [SMALL_STATE(4491)] = 131110, + [SMALL_STATE(4492)] = 131117, + [SMALL_STATE(4493)] = 131124, + [SMALL_STATE(4494)] = 131131, + [SMALL_STATE(4495)] = 131138, + [SMALL_STATE(4496)] = 131145, + [SMALL_STATE(4497)] = 131152, + [SMALL_STATE(4498)] = 131159, + [SMALL_STATE(4499)] = 131166, + [SMALL_STATE(4500)] = 131173, + [SMALL_STATE(4501)] = 131180, + [SMALL_STATE(4502)] = 131187, + [SMALL_STATE(4503)] = 131194, + [SMALL_STATE(4504)] = 131201, + [SMALL_STATE(4505)] = 131208, + [SMALL_STATE(4506)] = 131215, + [SMALL_STATE(4507)] = 131222, + [SMALL_STATE(4508)] = 131229, + [SMALL_STATE(4509)] = 131236, + [SMALL_STATE(4510)] = 131243, + [SMALL_STATE(4511)] = 131250, + [SMALL_STATE(4512)] = 131257, + [SMALL_STATE(4513)] = 131264, + [SMALL_STATE(4514)] = 131271, + [SMALL_STATE(4515)] = 131278, + [SMALL_STATE(4516)] = 131285, + [SMALL_STATE(4517)] = 131292, + [SMALL_STATE(4518)] = 131299, + [SMALL_STATE(4519)] = 131306, + [SMALL_STATE(4520)] = 131313, + [SMALL_STATE(4521)] = 131320, + [SMALL_STATE(4522)] = 131327, + [SMALL_STATE(4523)] = 131334, + [SMALL_STATE(4524)] = 131341, + [SMALL_STATE(4525)] = 131348, + [SMALL_STATE(4526)] = 131355, + [SMALL_STATE(4527)] = 131362, + [SMALL_STATE(4528)] = 131369, + [SMALL_STATE(4529)] = 131376, + [SMALL_STATE(4530)] = 131383, + [SMALL_STATE(4531)] = 131390, + [SMALL_STATE(4532)] = 131397, + [SMALL_STATE(4533)] = 131404, + [SMALL_STATE(4534)] = 131411, + [SMALL_STATE(4535)] = 131418, + [SMALL_STATE(4536)] = 131425, + [SMALL_STATE(4537)] = 131432, + [SMALL_STATE(4538)] = 131439, + [SMALL_STATE(4539)] = 131446, + [SMALL_STATE(4540)] = 131453, + [SMALL_STATE(4541)] = 131460, + [SMALL_STATE(4542)] = 131467, + [SMALL_STATE(4543)] = 131474, + [SMALL_STATE(4544)] = 131481, + [SMALL_STATE(4545)] = 131488, + [SMALL_STATE(4546)] = 131495, + [SMALL_STATE(4547)] = 131502, + [SMALL_STATE(4548)] = 131509, + [SMALL_STATE(4549)] = 131516, + [SMALL_STATE(4550)] = 131523, + [SMALL_STATE(4551)] = 131530, + [SMALL_STATE(4552)] = 131537, + [SMALL_STATE(4553)] = 131544, + [SMALL_STATE(4554)] = 131551, + [SMALL_STATE(4555)] = 131558, + [SMALL_STATE(4556)] = 131565, + [SMALL_STATE(4557)] = 131572, + [SMALL_STATE(4558)] = 131579, + [SMALL_STATE(4559)] = 131586, + [SMALL_STATE(4560)] = 131593, + [SMALL_STATE(4561)] = 131600, + [SMALL_STATE(4562)] = 131607, + [SMALL_STATE(4563)] = 131614, + [SMALL_STATE(4564)] = 131621, + [SMALL_STATE(4565)] = 131628, + [SMALL_STATE(4566)] = 131635, + [SMALL_STATE(4567)] = 131642, + [SMALL_STATE(4568)] = 131649, + [SMALL_STATE(4569)] = 131656, + [SMALL_STATE(4570)] = 131663, + [SMALL_STATE(4571)] = 131670, + [SMALL_STATE(4572)] = 131677, + [SMALL_STATE(4573)] = 131684, + [SMALL_STATE(4574)] = 131691, + [SMALL_STATE(4575)] = 131698, + [SMALL_STATE(4576)] = 131705, + [SMALL_STATE(4577)] = 131712, + [SMALL_STATE(4578)] = 131719, + [SMALL_STATE(4579)] = 131726, + [SMALL_STATE(4580)] = 131733, + [SMALL_STATE(4581)] = 131740, + [SMALL_STATE(4582)] = 131747, + [SMALL_STATE(4583)] = 131754, + [SMALL_STATE(4584)] = 131761, + [SMALL_STATE(4585)] = 131768, + [SMALL_STATE(4586)] = 131775, + [SMALL_STATE(4587)] = 131782, + [SMALL_STATE(4588)] = 131789, + [SMALL_STATE(4589)] = 131796, + [SMALL_STATE(4590)] = 131803, + [SMALL_STATE(4591)] = 131810, + [SMALL_STATE(4592)] = 131817, + [SMALL_STATE(4593)] = 131824, + [SMALL_STATE(4594)] = 131831, + [SMALL_STATE(4595)] = 131838, + [SMALL_STATE(4596)] = 131845, + [SMALL_STATE(4597)] = 131852, + [SMALL_STATE(4598)] = 131859, + [SMALL_STATE(4599)] = 131866, + [SMALL_STATE(4600)] = 131873, + [SMALL_STATE(4601)] = 131880, + [SMALL_STATE(4602)] = 131887, + [SMALL_STATE(4603)] = 131894, + [SMALL_STATE(4604)] = 131901, + [SMALL_STATE(4605)] = 131908, + [SMALL_STATE(4606)] = 131915, + [SMALL_STATE(4607)] = 131922, + [SMALL_STATE(4608)] = 131929, + [SMALL_STATE(4609)] = 131936, + [SMALL_STATE(4610)] = 131943, + [SMALL_STATE(4611)] = 131950, + [SMALL_STATE(4612)] = 131957, + [SMALL_STATE(4613)] = 131964, + [SMALL_STATE(4614)] = 131971, + [SMALL_STATE(4615)] = 131978, + [SMALL_STATE(4616)] = 131985, + [SMALL_STATE(4617)] = 131992, + [SMALL_STATE(4618)] = 131999, + [SMALL_STATE(4619)] = 132006, + [SMALL_STATE(4620)] = 132013, + [SMALL_STATE(4621)] = 132020, + [SMALL_STATE(4622)] = 132027, + [SMALL_STATE(4623)] = 132034, + [SMALL_STATE(4624)] = 132041, + [SMALL_STATE(4625)] = 132048, + [SMALL_STATE(4626)] = 132055, + [SMALL_STATE(4627)] = 132062, + [SMALL_STATE(4628)] = 132069, + [SMALL_STATE(4629)] = 132076, + [SMALL_STATE(4630)] = 132083, + [SMALL_STATE(4631)] = 132090, + [SMALL_STATE(4632)] = 132097, + [SMALL_STATE(4633)] = 132104, + [SMALL_STATE(4634)] = 132111, + [SMALL_STATE(4635)] = 132118, + [SMALL_STATE(4636)] = 132125, + [SMALL_STATE(4637)] = 132132, + [SMALL_STATE(4638)] = 132139, + [SMALL_STATE(4639)] = 132146, + [SMALL_STATE(4640)] = 132153, + [SMALL_STATE(4641)] = 132160, + [SMALL_STATE(4642)] = 132167, + [SMALL_STATE(4643)] = 132174, + [SMALL_STATE(4644)] = 132181, + [SMALL_STATE(4645)] = 132188, + [SMALL_STATE(4646)] = 132195, + [SMALL_STATE(4647)] = 132202, + [SMALL_STATE(4648)] = 132209, + [SMALL_STATE(4649)] = 132216, + [SMALL_STATE(4650)] = 132223, + [SMALL_STATE(4651)] = 132230, + [SMALL_STATE(4652)] = 132237, + [SMALL_STATE(4653)] = 132244, + [SMALL_STATE(4654)] = 132251, + [SMALL_STATE(4655)] = 132258, + [SMALL_STATE(4656)] = 132265, + [SMALL_STATE(4657)] = 132272, + [SMALL_STATE(4658)] = 132279, + [SMALL_STATE(4659)] = 132286, + [SMALL_STATE(4660)] = 132293, + [SMALL_STATE(4661)] = 132300, + [SMALL_STATE(4662)] = 132307, + [SMALL_STATE(4663)] = 132314, + [SMALL_STATE(4664)] = 132321, + [SMALL_STATE(4665)] = 132328, + [SMALL_STATE(4666)] = 132335, + [SMALL_STATE(4667)] = 132342, + [SMALL_STATE(4668)] = 132349, + [SMALL_STATE(4669)] = 132356, + [SMALL_STATE(4670)] = 132363, + [SMALL_STATE(4671)] = 132370, + [SMALL_STATE(4672)] = 132377, + [SMALL_STATE(4673)] = 132384, + [SMALL_STATE(4674)] = 132391, + [SMALL_STATE(4675)] = 132398, + [SMALL_STATE(4676)] = 132405, + [SMALL_STATE(4677)] = 132412, + [SMALL_STATE(4678)] = 132419, + [SMALL_STATE(4679)] = 132426, + [SMALL_STATE(4680)] = 132433, + [SMALL_STATE(4681)] = 132440, + [SMALL_STATE(4682)] = 132447, + [SMALL_STATE(4683)] = 132454, + [SMALL_STATE(4684)] = 132461, + [SMALL_STATE(4685)] = 132468, + [SMALL_STATE(4686)] = 132475, + [SMALL_STATE(4687)] = 132482, + [SMALL_STATE(4688)] = 132489, + [SMALL_STATE(4689)] = 132496, + [SMALL_STATE(4690)] = 132503, + [SMALL_STATE(4691)] = 132510, + [SMALL_STATE(4692)] = 132517, + [SMALL_STATE(4693)] = 132524, + [SMALL_STATE(4694)] = 132531, + [SMALL_STATE(4695)] = 132538, + [SMALL_STATE(4696)] = 132545, + [SMALL_STATE(4697)] = 132552, + [SMALL_STATE(4698)] = 132559, + [SMALL_STATE(4699)] = 132566, + [SMALL_STATE(4700)] = 132573, + [SMALL_STATE(4701)] = 132580, + [SMALL_STATE(4702)] = 132587, + [SMALL_STATE(4703)] = 132594, + [SMALL_STATE(4704)] = 132601, + [SMALL_STATE(4705)] = 132608, + [SMALL_STATE(4706)] = 132615, + [SMALL_STATE(4707)] = 132622, + [SMALL_STATE(4708)] = 132629, + [SMALL_STATE(4709)] = 132636, + [SMALL_STATE(4710)] = 132643, + [SMALL_STATE(4711)] = 132650, + [SMALL_STATE(4712)] = 132657, + [SMALL_STATE(4713)] = 132664, + [SMALL_STATE(4714)] = 132671, + [SMALL_STATE(4715)] = 132678, + [SMALL_STATE(4716)] = 132685, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -304174,3909 +304788,3921 @@ 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(394), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 4), [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(394), - [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4073), - [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(28), - [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3831), - [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(633), - [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3441), + [137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(407), + [140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4094), + [143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(35), + [146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4049), + [149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(479), + [152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3447), [155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4682), - [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3324), - [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(504), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(467), - [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3837), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4676), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3509), - [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2168), - [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4672), - [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4670), - [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2893), - [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(729), - [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(730), - [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(731), - [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4096), - [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(189), - [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(732), - [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(733), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(734), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(228), - [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(737), - [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(400), - [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(382), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(230), - [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4101), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3842), - [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(734), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(890), - [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1612), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3071), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3072), - [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3073), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3074), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(783), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4111), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4115), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1453), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1452), + [158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3330), + [161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(487), + [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(490), + [167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4033), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4451), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3510), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2167), + [179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4545), + [182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4544), + [185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2903), + [188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(688), + [191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(689), + [194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(691), + [197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4257), + [200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(180), + [203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(693), + [206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(695), + [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(287), + [215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(699), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(412), + [221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(339), + [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(286), + [227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4260), + [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3865), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(696), + [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(750), + [239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1611), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3230), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3218), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3128), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3110), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(717), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4303), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4306), + [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1467), + [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1468), [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(66), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3628), + [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3639), [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(108), - [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4646), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4644), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3311), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3532), - [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3540), - [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3541), - [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3542), - [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3847), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3848), + [278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4472), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4465), + [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3317), + [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3573), + [290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3563), + [293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3604), + [296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3551), + [299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3868), + [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3878), [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), [493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), + [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), + [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1847), - [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4148), - [971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(226), - [974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(643), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3455), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(584), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(550), - [988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4100), - [991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2168), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2893), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(549), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(579), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(577), - [1006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4141), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(316), - [1012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(546), - [1015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(573), - [1018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2013), - [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(282), - [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(646), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(409), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(369), - [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(221), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4134), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4034), - [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2013), - [1047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1938), - [1050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1612), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3071), - [1056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3072), - [1059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3073), - [1062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3074), - [1065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3621), - [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3619), - [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3618), - [1074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3617), - [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4035), - [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4036), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2793), - [1196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4363), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(278), - [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(712), - [1207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3445), - [1210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(523), - [1213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(501), - [1216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4088), - [1219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2168), - [1222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2893), - [1225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(401), - [1228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(520), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(518), - [1234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4372), - [1237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(378), - [1240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(499), - [1243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(515), - [1246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2755), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(231), - [1252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4348), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(714), - [1258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(419), - [1261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(325), - [1264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(289), - [1267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4376), - [1270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3932), - [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2755), - [1276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2639), - [1279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1612), - [1282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3071), - [1285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3072), - [1288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3073), - [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3074), - [1294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3545), - [1297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3546), - [1300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3547), - [1303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3548), - [1306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3937), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3938), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1157), - [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4242), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(290), - [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(632), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1891), + [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4302), + [955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(244), + [958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), + [960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(735), + [963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3464), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(902), + [969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(647), + [972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4104), + [975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2167), + [978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2903), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(651), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(740), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(736), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4300), + [993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(332), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(683), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(649), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2024), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(279), + [1008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(734), + [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(442), + [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(335), + [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(247), + [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4298), + [1025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4048), + [1028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2024), + [1031] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1945), + [1034] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1611), + [1037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3230), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3218), + [1043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3128), + [1046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3110), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3535), + [1052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3533), + [1055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3527), + [1058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3519), + [1061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4047), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4045), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [1251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2803), + [1254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4151), + [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(218), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), + [1262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(710), + [1265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3461), + [1268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(884), + [1271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(966), + [1274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4093), + [1277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2167), + [1280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2903), + [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(422), + [1286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(904), + [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(926), + [1292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4150), + [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(345), + [1298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(967), + [1301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(929), + [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2846), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(283), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4206), + [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(709), + [1316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(445), + [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(316), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(226), + [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4078), + [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3954), + [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2846), + [1334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2635), + [1337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1611), + [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3230), + [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3218), + [1346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3128), + [1349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3110), + [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3591), + [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3520), + [1358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3521), + [1361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3522), + [1364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3959), + [1367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3960), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [1402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [1474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1156), + [1477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4358), + [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(259), + [1483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(756), [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3449), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(662), - [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(615), - [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(788), - [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4102), - [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2168), - [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2893), - [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(614), - [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(658), - [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(657), - [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4235), - [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(374), - [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(610), - [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(653), - [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1181), - [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(296), - [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(636), - [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(396), - [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(360), - [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(241), - [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4234), - [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3986), - [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1181), - [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1177), - [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1612), - [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3071), - [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3072), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3073), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3074), - [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3536), - [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3537), - [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3538), - [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3539), - [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3987), - [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3992), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [1609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), - [1613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), - [1615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 55), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1157), - [1894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4242), - [1897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(290), - [1900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [1902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(632), - [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3449), - [1908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(662), - [1911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(615), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4102), - [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2168), - [1920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2893), - [1923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(614), - [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(658), - [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(657), - [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4235), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(374), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(610), - [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(653), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1181), - [1947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(296), - [1950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(636), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(396), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(360), - [1959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(241), - [1962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4234), - [1965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3986), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1181), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1177), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1612), - [1977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3071), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3072), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3073), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3074), - [1989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3536), - [1992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3537), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3538), - [1998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3539), - [2001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3987), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3992), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [2009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 27), - [2011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 27), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 30), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 30), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 30), - [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 30), - [2061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2486), - [2064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4212), - [2067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(294), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [2072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(561), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3450), - [2078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(699), - [2081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(698), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4248), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2168), - [2090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2893), - [2093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(697), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(696), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(695), - [2102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4199), - [2105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(368), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(694), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(693), - [2114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2422), - [2117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(245), - [2120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(562), - [2123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(413), - [2126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(362), - [2129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(246), - [2132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4200), - [2135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3861), - [2138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2422), - [2141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2427), - [2144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1612), - [2147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3071), - [2150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3072), - [2153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3073), - [2156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3074), - [2159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3531), - [2162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3580), - [2165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3579), - [2168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3577), - [2171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3855), - [2174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3854), - [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 30), - [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 30), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1304), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4149), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(254), - [2268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), - [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(572), - [2273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3452), - [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(951), - [2279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(952), - [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4126), - [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2168), - [2288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2893), - [2291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(958), - [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(868), - [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(946), - [2300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4151), - [2303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(357), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(945), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(943), - [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1299), - [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(286), - [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(585), - [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(407), - [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(365), - [2327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(223), - [2330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4334), - [2333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3851), - [2336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1299), - [2339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1323), - [2342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1612), - [2345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3071), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3072), - [2351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3073), - [2354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3074), - [2357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3573), - [2360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3574), - [2363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3575), - [2366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3576), - [2369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3852), - [2372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3853), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [2503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1304), - [2522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4149), - [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(254), - [2528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(572), - [2531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3452), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(960), - [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(961), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4126), - [2545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2168), - [2548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2893), - [2551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(962), - [2554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(963), - [2557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(967), - [2560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4151), - [2563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(357), - [2566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(966), - [2569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(965), - [2572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1299), - [2575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(286), - [2578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(585), - [2581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(407), - [2584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(346), - [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(276), - [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4334), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3851), - [2596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1299), - [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1323), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1612), - [2605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3071), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3072), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3073), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3074), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3573), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3574), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3575), - [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3576), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3852), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3853), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 28), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 54), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 54), - [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 26), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 26), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 31), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 31), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 32), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 32), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 30), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 33), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 33), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 51), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 51), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 55), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 55), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 57), - [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 57), - [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 58), - [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 58), - [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 52), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 52), - [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 31), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 31), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 55), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 55), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 57), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 57), - [3377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [3381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [3385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [3389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 51), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 51), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 113), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 113), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 57), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 57), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [3439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4305), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [3560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 37), - [3564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 37), - [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 38), - [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 38), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 29), - [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 29), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [3726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [3766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 36), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element, 1), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 36), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4041), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_name, 1), - [3786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4077), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 25), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3114), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3114), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [4011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [4013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [4015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4677), - [4022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3212), - [4025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(429), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4677), - [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [4045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4677), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [4050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [4054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [4056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [4058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 134), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 134), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [4114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [4116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [4118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [4120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), - [4122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 137), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), - [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 108), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 108), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 117), - [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 117), - [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 121), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 121), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), - [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 104), - [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 104), - [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 27), - [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 27), - [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 34), - [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 34), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 35), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 35), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 35), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 35), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3459), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(569), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(907), + [1497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(671), + [1500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4105), + [1503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2167), + [1506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(2903), + [1509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(910), + [1512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(538), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(536), + [1518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4354), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(322), + [1524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(912), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(529), + [1530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1208), + [1533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(274), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(753), + [1539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(440), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(351), + [1545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(262), + [1548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(4351), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3985), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1208), + [1557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1207), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(1611), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3230), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3218), + [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3128), + [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3110), + [1575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3555), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3556), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3557), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3558), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3997), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(3998), + [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [1697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 93), + [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 56), + [1701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [1705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 62), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), + [1759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [1767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), + [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 31), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 31), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 31), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 31), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 28), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 28), + [1943] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2458), + [1946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4122), + [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(253), + [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [1954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(848), + [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3449), + [1960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(646), + [1963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(645), + [1966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4251), + [1969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2167), + [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2903), + [1975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(638), + [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(493), + [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(491), + [1984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4119), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(382), + [1990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(489), + [1993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(485), + [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2328), + [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(258), + [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(842), + [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(435), + [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(357), + [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(264), + [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4117), + [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4022), + [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2328), + [2023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2331), + [2026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1611), + [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3230), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3218), + [2035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3128), + [2038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3110), + [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3594), + [2044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3596), + [2047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3598), + [2050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3610), + [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4043), + [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4046), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 31), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [2137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1156), + [2140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4358), + [2143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(259), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), + [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(756), + [2151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3459), + [2154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(569), + [2157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(907), + [2160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4105), + [2163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2167), + [2166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2903), + [2169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(910), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(538), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(536), + [2178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4354), + [2181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(322), + [2184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(912), + [2187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(529), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1208), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(274), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(753), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(440), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(351), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(262), + [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4351), + [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3985), + [2214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1208), + [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1207), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1611), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3230), + [2226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3218), + [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3128), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3110), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3555), + [2238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3556), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3557), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3558), + [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3997), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3998), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1308), + [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4118), + [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(261), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(830), + [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3465), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(532), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(531), + [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4112), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2167), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(2903), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(526), + [2310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(524), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(523), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4123), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(338), + [2322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(521), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(518), + [2328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1295), + [2331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(270), + [2334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(826), + [2337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(436), + [2340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(333), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(250), + [2346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4273), + [2349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4014), + [2352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1295), + [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1345), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(1611), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3230), + [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3218), + [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3128), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3110), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3581), + [2376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3580), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3578), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(3576), + [2385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4013), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 2), SHIFT_REPEAT(4011), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [2397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), + [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [2487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [2489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 22), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1308), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4118), + [2523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(261), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(830), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3465), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(499), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(510), + [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), + [2540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4112), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2167), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2903), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(511), + [2552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(520), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(522), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4123), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(338), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(530), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(534), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1295), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(270), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(826), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(436), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(366), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(237), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4273), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4014), + [2594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1295), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1345), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1611), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3230), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3218), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3128), + [2612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3110), + [2615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3581), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3580), + [2621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3578), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3576), + [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4013), + [2630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4011), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 21), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [2647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [2649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [2683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), + [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [2753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [2815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [2833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 65), + [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 55), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 29), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 27), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 59), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 59), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 53), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 32), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 32), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 33), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 33), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 47), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 48), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 49), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 50), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 52), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 22), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 56), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 56), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 58), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 58), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 20), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 64), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 66), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 66), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 31), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 69), + [3235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), + [3239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 71), + [3243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), + [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 83), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 83), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 88), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 88), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 32), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 32), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 89), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 56), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 56), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), + [3313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4319), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 58), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 58), + [3324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), + [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), + [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), + [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), + [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), + [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), + [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), + [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), + [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 52), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 115), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 58), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 58), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), + [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), + [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 23), + [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), + [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), + [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 34), + [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 34), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), + [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), + [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), + [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), + [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [3546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [3562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [3568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 30), + [3584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 30), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 38), + [3588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 38), + [3590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), + [3592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), + [3594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 39), + [3596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 39), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 85), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 37), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1, .production_id = 18), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), + [3819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3969), + [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [3828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4085), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_interpolation_repeat1, 1, .production_id = 26), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [3955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3260), + [3958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), + [3960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3260), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), + [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), + [4027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4510), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [4032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(403), + [4035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [4037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), + [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4510), + [4042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3112), + [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), + [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), + [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), + [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4510), + [4056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), + [4058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), + [4060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 45), + [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 46), + [4070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 67), + [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 67), + [4108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [4110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 72), + [4112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), + [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), + [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), + [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 79), + [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 82), + [4128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 82), + [4130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), + [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), + [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), + [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 103), + [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 105), + [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 110), + [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), + [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 119), + [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), + [4162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 123), + [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), + [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 128), + [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 129), + [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 148), + [4182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 139), + [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), + [4190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), + [4192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 141), + [4194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), + [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 144), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 36), + [4204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 36), + [4206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), + [4208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 100), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 28), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 35), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 35), + [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 36), + [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 36), + [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), + [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), + [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), + [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), + [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 36), [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 39), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 39), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 50), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 50), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 138), - [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 138), - [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 50), - [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 50), - [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), + [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), + [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), + [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), + [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 40), + [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 40), + [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), + [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), + [4276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 51), + [4278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), + [4280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), + [4282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 19), + [4286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 127), + [4290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), + [4292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), + [4294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), + [4296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 19), [4298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), [4300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), + [4306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), + [4308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 19), [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3800), - [4325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [4339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [4349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 35), - [4355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 35), - [4357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 147), - [4359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 147), - [4361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 35), - [4363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 35), - [4365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [4379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [4381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [4383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 94), - [4431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 94), - [4433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 98), - [4439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 98), - [4441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 148), - [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 148), - [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 98), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 98), - [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 35), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 35), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 35), - [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 35), - [4473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 102), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 102), - [4481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 102), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 104), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 104), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 109), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 109), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 116), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 116), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 35), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 35), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 128), - [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 128), - [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 128), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 128), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 129), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 129), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 135), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 135), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [4597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [4747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4305), - [4870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [4878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1), - [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 31), - [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 31), - [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 110), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), + [4316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), + [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 19), + [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 25), + [4326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), + [4328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 68), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), + [4332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 68), + [4334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), + [4336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 68), + [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 36), + [4340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 36), + [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 36), + [4346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), + [4348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 73), + [4350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), + [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 73), + [4354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 150), + [4358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 149), + [4360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 149), + [4362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 147), + [4366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 146), + [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), + [4374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), + [4376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 73), + [4378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 143), + [4382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 142), + [4386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), + [4390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [4392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), + [4394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [4396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), + [4398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), + [4402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), + [4404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), + [4406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), + [4408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 131), + [4410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 130), + [4414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), + [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 106), + [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), + [4420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 130), + [4422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 25), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 74), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 74), + [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), + [4434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 51), + [4436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), + [4440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), + [4442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 109), + [4444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), + [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), + [4460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [4466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), + [4470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 120), + [4474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), + [4476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), + [4478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 118), + [4480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 118), + [4482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), + [4484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), + [4486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 111), + [4488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 111), + [4490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), + [4492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), + [4494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), + [4496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), + [4498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), + [4502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3674), + [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), + [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), + [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), + [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), + [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 96), + [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 96), + [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 106), + [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), + [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 106), + [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), + [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), + [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 104), + [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), + [4539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 73), + [4541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 104), + [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 97), + [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 100), + [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 101), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), + [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 36), + [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 36), + [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 36), + [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), + [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 68), + [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), + [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), + [4617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [4757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), + [4759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 1), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [4877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4319), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [4886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), + [4916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), + [4918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 112), + [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [4926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [4954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), + [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 32), + [4958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 90), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 90), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2, .production_id = 18), + [4970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), + [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), [4990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), - [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 37), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 38), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 30), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 93), - [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [5164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [5172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [5240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 31), + [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 95), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [5456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [5464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 93), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 62), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [5564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 63), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [5506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 95), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [5672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 3), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 5), + [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_lambda, 4), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3887), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [5956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(617), - [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(434), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [5980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2202), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4424), - [5988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4321), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [6041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2463), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4424), - [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4321), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [6098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3311), - [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 75), - [6105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 75), - [6107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 106), - [6109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 106), - [6111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 41), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [6115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 112), - [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 85), - [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [6149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [6153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3459), - [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [6158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(591), - [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 132), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 130), - [6165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 111), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [6171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 83), - [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [6193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [6201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [6203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4346), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [6218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), + [5962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), + [5964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(617), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [5983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(417), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [5990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2291), + [5993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [5995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4656), + [5998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4116), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2475), + [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4656), + [6057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4116), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [6076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), + [6114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), + [6116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3317), + [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 108), + [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 108), + [6123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 42), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 76), + [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 76), + [6131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 114), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 87), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [6139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [6173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [6177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 134), + [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), + [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 113), + [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 132), + [6185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 84), + [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [6197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), + [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4366), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), + [6210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), + [6212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), + [6214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [6236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [6316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3534), - [6319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3534), - [6322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(222), - [6325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3535), - [6330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3535), - [6333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(229), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [6454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [6506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(420), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [6527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3505), - [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [6600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [6604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [6620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 84), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [6626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [6638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(63), - [6643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 131), - [6647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [6655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3002), - [6660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4342), - [6695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), - [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), - [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 92), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 92), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [6763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), - [6789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [6817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3044), - [6820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [6830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), - [6832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [6836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3457), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [6853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4566), - [6856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(418), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [6985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3977), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(303), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [7105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 56), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [7141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [7171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [7203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [7205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(812), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [7224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3632), - [7227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 56), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3315), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [7266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(3990), - [7269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [7275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(3993), - [7278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [7280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(402), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3623), - [7314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [7330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(416), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2884), - [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [7378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3649), - [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [7417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [7435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [7445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 42), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 41), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 40), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 76), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 77), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [7533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 74), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 23), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 53), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 114), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 105), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [7801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 115), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [7813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 90), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [7819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 89), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 34), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [7897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [7939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 59), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 60), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [8077] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [6234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [6238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), + [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3450), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), + [6251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(458), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [6284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [6300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3525), + [6303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3525), + [6306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(217), + [6309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [6335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [6357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3492), + [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [6538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(426), + [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [6573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3627), + [6608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3627), + [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(230), + [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), + [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(64), + [6623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [6627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [6649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), + [6651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [6655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), + [6657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 133), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), + [6663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), + [6665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 86), + [6667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [6725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4564), + [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), + [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3284), + [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [6755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3008), + [6758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 94), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [6818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3), + [6830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [6840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 2), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 2), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), + [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [6872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3451), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [6893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4316), + [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2905), + [6925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3648), + [6948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [7008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3619), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [7039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(390), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [7058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 57), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [7086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(392), + [7089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3906), + [7092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [7104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), + [7106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3633), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [7127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 57), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [7143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [7145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3329), + [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(607), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), + [7197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(3957), + [7200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [7244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(434), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), + [7265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(3987), + [7268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), SHIFT_REPEAT(4371), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_lambda_repeat1, 2), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(327), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 42), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 43), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), + [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [7556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 54), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [7630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 75), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 116), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [7644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 77), + [7646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 78), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 107), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 24), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 35), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [7712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [7720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 92), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [7766] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 117), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 61), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 60), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), }; #ifdef __cplusplus diff --git a/tree_sitter_v/test/corpus/anon_struct.txt b/tree_sitter_v/test/corpus/anon_struct.txt index 3c527590..9dcef57c 100644 --- a/tree_sitter_v/test/corpus/anon_struct.txt +++ b/tree_sitter_v/test/corpus/anon_struct.txt @@ -115,13 +115,11 @@ a := struct { (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))))))))) diff --git a/tree_sitter_v/test/corpus/call_expression.txt b/tree_sitter_v/test/corpus/call_expression.txt index d27bd6fd..53372e05 100644 --- a/tree_sitter_v/test/corpus/call_expression.txt +++ b/tree_sitter_v/test/corpus/call_expression.txt @@ -240,8 +240,7 @@ foo(name: value) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))))))) @@ -260,22 +259,19 @@ foo(name: value, name2: value2, name3: value3) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))))))) @@ -300,22 +296,19 @@ foo(plain, plain2, name: value, name2: value2, name3: value3) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))))))) @@ -338,22 +331,19 @@ foo( (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))))))) @@ -376,22 +366,19 @@ foo( (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))))))) @@ -418,22 +405,19 @@ foo( (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))) (argument (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (reference_expression (identifier)))))))) @@ -568,3 +552,70 @@ foo(...name) (spread_expression (reference_expression (identifier)))))))) + +================================================================================ +Call short lambda +================================================================================ +foo(|| println('')) +foo(|a| println(a)) +foo(|a, b| println('${a}${b}')) +-------------------------------------------------------------------------------- + +(source_file + (simple_statement + (call_expression + (reference_expression + (identifier)) + (argument_list + (short_lambda + (call_expression + (reference_expression + (identifier)) + (argument_list + (argument + (literal + (interpreted_string_literal))))))))) + (simple_statement + (call_expression + (reference_expression + (identifier)) + (argument_list + (short_lambda + (reference_expression + (identifier)) + (call_expression + (reference_expression + (identifier)) + (argument_list + (argument + (reference_expression + (identifier))))))))) + (simple_statement + (call_expression + (reference_expression + (identifier)) + (argument_list + (short_lambda + (reference_expression + (identifier)) + (reference_expression + (identifier)) + (call_expression + (reference_expression + (identifier)) + (argument_list + (argument + (literal + (interpreted_string_literal + (string_interpolation + (interpolation_opening) + (interpolation_expression + (reference_expression + (identifier))) + (interpolation_closing)) + (string_interpolation + (interpolation_opening) + (interpolation_expression + (reference_expression + (identifier))) + (interpolation_closing)))))))))))) diff --git a/tree_sitter_v/test/corpus/function_literal.txt b/tree_sitter_v/test/corpus/function_literal.txt index d68edbfd..951bcdcf 100644 --- a/tree_sitter_v/test/corpus/function_literal.txt +++ b/tree_sitter_v/test/corpus/function_literal.txt @@ -579,8 +579,7 @@ fn test_with_value() { (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))))))))) (simple_statement diff --git a/tree_sitter_v/test/corpus/type_initializer.txt b/tree_sitter_v/test/corpus/type_initializer.txt index d6b67ba6..f2097d23 100644 --- a/tree_sitter_v/test/corpus/type_initializer.txt +++ b/tree_sitter_v/test/corpus/type_initializer.txt @@ -46,8 +46,7 @@ Array type initializer with field (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal)))))))) @@ -69,14 +68,12 @@ Array type initializer with fields (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal)))))))) @@ -98,20 +95,17 @@ Array type initializer with all fields (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (binary_expression (reference_expression (identifier)) @@ -136,8 +130,7 @@ Foo{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal)))))))) @@ -161,20 +154,17 @@ Foo{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (float_literal)))))))) @@ -221,14 +211,12 @@ Foo{ (identifier))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal)))))))) @@ -294,8 +282,7 @@ Foo{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (type_initializer (plain_type (type_reference_expression @@ -304,14 +291,12 @@ Foo{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal)))))))))))) @@ -338,20 +323,17 @@ Foo{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (type_initializer (plain_type (type_reference_expression @@ -360,14 +342,12 @@ Foo{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal)))))))))))) @@ -398,14 +378,12 @@ Foo[int, string]{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal)))))))) @@ -428,14 +406,12 @@ C.Foo{ (element_list (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (interpreted_string_literal))) (keyed_element (field_name - (reference_expression - (identifier))) + (identifier)) (literal (int_literal))))))))